From 3dd25e95331e19c7b6e1a5af67106098ffaf3aad Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Mon, 11 Nov 2024 16:32:35 +0100 Subject: [PATCH 01/14] feat(math): Support the MathML operator dictionary and many TeX-like aliases --- packages/math/atoms.lua | 38 + packages/math/base-elements.lua | 13 +- packages/math/texlike.lua | 42 +- packages/math/tools/unicode-xml-to-sile.xsl | 201 + packages/math/typesetter.lua | 106 +- packages/math/unicode-symbols-generated.lua | 5154 +++++++++++++++++++ packages/math/unicode-symbols.lua | 2665 +--------- 7 files changed, 5580 insertions(+), 2639 deletions(-) create mode 100644 packages/math/atoms.lua create mode 100644 packages/math/tools/unicode-xml-to-sile.xsl create mode 100644 packages/math/unicode-symbols-generated.lua diff --git a/packages/math/atoms.lua b/packages/math/atoms.lua new file mode 100644 index 000000000..91af62c61 --- /dev/null +++ b/packages/math/atoms.lua @@ -0,0 +1,38 @@ +local atomType = { + ordinary = 0, + bigOperator = 1, + binaryOperator = 2, + relationalOperator = 3, + openingSymbol = 4, + closeSymbol = 5, + punctuationSymbol = 6, + inner = 7, + overSymbol = 8, + underSymbol = 9, + accentSymbol = 10, + radicalSymbol = 11, + vcenter = 12, +} + +-- Shorthands for atom types, used in the `atom` command option +-- and also in the unicode symbols table / operator dictionary +local atomTypeShort = { + ord = atomType.ordinary, + big = atomType.bigOperator, + bin = atomType.binaryOperator, + rel = atomType.relationalOperator, + open = atomType.openingSymbol, + close = atomType.closeSymbol, + punct = atomType.punctuationSymbol, + inner = atomType.inner, + over = atomType.overSymbol, + under = atomType.underSymbol, + accent = atomType.accentSymbol, + radical = atomType.radicalSymbol, + vcenter = atomType.vcenter, +} + +return { + atomType = atomType, + atomTypeShort = atomTypeShort, +} diff --git a/packages/math/base-elements.lua b/packages/math/base-elements.lua index 174f3e564..d09a3b804 100644 --- a/packages/math/base-elements.lua +++ b/packages/math/base-elements.lua @@ -1,12 +1,11 @@ local nodefactory = require("types.node") local hb = require("justenoughharfbuzz") local ot = require("core.opentype-parser") -local syms = require("packages.math.unicode-symbols") +local atoms = require("packages.math.atoms") local mathvariants = require("packages.math.unicode-mathvariants") local convertMathVariantScript = mathvariants.convertMathVariantScript -local atomType = syms.atomType -local symbolDefaults = syms.symbolDefaults +local atomType = atoms.atomType local elements = {} @@ -423,7 +422,7 @@ function elements.stackbox:shape () end -- Handle stretchy operators for _, elt in ipairs(self.children) do - if elt.is_a(elements.text) and elt.kind == "operator" and SU.boolean(elt.stretchy, false) then + if elt:is_a(elements.text) and elt.kind == "operator" and SU.boolean(elt.stretchy, false) then elt:_vertStretchyReshape(self.depth, self.height) end end @@ -694,14 +693,14 @@ function elements.underOver:_stretchyReshapeToBase (part) -- MathML3 "complex1" torture test: Maxwell's Equations (vectors in fractions) if #part.children == 0 then local elt = part - if elt.is_a(elements.text) and elt.kind == "operator" and SU.boolean(elt.stretchy, false) then + if elt:is_a(elements.text) and elt.kind == "operator" and SU.boolean(elt.stretchy, false) then elt:_horizStretchyReshape(self.base.width) end elseif part:is_a(elements.underOver) then -- Big assumption here: only considering one level of stacked under/over. local hasStretched = false for _, elt in ipairs(part.children) do - if elt.is_a(elements.text) and elt.kind == "operator" and SU.boolean(elt.stretchy, false) then + if elt:is_a(elements.text) and elt.kind == "operator" and SU.boolean(elt.stretchy, false) then local stretched = elt:_horizStretchyReshape(self.base.width) if stretched then hasStretched = true @@ -1652,8 +1651,6 @@ function elements.bevelledFraction:output (x, y, line) end elements.mathMode = mathMode -elements.atomType = atomType -elements.symbolDefaults = symbolDefaults elements.newSubscript = newSubscript elements.newUnderOver = newUnderOver diff --git a/packages/math/texlike.lua b/packages/math/texlike.lua index 33933dc50..d8a800400 100644 --- a/packages/math/texlike.lua +++ b/packages/math/texlike.lua @@ -1,11 +1,13 @@ +local atoms = require("packages.math.atoms") local syms = require("packages.math.unicode-symbols") local bits = require("core.parserbits") local epnf = require("epnf") local lpeg = require("lpeg") -local atomType = syms.atomType -local symbolDefaults = syms.symbolDefaults +local atomType = atoms.atomType +local atomTypeShort = atoms.atomTypeShort +local operatorDict = syms.operatorDict local symbols = syms.symbols -- Grammar to parse TeX-like math @@ -260,7 +262,7 @@ local compileToStr = function (argEnv, mathlist) end end -local function isOperatorKind (tree, typeOfAtom, typeOfSymbol) +local function isOperatorKind (tree, typeOfAtom) if not tree then return false -- safeguard end @@ -274,8 +276,8 @@ local function isOperatorKind (tree, typeOfAtom, typeOfSymbol) end -- Case \mo{ops} where ops is registered with the resquested type -- E.g. \mo{∑) or \sum - if tree[1] and symbolDefaults[tree[1]] and symbolDefaults[tree[1]].atom == typeOfSymbol then - return true + if tree[1] and operatorDict[tree[1]] and operatorDict[tree[1]].atom then + return operatorDict[tree[1]].atom == atomTypeShort[typeOfAtom] end return false end @@ -287,20 +289,32 @@ local function isMoveableLimits (tree) if tree.options and SU.boolean(tree.options.movablelimits, false) then return true end - if tree[1] and symbolDefaults[tree[1]] and SU.boolean(symbolDefaults[tree[1]].movablelimits, false) then - return true + if tree[1] and operatorDict[tree[1]] and operatorDict[tree[1]].forms then + -- Leap of faith: We have not idea yet which form the operator will take + -- in the final MathML. + -- In the MathML operator dictionary, some operators have a movablelimits + -- in some forms and not in others. + -- Ex. \Join (U+2A1D) and \bigtriangleleft (U+2A1E) have it prefix but not + -- infix, for some unspecified reason (?). + -- Assume that if at least one form has movablelimits, the operator is + -- considered to have movablelimits "in general". + for _, form in pairs(operatorDict[tree[1]].forms) do + if SU.boolean(form.movablelimits, false) then + return true + end + end end return false end local function isCloseOperator (tree) - return isOperatorKind(tree, "close", atomType.closeSymbol) + return isOperatorKind(tree, "close") end local function isOpeningOperator (tree) - return isOperatorKind(tree, "open", atomType.openingSymbol) + return isOperatorKind(tree, "open") end local function isAccentSymbol (symbol) - return symbolDefaults[symbol] and symbolDefaults[symbol].atom == atomType.accentSymbol + return operatorDict[symbol] and operatorDict[symbol].atom == atomType.accentSymbol end local function compileToMathML_aux (_, arg_env, tree) @@ -666,8 +680,12 @@ compileToMathML( \def{mathtt}{\mi[mathvariant=monospace]{#1}} % Modulus operator forms - \def{bmod}{\mo{mod}} - \def{pmod}{\quad(\mo{mod} #1)} + % See Michael Downes & Barbara Beeton, "Short Math Guide for LaTeX" + % American Mathematical Society (v2.0, 2017), §7.1 p. 18 + \def{bmod}{\mo[atom=bin]{mod}} + \def{pmod}{\quad(\mo[atom=ord]{mod}\>#1)} + \def{mod}{\quad \mo[atom=ord]{mod}\>#1} + \def{pod}{\quad(#1)} % Phantom commands from TeX/LaTeX \def{phantom}{\mphantom{#1}} diff --git a/packages/math/tools/unicode-xml-to-sile.xsl b/packages/math/tools/unicode-xml-to-sile.xsl new file mode 100644 index 000000000..2a11f7457 --- /dev/null +++ b/packages/math/tools/unicode-xml-to-sile.xsl @@ -0,0 +1,201 @@ + + + + + + + + + + + + + "" + + + + + + + + + + + + + + + + + + + + + + + + + + ord + ord + bin + close + + + botaccent + accent + ord + + + ord + ord + + + + + ord + big + + + open + punct + rel + ord + ord + bin + ord + + + + + + + "" + nil + + + +--- GENERATED FILE, DO NOT EDIT MANUALLY +-- +-- Operator dictionary for unicode characters +-- +-- Extracted from https://raw.githubusercontent.com/w3c/xml-entities/gh-pages/unicode.xml +-- (https://github.com/w3c/xml-entities) +-- Copyright David Carlisle 1999-2024 +-- Use and distribution of this code are permitted under the terms of the +-- W3C Software Notice and License. +-- http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html +-- This file is a collection of information about how to map Unicode entities to LaTeX, +-- and various SGML/XML entity sets (ISO and MathML/HTML). +-- A Unicode character may be mapped to several entities. +-- Originally designed by Sebastian Rahtz in conjunction with Barbara Beeton for the STIX project +-- + +local atoms = require("packages/math/atoms") +local atomTypeShort = atoms.atomTypeShort + +--- Transform a list of codepoints into a string +local function U (...) + local t = { ... } + local str = "" + for i = 1, #t do + str = str .. luautf8.char(t[i]) + end + return str +end + +local symbols = {} +local operatorDict = {} + +--- Register a symbol +-- @tparam string str String representation of the symbol +-- @tparam string shortatom Short atom type +-- @tparam string mathlatex TeX-like name of the symbol (from unicode-math) +-- @tparam string _ Unicode name of the symbol (informative) +-- @tparam table ops List of operator forms and their properties +local function addSymbol (str, shortatom, mathlatex, _, ops) + if mathlatex then + SU.debug("math.symbols", "Registering symbol", str, "as", mathlatex) + symbols[mathlatex] = str + end + local op = {} + op.atom = atomTypeShort[shortatom] + if ops then + op.forms = {} + for _, v in pairs(ops) do + if v.form then + v.lspace = SILE.types.length(v.lspace and ("%smu"):format(v.lspace) or "0mu") + v.rspace = SILE.types.length(v.rspace and ("%smu"):format(v.rspace) or "0mu") + op.forms[v.form] = v + else + SU.warn("No form for operator " .. str .. " (operator dictionary is probably incomplete)") + end + end + end + operatorDict[str] = op +end + + + +return { + operatorDict = operatorDict, + symbols = symbols +} + + + + + + + + + + + + + + + +addSymbol( + + + + + + , "", + + + + + + , "" + + + + , { + + + + } + + , nil + + ) + + + + + { + + = + + , + }, + + + diff --git a/packages/math/typesetter.lua b/packages/math/typesetter.lua index 33072fa1e..9b936ade4 100644 --- a/packages/math/typesetter.lua +++ b/packages/math/typesetter.lua @@ -1,30 +1,90 @@ -- Interpret a MathML or TeX-like AST, typeset it and add it to the output. +local atoms = require("packages.math.atoms") local b = require("packages.math.base-elements") local syms = require("packages.math.unicode-symbols") local mathvariants = require("packages.math.unicode-mathvariants") local mathVariantToScriptType, scriptType = mathvariants.mathVariantToScriptType, mathvariants.scriptType +local atomTypeShort = atoms.atomTypeShort --- Shorthands for atom types, used in the `atom` command option -local atomTypeShort = { - ord = b.atomType.ordinary, - big = b.atomType.bigOperator, - bin = b.atomType.binaryOperator, - rel = b.atomType.relationalOperator, - open = b.atomType.openingSymbol, - close = b.atomType.closeSymbol, - punct = b.atomType.punctuationSymbol, - inner = b.atomType.inner, - over = b.atomType.overSymbol, - under = b.atomType.underSymbol, - accent = b.atomType.accentSymbol, - radical = b.atomType.radicalSymbol, - vcenter = b.atomType.vcenter, +local ConvertMathML + +-- See MathML Core "Algorithm for determining the form of an embellished operator" +local scriptedElements = { + mmultiscripts = true, + mover = true, + msub = true, + msubsup = true, + msup = true, + munder = true, + munderover = true, +} +local groupingElements = { + maction = true, + math = true, + merror = true, + mphantom = true, + mprescripts = true, + mrow = true, + mstyle = true, + semantics = true, +} +local spaceLikeElements = { + mtext = true, + mspace = true, } -local ConvertMathML +-- Space like elements are: +-- an mtext or mspace; +-- or a grouping element or mpadded all of whose in-flow children are space-like. +local function isSpaceLike (tree) + if spaceLikeElements[tree.command] then + return true + end + if groupingElements[tree.command] or tree.command == "mpadded" then + for _, n in ipairs(tree) do + if not isSpaceLike(n) then + return false + end + end + return true + end +end +-- Grouping-like elements in this operator embellishing context are: +-- a grouping element +-- or an mpadded or msqrt element. +local isGroupingLike = function (tree) + return groupingElements[tree.command] or tree.command == "mpadded" or tree.command == "msqrt" +end + +local function embellishOperatorInPlace (tree) + local lastChild + local lastMo + local groupLike = isGroupingLike(tree) + local scripLike = scriptedElements[tree.command] + for _, n in ipairs(tree) do + -- FIXME Maybe ncomplete vs. "core form" (of other elements) in MathML Core + -- This specification would make anyone's eyes bleed :D + if n.command == "mo" then + lastMo = n + n.options.form = n.options.form + or groupLike and not lastChild and "prefix" -- first-in-flow child + or scripLike and lastChild and "postfix" -- last-in-flow child of a scripted element other than the first + or nil + end + if n.command and not isSpaceLike(n) then + lastChild = n + end + end + if lastMo then + lastMo.options.form = lastMo.options.form + or groupLike and lastMo == lastChild and "postfix" -- last-in-flow child + or nil + end +end local function convertChildren (tree) local mboxes = {} + embellishOperatorInPlace(tree) for _, n in ipairs(tree) do local box = ConvertMathML(nil, n) if box then @@ -68,14 +128,20 @@ function ConvertMathML (_, content) script = script or (luautf8.len(text) == 1 and scriptType.italic or scriptType.upright) return b.text("identifier", {}, script, text) elseif content.command == "mo" then + content.options.form = content.options.form or "infix" local script = content.options.mathvariant and mathVariantToScriptType(content.options.mathvariant) or scriptType.upright local text = content[1] local attributes = {} - -- Attributes from the (default) oerator table - if syms.symbolDefaults[text] then - for attribute, value in pairs(syms.symbolDefaults[text]) do - attributes[attribute] = value + -- Attributes from the (default) operator table + if syms.operatorDict[text] then + attributes.atom = syms.operatorDict[text].atom + local forms = syms.operatorDict[text].forms + local defaultOps = forms and (forms[content.options.form] or forms.infix or forms.prefix or forms.postfix) + if defaultOps then + for attribute, value in pairs(defaultOps) do + attributes[attribute] = value + end end end -- Overwrite with attributes from the element diff --git a/packages/math/unicode-symbols-generated.lua b/packages/math/unicode-symbols-generated.lua new file mode 100644 index 000000000..5e220fcd9 --- /dev/null +++ b/packages/math/unicode-symbols-generated.lua @@ -0,0 +1,5154 @@ +--- GENERATED FILE, DO NOT EDIT MANUALLY +-- +-- Operator dictionary for unicode characters +-- +-- Extracted from https://raw.githubusercontent.com/w3c/xml-entities/gh-pages/unicode.xml +-- (https://github.com/w3c/xml-entities) +-- Copyright David Carlisle 1999-2024 +-- Use and distribution of this code are permitted under the terms of the +-- W3C Software Notice and License. +-- http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html +-- This file is a collection of information about how to map Unicode entities to LaTeX, +-- and various SGML/XML entity sets (ISO and MathML/HTML). +-- A Unicode character may be mapped to several entities. +-- Originally designed by Sebastian Rahtz in conjunction with Barbara Beeton for the STIX project +-- + +local atoms = require("packages/math/atoms") +local atomTypeShort = atoms.atomTypeShort + +--- Transform a list of codepoints into a string +local function U (...) + local t = { ... } + local str = "" + for i = 1, #t do + str = str .. luautf8.char(t[i]) + end + return str +end + +local symbols = {} +local operatorDict = {} + +--- Register a symbol +-- @tparam string str String representation of the symbol +-- @tparam string shortatom Short atom type +-- @tparam string mathlatex TeX-like name of the symbol (from unicode-math) +-- @tparam string _ Unicode name of the symbol (informative) +-- @tparam table ops List of operator forms and their properties +local function addSymbol (str, shortatom, mathlatex, _, ops) + if mathlatex then + SU.debug("math.symbols", "Registering symbol", str, "as", mathlatex) + symbols[mathlatex] = str + end + local op = {} + op.atom = atomTypeShort[shortatom] + if ops then + op.forms = {} + for _, v in pairs(ops) do + if v.form then + v.lspace = SILE.types.length(v.lspace and ("%smu"):format(v.lspace) or "0mu") + v.rspace = SILE.types.length(v.rspace and ("%smu"):format(v.rspace) or "0mu") + op.forms[v.form] = v + else + SU.warn("No form for operator " .. str .. " (operator dictionary is probably incomplete)") + end + end + end + operatorDict[str] = op +end + +addSymbol(U(0x00021), "ord", "mathexclam", "EXCLAMATION MARK", { + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) +addSymbol(U(0x00021, 0x00021), "ord", nil, "MULTIPLE CHARACTER OPERATOR: !!", { + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, +}) +addSymbol(U(0x00021, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: !=", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x00022), "ord", nil, "QUOTATION MARK", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x00023), "ord", "mathoctothorpe", "NUMBER SIGN", nil) +addSymbol(U(0x00024), "ord", "mathdollar", "DOLLAR SIGN", nil) +addSymbol(U(0x00025), "ord", "mathpercent", "PERCENT SIGN", { + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, + { form = "infix", lspace = 3, priority = 640, rspace = 3 }, +}) +addSymbol(U(0x00026), "ord", "mathampersand", "AMPERSAND", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x00026, 0x00026), "ord", nil, "MULTIPLE CHARACTER OPERATOR: &&", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x00027), "ord", nil, "APOSTROPHE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x00028), "open", "lparen", "LEFT PARENTHESIS", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x00029), "close", "rparen", "RIGHT PARENTHESIS", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0002A), "ord", nil, "ASTERISK", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x0002A, 0x0002A), "ord", nil, "MULTIPLE CHARACTER OPERATOR: **", { + { form = "infix", lspace = 3, priority = 760, rspace = 3 }, +}) +addSymbol(U(0x0002A, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: *=", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0002B), "bin", "mathplus", "PLUS SIGN", { + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x0002B, 0x0002B), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ++", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x0002B, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: +=", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0002C), "punct", "mathcomma", "COMMA", { + { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 3, separator = true }, +}) +addSymbol(U(0x0002D), "ord", nil, "HYPHEN-MINUS", { + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x0002D, 0x0002D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: --", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x0002D, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: -=", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0002D, 0x0003E), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ->", { + { form = "infix", lspace = 5, priority = 220, rspace = 5 }, +}) +addSymbol(U(0x0002E), "punct", "mathperiod", "FULL STOP", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x0002F), "bin", "mathslash", "SOLIDUS", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x0002F, 0x0002F), "ord", nil, "MULTIPLE CHARACTER OPERATOR: //", { + { form = "infix", lspace = 5, priority = 240, rspace = 5 }, +}) +addSymbol(U(0x0002F, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: /=", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0003A), "punct", "mathcolon", "COLON", { + { form = "infix", lspace = 0, priority = 180, rspace = 3 }, +}) +addSymbol(U(0x0003A, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: :=", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0003B), "punct", "mathsemicolon", "SEMICOLON", { + { form = "infix", linebreakstyle = "after", lspace = 0, priority = 140, rspace = 3, separator = true }, +}) +addSymbol(U(0x0003C), "rel", "less", "LESS-THAN SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0003C, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: <=", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0003C, 0x0003E), "ord", nil, "MULTIPLE CHARACTER OPERATOR: <>", { + { form = "infix", lspace = 3, priority = 800, rspace = 3 }, +}) +addSymbol(U(0x0003D), "rel", "equal", "EQUALS SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0003D, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ==", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0003E), "rel", "greater", "GREATER-THAN SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0003E, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: >=", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0003F), "punct", "mathquestion", "QUESTION MARK", { + { form = "infix", lspace = 3, priority = 840, rspace = 3 }, +}) +addSymbol(U(0x00040), "ord", "mathatsign", "COMMERCIAL AT", { + { form = "infix", lspace = 3, priority = 560, rspace = 3 }, +}) +addSymbol(U(0x0005B), "open", "lbrack", "LEFT SQUARE BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0005C), "bin", "backslash", "REVERSE SOLIDUS", { + { form = "infix", lspace = 0, priority = 660, rspace = 0 }, +}) +addSymbol(U(0x0005D), "close", "rbrack", "RIGHT SQUARE BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0005E), "ord", nil, "CIRCUMFLEX ACCENT", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { form = "infix", lspace = 3, priority = 800, rspace = 3 }, +}) +addSymbol(U(0x0005F), "ord", nil, "LOW LINE", { + { form = "infix", lspace = 0, priority = 940, rspace = 0 }, + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x00060), "ord", nil, "GRAVE ACCENT", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x0007B), "open", "lbrace", "LEFT CURLY BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0007C), "ord", "vert", "VERTICAL LINE", { + { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0007C, 0x0007C), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ||", { + { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0 }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0 }, +}) +addSymbol(U(0x0007D), "close", "rbrace", "RIGHT CURLY BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0007E), "ord", nil, "TILDE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x000A1), "punct", nil, "INVERTED EXCLAMATION MARK", nil) +addSymbol(U(0x000A3), "ord", "mathsterling", "POUND SIGN", nil) +addSymbol(U(0x000A5), "ord", "mathyen", "YEN SIGN", nil) +addSymbol(U(0x000A7), "ord", "mathsection", "SECTION SIGN", nil) +addSymbol(U(0x000A8), "ord", nil, "DIAERESIS", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x000AC), "ord", "neg", "NOT SIGN", { + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) +addSymbol(U(0x000AF), "ord", nil, "MACRON", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x000B0), "ord", nil, "DEGREE SIGN", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x000B1), "bin", "pm", "PLUS-MINUS SIGN", { + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x000B2), "ord", nil, "SUPERSCRIPT TWO", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x000B3), "ord", nil, "SUPERSCRIPT THREE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x000B4), "ord", nil, "ACUTE ACCENT", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x000B6), "ord", "mathparagraph", "PILCROW SIGN", nil) +addSymbol(U(0x000B7), "bin", "cdotp", "MIDDLE DOT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x000B8), "ord", nil, "CEDILLA", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x000B9), "ord", nil, "SUPERSCRIPT ONE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x000BF), "punct", nil, "INVERTED QUESTION MARK", nil) +addSymbol(U(0x000D7), "bin", "times", "MULTIPLICATION SIGN", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x000F0), "ord", "matheth", "LATIN SMALL LETTER ETH", nil) +addSymbol(U(0x000F7), "bin", "div", "DIVISION SIGN", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x001B5), "ord", "Zbar", "LATIN CAPITAL LETTER Z WITH STROKE", nil) +addSymbol(U(0x002C6), "ord", nil, "MODIFIER LETTER CIRCUMFLEX ACCENT", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x002C7), "ord", nil, "CARON", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x002C9), "ord", nil, "MODIFIER LETTER MACRON", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x002CA), "ord", nil, "MODIFIER LETTER ACUTE ACCENT", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x002CB), "ord", nil, "MODIFIER LETTER GRAVE ACCENT", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x002CD), "ord", nil, "MODIFIER LETTER LOW MACRON", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x002D8), "ord", nil, "BREVE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x002D9), "ord", nil, "DOT ABOVE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x002DA), "ord", nil, "RING ABOVE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x002DC), "ord", nil, "SMALL TILDE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x002DD), "ord", nil, "DOUBLE ACUTE ACCENT", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x002F7), "ord", nil, "MODIFIER LETTER LOW TILDE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x00300), "accent", "grave", "COMBINING GRAVE ACCENT", nil) +addSymbol(U(0x00301), "accent", "acute", "COMBINING ACUTE ACCENT", nil) +addSymbol(U(0x00302), "accent", "hat", "COMBINING CIRCUMFLEX ACCENT", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x00303), "accent", "tilde", "COMBINING TILDE", nil) +addSymbol(U(0x00304), "accent", "bar", "COMBINING MACRON", nil) +addSymbol(U(0x00305), "accent", "overbar", "COMBINING OVERLINE", nil) +addSymbol(U(0x00306), "accent", "breve", "COMBINING BREVE", nil) +addSymbol(U(0x00307), "accent", "dot", "COMBINING DOT ABOVE", nil) +addSymbol(U(0x00308), "accent", "ddot", "COMBINING DIAERESIS", nil) +addSymbol(U(0x00309), "ord", "ovhook", "COMBINING HOOK ABOVE", nil) +addSymbol(U(0x0030A), "accent", "ocirc", "COMBINING RING ABOVE", nil) +addSymbol(U(0x0030C), "accent", "check", "COMBINING CARON", nil) +addSymbol(U(0x00310), "ord", "candra", "COMBINING CANDRABINDU", nil) +addSymbol(U(0x00311), "accent", nil, "COMBINING INVERTED BREVE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x00312), "ord", "oturnedcomma", "COMBINING TURNED COMMA ABOVE", nil) +addSymbol(U(0x00315), "ord", "ocommatopright", "COMBINING COMMA ABOVE RIGHT", nil) +addSymbol(U(0x0031A), "ord", "droang", "COMBINING LEFT ANGLE ABOVE", nil) +addSymbol(U(0x00323), "botaccent", nil, "COMBINING DOT BELOW", nil) +addSymbol(U(0x0032C), "botaccent", nil, "COMBINING CARON BELOW", nil) +addSymbol(U(0x0032D), "botaccent", nil, "COMBINING CIRCUMFLEX ACCENT BELOW", nil) +addSymbol(U(0x0032E), "botaccent", nil, "COMBINING BREVE BELOW", nil) +addSymbol(U(0x0032F), "botaccent", nil, "COMBINING INVERTED BREVE BELOW", nil) +addSymbol(U(0x00330), "botaccent", "wideutilde", "COMBINING TILDE BELOW", nil) +addSymbol(U(0x00331), "botaccent", nil, "COMBINING MACRON BELOW", nil) +addSymbol(U(0x00332), "botaccent", "mathunderbar", "COMBINING LOW LINE", nil) +addSymbol(U(0x00333), "botaccent", nil, "COMBINING DOUBLE LOW LINE", nil) +addSymbol(U(0x00338), "ord", "notaccent", "COMBINING LONG SOLIDUS OVERLAY", nil) +addSymbol(U(0x0033A), "botaccent", nil, "COMBINING INVERTED BRIDGE BELOW", nil) +addSymbol(U(0x0033F), "accent", nil, "COMBINING DOUBLE OVERLINE", nil) +addSymbol(U(0x00346), "accent", nil, "COMBINING BRIDGE ABOVE", nil) +addSymbol(U(0x0034D), "ord", "underleftrightarrow", "COMBINING LEFT RIGHT ARROW BELOW", nil) +addSymbol(U(0x00391), "ord", "mupAlpha", "GREEK CAPITAL LETTER ALPHA", nil) +addSymbol(U(0x00392), "ord", "mupBeta", "GREEK CAPITAL LETTER BETA", nil) +addSymbol(U(0x00393), "ord", "mupGamma", "GREEK CAPITAL LETTER GAMMA", nil) +addSymbol(U(0x00394), "ord", "mupDelta", "GREEK CAPITAL LETTER DELTA", nil) +addSymbol(U(0x00395), "ord", "mupEpsilon", "GREEK CAPITAL LETTER EPSILON", nil) +addSymbol(U(0x00396), "ord", "mupZeta", "GREEK CAPITAL LETTER ZETA", nil) +addSymbol(U(0x00397), "ord", "mupEta", "GREEK CAPITAL LETTER ETA", nil) +addSymbol(U(0x00398), "ord", "mupTheta", "GREEK CAPITAL LETTER THETA", nil) +addSymbol(U(0x00399), "ord", "mupIota", "GREEK CAPITAL LETTER IOTA", nil) +addSymbol(U(0x0039A), "ord", "mupKappa", "GREEK CAPITAL LETTER KAPPA", nil) +addSymbol(U(0x0039B), "ord", "mupLambda", "GREEK CAPITAL LETTER LAMDA", nil) +addSymbol(U(0x0039C), "ord", "mupMu", "GREEK CAPITAL LETTER MU", nil) +addSymbol(U(0x0039D), "ord", "mupNu", "GREEK CAPITAL LETTER NU", nil) +addSymbol(U(0x0039E), "ord", "mupXi", "GREEK CAPITAL LETTER XI", nil) +addSymbol(U(0x0039F), "ord", "mupOmicron", "GREEK CAPITAL LETTER OMICRON", nil) +addSymbol(U(0x003A0), "ord", "mupPi", "GREEK CAPITAL LETTER PI", nil) +addSymbol(U(0x003A1), "ord", "mupRho", "GREEK CAPITAL LETTER RHO", nil) +addSymbol(U(0x003A3), "ord", "mupSigma", "GREEK CAPITAL LETTER SIGMA", nil) +addSymbol(U(0x003A4), "ord", "mupTau", "GREEK CAPITAL LETTER TAU", nil) +addSymbol(U(0x003A5), "ord", "mupUpsilon", "GREEK CAPITAL LETTER UPSILON", nil) +addSymbol(U(0x003A6), "ord", "mupPhi", "GREEK CAPITAL LETTER PHI", nil) +addSymbol(U(0x003A7), "ord", "mupChi", "GREEK CAPITAL LETTER CHI", nil) +addSymbol(U(0x003A8), "ord", "mupPsi", "GREEK CAPITAL LETTER PSI", nil) +addSymbol(U(0x003A9), "ord", "mupOmega", "GREEK CAPITAL LETTER OMEGA", nil) +addSymbol(U(0x003B1), "ord", "mupalpha", "GREEK SMALL LETTER ALPHA", nil) +addSymbol(U(0x003B2), "ord", "mupbeta", "GREEK SMALL LETTER BETA", nil) +addSymbol(U(0x003B3), "ord", "mupgamma", "GREEK SMALL LETTER GAMMA", nil) +addSymbol(U(0x003B4), "ord", "mupdelta", "GREEK SMALL LETTER DELTA", nil) +addSymbol(U(0x003B5), "ord", "mupvarepsilon", "GREEK SMALL LETTER EPSILON", nil) +addSymbol(U(0x003B6), "ord", "mupzeta", "GREEK SMALL LETTER ZETA", nil) +addSymbol(U(0x003B7), "ord", "mupeta", "GREEK SMALL LETTER ETA", nil) +addSymbol(U(0x003B8), "ord", "muptheta", "GREEK SMALL LETTER THETA", nil) +addSymbol(U(0x003B9), "ord", "mupiota", "GREEK SMALL LETTER IOTA", nil) +addSymbol(U(0x003BA), "ord", "mupkappa", "GREEK SMALL LETTER KAPPA", nil) +addSymbol(U(0x003BB), "ord", "muplambda", "GREEK SMALL LETTER LAMDA", nil) +addSymbol(U(0x003BC), "ord", "mupmu", "GREEK SMALL LETTER MU", nil) +addSymbol(U(0x003BD), "ord", "mupnu", "GREEK SMALL LETTER NU", nil) +addSymbol(U(0x003BE), "ord", "mupxi", "GREEK SMALL LETTER XI", nil) +addSymbol(U(0x003BF), "ord", "mupomicron", "GREEK SMALL LETTER OMICRON", nil) +addSymbol(U(0x003C0), "ord", "muppi", "GREEK SMALL LETTER PI", nil) +addSymbol(U(0x003C1), "ord", "muprho", "GREEK SMALL LETTER RHO", nil) +addSymbol(U(0x003C2), "ord", "mupvarsigma", "GREEK SMALL LETTER FINAL SIGMA", nil) +addSymbol(U(0x003C3), "ord", "mupsigma", "GREEK SMALL LETTER SIGMA", nil) +addSymbol(U(0x003C4), "ord", "muptau", "GREEK SMALL LETTER TAU", nil) +addSymbol(U(0x003C5), "ord", "mupupsilon", "GREEK SMALL LETTER UPSILON", nil) +addSymbol(U(0x003C6), "ord", "mupvarphi", "GREEK SMALL LETTER PHI", nil) +addSymbol(U(0x003C7), "ord", "mupchi", "GREEK SMALL LETTER CHI", nil) +addSymbol(U(0x003C8), "ord", "muppsi", "GREEK SMALL LETTER PSI", nil) +addSymbol(U(0x003C9), "ord", "mupomega", "GREEK SMALL LETTER OMEGA", nil) +addSymbol(U(0x003D1), "ord", "mupvartheta", "GREEK THETA SYMBOL", nil) +addSymbol(U(0x003D5), "ord", "mupphi", "GREEK PHI SYMBOL", nil) +addSymbol(U(0x003D6), "ord", "mupvarpi", "GREEK PI SYMBOL", nil) +addSymbol(U(0x003DC), "ord", "upDigamma", "GREEK LETTER DIGAMMA", nil) +addSymbol(U(0x003DD), "ord", "updigamma", "GREEK SMALL LETTER DIGAMMA", nil) +addSymbol(U(0x003F0), "ord", "mupvarkappa", "GREEK KAPPA SYMBOL", nil) +addSymbol(U(0x003F1), "ord", "mupvarrho", "GREEK RHO SYMBOL", nil) +addSymbol(U(0x003F4), "ord", "mupvarTheta", "GREEK CAPITAL THETA SYMBOL", nil) +addSymbol(U(0x003F5), "ord", "mupepsilon", "GREEK LUNATE EPSILON SYMBOL", nil) +addSymbol(U(0x003F6), "ord", "upbackepsilon", "GREEK REVERSED LUNATE EPSILON SYMBOL", nil) +addSymbol(U(0x00606), "big", nil, "ARABIC-INDIC CUBE ROOT", nil) +addSymbol(U(0x00607), "big", nil, "ARABIC-INDIC FOURTH ROOT", nil) +addSymbol(U(0x02010), "punct", "mathhyphen", "HYPHEN", nil) +addSymbol(U(0x02012), "punct", nil, "FIGURE DASH", nil) +addSymbol(U(0x02013), "punct", nil, "EN DASH", nil) +addSymbol(U(0x02014), "punct", nil, "EM DASH", nil) +addSymbol(U(0x02015), "ord", "horizbar", "HORIZONTAL BAR", nil) +addSymbol(U(0x02016), "ord", "Vert", "DOUBLE VERTICAL LINE", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02017), "ord", "twolowline", "DOUBLE LOW LINE", nil) +addSymbol(U(0x02018), "ord", nil, "LEFT SINGLE QUOTATION MARK", { + { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }, +}) +addSymbol(U(0x02019), "ord", nil, "RIGHT SINGLE QUOTATION MARK", { + { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }, +}) +addSymbol(U(0x0201A), "ord", nil, "SINGLE LOW-9 QUOTATION MARK", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x0201B), "ord", nil, "SINGLE HIGH-REVERSED-9 QUOTATION MARK", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x0201C), "ord", nil, "LEFT DOUBLE QUOTATION MARK", { + { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }, +}) +addSymbol(U(0x0201D), "ord", nil, "RIGHT DOUBLE QUOTATION MARK", { + { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }, +}) +addSymbol(U(0x0201E), "ord", nil, "DOUBLE LOW-9 QUOTATION MARK", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x0201F), "ord", nil, "DOUBLE HIGH-REVERSED-9 QUOTATION MARK", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x02020), "rel", "dagger", "DAGGER", nil) +addSymbol(U(0x02021), "rel", "ddagger", "DOUBLE DAGGER", nil) +addSymbol(U(0x02022), "bin", "smblkcircle", "BULLET", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02025), "ord", "enleadertwodots", "TWO DOT LEADER", nil) +addSymbol(U(0x02026), "ord", "unicodeellipsis", "HORIZONTAL ELLIPSIS", nil) +addSymbol(U(0x02032), "ord", "prime", "PRIME", { + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, +}) +addSymbol(U(0x02033), "ord", "dprime", "DOUBLE PRIME", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x02034), "ord", "trprime", "TRIPLE PRIME", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x02035), "ord", "backprime", "REVERSED PRIME", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x02036), "ord", "backdprime", "REVERSED DOUBLE PRIME", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x02037), "ord", "backtrprime", "REVERSED TRIPLE PRIME", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x02038), "ord", "caretinsert", "CARET", nil) +addSymbol(U(0x0203C), "ord", "Exclam", "DOUBLE EXCLAMATION MARK", nil) +addSymbol(U(0x0203E), "ord", nil, "OVERLINE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x02040), "bin", "tieconcat", "CHARACTER TIE", nil) +addSymbol(U(0x02043), "ord", "hyphenbullet", "HYPHEN BULLET", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02044), "bin", "fracslash", "FRACTION SLASH", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x02047), "ord", "Question", "DOUBLE QUESTION MARK", nil) +addSymbol(U(0x0204E), "bin", nil, "LOW ASTERISK", nil) +addSymbol(U(0x0204F), "rel", nil, "REVERSED SEMICOLON", nil) +addSymbol(U(0x02050), "rel", "closure", "CLOSE UP", nil) +addSymbol(U(0x02057), "ord", "qprime", "QUADRUPLE PRIME", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x02061), "bin", nil, "FUNCTION APPLICATION", { + { form = "infix", lspace = 0, priority = 880, rspace = 0 }, +}) +addSymbol(U(0x02062), "bin", nil, "INVISIBLE TIMES", { + { form = "infix", lspace = 0, priority = 620, rspace = 0 }, +}) +addSymbol(U(0x02063), "punct", nil, "INVISIBLE SEPARATOR", { + { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 0, separator = true }, +}) +addSymbol(U(0x02064), "ord", nil, "INVISIBLE PLUS", { + { form = "infix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x020AC), "ord", "euro", "EURO SIGN", nil) +addSymbol(U(0x020D0), "accent", "leftharpoonaccent", "COMBINING LEFT HARPOON ABOVE", nil) +addSymbol(U(0x020D1), "accent", "rightharpoonaccent", "COMBINING RIGHT HARPOON ABOVE", nil) +addSymbol(U(0x020D2), "ord", "vertoverlay", "COMBINING LONG VERTICAL LINE OVERLAY", nil) +addSymbol(U(0x020D4), "accent", nil, "COMBINING ANTICLOCKWISE ARROW ABOVE", nil) +addSymbol(U(0x020D5), "accent", nil, "COMBINING CLOCKWISE ARROW ABOVE", nil) +addSymbol(U(0x020D6), "accent", "overleftarrow", "COMBINING LEFT ARROW ABOVE", nil) +addSymbol(U(0x020D7), "accent", "overrightarrow", "COMBINING RIGHT ARROW ABOVE", nil) +addSymbol(U(0x020DB), "accent", "dddot", "COMBINING THREE DOTS ABOVE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x020DC), "accent", "ddddot", "COMBINING FOUR DOTS ABOVE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x020DD), "ord", "enclosecircle", "COMBINING ENCLOSING CIRCLE", nil) +addSymbol(U(0x020DE), "ord", "enclosesquare", "COMBINING ENCLOSING SQUARE", nil) +addSymbol(U(0x020DF), "ord", "enclosediamond", "COMBINING ENCLOSING DIAMOND", nil) +addSymbol(U(0x020E1), "accent", "overleftrightarrow", "COMBINING LEFT RIGHT ARROW ABOVE", nil) +addSymbol(U(0x020E4), "ord", "enclosetriangle", "COMBINING ENCLOSING UPWARD POINTING TRIANGLE", nil) +addSymbol(U(0x020E7), "accent", "annuity", "COMBINING ANNUITY SYMBOL", nil) +addSymbol(U(0x020E8), "botaccent", "threeunderdot", "COMBINING TRIPLE UNDERDOT", nil) +addSymbol(U(0x020E9), "accent", "widebridgeabove", "COMBINING WIDE BRIDGE ABOVE", nil) +addSymbol(U(0x020EC), "botaccent", "underrightharpoondown", "COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS", nil) +addSymbol(U(0x020ED), "botaccent", "underleftharpoondown", "COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS", nil) +addSymbol(U(0x020EE), "botaccent", "underleftarrow", "COMBINING LEFT ARROW BELOW", nil) +addSymbol(U(0x020EF), "botaccent", "underrightarrow", "COMBINING RIGHT ARROW BELOW", nil) +addSymbol(U(0x020F0), "ord", "asteraccent", "COMBINING ASTERISK ABOVE", nil) +addSymbol(U(0x02102), "ord", "BbbC", "DOUBLE-STRUCK CAPITAL C", nil) +addSymbol(U(0x02107), "ord", "Eulerconst", "EULER CONSTANT", nil) +addSymbol(U(0x0210A), "ord", "mscrg", "SCRIPT SMALL G", nil) +addSymbol(U(0x0210B), "ord", "mscrH", "SCRIPT CAPITAL H", nil) +addSymbol(U(0x0210C), "ord", "mfrakH", "BLACK-LETTER CAPITAL H", nil) +addSymbol(U(0x0210D), "ord", "BbbH", "DOUBLE-STRUCK CAPITAL H", nil) +addSymbol(U(0x0210E), "ord", "Planckconst", "PLANCK CONSTANT", nil) +addSymbol(U(0x0210F), "ord", "hslash", "PLANCK CONSTANT OVER TWO PI", nil) +addSymbol(U(0x02110), "ord", "mscrI", "SCRIPT CAPITAL I", nil) +addSymbol(U(0x02111), "ord", "Im", "BLACK-LETTER CAPITAL I", nil) +addSymbol(U(0x02112), "ord", "mscrL", "SCRIPT CAPITAL L", nil) +addSymbol(U(0x02113), "ord", "ell", "SCRIPT SMALL L", nil) +addSymbol(U(0x02115), "ord", "BbbN", "DOUBLE-STRUCK CAPITAL N", nil) +addSymbol(U(0x02118), "ord", "wp", "SCRIPT CAPITAL P", nil) +addSymbol(U(0x02119), "ord", "BbbP", "DOUBLE-STRUCK CAPITAL P", nil) +addSymbol(U(0x0211A), "ord", "BbbQ", "DOUBLE-STRUCK CAPITAL Q", nil) +addSymbol(U(0x0211B), "ord", "mscrR", "SCRIPT CAPITAL R", nil) +addSymbol(U(0x0211C), "ord", "Re", "BLACK-LETTER CAPITAL R", nil) +addSymbol(U(0x0211D), "ord", "BbbR", "DOUBLE-STRUCK CAPITAL R", nil) +addSymbol(U(0x02124), "ord", "BbbZ", "DOUBLE-STRUCK CAPITAL Z", nil) +addSymbol(U(0x02127), "ord", "mho", "INVERTED OHM SIGN", nil) +addSymbol(U(0x02128), "ord", "mfrakZ", "BLACK-LETTER CAPITAL Z", nil) +addSymbol(U(0x02129), "ord", "turnediota", "TURNED GREEK SMALL LETTER IOTA", nil) +addSymbol(U(0x0212B), "ord", "Angstrom", "ANGSTROM SIGN", nil) +addSymbol(U(0x0212C), "ord", "mscrB", "SCRIPT CAPITAL B", nil) +addSymbol(U(0x0212D), "ord", "mfrakC", "BLACK-LETTER CAPITAL C", nil) +addSymbol(U(0x0212F), "ord", "mscre", "SCRIPT SMALL E", nil) +addSymbol(U(0x02130), "ord", "mscrE", "SCRIPT CAPITAL E", nil) +addSymbol(U(0x02131), "ord", "mscrF", "SCRIPT CAPITAL F", nil) +addSymbol(U(0x02132), "ord", "Finv", "TURNED CAPITAL F", nil) +addSymbol(U(0x02133), "ord", "mscrM", "SCRIPT CAPITAL M", nil) +addSymbol(U(0x02134), "ord", "mscro", "SCRIPT SMALL O", nil) +addSymbol(U(0x02135), "ord", "aleph", "ALEF SYMBOL", nil) +addSymbol(U(0x02136), "ord", "beth", "BET SYMBOL", nil) +addSymbol(U(0x02137), "ord", "gimel", "GIMEL SYMBOL", nil) +addSymbol(U(0x02138), "ord", "daleth", "DALET SYMBOL", nil) +addSymbol(U(0x0213C), "ord", "Bbbpi", "DOUBLE-STRUCK SMALL PI", nil) +addSymbol(U(0x0213D), "ord", "Bbbgamma", "DOUBLE-STRUCK SMALL GAMMA", nil) +addSymbol(U(0x0213E), "ord", "BbbGamma", "DOUBLE-STRUCK CAPITAL GAMMA", nil) +addSymbol(U(0x0213F), "ord", "BbbPi", "DOUBLE-STRUCK CAPITAL PI", nil) +addSymbol(U(0x02140), "big", "Bbbsum", "DOUBLE-STRUCK N-ARY SUMMATION", nil) +addSymbol(U(0x02141), "ord", "Game", "TURNED SANS-SERIF CAPITAL G", nil) +addSymbol(U(0x02142), "ord", "sansLturned", "TURNED SANS-SERIF CAPITAL L", nil) +addSymbol(U(0x02143), "ord", "sansLmirrored", "REVERSED SANS-SERIF CAPITAL L", nil) +addSymbol(U(0x02144), "ord", "Yup", "TURNED SANS-SERIF CAPITAL Y", nil) +addSymbol(U(0x02145), "ord", "mitBbbD", "DOUBLE-STRUCK ITALIC CAPITAL D", { + { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, +}) +addSymbol(U(0x02146), "ord", "mitBbbd", "DOUBLE-STRUCK ITALIC SMALL D", { + { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, +}) +addSymbol(U(0x02147), "ord", "mitBbbe", "DOUBLE-STRUCK ITALIC SMALL E", nil) +addSymbol(U(0x02148), "ord", "mitBbbi", "DOUBLE-STRUCK ITALIC SMALL I", nil) +addSymbol(U(0x02149), "ord", "mitBbbj", "DOUBLE-STRUCK ITALIC SMALL J", nil) +addSymbol(U(0x0214A), "ord", "PropertyLine", "PROPERTY LINE", nil) +addSymbol(U(0x0214B), "ord", "upand", "TURNED AMPERSAND", nil) +addSymbol(U(0x02190), "rel", "leftarrow", "LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02191), "rel", "uparrow", "UPWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02192), "rel", "rightarrow", "RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02193), "rel", "downarrow", "DOWNWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02194), "rel", "leftrightarrow", "LEFT RIGHT ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02195), "rel", "updownarrow", "UP DOWN ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02196), "rel", "nwarrow", "NORTH WEST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02197), "rel", "nearrow", "NORTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02198), "rel", "searrow", "SOUTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02199), "rel", "swarrow", "SOUTH WEST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0219A), "rel", "nleftarrow", "LEFTWARDS ARROW WITH STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0219B), "rel", "nrightarrow", "RIGHTWARDS ARROW WITH STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0219C), "rel", "leftwavearrow", "LEFTWARDS WAVE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0219D), "rel", "rightwavearrow", "RIGHTWARDS WAVE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0219E), "rel", "twoheadleftarrow", "LEFTWARDS TWO HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0219F), "rel", "twoheaduparrow", "UPWARDS TWO HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021A0), "rel", "twoheadrightarrow", "RIGHTWARDS TWO HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021A1), "rel", "twoheaddownarrow", "DOWNWARDS TWO HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021A2), "rel", "leftarrowtail", "LEFTWARDS ARROW WITH TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021A3), "rel", "rightarrowtail", "RIGHTWARDS ARROW WITH TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021A4), "rel", "mapsfrom", "LEFTWARDS ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021A5), "rel", "mapsup", "UPWARDS ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021A6), "rel", "mapsto", "RIGHTWARDS ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021A7), "rel", "mapsdown", "DOWNWARDS ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021A8), "rel", "updownarrowbar", "UP DOWN ARROW WITH BASE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021A9), "rel", "hookleftarrow", "LEFTWARDS ARROW WITH HOOK", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021AA), "rel", "hookrightarrow", "RIGHTWARDS ARROW WITH HOOK", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021AB), "rel", "looparrowleft", "LEFTWARDS ARROW WITH LOOP", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021AC), "rel", "looparrowright", "RIGHTWARDS ARROW WITH LOOP", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021AD), "rel", "leftrightsquigarrow", "LEFT RIGHT WAVE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021AE), "rel", "nleftrightarrow", "LEFT RIGHT ARROW WITH STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021AF), "rel", "downzigzagarrow", "DOWNWARDS ZIGZAG ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021B0), "rel", "Lsh", "UPWARDS ARROW WITH TIP LEFTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021B1), "rel", "Rsh", "UPWARDS ARROW WITH TIP RIGHTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021B2), "rel", "Ldsh", "DOWNWARDS ARROW WITH TIP LEFTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021B3), "rel", "Rdsh", "DOWNWARDS ARROW WITH TIP RIGHTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021B4), "ord", "linefeed", "RIGHTWARDS ARROW WITH CORNER DOWNWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021B5), "ord", "carriagereturn", "DOWNWARDS ARROW WITH CORNER LEFTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021B6), "rel", "curvearrowleft", "ANTICLOCKWISE TOP SEMICIRCLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021B7), "rel", "curvearrowright", "CLOCKWISE TOP SEMICIRCLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021B8), "ord", "barovernorthwestarrow", "NORTH WEST ARROW TO LONG BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021B9), "ord", "barleftarrowrightarrowbar", "LEFTWARDS ARROW TO BAR OVER RIGHTWARDS ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021BA), "rel", "acwopencirclearrow", "ANTICLOCKWISE OPEN CIRCLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021BB), "rel", "cwopencirclearrow", "CLOCKWISE OPEN CIRCLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021BC), "rel", "leftharpoonup", "LEFTWARDS HARPOON WITH BARB UPWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021BD), "rel", "leftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWNWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021BE), "rel", "upharpoonright", "UPWARDS HARPOON WITH BARB RIGHTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021BF), "rel", "upharpoonleft", "UPWARDS HARPOON WITH BARB LEFTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021C0), "rel", "rightharpoonup", "RIGHTWARDS HARPOON WITH BARB UPWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021C1), "rel", "rightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWNWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021C2), "rel", "downharpoonright", "DOWNWARDS HARPOON WITH BARB RIGHTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021C3), "rel", "downharpoonleft", "DOWNWARDS HARPOON WITH BARB LEFTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021C4), "rel", "rightleftarrows", "RIGHTWARDS ARROW OVER LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021C5), "rel", "updownarrows", "UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021C6), "rel", "leftrightarrows", "LEFTWARDS ARROW OVER RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021C7), "rel", "leftleftarrows", "LEFTWARDS PAIRED ARROWS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021C8), "rel", "upuparrows", "UPWARDS PAIRED ARROWS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021C9), "rel", "rightrightarrows", "RIGHTWARDS PAIRED ARROWS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021CA), "rel", "downdownarrows", "DOWNWARDS PAIRED ARROWS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021CB), "rel", "leftrightharpoons", "LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021CC), "rel", "rightleftharpoons", "RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021CD), "rel", "nLeftarrow", "LEFTWARDS DOUBLE ARROW WITH STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021CE), "rel", "nLeftrightarrow", "LEFT RIGHT DOUBLE ARROW WITH STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021CF), "rel", "nRightarrow", "RIGHTWARDS DOUBLE ARROW WITH STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021D0), "rel", "Leftarrow", "LEFTWARDS DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021D1), "rel", "Uparrow", "UPWARDS DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021D2), "rel", "Rightarrow", "RIGHTWARDS DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021D3), "rel", "Downarrow", "DOWNWARDS DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021D4), "rel", "Leftrightarrow", "LEFT RIGHT DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021D5), "rel", "Updownarrow", "UP DOWN DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021D6), "rel", "Nwarrow", "NORTH WEST DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021D7), "rel", "Nearrow", "NORTH EAST DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021D8), "rel", "Searrow", "SOUTH EAST DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021D9), "rel", "Swarrow", "SOUTH WEST DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021DA), "rel", "Lleftarrow", "LEFTWARDS TRIPLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021DB), "rel", "Rrightarrow", "RIGHTWARDS TRIPLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021DC), "rel", "leftsquigarrow", "LEFTWARDS SQUIGGLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021DD), "rel", "rightsquigarrow", "RIGHTWARDS SQUIGGLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021DE), "rel", "nHuparrow", "UPWARDS ARROW WITH DOUBLE STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021DF), "rel", "nHdownarrow", "DOWNWARDS ARROW WITH DOUBLE STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021E0), "rel", "leftdasharrow", "LEFTWARDS DASHED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021E1), "rel", "updasharrow", "UPWARDS DASHED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021E2), "rel", "rightdasharrow", "RIGHTWARDS DASHED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021E3), "rel", "downdasharrow", "DOWNWARDS DASHED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021E4), "rel", "barleftarrow", "LEFTWARDS ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021E5), "rel", "rightarrowbar", "RIGHTWARDS ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021E6), "rel", "leftwhitearrow", "LEFTWARDS WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021E7), "rel", "upwhitearrow", "UPWARDS WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021E8), "rel", "rightwhitearrow", "RIGHTWARDS WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021E9), "rel", "downwhitearrow", "DOWNWARDS WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021EA), "rel", "whitearrowupfrombar", "UPWARDS WHITE ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021EB), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021EC), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL WITH HORIZONTAL BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021ED), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL WITH VERTICAL BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021EE), "rel", nil, "UPWARDS WHITE DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021EF), "rel", nil, "UPWARDS WHITE DOUBLE ARROW ON PEDESTAL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021F0), "rel", nil, "RIGHTWARDS WHITE ARROW FROM WALL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021F1), "rel", nil, "NORTH WEST ARROW TO CORNER", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021F2), "rel", nil, "SOUTH EAST ARROW TO CORNER", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x021F3), "rel", nil, "UP DOWN WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021F4), "rel", "circleonrightarrow", "RIGHT ARROW WITH SMALL CIRCLE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021F5), "rel", "downuparrows", "DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021F6), "rel", "rightthreearrows", "THREE RIGHTWARDS ARROWS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021F7), "rel", "nvleftarrow", "LEFTWARDS ARROW WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021F8), "rel", "nvrightarrow", "RIGHTWARDS ARROW WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021F9), "rel", "nvleftrightarrow", "LEFT RIGHT ARROW WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021FA), "rel", "nVleftarrow", "LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021FB), "rel", "nVrightarrow", "RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021FC), "rel", "nVleftrightarrow", "LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021FD), "rel", "leftarrowtriangle", "LEFTWARDS OPEN-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021FE), "rel", "rightarrowtriangle", "RIGHTWARDS OPEN-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x021FF), "rel", "leftrightarrowtriangle", "LEFT RIGHT OPEN-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02200), "ord", "forall", "FOR ALL", { + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) +addSymbol(U(0x02201), "ord", "complement", "COMPLEMENT", { + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, +}) +addSymbol(U(0x02202), "ord", "partial", "PARTIAL DIFFERENTIAL", { + { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, +}) +addSymbol(U(0x02203), "ord", "exists", "THERE EXISTS", { + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) +addSymbol(U(0x02204), "ord", "nexists", "THERE DOES NOT EXIST", { + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) +addSymbol(U(0x02205), "ord", "varnothing", "EMPTY SET", nil) +addSymbol(U(0x02206), "ord", "increment", "INCREMENT", { + { form = "infix", lspace = 0, priority = 720, rspace = 0 }, +}) +addSymbol(U(0x02207), "ord", "nabla", "NABLA", { + { form = "prefix", lspace = 0, priority = 780, rspace = 0 }, +}) +addSymbol(U(0x02208), "rel", "in", "ELEMENT OF", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02209), "rel", "notin", "NOT AN ELEMENT OF", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x0220A), "rel", "smallin", "SMALL ELEMENT OF", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x0220B), "rel", "ni", "CONTAINS AS MEMBER", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x0220C), "rel", "nni", "DOES NOT CONTAIN AS MEMBER", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x0220D), "rel", "smallni", "SMALL CONTAINS AS MEMBER", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x0220E), "ord", "QED", "END OF PROOF", nil) +addSymbol(U(0x0220F), "big", "prod", "N-ARY PRODUCT", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02210), "big", "coprod", "N-ARY COPRODUCT", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02211), "big", "sum", "N-ARY SUMMATION", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02212), "bin", "minus", "MINUS SIGN", { + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02213), "bin", "mp", "MINUS-OR-PLUS SIGN", { + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02214), "bin", "dotplus", "DOT PLUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02215), "bin", "divslash", "DIVISION SLASH", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x02216), "bin", "setminus", "SET MINUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02217), "bin", "ast", "ASTERISK OPERATOR", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02218), "bin", "vysmwhtcircle", "RING OPERATOR", { + { form = "infix", lspace = 3, priority = 900, rspace = 3 }, +}) +addSymbol(U(0x02219), "bin", "vysmblkcircle", "BULLET OPERATOR", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x0221A), "big", "sqrt", "SQUARE ROOT", { + { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, +}) +addSymbol(U(0x0221B), "big", "cuberoot", "CUBE ROOT", { + { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, +}) +addSymbol(U(0x0221C), "big", "fourthroot", "FOURTH ROOT", { + { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, +}) +addSymbol(U(0x0221D), "rel", "propto", "PROPORTIONAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0221E), "ord", "infty", "INFINITY", nil) +addSymbol(U(0x0221F), "ord", "rightangle", "RIGHT ANGLE", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x02220), "ord", "angle", "ANGLE", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x02221), "ord", "measuredangle", "MEASURED ANGLE", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x02222), "ord", "sphericalangle", "SPHERICAL ANGLE", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x02223), "rel", "mid", "DIVIDES", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02224), "rel", "nmid", "DOES NOT DIVIDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02225), "rel", "parallel", "PARALLEL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02226), "rel", "nparallel", "NOT PARALLEL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02227), "bin", "wedge", "LOGICAL AND", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x02228), "bin", "vee", "LOGICAL OR", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02229), "bin", "cap", "INTERSECTION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x0222A), "bin", "cup", "UNION", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x0222B), "ord", "int", "INTEGRAL", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x0222C), "ord", "iint", "DOUBLE INTEGRAL", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x0222D), "ord", "iiint", "TRIPLE INTEGRAL", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x0222E), "ord", "oint", "CONTOUR INTEGRAL", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x0222F), "ord", "oiint", "SURFACE INTEGRAL", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02230), "ord", "oiiint", "VOLUME INTEGRAL", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02231), "ord", "intclockwise", "CLOCKWISE INTEGRAL", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02232), "ord", "varointclockwise", "CLOCKWISE CONTOUR INTEGRAL", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02233), "ord", "ointctrclockwise", "ANTICLOCKWISE CONTOUR INTEGRAL", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02234), "rel", "therefore", "THEREFORE", { + { form = "prefix", lspace = 0, priority = 200, rspace = 0 }, +}) +addSymbol(U(0x02235), "rel", "because", "BECAUSE", { + { form = "prefix", lspace = 0, priority = 200, rspace = 0 }, +}) +addSymbol(U(0x02236), "rel", "mathratio", "RATIO", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x02237), "rel", "Colon", "PROPORTION", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02238), "bin", "dotminus", "DOT MINUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02239), "rel", "dashcolon", "EXCESS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0223A), "rel", "dotsminusdots", "GEOMETRIC PROPORTION", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0223B), "rel", "kernelcontraction", "HOMOTHETIC", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0223C), "rel", "sim", "TILDE OPERATOR", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) +addSymbol(U(0x0223D), "rel", "backsim", "REVERSED TILDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0223E), "bin", "invlazys", "INVERTED LAZY S", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0223F), "ord", "sinewave", "SINE WAVE", nil) +addSymbol(U(0x02240), "bin", "wr", "WREATH PRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02241), "rel", "nsim", "NOT TILDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02242), "rel", "eqsim", "MINUS TILDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02243), "rel", "simeq", "ASYMPTOTICALLY EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02244), "rel", "nsime", "NOT ASYMPTOTICALLY EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02245), "rel", "cong", "APPROXIMATELY EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02246), "rel", "simneqq", "APPROXIMATELY BUT NOT ACTUALLY EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02247), "rel", "ncong", "NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02248), "rel", "approx", "ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02249), "rel", "napprox", "NOT ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0224A), "rel", "approxeq", "ALMOST EQUAL OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0224B), "rel", "approxident", "TRIPLE TILDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0224C), "rel", "backcong", "ALL EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0224D), "rel", "asymp", "EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0224E), "rel", "Bumpeq", "GEOMETRICALLY EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0224F), "rel", "bumpeq", "DIFFERENCE BETWEEN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02250), "rel", "doteq", "APPROACHES THE LIMIT", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02251), "rel", "Doteq", "GEOMETRICALLY EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02252), "rel", "fallingdotseq", "APPROXIMATELY EQUAL TO OR THE IMAGE OF", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02253), "rel", "risingdotseq", "IMAGE OF OR APPROXIMATELY EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02254), "rel", "coloneq", "COLON EQUALS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02255), "rel", "eqcolon", "EQUALS COLON", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02256), "rel", "eqcirc", "RING IN EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02257), "rel", "circeq", "RING EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02258), "rel", "arceq", "CORRESPONDS TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02259), "rel", "wedgeq", "ESTIMATES", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0225A), "rel", "veeeq", "EQUIANGULAR TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0225B), "rel", "stareq", "STAR EQUALS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0225C), "rel", "triangleq", "DELTA EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0225D), "rel", "eqdef", "EQUAL TO BY DEFINITION", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0225E), "rel", "measeq", "MEASURED BY", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0225F), "rel", "questeq", "QUESTIONED EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02260), "rel", "ne", "NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02261), "rel", "equiv", "IDENTICAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02262), "rel", "nequiv", "NOT IDENTICAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02263), "rel", "Equiv", "STRICTLY EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02264), "rel", "leq", "LESS-THAN OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02265), "rel", "geq", "GREATER-THAN OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02266), "rel", "leqq", "LESS-THAN OVER EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02267), "rel", "geqq", "GREATER-THAN OVER EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02268), "rel", "lneqq", "LESS-THAN BUT NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02269), "rel", "gneqq", "GREATER-THAN BUT NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0226A), "rel", "ll", "MUCH LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0226B), "rel", "gg", "MUCH GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0226C), "rel", "between", "BETWEEN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0226D), "rel", "nasymp", "NOT EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0226E), "rel", "nless", "NOT LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0226F), "rel", "ngtr", "NOT GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02270), "rel", "nleq", "NEITHER LESS-THAN NOR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02271), "rel", "ngeq", "NEITHER GREATER-THAN NOR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02272), "rel", "lesssim", "LESS-THAN OR EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02273), "rel", "gtrsim", "GREATER-THAN OR EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02274), "rel", "nlesssim", "NEITHER LESS-THAN NOR EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02275), "rel", "ngtrsim", "NEITHER GREATER-THAN NOR EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02276), "rel", "lessgtr", "LESS-THAN OR GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02277), "rel", "gtrless", "GREATER-THAN OR LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02278), "rel", "nlessgtr", "NEITHER LESS-THAN NOR GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02279), "rel", "ngtrless", "NEITHER GREATER-THAN NOR LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0227A), "rel", "prec", "PRECEDES", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0227B), "rel", "succ", "SUCCEEDS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0227C), "rel", "preccurlyeq", "PRECEDES OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0227D), "rel", "succcurlyeq", "SUCCEEDS OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0227E), "rel", "precsim", "PRECEDES OR EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0227F), "rel", "succsim", "SUCCEEDS OR EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02280), "rel", "nprec", "DOES NOT PRECEDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02281), "rel", "nsucc", "DOES NOT SUCCEED", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02282), "rel", "subset", "SUBSET OF", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02283), "rel", "supset", "SUPERSET OF", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02284), "rel", "nsubset", "NOT A SUBSET OF", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02285), "rel", "nsupset", "NOT A SUPERSET OF", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02286), "rel", "subseteq", "SUBSET OF OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02287), "rel", "supseteq", "SUPERSET OF OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02288), "rel", "nsubseteq", "NEITHER A SUBSET OF NOR EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02289), "rel", "nsupseteq", "NEITHER A SUPERSET OF NOR EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x0228A), "rel", "subsetneq", "SUBSET OF WITH NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x0228B), "rel", "supsetneq", "SUPERSET OF WITH NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x0228C), "bin", "cupleftarrow", "MULTISET", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x0228D), "bin", "cupdot", "MULTISET MULTIPLICATION", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x0228E), "bin", "uplus", "MULTISET UNION", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x0228F), "rel", "sqsubset", "SQUARE IMAGE OF", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02290), "rel", "sqsupset", "SQUARE ORIGINAL OF", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02291), "rel", "sqsubseteq", "SQUARE IMAGE OF OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02292), "rel", "sqsupseteq", "SQUARE ORIGINAL OF OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02293), "bin", "sqcap", "SQUARE CAP", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02294), "bin", "sqcup", "SQUARE CUP", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x02295), "bin", "oplus", "CIRCLED PLUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02296), "bin", "ominus", "CIRCLED MINUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02297), "bin", "otimes", "CIRCLED TIMES", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02298), "bin", "oslash", "CIRCLED DIVISION SLASH", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x02299), "bin", "odot", "CIRCLED DOT OPERATOR", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x0229A), "bin", "circledcirc", "CIRCLED RING OPERATOR", { + { form = "infix", lspace = 3, priority = 900, rspace = 3 }, +}) +addSymbol(U(0x0229B), "bin", "circledast", "CIRCLED ASTERISK OPERATOR", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x0229C), "bin", "circledequal", "CIRCLED EQUALS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x0229D), "bin", "circleddash", "CIRCLED DASH", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x0229E), "bin", "boxplus", "SQUARED PLUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x0229F), "bin", "boxminus", "SQUARED MINUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x022A0), "bin", "boxtimes", "SQUARED TIMES", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x022A1), "bin", "boxdot", "SQUARED DOT OPERATOR", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x022A2), "rel", "vdash", "RIGHT TACK", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x022A3), "rel", "dashv", "LEFT TACK", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x022A4), "ord", "top", "DOWN TACK", nil) +addSymbol(U(0x022A5), "rel", "bot", "UP TACK", nil) +addSymbol(U(0x022A6), "rel", "assert", "ASSERTION", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022A7), "rel", "models", "MODELS", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x022A8), "rel", "vDash", "TRUE", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x022A9), "rel", "Vdash", "FORCES", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x022AA), "rel", "Vvdash", "TRIPLE VERTICAL BAR RIGHT TURNSTILE", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x022AB), "rel", "VDash", "DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x022AC), "rel", "nvdash", "DOES NOT PROVE", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x022AD), "rel", "nvDash", "NOT TRUE", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x022AE), "rel", "nVdash", "DOES NOT FORCE", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x022AF), "rel", "nVDash", "NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x022B0), "rel", "prurel", "PRECEDES UNDER RELATION", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022B1), "rel", "scurel", "SUCCEEDS UNDER RELATION", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022B2), "rel", "vartriangleleft", "NORMAL SUBGROUP OF", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022B3), "rel", "vartriangleright", "CONTAINS AS NORMAL SUBGROUP", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022B4), "rel", "trianglelefteq", "NORMAL SUBGROUP OF OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022B5), "rel", "trianglerighteq", "CONTAINS AS NORMAL SUBGROUP OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022B6), "rel", "origof", "ORIGINAL OF", { + { form = "infix", lspace = 5, priority = 220, rspace = 5 }, +}) +addSymbol(U(0x022B7), "rel", "imageof", "IMAGE OF", { + { form = "infix", lspace = 5, priority = 220, rspace = 5 }, +}) +addSymbol(U(0x022B8), "rel", "multimap", "MULTIMAP", { + { form = "infix", lspace = 5, priority = 220, rspace = 5 }, +}) +addSymbol(U(0x022B9), "bin", "hermitmatrix", "HERMITIAN CONJUGATE MATRIX", nil) +addSymbol(U(0x022BA), "bin", "intercal", "INTERCALATE", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x022BB), "bin", "veebar", "XOR", { + { form = "infix", lspace = 4, priority = 420, rspace = 4 }, +}) +addSymbol(U(0x022BC), "bin", "barwedge", "NAND", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x022BD), "bin", "barvee", "NOR", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x022BE), "ord", "measuredrightangle", "RIGHT ANGLE WITH ARC", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x022BF), "ord", "varlrtriangle", "RIGHT TRIANGLE", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x022C0), "big", "bigwedge", "N-ARY LOGICAL AND", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x022C1), "big", "bigvee", "N-ARY LOGICAL OR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x022C2), "big", "bigcap", "N-ARY INTERSECTION", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x022C3), "big", "bigcup", "N-ARY UNION", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x022C4), "bin", "smwhtdiamond", "DIAMOND OPERATOR", { + { form = "infix", lspace = 3, priority = 900, rspace = 3 }, +}) +addSymbol(U(0x022C5), "bin", "cdot", "DOT OPERATOR", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x022C6), "bin", "star", "STAR OPERATOR", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x022C7), "bin", "divideontimes", "DIVISION TIMES", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x022C8), "rel", "bowtie", "BOWTIE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022C9), "bin", "ltimes", "LEFT NORMAL FACTOR SEMIDIRECT PRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x022CA), "bin", "rtimes", "RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x022CB), "bin", "leftthreetimes", "LEFT SEMIDIRECT PRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x022CC), "bin", "rightthreetimes", "RIGHT SEMIDIRECT PRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x022CD), "rel", "backsimeq", "REVERSED TILDE EQUALS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022CE), "bin", "curlyvee", "CURLY LOGICAL OR", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x022CF), "bin", "curlywedge", "CURLY LOGICAL AND", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x022D0), "rel", "Subset", "DOUBLE SUBSET", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022D1), "rel", "Supset", "DOUBLE SUPERSET", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022D2), "bin", "Cap", "DOUBLE INTERSECTION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x022D3), "bin", "Cup", "DOUBLE UNION", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x022D4), "rel", "pitchfork", "PITCHFORK", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022D5), "rel", "equalparallel", "EQUAL AND PARALLEL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022D6), "rel", "lessdot", "LESS-THAN WITH DOT", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022D7), "rel", "gtrdot", "GREATER-THAN WITH DOT", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022D8), "rel", "lll", "VERY MUCH LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022D9), "rel", "ggg", "VERY MUCH GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022DA), "rel", "lesseqgtr", "LESS-THAN EQUAL TO OR GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022DB), "rel", "gtreqless", "GREATER-THAN EQUAL TO OR LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022DC), "rel", "eqless", "EQUAL TO OR LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022DD), "rel", "eqgtr", "EQUAL TO OR GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022DE), "rel", "curlyeqprec", "EQUAL TO OR PRECEDES", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022DF), "rel", "curlyeqsucc", "EQUAL TO OR SUCCEEDS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022E0), "rel", "npreccurlyeq", "DOES NOT PRECEDE OR EQUAL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022E1), "rel", "nsucccurlyeq", "DOES NOT SUCCEED OR EQUAL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022E2), "rel", "nsqsubseteq", "NOT SQUARE IMAGE OF OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022E3), "rel", "nsqsupseteq", "NOT SQUARE ORIGINAL OF OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022E4), "rel", "sqsubsetneq", "SQUARE IMAGE OF OR NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022E5), "rel", "sqsupsetneq", "SQUARE ORIGINAL OF OR NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022E6), "rel", "lnsim", "LESS-THAN BUT NOT EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022E7), "rel", "gnsim", "GREATER-THAN BUT NOT EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022E8), "rel", "precnsim", "PRECEDES BUT NOT EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022E9), "rel", "succnsim", "SUCCEEDS BUT NOT EQUIVALENT TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x022EA), "rel", "nvartriangleleft", "NOT NORMAL SUBGROUP OF", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022EB), "rel", "nvartriangleright", "DOES NOT CONTAIN AS NORMAL SUBGROUP", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022EC), "rel", "ntrianglelefteq", "NOT NORMAL SUBGROUP OF OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022ED), "rel", "ntrianglerighteq", "DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022EE), "rel", "vdots", "VERTICAL ELLIPSIS", nil) +addSymbol(U(0x022EF), "rel", "unicodecdots", "MIDLINE HORIZONTAL ELLIPSIS", nil) +addSymbol(U(0x022F0), "rel", "adots", "UP RIGHT DIAGONAL ELLIPSIS", nil) +addSymbol(U(0x022F1), "rel", "ddots", "DOWN RIGHT DIAGONAL ELLIPSIS", nil) +addSymbol(U(0x022F2), "rel", "disin", "ELEMENT OF WITH LONG HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022F3), "rel", "varisins", "ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022F4), "rel", "isins", "SMALL ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022F5), "rel", "isindot", "ELEMENT OF WITH DOT ABOVE", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022F6), "rel", "varisinobar", "ELEMENT OF WITH OVERBAR", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022F7), "rel", "isinobar", "SMALL ELEMENT OF WITH OVERBAR", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022F8), "rel", "isinvb", "ELEMENT OF WITH UNDERBAR", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022F9), "rel", "isinE", "ELEMENT OF WITH TWO HORIZONTAL STROKES", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022FA), "rel", "nisd", "CONTAINS WITH LONG HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022FB), "rel", "varnis", "CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022FC), "rel", "nis", "SMALL CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022FD), "rel", "varniobar", "CONTAINS WITH OVERBAR", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022FE), "rel", "niobar", "SMALL CONTAINS WITH OVERBAR", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x022FF), "rel", "bagmember", "Z NOTATION BAG MEMBERSHIP", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02300), "ord", "diameter", "DIAMETER SIGN", nil) +addSymbol(U(0x02301), "ord", nil, "ELECTRIC ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02302), "ord", "house", "HOUSE", nil) +addSymbol(U(0x02305), "bin", "varbarwedge", "PROJECTIVE", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02306), "bin", "vardoublebarwedge", "PERSPECTIVE", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02308), "open", "lceil", "LEFT CEILING", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02309), "close", "rceil", "RIGHT CEILING", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0230A), "open", "lfloor", "LEFT FLOOR", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0230B), "close", "rfloor", "RIGHT FLOOR", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02310), "ord", "invnot", "REVERSED NOT SIGN", { + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) +addSymbol(U(0x02311), "ord", "sqlozenge", "SQUARE LOZENGE", nil) +addSymbol(U(0x02312), "ord", "profline", "ARC", nil) +addSymbol(U(0x02313), "ord", "profsurf", "SEGMENT", nil) +addSymbol(U(0x02317), "ord", "viewdata", "VIEWDATA SQUARE", nil) +addSymbol(U(0x02319), "ord", "turnednot", "TURNED NOT SIGN", { + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) +addSymbol(U(0x0231C), "open", "ulcorner", "TOP LEFT CORNER", nil) +addSymbol(U(0x0231D), "close", "urcorner", "TOP RIGHT CORNER", nil) +addSymbol(U(0x0231E), "open", "llcorner", "BOTTOM LEFT CORNER", nil) +addSymbol(U(0x0231F), "close", "lrcorner", "BOTTOM RIGHT CORNER", nil) +addSymbol(U(0x02320), "ord", "inttop", "TOP HALF INTEGRAL", nil) +addSymbol(U(0x02321), "ord", "intbottom", "BOTTOM HALF INTEGRAL", nil) +addSymbol(U(0x02322), "rel", "frown", "FROWN", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x02323), "rel", "smile", "SMILE", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x02329), "ord", nil, "LEFT-POINTING ANGLE BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0232A), "ord", nil, "RIGHT-POINTING ANGLE BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0232C), "ord", "varhexagonlrbonds", "BENZENE RING", nil) +addSymbol(U(0x02332), "ord", "conictaper", "CONICAL TAPER", nil) +addSymbol(U(0x02336), "ord", "topbot", "APL FUNCTIONAL SYMBOL I-BEAM", nil) +addSymbol(U(0x0233D), "bin", "obar", "APL FUNCTIONAL SYMBOL CIRCLE STILE", nil) +addSymbol(U(0x0233F), "rel", "APLnotslash", "APL FUNCTIONAL SYMBOL SLASH BAR", nil) +addSymbol(U(0x02340), "ord", "APLnotbackslash", "APL FUNCTIONAL SYMBOL BACKSLASH BAR", nil) +addSymbol(U(0x02353), "ord", "APLboxupcaret", "APL FUNCTIONAL SYMBOL QUAD UP CARET", nil) +addSymbol(U(0x02370), "ord", "APLboxquestion", "APL FUNCTIONAL SYMBOL QUAD QUESTION", nil) +addSymbol(U(0x0237C), "rel", "rangledownzigzagarrow", "RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0238B), "ord", nil, "BROKEN CIRCLE WITH NORTHWEST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02394), "ord", "hexagon", "SOFTWARE-FUNCTION SYMBOL", nil) +addSymbol(U(0x0239B), "ord", "lparenuend", "LEFT PARENTHESIS UPPER HOOK", nil) +addSymbol(U(0x0239C), "ord", "lparenextender", "LEFT PARENTHESIS EXTENSION", nil) +addSymbol(U(0x0239D), "ord", "lparenlend", "LEFT PARENTHESIS LOWER HOOK", nil) +addSymbol(U(0x0239E), "ord", "rparenuend", "RIGHT PARENTHESIS UPPER HOOK", nil) +addSymbol(U(0x0239F), "ord", "rparenextender", "RIGHT PARENTHESIS EXTENSION", nil) +addSymbol(U(0x023A0), "ord", "rparenlend", "RIGHT PARENTHESIS LOWER HOOK", nil) +addSymbol(U(0x023A1), "ord", "lbrackuend", "LEFT SQUARE BRACKET UPPER CORNER", nil) +addSymbol(U(0x023A2), "ord", "lbrackextender", "LEFT SQUARE BRACKET EXTENSION", nil) +addSymbol(U(0x023A3), "ord", "lbracklend", "LEFT SQUARE BRACKET LOWER CORNER", nil) +addSymbol(U(0x023A4), "ord", "rbrackuend", "RIGHT SQUARE BRACKET UPPER CORNER", nil) +addSymbol(U(0x023A5), "ord", "rbrackextender", "RIGHT SQUARE BRACKET EXTENSION", nil) +addSymbol(U(0x023A6), "ord", "rbracklend", "RIGHT SQUARE BRACKET LOWER CORNER", nil) +addSymbol(U(0x023A7), "ord", "lbraceuend", "LEFT CURLY BRACKET UPPER HOOK", nil) +addSymbol(U(0x023A8), "ord", "lbracemid", "LEFT CURLY BRACKET MIDDLE PIECE", nil) +addSymbol(U(0x023A9), "ord", "lbracelend", "LEFT CURLY BRACKET LOWER HOOK", nil) +addSymbol(U(0x023AA), "ord", "vbraceextender", "CURLY BRACKET EXTENSION", nil) +addSymbol(U(0x023AB), "ord", "rbraceuend", "RIGHT CURLY BRACKET UPPER HOOK", nil) +addSymbol(U(0x023AC), "ord", "rbracemid", "RIGHT CURLY BRACKET MIDDLE PIECE", nil) +addSymbol(U(0x023AD), "ord", "rbracelend", "RIGHT CURLY BRACKET LOWER HOOK", nil) +addSymbol(U(0x023AE), "ord", "intextender", "INTEGRAL EXTENSION", nil) +addSymbol(U(0x023AF), "ord", "harrowextender", "HORIZONTAL LINE EXTENSION", nil) +addSymbol(U(0x023B0), "rel", "lmoustache", "UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION", nil) +addSymbol(U(0x023B1), "rel", "rmoustache", "UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION", nil) +addSymbol(U(0x023B2), "ord", "sumtop", "SUMMATION TOP", nil) +addSymbol(U(0x023B3), "ord", "sumbottom", "SUMMATION BOTTOM", nil) +addSymbol(U(0x023B4), "ord", "overbracket", "TOP SQUARE BRACKET", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x023B5), "ord", "underbracket", "BOTTOM SQUARE BRACKET", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x023B6), "ord", "bbrktbrk", "BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET", nil) +addSymbol(U(0x023B7), "ord", "sqrtbottom", "RADICAL SYMBOL BOTTOM", nil) +addSymbol(U(0x023B8), "ord", "lvboxline", "LEFT VERTICAL BOX LINE", nil) +addSymbol(U(0x023B9), "ord", "rvboxline", "RIGHT VERTICAL BOX LINE", nil) +addSymbol(U(0x023CD), "ord", nil, "SQUARE FOOT", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) +addSymbol(U(0x023CE), "ord", "varcarriagereturn", "RETURN SYMBOL", nil) +addSymbol(U(0x023DC), "ord", "overparen", "TOP PARENTHESIS", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x023DD), "ord", "underparen", "BOTTOM PARENTHESIS", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x023DE), "ord", "overbrace", "TOP CURLY BRACKET", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x023DF), "ord", "underbrace", "BOTTOM CURLY BRACKET", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x023E0), "ord", "obrbrak", "TOP TORTOISE SHELL BRACKET", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x023E1), "ord", "ubrbrak", "BOTTOM TORTOISE SHELL BRACKET", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x023E2), "ord", "trapezium", "WHITE TRAPEZIUM", nil) +addSymbol(U(0x023E3), "ord", "benzenr", "BENZENE RING WITH CIRCLE", nil) +addSymbol(U(0x023E4), "ord", "strns", "STRAIGHTNESS", nil) +addSymbol(U(0x023E5), "ord", "fltns", "FLATNESS", nil) +addSymbol(U(0x023E6), "ord", "accurrent", "AC CURRENT", nil) +addSymbol(U(0x023E7), "ord", "elinters", "ELECTRICAL INTERSECTION", nil) +addSymbol(U(0x02422), "ord", "blanksymbol", "BLANK SYMBOL", nil) +addSymbol(U(0x02423), "ord", "mathvisiblespace", "OPEN BOX", nil) +addSymbol(U(0x02506), "ord", "bdtriplevdash", "BOX DRAWINGS LIGHT TRIPLE DASH VERTICAL", nil) +addSymbol(U(0x02580), "ord", "blockuphalf", "UPPER HALF BLOCK", nil) +addSymbol(U(0x02584), "ord", "blocklowhalf", "LOWER HALF BLOCK", nil) +addSymbol(U(0x02588), "ord", "blockfull", "FULL BLOCK", nil) +addSymbol(U(0x0258C), "ord", "blocklefthalf", "LEFT HALF BLOCK", nil) +addSymbol(U(0x02590), "ord", "blockrighthalf", "RIGHT HALF BLOCK", nil) +addSymbol(U(0x02591), "ord", "blockqtrshaded", "LIGHT SHADE", nil) +addSymbol(U(0x02592), "ord", "blockhalfshaded", "MEDIUM SHADE", nil) +addSymbol(U(0x02593), "ord", "blockthreeqtrshaded", "DARK SHADE", nil) +addSymbol(U(0x025A0), "ord", "mdlgblksquare", "BLACK SQUARE", nil) +addSymbol(U(0x025A1), "ord", "mdlgwhtsquare", "WHITE SQUARE", nil) +addSymbol(U(0x025A2), "ord", "squoval", "WHITE SQUARE WITH ROUNDED CORNERS", nil) +addSymbol(U(0x025A3), "ord", "blackinwhitesquare", "WHITE SQUARE CONTAINING BLACK SMALL SQUARE", nil) +addSymbol(U(0x025A4), "ord", "squarehfill", "SQUARE WITH HORIZONTAL FILL", nil) +addSymbol(U(0x025A5), "ord", "squarevfill", "SQUARE WITH VERTICAL FILL", nil) +addSymbol(U(0x025A6), "ord", "squarehvfill", "SQUARE WITH ORTHOGONAL CROSSHATCH FILL", nil) +addSymbol(U(0x025A7), "ord", "squarenwsefill", "SQUARE WITH UPPER LEFT TO LOWER RIGHT FILL", nil) +addSymbol(U(0x025A8), "ord", "squareneswfill", "SQUARE WITH UPPER RIGHT TO LOWER LEFT FILL", nil) +addSymbol(U(0x025A9), "ord", "squarecrossfill", "SQUARE WITH DIAGONAL CROSSHATCH FILL", nil) +addSymbol(U(0x025AA), "ord", "smblksquare", "BLACK SMALL SQUARE", nil) +addSymbol(U(0x025AB), "ord", "smwhtsquare", "WHITE SMALL SQUARE", nil) +addSymbol(U(0x025AC), "ord", "hrectangleblack", "BLACK RECTANGLE", nil) +addSymbol(U(0x025AD), "ord", "hrectangle", "WHITE RECTANGLE", nil) +addSymbol(U(0x025AE), "ord", "vrectangleblack", "BLACK VERTICAL RECTANGLE", nil) +addSymbol(U(0x025AF), "ord", "vrectangle", "WHITE VERTICAL RECTANGLE", nil) +addSymbol(U(0x025B0), "ord", "parallelogramblack", "BLACK PARALLELOGRAM", nil) +addSymbol(U(0x025B1), "ord", "parallelogram", "WHITE PARALLELOGRAM", nil) +addSymbol(U(0x025B2), "bin", "bigblacktriangleup", "BLACK UP-POINTING TRIANGLE", nil) +addSymbol(U(0x025B3), "bin", "bigtriangleup", "WHITE UP-POINTING TRIANGLE", nil) +addSymbol(U(0x025B4), "bin", "blacktriangle", "BLACK UP-POINTING SMALL TRIANGLE", nil) +addSymbol(U(0x025B5), "bin", "vartriangle", "WHITE UP-POINTING SMALL TRIANGLE", nil) +addSymbol(U(0x025B6), "bin", "blacktriangleright", "BLACK RIGHT-POINTING TRIANGLE", nil) +addSymbol(U(0x025B7), "bin", "triangleright", "WHITE RIGHT-POINTING TRIANGLE", nil) +addSymbol(U(0x025B8), "bin", "smallblacktriangleright", "BLACK RIGHT-POINTING SMALL TRIANGLE", nil) +addSymbol(U(0x025B9), "bin", "smalltriangleright", "WHITE RIGHT-POINTING SMALL TRIANGLE", nil) +addSymbol(U(0x025BA), "ord", "blackpointerright", "BLACK RIGHT-POINTING POINTER", nil) +addSymbol(U(0x025BB), "ord", "whitepointerright", "WHITE RIGHT-POINTING POINTER", nil) +addSymbol(U(0x025BC), "bin", "bigblacktriangledown", "BLACK DOWN-POINTING TRIANGLE", nil) +addSymbol(U(0x025BD), "bin", "bigtriangledown", "WHITE DOWN-POINTING TRIANGLE", nil) +addSymbol(U(0x025BE), "bin", "blacktriangledown", "BLACK DOWN-POINTING SMALL TRIANGLE", nil) +addSymbol(U(0x025BF), "bin", "triangledown", "WHITE DOWN-POINTING SMALL TRIANGLE", nil) +addSymbol(U(0x025C0), "bin", "blacktriangleleft", "BLACK LEFT-POINTING TRIANGLE", nil) +addSymbol(U(0x025C1), "bin", "triangleleft", "WHITE LEFT-POINTING TRIANGLE", nil) +addSymbol(U(0x025C2), "bin", "smallblacktriangleleft", "BLACK LEFT-POINTING SMALL TRIANGLE", nil) +addSymbol(U(0x025C3), "bin", "smalltriangleleft", "WHITE LEFT-POINTING SMALL TRIANGLE", nil) +addSymbol(U(0x025C4), "bin", "blackpointerleft", "BLACK LEFT-POINTING POINTER", nil) +addSymbol(U(0x025C5), "bin", "whitepointerleft", "WHITE LEFT-POINTING POINTER", nil) +addSymbol(U(0x025C6), "ord", "mdlgblkdiamond", "BLACK DIAMOND", nil) +addSymbol(U(0x025C7), "ord", "mdlgwhtdiamond", "WHITE DIAMOND", nil) +addSymbol(U(0x025C8), "ord", "blackinwhitediamond", "WHITE DIAMOND CONTAINING BLACK SMALL DIAMOND", nil) +addSymbol(U(0x025C9), "ord", "fisheye", "FISHEYE", nil) +addSymbol(U(0x025CA), "bin", "mdlgwhtlozenge", "LOZENGE", nil) +addSymbol(U(0x025CB), "bin", "mdlgwhtcircle", "WHITE CIRCLE", nil) +addSymbol(U(0x025CC), "ord", "dottedcircle", "DOTTED CIRCLE", nil) +addSymbol(U(0x025CD), "ord", "circlevertfill", "CIRCLE WITH VERTICAL FILL", nil) +addSymbol(U(0x025CE), "ord", "bullseye", "BULLSEYE", nil) +addSymbol(U(0x025CF), "ord", "mdlgblkcircle", "BLACK CIRCLE", nil) +addSymbol(U(0x025D0), "ord", "circlelefthalfblack", "CIRCLE WITH LEFT HALF BLACK", nil) +addSymbol(U(0x025D1), "ord", "circlerighthalfblack", "CIRCLE WITH RIGHT HALF BLACK", nil) +addSymbol(U(0x025D2), "ord", "circlebottomhalfblack", "CIRCLE WITH LOWER HALF BLACK", nil) +addSymbol(U(0x025D3), "ord", "circletophalfblack", "CIRCLE WITH UPPER HALF BLACK", nil) +addSymbol(U(0x025D4), "ord", "circleurquadblack", "CIRCLE WITH UPPER RIGHT QUADRANT BLACK", nil) +addSymbol(U(0x025D5), "ord", "blackcircleulquadwhite", "CIRCLE WITH ALL BUT UPPER LEFT QUADRANT BLACK", nil) +addSymbol(U(0x025D6), "ord", "blacklefthalfcircle", "LEFT HALF BLACK CIRCLE", nil) +addSymbol(U(0x025D7), "ord", "blackrighthalfcircle", "RIGHT HALF BLACK CIRCLE", nil) +addSymbol(U(0x025D8), "ord", "inversebullet", "INVERSE BULLET", nil) +addSymbol(U(0x025D9), "ord", "inversewhitecircle", "INVERSE WHITE CIRCLE", nil) +addSymbol(U(0x025DA), "ord", "invwhiteupperhalfcircle", "UPPER HALF INVERSE WHITE CIRCLE", nil) +addSymbol(U(0x025DB), "ord", "invwhitelowerhalfcircle", "LOWER HALF INVERSE WHITE CIRCLE", nil) +addSymbol(U(0x025DC), "ord", "ularc", "UPPER LEFT QUADRANT CIRCULAR ARC", nil) +addSymbol(U(0x025DD), "ord", "urarc", "UPPER RIGHT QUADRANT CIRCULAR ARC", nil) +addSymbol(U(0x025DE), "ord", "lrarc", "LOWER RIGHT QUADRANT CIRCULAR ARC", nil) +addSymbol(U(0x025DF), "ord", "llarc", "LOWER LEFT QUADRANT CIRCULAR ARC", nil) +addSymbol(U(0x025E0), "ord", "topsemicircle", "UPPER HALF CIRCLE", nil) +addSymbol(U(0x025E1), "ord", "botsemicircle", "LOWER HALF CIRCLE", nil) +addSymbol(U(0x025E2), "ord", "lrblacktriangle", "BLACK LOWER RIGHT TRIANGLE", nil) +addSymbol(U(0x025E3), "ord", "llblacktriangle", "BLACK LOWER LEFT TRIANGLE", nil) +addSymbol(U(0x025E4), "ord", "ulblacktriangle", "BLACK UPPER LEFT TRIANGLE", nil) +addSymbol(U(0x025E5), "ord", "urblacktriangle", "BLACK UPPER RIGHT TRIANGLE", nil) +addSymbol(U(0x025E6), "bin", "smwhtcircle", "WHITE BULLET", nil) +addSymbol(U(0x025E7), "ord", "squareleftblack", "SQUARE WITH LEFT HALF BLACK", nil) +addSymbol(U(0x025E8), "ord", "squarerightblack", "SQUARE WITH RIGHT HALF BLACK", nil) +addSymbol(U(0x025E9), "ord", "squareulblack", "SQUARE WITH UPPER LEFT DIAGONAL HALF BLACK", nil) +addSymbol(U(0x025EA), "ord", "squarelrblack", "SQUARE WITH LOWER RIGHT DIAGONAL HALF BLACK", nil) +addSymbol(U(0x025EB), "bin", "boxbar", "WHITE SQUARE WITH VERTICAL BISECTING LINE", nil) +addSymbol(U(0x025EC), "bin", "trianglecdot", "WHITE UP-POINTING TRIANGLE WITH DOT", nil) +addSymbol(U(0x025ED), "ord", "triangleleftblack", "UP-POINTING TRIANGLE WITH LEFT HALF BLACK", nil) +addSymbol(U(0x025EE), "ord", "trianglerightblack", "UP-POINTING TRIANGLE WITH RIGHT HALF BLACK", nil) +addSymbol(U(0x025EF), "ord", "lgwhtcircle", "LARGE CIRCLE", nil) +addSymbol(U(0x025F0), "ord", "squareulquad", "WHITE SQUARE WITH UPPER LEFT QUADRANT", nil) +addSymbol(U(0x025F1), "ord", "squarellquad", "WHITE SQUARE WITH LOWER LEFT QUADRANT", nil) +addSymbol(U(0x025F2), "ord", "squarelrquad", "WHITE SQUARE WITH LOWER RIGHT QUADRANT", nil) +addSymbol(U(0x025F3), "ord", "squareurquad", "WHITE SQUARE WITH UPPER RIGHT QUADRANT", nil) +addSymbol(U(0x025F4), "ord", "circleulquad", "WHITE CIRCLE WITH UPPER LEFT QUADRANT", nil) +addSymbol(U(0x025F5), "ord", "circlellquad", "WHITE CIRCLE WITH LOWER LEFT QUADRANT", nil) +addSymbol(U(0x025F6), "ord", "circlelrquad", "WHITE CIRCLE WITH LOWER RIGHT QUADRANT", nil) +addSymbol(U(0x025F7), "ord", "circleurquad", "WHITE CIRCLE WITH UPPER RIGHT QUADRANT", nil) +addSymbol(U(0x025F8), "bin", "ultriangle", "UPPER LEFT TRIANGLE", nil) +addSymbol(U(0x025F9), "bin", "urtriangle", "UPPER RIGHT TRIANGLE", nil) +addSymbol(U(0x025FA), "bin", "lltriangle", "LOWER LEFT TRIANGLE", nil) +addSymbol(U(0x025FB), "bin", "mdwhtsquare", "WHITE MEDIUM SQUARE", nil) +addSymbol(U(0x025FC), "bin", "mdblksquare", "BLACK MEDIUM SQUARE", nil) +addSymbol(U(0x025FD), "bin", "mdsmwhtsquare", "WHITE MEDIUM SMALL SQUARE", nil) +addSymbol(U(0x025FE), "bin", "mdsmblksquare", "BLACK MEDIUM SMALL SQUARE", nil) +addSymbol(U(0x025FF), "bin", "lrtriangle", "LOWER RIGHT TRIANGLE", nil) +addSymbol(U(0x02605), "bin", "bigstar", "BLACK STAR", nil) +addSymbol(U(0x02606), "bin", "bigwhitestar", "WHITE STAR", nil) +addSymbol(U(0x02609), "ord", "astrosun", "SUN", nil) +addSymbol(U(0x02621), "ord", "danger", "CAUTION SIGN", nil) +addSymbol(U(0x0263B), "ord", "blacksmiley", "BLACK SMILING FACE", nil) +addSymbol(U(0x0263C), "ord", "sun", "WHITE SUN WITH RAYS", nil) +addSymbol(U(0x0263D), "ord", "rightmoon", "FIRST QUARTER MOON", nil) +addSymbol(U(0x0263E), "ord", "leftmoon", "LAST QUARTER MOON", nil) +addSymbol(U(0x02640), "ord", "female", "FEMALE SIGN", nil) +addSymbol(U(0x02642), "ord", "male", "MALE SIGN", nil) +addSymbol(U(0x02660), "ord", "spadesuit", "BLACK SPADE SUIT", nil) +addSymbol(U(0x02661), "ord", "heartsuit", "WHITE HEART SUIT", nil) +addSymbol(U(0x02662), "ord", "diamondsuit", "WHITE DIAMOND SUIT", nil) +addSymbol(U(0x02663), "ord", "clubsuit", "BLACK CLUB SUIT", nil) +addSymbol(U(0x02664), "ord", "varspadesuit", "WHITE SPADE SUIT", nil) +addSymbol(U(0x02665), "ord", "varheartsuit", "BLACK HEART SUIT", nil) +addSymbol(U(0x02666), "ord", "vardiamondsuit", "BLACK DIAMOND SUIT", nil) +addSymbol(U(0x02667), "ord", "varclubsuit", "WHITE CLUB SUIT", nil) +addSymbol(U(0x02669), "ord", "quarternote", "QUARTER NOTE", nil) +addSymbol(U(0x0266A), "ord", "eighthnote", "EIGHTH NOTE", nil) +addSymbol(U(0x0266B), "ord", "twonotes", "BEAMED EIGHTH NOTES", nil) +addSymbol(U(0x0266D), "ord", "flat", "MUSIC FLAT SIGN", nil) +addSymbol(U(0x0266E), "ord", "natural", "MUSIC NATURAL SIGN", nil) +addSymbol(U(0x0266F), "ord", "sharp", "MUSIC SHARP SIGN", nil) +addSymbol(U(0x0267E), "ord", "acidfree", "PERMANENT PAPER SIGN", nil) +addSymbol(U(0x02680), "ord", "dicei", "DIE FACE-1", nil) +addSymbol(U(0x02681), "ord", "diceii", "DIE FACE-2", nil) +addSymbol(U(0x02682), "ord", "diceiii", "DIE FACE-3", nil) +addSymbol(U(0x02683), "ord", "diceiv", "DIE FACE-4", nil) +addSymbol(U(0x02684), "ord", "dicev", "DIE FACE-5", nil) +addSymbol(U(0x02685), "ord", "dicevi", "DIE FACE-6", nil) +addSymbol(U(0x02686), "ord", "circledrightdot", "WHITE CIRCLE WITH DOT RIGHT", nil) +addSymbol(U(0x02687), "ord", "circledtwodots", "WHITE CIRCLE WITH TWO DOTS", nil) +addSymbol(U(0x02688), "ord", "blackcircledrightdot", "BLACK CIRCLE WITH WHITE DOT RIGHT", nil) +addSymbol(U(0x02689), "ord", "blackcircledtwodots", "BLACK CIRCLE WITH TWO WHITE DOTS", nil) +addSymbol(U(0x026A5), "ord", "Hermaphrodite", "MALE AND FEMALE SIGN", nil) +addSymbol(U(0x026AA), "ord", "mdwhtcircle", "MEDIUM WHITE CIRCLE", nil) +addSymbol(U(0x026AB), "ord", "mdblkcircle", "MEDIUM BLACK CIRCLE", nil) +addSymbol(U(0x026AC), "ord", "mdsmwhtcircle", "MEDIUM SMALL WHITE CIRCLE", nil) +addSymbol(U(0x026B2), "ord", "neuter", "NEUTER", nil) +addSymbol(U(0x02713), "ord", "checkmark", "CHECK MARK", nil) +addSymbol(U(0x02720), "ord", "maltese", "MALTESE CROSS", nil) +addSymbol(U(0x0272A), "ord", "circledstar", "CIRCLED WHITE STAR", nil) +addSymbol(U(0x02736), "ord", "varstar", "SIX POINTED BLACK STAR", nil) +addSymbol(U(0x0273D), "ord", "dingasterisk", "HEAVY TEARDROP-SPOKED ASTERISK", nil) +addSymbol(U(0x02772), "open", "lbrbrak", "LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02773), "close", "rbrbrak", "LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02794), "ord", nil, "HEAVY WIDE-HEADED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02795), "ord", nil, "HEAVY PLUS SIGN", { + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02796), "ord", nil, "HEAVY MINUS SIGN", { + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02797), "ord", nil, "HEAVY DIVISION SIGN", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x02798), "ord", nil, "HEAVY SOUTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02799), "ord", nil, "HEAVY RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0279A), "ord", nil, "HEAVY NORTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0279B), "ord", "draftingarrow", "DRAFTING POINT RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0279C), "ord", nil, "HEAVY ROUND-TIPPED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0279D), "ord", nil, "TRIANGLE-HEADED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0279E), "ord", nil, "HEAVY TRIANGLE-HEADED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0279F), "ord", nil, "DASHED TRIANGLE-HEADED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027A0), "ord", nil, "HEAVY DASHED TRIANGLE-HEADED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027A1), "ord", nil, "BLACK RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027A5), "ord", nil, "HEAVY BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027A6), "ord", nil, "HEAVY BLACK CURVED UPWARDS AND RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027A7), "ord", nil, "SQUAT BLACK RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x027A8), "ord", nil, "HEAVY CONCAVE-POINTED BLACK RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027A9), "ord", nil, "RIGHT-SHADED WHITE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027AA), "ord", nil, "LEFT-SHADED WHITE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027AB), "ord", nil, "BACK-TILTED SHADOWED WHITE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027AC), "ord", nil, "FRONT-TILTED SHADOWED WHITE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027AD), "ord", nil, "HEAVY LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027AE), "ord", nil, "HEAVY UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027AF), "ord", nil, "NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027B1), "ord", nil, "NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027B2), "ord", nil, "CIRCLED HEAVY WHITE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x027B3), "ord", nil, "WHITE-FEATHERED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027B4), "ord", nil, "BLACK-FEATHERED SOUTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x027B5), "ord", nil, "BLACK-FEATHERED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027B6), "ord", nil, "BLACK-FEATHERED NORTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x027B7), "ord", nil, "HEAVY BLACK-FEATHERED SOUTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x027B8), "ord", nil, "HEAVY BLACK-FEATHERED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027B9), "ord", nil, "HEAVY BLACK-FEATHERED NORTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x027BA), "ord", nil, "TEARDROP-BARBED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027BB), "ord", nil, "HEAVY TEARDROP-SHANKED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027BC), "ord", nil, "WEDGE-TAILED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027BD), "ord", nil, "HEAVY WEDGE-TAILED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027BE), "ord", nil, "OPEN-OUTLINED RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027C0), "ord", "threedangle", "THREE DIMENSIONAL ANGLE", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x027C1), "ord", "whiteinwhitetriangle", "WHITE TRIANGLE CONTAINING SMALL WHITE TRIANGLE", nil) +addSymbol(U(0x027C2), "rel", "perp", "PERPENDICULAR", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x027C3), "rel", "subsetcirc", "OPEN SUBSET", nil) +addSymbol(U(0x027C4), "rel", "supsetcirc", "OPEN SUPERSET", nil) +addSymbol(U(0x027C5), "rel", "lbag", "LEFT S-SHAPED BAG DELIMITER", nil) +addSymbol(U(0x027C6), "rel", "rbag", "RIGHT S-SHAPED BAG DELIMITER", nil) +addSymbol(U(0x027C7), "rel", "veedot", "OR WITH DOT INSIDE", nil) +addSymbol(U(0x027C8), "rel", "bsolhsub", "REVERSE SOLIDUS PRECEDING SUBSET", nil) +addSymbol(U(0x027C9), "rel", "suphsol", "SUPERSET PRECEDING SOLIDUS", nil) +addSymbol(U(0x027CA), "rel", nil, "VERTICAL BAR WITH HORIZONTAL STROKE", nil) +addSymbol(U(0x027CB), "rel", "diagup", "MATHEMATICAL RISING DIAGONAL", { + { form = "infix", lspace = 3, priority = 680, rspace = 3 }, +}) +addSymbol(U(0x027CC), "big", "longdivision", "LONG DIVISION", nil) +addSymbol(U(0x027CD), "rel", "diagdown", "MATHEMATICAL FALLING DIAGONAL", { + { form = "infix", lspace = 3, priority = 680, rspace = 3 }, +}) +addSymbol(U(0x027CE), "bin", nil, "SQUARED LOGICAL AND", nil) +addSymbol(U(0x027CF), "bin", nil, "SQUARED LOGICAL OR", nil) +addSymbol(U(0x027D0), "ord", "diamondcdot", "WHITE DIAMOND WITH CENTRED DOT", nil) +addSymbol(U(0x027D1), "bin", "wedgedot", "AND WITH DOT", nil) +addSymbol(U(0x027D2), "rel", "upin", "ELEMENT OF OPENING UPWARDS", nil) +addSymbol(U(0x027D3), "rel", "pullback", "LOWER RIGHT CORNER WITH DOT", nil) +addSymbol(U(0x027D4), "rel", "pushout", "UPPER LEFT CORNER WITH DOT", nil) +addSymbol(U(0x027D5), "big", "leftouterjoin", "LEFT OUTER JOIN", nil) +addSymbol(U(0x027D6), "big", "rightouterjoin", "RIGHT OUTER JOIN", nil) +addSymbol(U(0x027D7), "big", "fullouterjoin", "FULL OUTER JOIN", nil) +addSymbol(U(0x027D8), "big", "bigbot", "LARGE UP TACK", nil) +addSymbol(U(0x027D9), "big", "bigtop", "LARGE DOWN TACK", nil) +addSymbol(U(0x027DA), "rel", "DashVDash", "LEFT AND RIGHT DOUBLE TURNSTILE", nil) +addSymbol(U(0x027DB), "rel", "dashVdash", "LEFT AND RIGHT TACK", nil) +addSymbol(U(0x027DC), "rel", "multimapinv", "LEFT MULTIMAP", nil) +addSymbol(U(0x027DD), "rel", "vlongdash", "LONG RIGHT TACK", nil) +addSymbol(U(0x027DE), "rel", "longdashv", "LONG LEFT TACK", nil) +addSymbol(U(0x027DF), "rel", "cirbot", "UP TACK WITH CIRCLE ABOVE", nil) +addSymbol(U(0x027E0), "bin", "lozengeminus", "LOZENGE DIVIDED BY HORIZONTAL RULE", nil) +addSymbol(U(0x027E1), "bin", "concavediamond", "WHITE CONCAVE-SIDED DIAMOND", nil) +addSymbol(U(0x027E2), "bin", "concavediamondtickleft", "WHITE CONCAVE-SIDED DIAMOND WITH LEFTWARDS TICK", nil) +addSymbol(U(0x027E3), "bin", "concavediamondtickright", "WHITE CONCAVE-SIDED DIAMOND WITH RIGHTWARDS TICK", nil) +addSymbol(U(0x027E4), "bin", "whitesquaretickleft", "WHITE SQUARE WITH LEFTWARDS TICK", nil) +addSymbol(U(0x027E5), "bin", "whitesquaretickright", "WHITE SQUARE WITH RIGHTWARDS TICK", nil) +addSymbol(U(0x027E6), "open", "lBrack", "MATHEMATICAL LEFT WHITE SQUARE BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x027E7), "close", "rBrack", "MATHEMATICAL RIGHT WHITE SQUARE BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x027E8), "open", "langle", "MATHEMATICAL LEFT ANGLE BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x027E9), "close", "rangle", "MATHEMATICAL RIGHT ANGLE BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x027EA), "open", "lAngle", "MATHEMATICAL LEFT DOUBLE ANGLE BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x027EB), "close", "rAngle", "MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x027EC), "open", "Lbrbrak", "MATHEMATICAL LEFT WHITE TORTOISE SHELL BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x027ED), "close", "Rbrbrak", "MATHEMATICAL RIGHT WHITE TORTOISE SHELL BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x027EE), "open", "lgroup", "MATHEMATICAL LEFT FLATTENED PARENTHESIS", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x027EF), "close", "rgroup", "MATHEMATICAL RIGHT FLATTENED PARENTHESIS", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x027F0), "rel", "UUparrow", "UPWARDS QUADRUPLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027F1), "rel", "DDownarrow", "DOWNWARDS QUADRUPLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027F2), "rel", "acwgapcirclearrow", "ANTICLOCKWISE GAPPED CIRCLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x027F3), "rel", "cwgapcirclearrow", "CLOCKWISE GAPPED CIRCLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x027F4), "rel", "rightarrowonoplus", "RIGHT ARROW WITH CIRCLED PLUS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027F5), "rel", "longleftarrow", "LONG LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027F6), "rel", "longrightarrow", "LONG RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027F7), "rel", "longleftrightarrow", "LONG LEFT RIGHT ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027F8), "rel", "Longleftarrow", "LONG LEFTWARDS DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027F9), "rel", "Longrightarrow", "LONG RIGHTWARDS DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027FA), "rel", "Longleftrightarrow", "LONG LEFT RIGHT DOUBLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027FB), "rel", "longmapsfrom", "LONG LEFTWARDS ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027FC), "rel", "longmapsto", "LONG RIGHTWARDS ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027FD), "rel", "Longmapsfrom", "LONG LEFTWARDS DOUBLE ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027FE), "rel", "Longmapsto", "LONG RIGHTWARDS DOUBLE ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x027FF), "rel", "longrightsquigarrow", "LONG RIGHTWARDS SQUIGGLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02900), "rel", "nvtwoheadrightarrow", "RIGHTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02901), "rel", "nVtwoheadrightarrow", "RIGHTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02902), "rel", "nvLeftarrow", "LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02903), "rel", "nvRightarrow", "RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02904), "rel", "nvLeftrightarrow", "LEFT RIGHT DOUBLE ARROW WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02905), "rel", "twoheadmapsto", "RIGHTWARDS TWO-HEADED ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02906), "rel", "Mapsfrom", "LEFTWARDS DOUBLE ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02907), "rel", "Mapsto", "RIGHTWARDS DOUBLE ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02908), "rel", "downarrowbarred", "DOWNWARDS ARROW WITH HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02909), "rel", "uparrowbarred", "UPWARDS ARROW WITH HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0290A), "rel", "Uuparrow", "UPWARDS TRIPLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0290B), "rel", "Ddownarrow", "DOWNWARDS TRIPLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0290C), "rel", "leftbkarrow", "LEFTWARDS DOUBLE DASH ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0290D), "rel", "rightbkarrow", "RIGHTWARDS DOUBLE DASH ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0290E), "rel", "leftdbkarrow", "LEFTWARDS TRIPLE DASH ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0290F), "rel", "dbkarrow", "RIGHTWARDS TRIPLE DASH ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02910), "rel", "drbkarrow", "RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02911), "rel", "rightdotarrow", "RIGHTWARDS ARROW WITH DOTTED STEM", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02912), "rel", "baruparrow", "UPWARDS ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02913), "rel", "downarrowbar", "DOWNWARDS ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02914), "rel", "nvrightarrowtail", "RIGHTWARDS ARROW WITH TAIL WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02915), "rel", "nVrightarrowtail", "RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02916), "rel", "twoheadrightarrowtail", "RIGHTWARDS TWO-HEADED ARROW WITH TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02917), "rel", "nvtwoheadrightarrowtail", "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol( + U(0x02918), + "rel", + "nVtwoheadrightarrowtail", + "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol(U(0x02919), "rel", "lefttail", "LEFTWARDS ARROW-TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0291A), "rel", "righttail", "RIGHTWARDS ARROW-TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0291B), "rel", "leftdbltail", "LEFTWARDS DOUBLE ARROW-TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0291C), "rel", "rightdbltail", "RIGHTWARDS DOUBLE ARROW-TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0291D), "rel", "diamondleftarrow", "LEFTWARDS ARROW TO BLACK DIAMOND", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0291E), "rel", "rightarrowdiamond", "RIGHTWARDS ARROW TO BLACK DIAMOND", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0291F), "rel", "diamondleftarrowbar", "LEFTWARDS ARROW FROM BAR TO BLACK DIAMOND", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02920), "rel", "barrightarrowdiamond", "RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02921), "rel", "nwsearrow", "NORTH WEST AND SOUTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02922), "rel", "neswarrow", "NORTH EAST AND SOUTH WEST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02923), "rel", "hknwarrow", "NORTH WEST ARROW WITH HOOK", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02924), "rel", "hknearrow", "NORTH EAST ARROW WITH HOOK", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02925), "rel", "hksearrow", "SOUTH EAST ARROW WITH HOOK", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02926), "rel", "hkswarrow", "SOUTH WEST ARROW WITH HOOK", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02927), "rel", "tona", "NORTH WEST ARROW AND NORTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02928), "rel", "toea", "NORTH EAST ARROW AND SOUTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02929), "rel", "tosa", "SOUTH EAST ARROW AND SOUTH WEST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0292A), "rel", "towa", "SOUTH WEST ARROW AND NORTH WEST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0292B), "rel", "rdiagovfdiag", "RISING DIAGONAL CROSSING FALLING DIAGONAL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0292C), "rel", "fdiagovrdiag", "FALLING DIAGONAL CROSSING RISING DIAGONAL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0292D), "rel", "seovnearrow", "SOUTH EAST ARROW CROSSING NORTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0292E), "rel", "neovsearrow", "NORTH EAST ARROW CROSSING SOUTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0292F), "rel", "fdiagovnearrow", "FALLING DIAGONAL CROSSING NORTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02930), "rel", "rdiagovsearrow", "RISING DIAGONAL CROSSING SOUTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02931), "rel", "neovnwarrow", "NORTH EAST ARROW CROSSING NORTH WEST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02932), "rel", "nwovnearrow", "NORTH WEST ARROW CROSSING NORTH EAST ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02933), "rel", "rightcurvedarrow", "WAVE ARROW POINTING DIRECTLY RIGHT", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02934), "rel", "uprightcurvearrow", "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02935), "rel", "downrightcurvedarrow", "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02936), "rel", "leftdowncurvedarrow", "ARROW POINTING DOWNWARDS THEN CURVING LEFTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02937), "rel", "rightdowncurvedarrow", "ARROW POINTING DOWNWARDS THEN CURVING RIGHTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02938), "rel", "cwrightarcarrow", "RIGHT-SIDE ARC CLOCKWISE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02939), "rel", "acwleftarcarrow", "LEFT-SIDE ARC ANTICLOCKWISE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0293A), "rel", "acwoverarcarrow", "TOP ARC ANTICLOCKWISE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0293B), "rel", "acwunderarcarrow", "BOTTOM ARC ANTICLOCKWISE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0293C), "rel", "curvearrowrightminus", "TOP ARC CLOCKWISE ARROW WITH MINUS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0293D), "rel", "curvearrowleftplus", "TOP ARC ANTICLOCKWISE ARROW WITH PLUS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0293E), "rel", "cwundercurvearrow", "LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x0293F), "rel", "ccwundercurvearrow", "LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02940), "rel", "acwcirclearrow", "ANTICLOCKWISE CLOSED CIRCLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02941), "rel", "cwcirclearrow", "CLOCKWISE CLOSED CIRCLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02942), "rel", "rightarrowshortleftarrow", "RIGHTWARDS ARROW ABOVE SHORT LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02943), "rel", "leftarrowshortrightarrow", "LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02944), "rel", "shortrightarrowleftarrow", "SHORT RIGHTWARDS ARROW ABOVE LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02945), "rel", "rightarrowplus", "RIGHTWARDS ARROW WITH PLUS BELOW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02946), "rel", "leftarrowplus", "LEFTWARDS ARROW WITH PLUS BELOW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02947), "rel", "rightarrowx", "RIGHTWARDS ARROW THROUGH X", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02948), "rel", "leftrightarrowcircle", "LEFT RIGHT ARROW THROUGH SMALL CIRCLE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02949), "rel", "twoheaduparrowcircle", "UPWARDS TWO-HEADED ARROW FROM SMALL CIRCLE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0294A), "rel", "leftrightharpoonupdown", "LEFT BARB UP RIGHT BARB DOWN HARPOON", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0294B), "rel", "leftrightharpoondownup", "LEFT BARB DOWN RIGHT BARB UP HARPOON", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0294C), "rel", "updownharpoonrightleft", "UP BARB RIGHT DOWN BARB LEFT HARPOON", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0294D), "rel", "updownharpoonleftright", "UP BARB LEFT DOWN BARB RIGHT HARPOON", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0294E), "rel", "leftrightharpoonupup", "LEFT BARB UP RIGHT BARB UP HARPOON", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0294F), "rel", "updownharpoonrightright", "UP BARB RIGHT DOWN BARB RIGHT HARPOON", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02950), "rel", "leftrightharpoondowndown", "LEFT BARB DOWN RIGHT BARB DOWN HARPOON", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02951), "rel", "updownharpoonleftleft", "UP BARB LEFT DOWN BARB LEFT HARPOON", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02952), "rel", "barleftharpoonup", "LEFTWARDS HARPOON WITH BARB UP TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02953), "rel", "rightharpoonupbar", "RIGHTWARDS HARPOON WITH BARB UP TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02954), "rel", "barupharpoonright", "UPWARDS HARPOON WITH BARB RIGHT TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02955), "rel", "downharpoonrightbar", "DOWNWARDS HARPOON WITH BARB RIGHT TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02956), "rel", "barleftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWN TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02957), "rel", "rightharpoondownbar", "RIGHTWARDS HARPOON WITH BARB DOWN TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02958), "rel", "barupharpoonleft", "UPWARDS HARPOON WITH BARB LEFT TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02959), "rel", "downharpoonleftbar", "DOWNWARDS HARPOON WITH BARB LEFT TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0295A), "rel", "leftharpoonupbar", "LEFTWARDS HARPOON WITH BARB UP FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0295B), "rel", "barrightharpoonup", "RIGHTWARDS HARPOON WITH BARB UP FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0295C), "rel", "upharpoonrightbar", "UPWARDS HARPOON WITH BARB RIGHT FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0295D), "rel", "bardownharpoonright", "DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0295E), "rel", "leftharpoondownbar", "LEFTWARDS HARPOON WITH BARB DOWN FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0295F), "rel", "barrightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWN FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02960), "rel", "upharpoonleftbar", "UPWARDS HARPOON WITH BARB LEFT FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02961), "rel", "bardownharpoonleft", "DOWNWARDS HARPOON WITH BARB LEFT FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol( + U(0x02962), + "rel", + "leftharpoonsupdown", + "LEFTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB DOWN", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02963), + "rel", + "upharpoonsleftright", + "UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02964), + "rel", + "rightharpoonsupdown", + "RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02965), + "rel", + "downharpoonsleftright", + "DOWNWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02966), + "rel", + "leftrightharpoonsup", + "LEFTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB UP", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02967), + "rel", + "leftrightharpoonsdown", + "LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02968), + "rel", + "rightleftharpoonsup", + "RIGHTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB UP", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02969), + "rel", + "rightleftharpoonsdown", + "RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol(U(0x0296A), "rel", "leftharpoonupdash", "LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0296B), "rel", "dashleftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0296C), "rel", "rightharpoonupdash", "RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0296D), "rel", "dashrightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol( + U(0x0296E), + "rel", + "updownharpoonsleftright", + "UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x0296F), + "rel", + "downupharpoonsleftright", + "DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol(U(0x02970), "rel", "rightimply", "RIGHT DOUBLE ARROW WITH ROUNDED HEAD", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02971), "rel", "equalrightarrow", "EQUALS SIGN ABOVE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02972), "rel", "similarrightarrow", "TILDE OPERATOR ABOVE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02973), "rel", "leftarrowsimilar", "LEFTWARDS ARROW ABOVE TILDE OPERATOR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02974), "rel", "rightarrowsimilar", "RIGHTWARDS ARROW ABOVE TILDE OPERATOR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02975), "rel", "rightarrowapprox", "RIGHTWARDS ARROW ABOVE ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02976), "rel", "ltlarr", "LESS-THAN ABOVE LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02977), "rel", "leftarrowless", "LEFTWARDS ARROW THROUGH LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02978), "rel", "gtrarr", "GREATER-THAN ABOVE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02979), "rel", "subrarr", "SUBSET ABOVE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x0297A), "rel", "leftarrowsubset", "LEFTWARDS ARROW THROUGH SUBSET", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x0297B), "rel", "suplarr", "SUPERSET ABOVE LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x0297C), "rel", "leftfishtail", "LEFT FISH TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0297D), "rel", "rightfishtail", "RIGHT FISH TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0297E), "rel", "upfishtail", "UP FISH TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x0297F), "rel", "downfishtail", "DOWN FISH TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02980), "ord", "Vvert", "TRIPLE VERTICAL BAR DELIMITER", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02981), "ord", "mdsmblkcircle", "Z NOTATION SPOT", { + { form = "infix", lspace = 5, priority = 140, rspace = 5 }, +}) +addSymbol(U(0x02982), "ord", "typecolon", "Z NOTATION TYPE COLON", { + { form = "infix", lspace = 5, priority = 180, rspace = 5 }, +}) +addSymbol(U(0x02983), "open", "lBrace", "LEFT WHITE CURLY BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02984), "close", "rBrace", "RIGHT WHITE CURLY BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02985), "open", "lParen", "LEFT WHITE PARENTHESIS", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02986), "close", "rParen", "RIGHT WHITE PARENTHESIS", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02987), "open", "llparenthesis", "Z NOTATION LEFT IMAGE BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02988), "close", "rrparenthesis", "Z NOTATION RIGHT IMAGE BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02989), "open", "llangle", "Z NOTATION LEFT BINDING BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0298A), "close", "rrangle", "Z NOTATION RIGHT BINDING BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0298B), "open", "lbrackubar", "LEFT SQUARE BRACKET WITH UNDERBAR", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0298C), "close", "rbrackubar", "RIGHT SQUARE BRACKET WITH UNDERBAR", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0298D), "open", "lbrackultick", "LEFT SQUARE BRACKET WITH TICK IN TOP CORNER", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0298E), "close", "rbracklrtick", "RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0298F), "open", "lbracklltick", "LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02990), "close", "rbrackurtick", "RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02991), "open", "langledot", "LEFT ANGLE BRACKET WITH DOT", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02992), "close", "rangledot", "RIGHT ANGLE BRACKET WITH DOT", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02993), "open", "lparenless", "LEFT ARC LESS-THAN BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02994), "close", "rparengtr", "RIGHT ARC GREATER-THAN BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02995), "open", "Lparengtr", "DOUBLE LEFT ARC GREATER-THAN BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02996), "close", "Rparenless", "DOUBLE RIGHT ARC LESS-THAN BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02997), "open", "lblkbrbrak", "LEFT BLACK TORTOISE SHELL BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02998), "close", "rblkbrbrak", "RIGHT BLACK TORTOISE SHELL BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x02999), "ord", "fourvdots", "DOTTED FENCE", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x0299A), "ord", "vzigzag", "VERTICAL ZIGZAG LINE", nil) +addSymbol(U(0x0299B), "ord", "measuredangleleft", "MEASURED ANGLE OPENING LEFT", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x0299C), "ord", "rightanglesqr", "RIGHT ANGLE VARIANT WITH SQUARE", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x0299D), "ord", "rightanglemdot", "MEASURED RIGHT ANGLE WITH DOT", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x0299E), "ord", "angles", "ANGLE WITH S INSIDE", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x0299F), "ord", "angdnr", "ACUTE ANGLE", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029A0), "ord", "gtlpar", "SPHERICAL ANGLE OPENING LEFT", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029A1), "ord", "sphericalangleup", "SPHERICAL ANGLE OPENING UP", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029A2), "ord", "turnangle", "TURNED ANGLE", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029A3), "ord", "revangle", "REVERSED ANGLE", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029A4), "ord", "angleubar", "ANGLE WITH UNDERBAR", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029A5), "ord", "revangleubar", "REVERSED ANGLE WITH UNDERBAR", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029A6), "ord", "wideangledown", "OBLIQUE ANGLE OPENING UP", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029A7), "ord", "wideangleup", "OBLIQUE ANGLE OPENING DOWN", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029A8), "ord", "measanglerutone", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND RIGHT", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029A9), "ord", "measanglelutonw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND LEFT", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol( + U(0x029AA), + "ord", + "measanglerdtose", + "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND RIGHT", + { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + } +) +addSymbol(U(0x029AB), "ord", "measangleldtosw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND LEFT", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029AC), "ord", "measangleurtone", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND UP", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029AD), "ord", "measangleultonw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND UP", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol( + U(0x029AE), + "ord", + "measangledrtose", + "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND DOWN", + { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + } +) +addSymbol(U(0x029AF), "ord", "measangledltosw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND DOWN", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol(U(0x029B0), "ord", "revemptyset", "REVERSED EMPTY SET", nil) +addSymbol(U(0x029B1), "ord", "emptysetobar", "EMPTY SET WITH OVERBAR", nil) +addSymbol(U(0x029B2), "ord", "emptysetocirc", "EMPTY SET WITH SMALL CIRCLE ABOVE", nil) +addSymbol(U(0x029B3), "ord", "emptysetoarr", "EMPTY SET WITH RIGHT ARROW ABOVE", nil) +addSymbol(U(0x029B4), "ord", "emptysetoarrl", "EMPTY SET WITH LEFT ARROW ABOVE", nil) +addSymbol(U(0x029B5), "ord", "circlehbar", "CIRCLE WITH HORIZONTAL BAR", nil) +addSymbol(U(0x029B6), "bin", "circledvert", "CIRCLED VERTICAL BAR", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029B7), "bin", "circledparallel", "CIRCLED PARALLEL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029B8), "bin", "obslash", "CIRCLED REVERSE SOLIDUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x029B9), "bin", "operp", "CIRCLED PERPENDICULAR", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029BA), "ord", "obot", "CIRCLE DIVIDED BY HORIZONTAL BAR AND TOP HALF DIVIDED BY VERTICAL BAR", nil) +addSymbol(U(0x029BB), "ord", "olcross", "CIRCLE WITH SUPERIMPOSED X", nil) +addSymbol(U(0x029BC), "ord", "odotslashdot", "CIRCLED ANTICLOCKWISE-ROTATED DIVISION SIGN", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x029BD), "ord", "uparrowoncircle", "UP ARROW THROUGH CIRCLE", nil) +addSymbol(U(0x029BE), "ord", "circledwhitebullet", "CIRCLED WHITE BULLET", nil) +addSymbol(U(0x029BF), "ord", "circledbullet", "CIRCLED BULLET", nil) +addSymbol(U(0x029C0), "bin", "olessthan", "CIRCLED LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029C1), "bin", "ogreaterthan", "CIRCLED GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029C2), "ord", "cirscir", "CIRCLE WITH SMALL CIRCLE TO THE RIGHT", nil) +addSymbol(U(0x029C3), "ord", "cirE", "CIRCLE WITH TWO HORIZONTAL STROKES TO THE RIGHT", nil) +addSymbol(U(0x029C4), "bin", "boxdiag", "SQUARED RISING DIAGONAL SLASH", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x029C5), "bin", "boxbslash", "SQUARED FALLING DIAGONAL SLASH", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x029C6), "bin", "boxast", "SQUARED ASTERISK", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x029C7), "bin", "boxcircle", "SQUARED SMALL CIRCLE", { + { form = "infix", lspace = 3, priority = 900, rspace = 3 }, +}) +addSymbol(U(0x029C8), "bin", "boxbox", "SQUARED SQUARE", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x029C9), "ord", "boxonbox", "TWO JOINED SQUARES", nil) +addSymbol(U(0x029CA), "ord", "triangleodot", "TRIANGLE WITH DOT ABOVE", nil) +addSymbol(U(0x029CB), "ord", "triangleubar", "TRIANGLE WITH UNDERBAR", nil) +addSymbol(U(0x029CC), "ord", "triangles", "S IN TRIANGLE", nil) +addSymbol(U(0x029CD), "ord", "triangleserifs", "TRIANGLE WITH SERIFS AT BOTTOM", nil) +addSymbol(U(0x029CE), "rel", "rtriltri", "RIGHT TRIANGLE ABOVE LEFT TRIANGLE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029CF), "rel", "ltrivb", "LEFT TRIANGLE BESIDE VERTICAL BAR", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029D0), "rel", "vbrtri", "VERTICAL BAR BESIDE RIGHT TRIANGLE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029D1), "rel", "lfbowtie", "BOWTIE WITH LEFT HALF BLACK", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029D2), "rel", "rfbowtie", "BOWTIE WITH RIGHT HALF BLACK", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029D3), "rel", "fbowtie", "BLACK BOWTIE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029D4), "rel", "lftimes", "TIMES WITH LEFT HALF BLACK", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x029D5), "rel", "rftimes", "TIMES WITH RIGHT HALF BLACK", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x029D6), "bin", "hourglass", "WHITE HOURGLASS", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x029D7), "bin", "blackhourglass", "BLACK HOURGLASS", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x029D8), "open", "lvzigzag", "LEFT WIGGLY FENCE", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x029D9), "close", "rvzigzag", "RIGHT WIGGLY FENCE", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x029DA), "open", "Lvzigzag", "LEFT DOUBLE WIGGLY FENCE", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x029DB), "close", "Rvzigzag", "RIGHT DOUBLE WIGGLY FENCE", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x029DC), "ord", "iinfin", "INCOMPLETE INFINITY", nil) +addSymbol(U(0x029DD), "ord", "tieinfty", "TIE OVER INFINITY", nil) +addSymbol(U(0x029DE), "ord", "nvinfty", "INFINITY NEGATED WITH VERTICAL BAR", nil) +addSymbol(U(0x029DF), "rel", "dualmap", "DOUBLE-ENDED MULTIMAP", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x029E0), "ord", "laplac", "SQUARE WITH CONTOURED OUTLINE", nil) +addSymbol(U(0x029E1), "rel", "lrtriangleeq", "INCREASES AS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029E2), "bin", "shuffle", "SHUFFLE PRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x029E3), "rel", "eparsl", "EQUALS SIGN AND SLANTED PARALLEL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029E4), "rel", "smeparsl", "EQUALS SIGN AND SLANTED PARALLEL WITH TILDE ABOVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029E5), "rel", "eqvparsl", "IDENTICAL TO AND SLANTED PARALLEL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029E6), "rel", "gleichstark", "GLEICH STARK", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x029E7), "ord", "thermod", "THERMODYNAMIC", nil) +addSymbol(U(0x029E8), "ord", "downtriangleleftblack", "DOWN-POINTING TRIANGLE WITH LEFT HALF BLACK", nil) +addSymbol(U(0x029E9), "ord", "downtrianglerightblack", "DOWN-POINTING TRIANGLE WITH RIGHT HALF BLACK", nil) +addSymbol(U(0x029EA), "ord", "blackdiamonddownarrow", "BLACK DIAMOND WITH DOWN ARROW", nil) +addSymbol(U(0x029EB), "bin", "mdlgblklozenge", "BLACK LOZENGE", nil) +addSymbol(U(0x029EC), "ord", "circledownarrow", "WHITE CIRCLE WITH DOWN ARROW", nil) +addSymbol(U(0x029ED), "ord", "blackcircledownarrow", "BLACK CIRCLE WITH DOWN ARROW", nil) +addSymbol(U(0x029EE), "ord", "errbarsquare", "ERROR-BARRED WHITE SQUARE", nil) +addSymbol(U(0x029EF), "ord", "errbarblacksquare", "ERROR-BARRED BLACK SQUARE", nil) +addSymbol(U(0x029F0), "ord", "errbardiamond", "ERROR-BARRED WHITE DIAMOND", nil) +addSymbol(U(0x029F1), "ord", "errbarblackdiamond", "ERROR-BARRED BLACK DIAMOND", nil) +addSymbol(U(0x029F2), "ord", "errbarcircle", "ERROR-BARRED WHITE CIRCLE", nil) +addSymbol(U(0x029F3), "ord", "errbarblackcircle", "ERROR-BARRED BLACK CIRCLE", nil) +addSymbol(U(0x029F4), "rel", "ruledelayed", "RULE-DELAYED", { + { form = "infix", lspace = 5, priority = 220, rspace = 5 }, +}) +addSymbol(U(0x029F5), "bin", "reversesolidus", "REVERSE SOLIDUS OPERATOR", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x029F6), "bin", "dsol", "SOLIDUS WITH OVERBAR", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x029F7), "bin", "rsolbar", "REVERSE SOLIDUS WITH HORIZONTAL STROKE", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x029F8), "big", "xsol", "BIG SOLIDUS", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x029F9), "big", "xbsol", "BIG REVERSE SOLIDUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x029FA), "bin", "doubleplus", "DOUBLE PLUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x029FB), "bin", "tripleplus", "TRIPLE PLUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x029FC), "open", "lcurvyangle", "LEFT-POINTING CURVED ANGLE BRACKET", { + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x029FD), "close", "rcurvyangle", "RIGHT-POINTING CURVED ANGLE BRACKET", { + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) +addSymbol(U(0x029FE), "bin", "tplus", "TINY", nil) +addSymbol(U(0x029FF), "bin", "tminus", "MINY", nil) +addSymbol(U(0x02A00), "big", "bigodot", "N-ARY CIRCLED DOT OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A01), "big", "bigoplus", "N-ARY CIRCLED PLUS OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 460, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A02), "big", "bigotimes", "N-ARY CIRCLED TIMES OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A03), "big", "bigcupdot", "N-ARY UNION OPERATOR WITH DOT", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A04), "big", "biguplus", "N-ARY UNION OPERATOR WITH PLUS", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A05), "big", "bigsqcap", "N-ARY SQUARE INTERSECTION OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A06), "big", "bigsqcup", "N-ARY SQUARE UNION OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A07), "big", "conjquant", "TWO LOGICAL AND OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A08), "big", "disjquant", "TWO LOGICAL OR OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A09), "big", "bigtimes", "N-ARY TIMES OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A0A), "big", "modtwosum", "MODULO TWO SUM", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A0B), "ord", "sumint", "SUMMATION WITH INTEGRAL", { + { form = "prefix", largeop = true, lspace = 3, priority = 440, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A0C), "ord", "iiiint", "QUADRUPLE INTEGRAL OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A0D), "ord", "intbar", "FINITE PART INTEGRAL", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A0E), "ord", "intBar", "INTEGRAL WITH DOUBLE STROKE", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A0F), "ord", "fint", "INTEGRAL AVERAGE WITH SLASH", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A10), "big", "cirfnint", "CIRCULATION FUNCTION", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A11), "big", "awint", "ANTICLOCKWISE INTEGRATION", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A12), "big", "rppolint", "LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A13), "big", "scpolint", "LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A14), "big", "npolint", "LINE INTEGRATION NOT INCLUDING THE POLE", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A15), "ord", "pointint", "INTEGRAL AROUND A POINT OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A16), "ord", "sqint", "QUATERNION INTEGRAL OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A17), "ord", "intlarhk", "INTEGRAL WITH LEFTWARDS ARROW WITH HOOK", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A18), "ord", "intx", "INTEGRAL WITH TIMES SIGN", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A19), "ord", "intcap", "INTEGRAL WITH INTERSECTION", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A1A), "ord", "intcup", "INTEGRAL WITH UNION", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A1B), "ord", "upint", "INTEGRAL WITH OVERBAR", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A1C), "ord", "lowint", "INTEGRAL WITH UNDERBAR", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A1D), "big", "Join", "JOIN", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A1E), "big", "bigtriangleleft", "LARGE LEFT TRIANGLE OPERATOR", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A1F), "big", "zcmp", "Z NOTATION SCHEMA COMPOSITION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A20), "big", "zpipe", "Z NOTATION SCHEMA PIPING", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A21), "big", "zproject", "Z NOTATION SCHEMA PROJECTION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A22), "bin", "ringplus", "PLUS SIGN WITH SMALL CIRCLE ABOVE", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A23), "bin", "plushat", "PLUS SIGN WITH CIRCUMFLEX ACCENT ABOVE", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A24), "bin", "simplus", "PLUS SIGN WITH TILDE ABOVE", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A25), "bin", "plusdot", "PLUS SIGN WITH DOT BELOW", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A26), "bin", "plussim", "PLUS SIGN WITH TILDE BELOW", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A27), "bin", "plussubtwo", "PLUS SIGN WITH SUBSCRIPT TWO", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A28), "bin", "plustrif", "PLUS SIGN WITH BLACK TRIANGLE", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A29), "bin", "commaminus", "MINUS SIGN WITH COMMA ABOVE", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A2A), "bin", "minusdot", "MINUS SIGN WITH DOT BELOW", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A2B), "bin", "minusfdots", "MINUS SIGN WITH FALLING DOTS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A2C), "bin", "minusrdots", "MINUS SIGN WITH RISING DOTS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A2D), "bin", "opluslhrim", "PLUS SIGN IN LEFT HALF CIRCLE", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A2E), "bin", "oplusrhrim", "PLUS SIGN IN RIGHT HALF CIRCLE", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A2F), "bin", "vectimes", "VECTOR OR CROSS PRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A30), "bin", "dottimes", "MULTIPLICATION SIGN WITH DOT ABOVE", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A31), "bin", "timesbar", "MULTIPLICATION SIGN WITH UNDERBAR", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A32), "bin", "btimes", "SEMIDIRECT PRODUCT WITH BOTTOM CLOSED", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A33), "bin", "smashtimes", "SMASH PRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A34), "bin", "otimeslhrim", "MULTIPLICATION SIGN IN LEFT HALF CIRCLE", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A35), "bin", "otimesrhrim", "MULTIPLICATION SIGN IN RIGHT HALF CIRCLE", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A36), "bin", "otimeshat", "CIRCLED MULTIPLICATION SIGN WITH CIRCUMFLEX ACCENT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A37), "bin", "Otimes", "MULTIPLICATION SIGN IN DOUBLE CIRCLE", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A38), "bin", "odiv", "CIRCLED DIVISION SIGN", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x02A39), "bin", "triangleplus", "PLUS SIGN IN TRIANGLE", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A3A), "bin", "triangleminus", "MINUS SIGN IN TRIANGLE", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A3B), "bin", "triangletimes", "MULTIPLICATION SIGN IN TRIANGLE", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A3C), "bin", "intprod", "INTERIOR PRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A3D), "bin", "intprodr", "RIGHTHAND INTERIOR PRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A3E), "bin", "fcmp", "Z NOTATION RELATIONAL COMPOSITION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A3F), "bin", "amalg", "AMALGAMATION OR COPRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A40), "bin", "capdot", "INTERSECTION WITH DOT", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A41), "bin", "uminus", "UNION WITH MINUS SIGN", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x02A42), "bin", "barcup", "UNION WITH OVERBAR", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x02A43), "bin", "barcap", "INTERSECTION WITH OVERBAR", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A44), "bin", "capwedge", "INTERSECTION WITH LOGICAL AND", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A45), "bin", "cupvee", "UNION WITH LOGICAL OR", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x02A46), "bin", "cupovercap", "UNION ABOVE INTERSECTION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A47), "bin", "capovercup", "INTERSECTION ABOVE UNION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A48), "bin", "cupbarcap", "UNION ABOVE BAR ABOVE INTERSECTION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A49), "bin", "capbarcup", "INTERSECTION ABOVE BAR ABOVE UNION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A4A), "bin", "twocups", "UNION BESIDE AND JOINED WITH UNION", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x02A4B), "bin", "twocaps", "INTERSECTION BESIDE AND JOINED WITH INTERSECTION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A4C), "bin", "closedvarcup", "CLOSED UNION WITH SERIFS", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x02A4D), "bin", "closedvarcap", "CLOSED INTERSECTION WITH SERIFS", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A4E), "bin", "Sqcap", "DOUBLE SQUARE INTERSECTION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02A4F), "bin", "Sqcup", "DOUBLE SQUARE UNION", { + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) +addSymbol(U(0x02A50), "bin", "closedvarcupsmashprod", "CLOSED UNION WITH SERIFS AND SMASH PRODUCT", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) +addSymbol(U(0x02A51), "bin", "wedgeodot", "LOGICAL AND WITH DOT ABOVE", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x02A52), "bin", "veeodot", "LOGICAL OR WITH DOT ABOVE", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A53), "bin", "Wedge", "DOUBLE LOGICAL AND", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x02A54), "bin", "Vee", "DOUBLE LOGICAL OR", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A55), "bin", "wedgeonwedge", "TWO INTERSECTING LOGICAL AND", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x02A56), "bin", "veeonvee", "TWO INTERSECTING LOGICAL OR", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A57), "bin", "bigslopedvee", "SLOPING LARGE OR", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A58), "bin", "bigslopedwedge", "SLOPING LARGE AND", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x02A59), "rel", "veeonwedge", "LOGICAL OR OVERLAPPING LOGICAL AND", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x02A5A), "bin", "wedgemidvert", "LOGICAL AND WITH MIDDLE STEM", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x02A5B), "bin", "veemidvert", "LOGICAL OR WITH MIDDLE STEM", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A5C), "bin", "midbarwedge", "LOGICAL AND WITH HORIZONTAL DASH", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x02A5D), "bin", "midbarvee", "LOGICAL OR WITH HORIZONTAL DASH", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A5E), "bin", "doublebarwedge", "LOGICAL AND WITH DOUBLE OVERBAR", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x02A5F), "bin", "wedgebar", "LOGICAL AND WITH UNDERBAR", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x02A60), "bin", "wedgedoublebar", "LOGICAL AND WITH DOUBLE UNDERBAR", { + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) +addSymbol(U(0x02A61), "bin", "varveebar", "SMALL VEE WITH UNDERBAR", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A62), "bin", "doublebarvee", "LOGICAL OR WITH DOUBLE OVERBAR", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A63), "bin", "veedoublebar", "LOGICAL OR WITH DOUBLE UNDERBAR", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) +addSymbol(U(0x02A64), "bin", "dsub", "Z NOTATION DOMAIN ANTIRESTRICTION", { + { form = "infix", lspace = 3, priority = 700, rspace = 3 }, +}) +addSymbol(U(0x02A65), "bin", "rsub", "Z NOTATION RANGE ANTIRESTRICTION", { + { form = "infix", lspace = 3, priority = 700, rspace = 3 }, +}) +addSymbol(U(0x02A66), "rel", "eqdot", "EQUALS SIGN WITH DOT BELOW", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A67), "rel", "dotequiv", "IDENTICAL WITH DOT ABOVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A68), "rel", "equivVert", "TRIPLE HORIZONTAL BAR WITH DOUBLE VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A69), "rel", "equivVvert", "TRIPLE HORIZONTAL BAR WITH TRIPLE VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A6A), "rel", "dotsim", "TILDE OPERATOR WITH DOT ABOVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A6B), "rel", "simrdots", "TILDE OPERATOR WITH RISING DOTS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A6C), "rel", "simminussim", "SIMILAR MINUS SIMILAR", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A6D), "rel", "congdot", "CONGRUENT WITH DOT ABOVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A6E), "rel", "asteq", "EQUALS WITH ASTERISK", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A6F), "rel", "hatapprox", "ALMOST EQUAL TO WITH CIRCUMFLEX ACCENT", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A70), "rel", "approxeqq", "APPROXIMATELY EQUAL OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A71), "bin", "eqqplus", "EQUALS SIGN ABOVE PLUS SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A72), "bin", "pluseqq", "PLUS SIGN ABOVE EQUALS SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A73), "rel", "eqqsim", "EQUALS SIGN ABOVE TILDE OPERATOR", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A74), "rel", "Coloneq", "DOUBLE COLON EQUAL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A75), "rel", "eqeq", "TWO CONSECUTIVE EQUALS SIGNS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A76), "rel", "eqeqeq", "THREE CONSECUTIVE EQUALS SIGNS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A77), "rel", "ddotseq", "EQUALS SIGN WITH TWO DOTS ABOVE AND TWO DOTS BELOW", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A78), "rel", "equivDD", "EQUIVALENT WITH FOUR DOTS ABOVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A79), "rel", "ltcir", "LESS-THAN WITH CIRCLE INSIDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A7A), "rel", "gtcir", "GREATER-THAN WITH CIRCLE INSIDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A7B), "rel", "ltquest", "LESS-THAN WITH QUESTION MARK ABOVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A7C), "rel", "gtquest", "GREATER-THAN WITH QUESTION MARK ABOVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A7D), "rel", "leqslant", "LESS-THAN OR SLANTED EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A7E), "rel", "geqslant", "GREATER-THAN OR SLANTED EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A7F), "rel", "lesdot", "LESS-THAN OR SLANTED EQUAL TO WITH DOT INSIDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A80), "rel", "gesdot", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT INSIDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A81), "rel", "lesdoto", "LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A82), "rel", "gesdoto", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A83), "rel", "lesdotor", "LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE RIGHT", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A84), "rel", "gesdotol", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE LEFT", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A85), "rel", "lessapprox", "LESS-THAN OR APPROXIMATE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A86), "rel", "gtrapprox", "GREATER-THAN OR APPROXIMATE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A87), "rel", "lneq", "LESS-THAN AND SINGLE-LINE NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A88), "rel", "gneq", "GREATER-THAN AND SINGLE-LINE NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A89), "rel", "lnapprox", "LESS-THAN AND NOT APPROXIMATE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A8A), "rel", "gnapprox", "GREATER-THAN AND NOT APPROXIMATE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A8B), "rel", "lesseqqgtr", "LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A8C), "rel", "gtreqqless", "GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A8D), "rel", "lsime", "LESS-THAN ABOVE SIMILAR OR EQUAL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A8E), "rel", "gsime", "GREATER-THAN ABOVE SIMILAR OR EQUAL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A8F), "rel", "lsimg", "LESS-THAN ABOVE SIMILAR ABOVE GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A90), "rel", "gsiml", "GREATER-THAN ABOVE SIMILAR ABOVE LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A91), "rel", "lgE", "LESS-THAN ABOVE GREATER-THAN ABOVE DOUBLE-LINE EQUAL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A92), "rel", "glE", "GREATER-THAN ABOVE LESS-THAN ABOVE DOUBLE-LINE EQUAL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A93), "rel", "lesges", "LESS-THAN ABOVE SLANTED EQUAL ABOVE GREATER-THAN ABOVE SLANTED EQUAL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A94), "rel", "gesles", "GREATER-THAN ABOVE SLANTED EQUAL ABOVE LESS-THAN ABOVE SLANTED EQUAL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A95), "rel", "eqslantless", "SLANTED EQUAL TO OR LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A96), "rel", "eqslantgtr", "SLANTED EQUAL TO OR GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A97), "rel", "elsdot", "SLANTED EQUAL TO OR LESS-THAN WITH DOT INSIDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A98), "rel", "egsdot", "SLANTED EQUAL TO OR GREATER-THAN WITH DOT INSIDE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A99), "rel", "eqqless", "DOUBLE-LINE EQUAL TO OR LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A9A), "rel", "eqqgtr", "DOUBLE-LINE EQUAL TO OR GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A9B), "rel", "eqqslantless", "DOUBLE-LINE SLANTED EQUAL TO OR LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A9C), "rel", "eqqslantgtr", "DOUBLE-LINE SLANTED EQUAL TO OR GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A9D), "rel", "simless", "SIMILAR OR LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A9E), "rel", "simgtr", "SIMILAR OR GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02A9F), "rel", "simlE", "SIMILAR ABOVE LESS-THAN ABOVE EQUALS SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AA0), "rel", "simgE", "SIMILAR ABOVE GREATER-THAN ABOVE EQUALS SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AA1), "rel", "Lt", "DOUBLE NESTED LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AA2), "rel", "Gt", "DOUBLE NESTED GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AA3), "rel", "partialmeetcontraction", "DOUBLE NESTED LESS-THAN WITH UNDERBAR", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AA4), "rel", "glj", "GREATER-THAN OVERLAPPING LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AA5), "rel", "gla", "GREATER-THAN BESIDE LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AA6), "rel", "ltcc", "LESS-THAN CLOSED BY CURVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AA7), "rel", "gtcc", "GREATER-THAN CLOSED BY CURVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AA8), "rel", "lescc", "LESS-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AA9), "rel", "gescc", "GREATER-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AAA), "rel", "smt", "SMALLER THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AAB), "rel", "lat", "LARGER THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AAC), "rel", "smte", "SMALLER THAN OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AAD), "rel", "late", "LARGER THAN OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AAE), "rel", "bumpeqq", "EQUALS SIGN WITH BUMPY ABOVE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AAF), "rel", "preceq", "PRECEDES ABOVE SINGLE-LINE EQUALS SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AB0), "rel", "succeq", "SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AB1), "rel", "precneq", "PRECEDES ABOVE SINGLE-LINE NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AB2), "rel", "succneq", "SUCCEEDS ABOVE SINGLE-LINE NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AB3), "rel", "preceqq", "PRECEDES ABOVE EQUALS SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AB4), "rel", "succeqq", "SUCCEEDS ABOVE EQUALS SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AB5), "rel", "precneqq", "PRECEDES ABOVE NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AB6), "rel", "succneqq", "SUCCEEDS ABOVE NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AB7), "rel", "precapprox", "PRECEDES ABOVE ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AB8), "rel", "succapprox", "SUCCEEDS ABOVE ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AB9), "rel", "precnapprox", "PRECEDES ABOVE NOT ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02ABA), "rel", "succnapprox", "SUCCEEDS ABOVE NOT ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02ABB), "rel", "Prec", "DOUBLE PRECEDES", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02ABC), "rel", "Succ", "DOUBLE SUCCEEDS", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02ABD), "rel", "subsetdot", "SUBSET WITH DOT", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02ABE), "rel", "supsetdot", "SUPERSET WITH DOT", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02ABF), "rel", "subsetplus", "SUBSET WITH PLUS SIGN BELOW", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AC0), "rel", "supsetplus", "SUPERSET WITH PLUS SIGN BELOW", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AC1), "rel", "submult", "SUBSET WITH MULTIPLICATION SIGN BELOW", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AC2), "rel", "supmult", "SUPERSET WITH MULTIPLICATION SIGN BELOW", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AC3), "rel", "subedot", "SUBSET OF OR EQUAL TO WITH DOT ABOVE", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AC4), "rel", "supedot", "SUPERSET OF OR EQUAL TO WITH DOT ABOVE", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AC5), "rel", "subseteqq", "SUBSET OF ABOVE EQUALS SIGN", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AC6), "rel", "supseteqq", "SUPERSET OF ABOVE EQUALS SIGN", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AC7), "rel", "subsim", "SUBSET OF ABOVE TILDE OPERATOR", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AC8), "rel", "supsim", "SUPERSET OF ABOVE TILDE OPERATOR", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AC9), "rel", "subsetapprox", "SUBSET OF ABOVE ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02ACA), "rel", "supsetapprox", "SUPERSET OF ABOVE ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02ACB), "rel", "subsetneqq", "SUBSET OF ABOVE NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02ACC), "rel", "supsetneqq", "SUPERSET OF ABOVE NOT EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02ACD), "rel", "lsqhook", "SQUARE LEFT OPEN BOX OPERATOR", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02ACE), "rel", "rsqhook", "SQUARE RIGHT OPEN BOX OPERATOR", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02ACF), "rel", "csub", "CLOSED SUBSET", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AD0), "rel", "csup", "CLOSED SUPERSET", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AD1), "rel", "csube", "CLOSED SUBSET OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AD2), "rel", "csupe", "CLOSED SUPERSET OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AD3), "rel", "subsup", "SUBSET ABOVE SUPERSET", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AD4), "rel", "supsub", "SUPERSET ABOVE SUBSET", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AD5), "rel", "subsub", "SUBSET ABOVE SUBSET", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AD6), "rel", "supsup", "SUPERSET ABOVE SUPERSET", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AD7), "rel", "suphsub", "SUPERSET BESIDE SUBSET", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AD8), "rel", "supdsub", "SUPERSET BESIDE AND JOINED BY DASH WITH SUBSET", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02AD9), "rel", "forkv", "ELEMENT OF OPENING DOWNWARDS", { + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) +addSymbol(U(0x02ADA), "rel", "topfork", "PITCHFORK WITH TEE TOP", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02ADB), "rel", "mlcp", "TRANSVERSAL INTERSECTION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) +addSymbol(U(0x02ADC), "rel", "forks", "FORKING", { + { form = "infix", lspace = 3, priority = 740, rspace = 3 }, +}) +addSymbol(U(0x02ADD), "rel", "forksnot", "NONFORKING", { + { form = "infix", lspace = 3, priority = 740, rspace = 3 }, +}) +addSymbol(U(0x02ADE), "rel", "shortlefttack", "SHORT LEFT TACK", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02ADF), "rel", "shortdowntack", "SHORT DOWN TACK", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AE0), "rel", "shortuptack", "SHORT UP TACK", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AE1), "ord", "perps", "PERPENDICULAR WITH S", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AE2), "rel", "vDdash", "VERTICAL BAR TRIPLE RIGHT TURNSTILE", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AE3), "rel", "dashV", "DOUBLE VERTICAL BAR LEFT TURNSTILE", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AE4), "rel", "Dashv", "VERTICAL BAR DOUBLE LEFT TURNSTILE", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AE5), "rel", "DashV", "DOUBLE VERTICAL BAR DOUBLE LEFT TURNSTILE", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AE6), "rel", "varVdash", "LONG DASH FROM LEFT MEMBER OF DOUBLE VERTICAL", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AE7), "rel", "Barv", "SHORT DOWN TACK WITH OVERBAR", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AE8), "rel", "vBar", "SHORT UP TACK WITH UNDERBAR", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AE9), "rel", "vBarv", "SHORT UP TACK ABOVE SHORT DOWN TACK", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AEA), "rel", "barV", "DOUBLE DOWN TACK", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AEB), "rel", "Vbar", "DOUBLE UP TACK", { + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) +addSymbol(U(0x02AEC), "rel", "Not", "DOUBLE STROKE NOT SIGN", { + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) +addSymbol(U(0x02AED), "rel", "bNot", "REVERSED DOUBLE STROKE NOT SIGN", { + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) +addSymbol(U(0x02AEE), "rel", "revnmid", "DOES NOT DIVIDE WITH REVERSED NEGATION SLASH", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AEF), "rel", "cirmid", "VERTICAL LINE WITH CIRCLE ABOVE", nil) +addSymbol(U(0x02AF0), "rel", "midcir", "VERTICAL LINE WITH CIRCLE BELOW", nil) +addSymbol(U(0x02AF1), "ord", "topcir", "DOWN TACK WITH CIRCLE BELOW", nil) +addSymbol(U(0x02AF2), "rel", "nhpar", "PARALLEL WITH HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AF3), "rel", "parsim", "PARALLEL WITH TILDE OPERATOR", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AF4), "bin", "interleave", "TRIPLE VERTICAL BAR BINARY RELATION", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AF5), "bin", "nhVvert", "TRIPLE VERTICAL BAR WITH HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AF6), "bin", "threedotcolon", "TRIPLE COLON OPERATOR", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x02AF7), "rel", "lllnest", "TRIPLE NESTED LESS-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AF8), "rel", "gggnest", "TRIPLE NESTED GREATER-THAN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AF9), "rel", "leqqslant", "DOUBLE-LINE SLANTED LESS-THAN OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AFA), "rel", "geqqslant", "DOUBLE-LINE SLANTED GREATER-THAN OR EQUAL TO", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x02AFB), "bin", "trslash", "TRIPLE SOLIDUS BINARY RELATION", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x02AFC), "big", "biginterleave", "LARGE TRIPLE VERTICAL BAR OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02AFD), "bin", "sslash", "DOUBLE SOLIDUS OPERATOR", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) +addSymbol(U(0x02AFE), "bin", "talloblong", "WHITE VERTICAL BAR", { + { form = "infix", lspace = 3, priority = 680, rspace = 3 }, +}) +addSymbol(U(0x02AFF), "big", "bigtalloblong", "N-ARY WHITE VERTICAL BAR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02B00), "rel", nil, "NORTH EAST WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B01), "rel", nil, "NORTH WEST WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B02), "rel", nil, "SOUTH EAST WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B03), "rel", nil, "SOUTH WEST WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B04), "rel", nil, "LEFT RIGHT WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B05), "rel", nil, "LEFTWARDS BLACK ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B06), "rel", nil, "UPWARDS BLACK ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B07), "rel", nil, "DOWNWARDS BLACK ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B08), "rel", nil, "NORTH EAST BLACK ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B09), "rel", nil, "NORTH WEST BLACK ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B0A), "rel", nil, "SOUTH EAST BLACK ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B0B), "rel", nil, "SOUTH WEST BLACK ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B0C), "rel", nil, "LEFT RIGHT BLACK ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B0D), "rel", nil, "UP DOWN BLACK ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B0E), "rel", nil, "RIGHTWARDS ARROW WITH TIP DOWNWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B0F), "rel", nil, "RIGHTWARDS ARROW WITH TIP UPWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B10), "rel", nil, "LEFTWARDS ARROW WITH TIP DOWNWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B11), "rel", nil, "LEFTWARDS ARROW WITH TIP UPWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B12), "ord", "squaretopblack", "SQUARE WITH TOP HALF BLACK", nil) +addSymbol(U(0x02B13), "ord", "squarebotblack", "SQUARE WITH BOTTOM HALF BLACK", nil) +addSymbol(U(0x02B14), "ord", "squareurblack", "SQUARE WITH UPPER RIGHT DIAGONAL HALF BLACK", nil) +addSymbol(U(0x02B15), "ord", "squarellblack", "SQUARE WITH LOWER LEFT DIAGONAL HALF BLACK", nil) +addSymbol(U(0x02B16), "ord", "diamondleftblack", "DIAMOND WITH LEFT HALF BLACK", nil) +addSymbol(U(0x02B17), "ord", "diamondrightblack", "DIAMOND WITH RIGHT HALF BLACK", nil) +addSymbol(U(0x02B18), "ord", "diamondtopblack", "DIAMOND WITH TOP HALF BLACK", nil) +addSymbol(U(0x02B19), "ord", "diamondbotblack", "DIAMOND WITH BOTTOM HALF BLACK", nil) +addSymbol(U(0x02B1A), "ord", "dottedsquare", "DOTTED SQUARE", nil) +addSymbol(U(0x02B1B), "ord", "lgblksquare", "BLACK LARGE SQUARE", nil) +addSymbol(U(0x02B1C), "ord", "lgwhtsquare", "WHITE LARGE SQUARE", nil) +addSymbol(U(0x02B1D), "ord", "vysmblksquare", "BLACK VERY SMALL SQUARE", nil) +addSymbol(U(0x02B1E), "ord", "vysmwhtsquare", "WHITE VERY SMALL SQUARE", nil) +addSymbol(U(0x02B1F), "ord", "pentagonblack", "BLACK PENTAGON", nil) +addSymbol(U(0x02B20), "ord", "pentagon", "WHITE PENTAGON", nil) +addSymbol(U(0x02B21), "ord", "varhexagon", "WHITE HEXAGON", nil) +addSymbol(U(0x02B22), "ord", "varhexagonblack", "BLACK HEXAGON", nil) +addSymbol(U(0x02B23), "ord", "hexagonblack", "HORIZONTAL BLACK HEXAGON", nil) +addSymbol(U(0x02B24), "ord", "lgblkcircle", "BLACK LARGE CIRCLE", nil) +addSymbol(U(0x02B25), "ord", "mdblkdiamond", "BLACK MEDIUM DIAMOND", nil) +addSymbol(U(0x02B26), "ord", "mdwhtdiamond", "WHITE MEDIUM DIAMOND", nil) +addSymbol(U(0x02B27), "ord", "mdblklozenge", "BLACK MEDIUM LOZENGE", nil) +addSymbol(U(0x02B28), "ord", "mdwhtlozenge", "WHITE MEDIUM LOZENGE", nil) +addSymbol(U(0x02B29), "ord", "smblkdiamond", "BLACK SMALL DIAMOND", nil) +addSymbol(U(0x02B2A), "ord", "smblklozenge", "BLACK SMALL LOZENGE", nil) +addSymbol(U(0x02B2B), "ord", "smwhtlozenge", "WHITE SMALL LOZENGE", nil) +addSymbol(U(0x02B2C), "ord", "blkhorzoval", "BLACK HORIZONTAL ELLIPSE", nil) +addSymbol(U(0x02B2D), "ord", "whthorzoval", "WHITE HORIZONTAL ELLIPSE", nil) +addSymbol(U(0x02B2E), "ord", "blkvertoval", "BLACK VERTICAL ELLIPSE", nil) +addSymbol(U(0x02B2F), "ord", "whtvertoval", "WHITE VERTICAL ELLIPSE", nil) +addSymbol(U(0x02B30), "rel", "circleonleftarrow", "LEFT ARROW WITH SMALL CIRCLE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B31), "rel", "leftthreearrows", "THREE LEFTWARDS ARROWS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B32), "rel", "leftarrowonoplus", "LEFT ARROW WITH CIRCLED PLUS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B33), "rel", "longleftsquigarrow", "LONG LEFTWARDS SQUIGGLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B34), "rel", "nvtwoheadleftarrow", "LEFTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B35), "rel", "nVtwoheadleftarrow", "LEFTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B36), "rel", "twoheadmapsfrom", "LEFTWARDS TWO-HEADED ARROW FROM BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B37), "rel", "twoheadleftdbkarrow", "LEFTWARDS TWO-HEADED TRIPLE DASH ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B38), "rel", "leftdotarrow", "LEFTWARDS ARROW WITH DOTTED STEM", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B39), "rel", "nvleftarrowtail", "LEFTWARDS ARROW WITH TAIL WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B3A), "rel", "nVleftarrowtail", "LEFTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B3B), "rel", "twoheadleftarrowtail", "LEFTWARDS TWO-HEADED ARROW WITH TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B3C), "rel", "nvtwoheadleftarrowtail", "LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol( + U(0x02B3D), + "rel", + "nVtwoheadleftarrowtail", + "LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol(U(0x02B3E), "rel", "leftarrowx", "LEFTWARDS ARROW THROUGH X", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B3F), "rel", "leftcurvedarrow", "WAVE ARROW POINTING DIRECTLY LEFT", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B40), "rel", "equalleftarrow", "EQUALS SIGN ABOVE LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B41), "rel", "bsimilarleftarrow", "REVERSE TILDE OPERATOR ABOVE LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B42), "rel", "leftarrowbackapprox", "LEFTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B43), "rel", "rightarrowgtr", "RIGHTWARDS ARROW THROUGH GREATER-THAN", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B44), "rel", "rightarrowsupset", "RIGHTWARDS ARROW THROUGH SUPERSET", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B45), "ord", "LLeftarrow", "LEFTWARDS QUADRUPLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B46), "ord", "RRightarrow", "RIGHTWARDS QUADRUPLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B47), "rel", "bsimilarrightarrow", "REVERSE TILDE OPERATOR ABOVE RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B48), "rel", "rightarrowbackapprox", "RIGHTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B49), "rel", "similarleftarrow", "TILDE OPERATOR ABOVE LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B4A), "rel", "leftarrowapprox", "LEFTWARDS ARROW ABOVE ALMOST EQUAL TO", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B4B), "rel", "leftarrowbsimilar", "LEFTWARDS ARROW ABOVE REVERSE TILDE OPERATOR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B4C), "rel", "rightarrowbsimilar", "RIGHTWARDS ARROW ABOVE REVERSE TILDE OPERATOR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B4D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ZIGZAG ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B4E), "ord", nil, "SHORT SLANTED NORTH ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B4F), "ord", nil, "SHORT BACKSLANTED SOUTH ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B50), "ord", "medwhitestar", "WHITE MEDIUM STAR", nil) +addSymbol(U(0x02B51), "ord", "medblackstar", "BLACK SMALL STAR", nil) +addSymbol(U(0x02B52), "ord", "smwhitestar", "WHITE SMALL STAR", nil) +addSymbol(U(0x02B53), "ord", "rightpentagonblack", "BLACK RIGHT-POINTING PENTAGON", nil) +addSymbol(U(0x02B54), "ord", "rightpentagon", "WHITE RIGHT-POINTING PENTAGON", nil) +addSymbol(U(0x02B5A), "ord", nil, "SLANTED NORTH ARROW WITH HOOKED HEAD", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B5B), "ord", nil, "BACKSLANTED SOUTH ARROW WITH HOOKED TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B5C), "ord", nil, "SLANTED NORTH ARROW WITH HORIZONTAL TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B5D), "ord", nil, "BACKSLANTED SOUTH ARROW WITH HORIZONTAL TAIL", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B5E), "ord", nil, "BENT ARROW POINTING DOWNWARDS THEN NORTH EAST", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B5F), "ord", nil, "SHORT BENT ARROW POINTING DOWNWARDS THEN NORTH EAST", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B60), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B61), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B62), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B63), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B64), "ord", nil, "LEFT RIGHT TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B65), "ord", nil, "UP DOWN TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B66), "ord", nil, "NORTH WEST TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B67), "ord", nil, "NORTH EAST TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B68), "ord", nil, "SOUTH EAST TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B69), "ord", nil, "SOUTH WEST TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B6A), "ord", nil, "LEFTWARDS TRIANGLE-HEADED DASHED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B6B), "ord", nil, "UPWARDS TRIANGLE-HEADED DASHED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B6C), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED DASHED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B6D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED DASHED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B6E), "ord", nil, "CLOCKWISE TRIANGLE-HEADED OPEN CIRCLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B6F), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED OPEN CIRCLE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B70), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B71), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B72), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B73), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B76), "ord", nil, "NORTH WEST TRIANGLE-HEADED ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B77), "ord", nil, "NORTH EAST TRIANGLE-HEADED ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B78), "ord", nil, "SOUTH EAST TRIANGLE-HEADED ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B79), "ord", nil, "SOUTH WEST TRIANGLE-HEADED ARROW TO BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B7A), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B7B), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B7C), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B7D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B80), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW OVER RIGHTWARDS TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B81), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW LEFTWARDS OF DOWNWARDS TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B82), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW OVER LEFTWARDS TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B83), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW LEFTWARDS OF UPWARDS TRIANGLE-HEADED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B84), "ord", nil, "LEFTWARDS TRIANGLE-HEADED PAIRED ARROWS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B85), "ord", nil, "UPWARDS TRIANGLE-HEADED PAIRED ARROWS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B86), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED PAIRED ARROWS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B87), "ord", nil, "DOWNWARDS TRIANGLE-HEADED PAIRED ARROWS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02B88), "ord", nil, "LEFTWARDS BLACK CIRCLED WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B89), "ord", nil, "UPWARDS BLACK CIRCLED WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B8A), "ord", nil, "RIGHTWARDS BLACK CIRCLED WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B8B), "ord", nil, "DOWNWARDS BLACK CIRCLED WHITE ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B8C), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED RIGHT U-SHAPED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B8D), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED BOTTOM U-SHAPED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B8E), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED LEFT U-SHAPED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B8F), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED TOP U-SHAPED ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B94), "ord", nil, "FOUR CORNER ARROWS CIRCLING ANTICLOCKWISE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02B95), "ord", nil, "RIGHTWARDS BLACK ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BA0), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH LONG TIP LEFTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BA1), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH LONG TIP RIGHTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BA2), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH LONG TIP LEFTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BA3), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH LONG TIP RIGHTWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BA4), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP UPWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BA5), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP UPWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BA6), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP DOWNWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BA7), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP DOWNWARDS", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BA8), "ord", nil, "BLACK CURVED DOWNWARDS AND LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BA9), "ord", nil, "BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BAA), "ord", nil, "BLACK CURVED UPWARDS AND LEFTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BAB), "ord", nil, "BLACK CURVED UPWARDS AND RIGHTWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BAC), "ord", nil, "BLACK CURVED LEFTWARDS AND UPWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BAD), "ord", nil, "BLACK CURVED RIGHTWARDS AND UPWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BAE), "ord", nil, "BLACK CURVED LEFTWARDS AND DOWNWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BAF), "ord", nil, "BLACK CURVED RIGHTWARDS AND DOWNWARDS ARROW", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BB0), "ord", nil, "RIBBON ARROW DOWN LEFT", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02BB1), "ord", nil, "RIBBON ARROW DOWN RIGHT", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02BB2), "ord", nil, "RIBBON ARROW UP LEFT", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02BB3), "ord", nil, "RIBBON ARROW UP RIGHT", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02BB4), "ord", nil, "RIBBON ARROW LEFT UP", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02BB5), "ord", nil, "RIBBON ARROW RIGHT UP", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02BB6), "ord", nil, "RIBBON ARROW LEFT DOWN", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02BB7), "ord", nil, "RIBBON ARROW RIGHT DOWN", { + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) +addSymbol(U(0x02BB8), "ord", nil, "UPWARDS WHITE ARROW FROM BAR WITH HORIZONTAL BAR", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol(U(0x02BD1), "ord", nil, "UNCERTAINTY SIGN", { + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) +addSymbol(U(0x03012), "ord", "postalmark", "POSTAL MARK", nil) +addSymbol(U(0x03030), "ord", "hzigzag", "WAVY DASH", nil) +addSymbol(U(0x1D400), "ord", "mbfA", "MATHEMATICAL BOLD CAPITAL A", nil) +addSymbol(U(0x1D401), "ord", "mbfB", "MATHEMATICAL BOLD CAPITAL B", nil) +addSymbol(U(0x1D402), "ord", "mbfC", "MATHEMATICAL BOLD CAPITAL C", nil) +addSymbol(U(0x1D403), "ord", "mbfD", "MATHEMATICAL BOLD CAPITAL D", nil) +addSymbol(U(0x1D404), "ord", "mbfE", "MATHEMATICAL BOLD CAPITAL E", nil) +addSymbol(U(0x1D405), "ord", "mbfF", "MATHEMATICAL BOLD CAPITAL F", nil) +addSymbol(U(0x1D406), "ord", "mbfG", "MATHEMATICAL BOLD CAPITAL G", nil) +addSymbol(U(0x1D407), "ord", "mbfH", "MATHEMATICAL BOLD CAPITAL H", nil) +addSymbol(U(0x1D408), "ord", "mbfI", "MATHEMATICAL BOLD CAPITAL I", nil) +addSymbol(U(0x1D409), "ord", "mbfJ", "MATHEMATICAL BOLD CAPITAL J", nil) +addSymbol(U(0x1D40A), "ord", "mbfK", "MATHEMATICAL BOLD CAPITAL K", nil) +addSymbol(U(0x1D40B), "ord", "mbfL", "MATHEMATICAL BOLD CAPITAL L", nil) +addSymbol(U(0x1D40C), "ord", "mbfM", "MATHEMATICAL BOLD CAPITAL M", nil) +addSymbol(U(0x1D40D), "ord", "mbfN", "MATHEMATICAL BOLD CAPITAL N", nil) +addSymbol(U(0x1D40E), "ord", "mbfO", "MATHEMATICAL BOLD CAPITAL O", nil) +addSymbol(U(0x1D40F), "ord", "mbfP", "MATHEMATICAL BOLD CAPITAL P", nil) +addSymbol(U(0x1D410), "ord", "mbfQ", "MATHEMATICAL BOLD CAPITAL Q", nil) +addSymbol(U(0x1D411), "ord", "mbfR", "MATHEMATICAL BOLD CAPITAL R", nil) +addSymbol(U(0x1D412), "ord", "mbfS", "MATHEMATICAL BOLD CAPITAL S", nil) +addSymbol(U(0x1D413), "ord", "mbfT", "MATHEMATICAL BOLD CAPITAL T", nil) +addSymbol(U(0x1D414), "ord", "mbfU", "MATHEMATICAL BOLD CAPITAL U", nil) +addSymbol(U(0x1D415), "ord", "mbfV", "MATHEMATICAL BOLD CAPITAL V", nil) +addSymbol(U(0x1D416), "ord", "mbfW", "MATHEMATICAL BOLD CAPITAL W", nil) +addSymbol(U(0x1D417), "ord", "mbfX", "MATHEMATICAL BOLD CAPITAL X", nil) +addSymbol(U(0x1D418), "ord", "mbfY", "MATHEMATICAL BOLD CAPITAL Y", nil) +addSymbol(U(0x1D419), "ord", "mbfZ", "MATHEMATICAL BOLD CAPITAL Z", nil) +addSymbol(U(0x1D41A), "ord", "mbfa", "MATHEMATICAL BOLD SMALL A", nil) +addSymbol(U(0x1D41B), "ord", "mbfb", "MATHEMATICAL BOLD SMALL B", nil) +addSymbol(U(0x1D41C), "ord", "mbfc", "MATHEMATICAL BOLD SMALL C", nil) +addSymbol(U(0x1D41D), "ord", "mbfd", "MATHEMATICAL BOLD SMALL D", nil) +addSymbol(U(0x1D41E), "ord", "mbfe", "MATHEMATICAL BOLD SMALL E", nil) +addSymbol(U(0x1D41F), "ord", "mbff", "MATHEMATICAL BOLD SMALL F", nil) +addSymbol(U(0x1D420), "ord", "mbfg", "MATHEMATICAL BOLD SMALL G", nil) +addSymbol(U(0x1D421), "ord", "mbfh", "MATHEMATICAL BOLD SMALL H", nil) +addSymbol(U(0x1D422), "ord", "mbfi", "MATHEMATICAL BOLD SMALL I", nil) +addSymbol(U(0x1D423), "ord", "mbfj", "MATHEMATICAL BOLD SMALL J", nil) +addSymbol(U(0x1D424), "ord", "mbfk", "MATHEMATICAL BOLD SMALL K", nil) +addSymbol(U(0x1D425), "ord", "mbfl", "MATHEMATICAL BOLD SMALL L", nil) +addSymbol(U(0x1D426), "ord", "mbfm", "MATHEMATICAL BOLD SMALL M", nil) +addSymbol(U(0x1D427), "ord", "mbfn", "MATHEMATICAL BOLD SMALL N", nil) +addSymbol(U(0x1D428), "ord", "mbfo", "MATHEMATICAL BOLD SMALL O", nil) +addSymbol(U(0x1D429), "ord", "mbfp", "MATHEMATICAL BOLD SMALL P", nil) +addSymbol(U(0x1D42A), "ord", "mbfq", "MATHEMATICAL BOLD SMALL Q", nil) +addSymbol(U(0x1D42B), "ord", "mbfr", "MATHEMATICAL BOLD SMALL R", nil) +addSymbol(U(0x1D42C), "ord", "mbfs", "MATHEMATICAL BOLD SMALL S", nil) +addSymbol(U(0x1D42D), "ord", "mbft", "MATHEMATICAL BOLD SMALL T", nil) +addSymbol(U(0x1D42E), "ord", "mbfu", "MATHEMATICAL BOLD SMALL U", nil) +addSymbol(U(0x1D42F), "ord", "mbfv", "MATHEMATICAL BOLD SMALL V", nil) +addSymbol(U(0x1D430), "ord", "mbfw", "MATHEMATICAL BOLD SMALL W", nil) +addSymbol(U(0x1D431), "ord", "mbfx", "MATHEMATICAL BOLD SMALL X", nil) +addSymbol(U(0x1D432), "ord", "mbfy", "MATHEMATICAL BOLD SMALL Y", nil) +addSymbol(U(0x1D433), "ord", "mbfz", "MATHEMATICAL BOLD SMALL Z", nil) +addSymbol(U(0x1D434), "ord", "mitA", "MATHEMATICAL ITALIC CAPITAL A", nil) +addSymbol(U(0x1D435), "ord", "mitB", "MATHEMATICAL ITALIC CAPITAL B", nil) +addSymbol(U(0x1D436), "ord", "mitC", "MATHEMATICAL ITALIC CAPITAL C", nil) +addSymbol(U(0x1D437), "ord", "mitD", "MATHEMATICAL ITALIC CAPITAL D", nil) +addSymbol(U(0x1D438), "ord", "mitE", "MATHEMATICAL ITALIC CAPITAL E", nil) +addSymbol(U(0x1D439), "ord", "mitF", "MATHEMATICAL ITALIC CAPITAL F", nil) +addSymbol(U(0x1D43A), "ord", "mitG", "MATHEMATICAL ITALIC CAPITAL G", nil) +addSymbol(U(0x1D43B), "ord", "mitH", "MATHEMATICAL ITALIC CAPITAL H", nil) +addSymbol(U(0x1D43C), "ord", "mitI", "MATHEMATICAL ITALIC CAPITAL I", nil) +addSymbol(U(0x1D43D), "ord", "mitJ", "MATHEMATICAL ITALIC CAPITAL J", nil) +addSymbol(U(0x1D43E), "ord", "mitK", "MATHEMATICAL ITALIC CAPITAL K", nil) +addSymbol(U(0x1D43F), "ord", "mitL", "MATHEMATICAL ITALIC CAPITAL L", nil) +addSymbol(U(0x1D440), "ord", "mitM", "MATHEMATICAL ITALIC CAPITAL M", nil) +addSymbol(U(0x1D441), "ord", "mitN", "MATHEMATICAL ITALIC CAPITAL N", nil) +addSymbol(U(0x1D442), "ord", "mitO", "MATHEMATICAL ITALIC CAPITAL O", nil) +addSymbol(U(0x1D443), "ord", "mitP", "MATHEMATICAL ITALIC CAPITAL P", nil) +addSymbol(U(0x1D444), "ord", "mitQ", "MATHEMATICAL ITALIC CAPITAL Q", nil) +addSymbol(U(0x1D445), "ord", "mitR", "MATHEMATICAL ITALIC CAPITAL R", nil) +addSymbol(U(0x1D446), "ord", "mitS", "MATHEMATICAL ITALIC CAPITAL S", nil) +addSymbol(U(0x1D447), "ord", "mitT", "MATHEMATICAL ITALIC CAPITAL T", nil) +addSymbol(U(0x1D448), "ord", "mitU", "MATHEMATICAL ITALIC CAPITAL U", nil) +addSymbol(U(0x1D449), "ord", "mitV", "MATHEMATICAL ITALIC CAPITAL V", nil) +addSymbol(U(0x1D44A), "ord", "mitW", "MATHEMATICAL ITALIC CAPITAL W", nil) +addSymbol(U(0x1D44B), "ord", "mitX", "MATHEMATICAL ITALIC CAPITAL X", nil) +addSymbol(U(0x1D44C), "ord", "mitY", "MATHEMATICAL ITALIC CAPITAL Y", nil) +addSymbol(U(0x1D44D), "ord", "mitZ", "MATHEMATICAL ITALIC CAPITAL Z", nil) +addSymbol(U(0x1D44E), "ord", "mita", "MATHEMATICAL ITALIC SMALL A", nil) +addSymbol(U(0x1D44F), "ord", "mitb", "MATHEMATICAL ITALIC SMALL B", nil) +addSymbol(U(0x1D450), "ord", "mitc", "MATHEMATICAL ITALIC SMALL C", nil) +addSymbol(U(0x1D451), "ord", "mitd", "MATHEMATICAL ITALIC SMALL D", nil) +addSymbol(U(0x1D452), "ord", "mite", "MATHEMATICAL ITALIC SMALL E", nil) +addSymbol(U(0x1D453), "ord", "mitf", "MATHEMATICAL ITALIC SMALL F", nil) +addSymbol(U(0x1D454), "ord", "mitg", "MATHEMATICAL ITALIC SMALL G", nil) +addSymbol(U(0x1D456), "ord", "miti", "MATHEMATICAL ITALIC SMALL I", nil) +addSymbol(U(0x1D457), "ord", "mitj", "MATHEMATICAL ITALIC SMALL J", nil) +addSymbol(U(0x1D458), "ord", "mitk", "MATHEMATICAL ITALIC SMALL K", nil) +addSymbol(U(0x1D459), "ord", "mitl", "MATHEMATICAL ITALIC SMALL L", nil) +addSymbol(U(0x1D45A), "ord", "mitm", "MATHEMATICAL ITALIC SMALL M", nil) +addSymbol(U(0x1D45B), "ord", "mitn", "MATHEMATICAL ITALIC SMALL N", nil) +addSymbol(U(0x1D45C), "ord", "mito", "MATHEMATICAL ITALIC SMALL O", nil) +addSymbol(U(0x1D45D), "ord", "mitp", "MATHEMATICAL ITALIC SMALL P", nil) +addSymbol(U(0x1D45E), "ord", "mitq", "MATHEMATICAL ITALIC SMALL Q", nil) +addSymbol(U(0x1D45F), "ord", "mitr", "MATHEMATICAL ITALIC SMALL R", nil) +addSymbol(U(0x1D460), "ord", "mits", "MATHEMATICAL ITALIC SMALL S", nil) +addSymbol(U(0x1D461), "ord", "mitt", "MATHEMATICAL ITALIC SMALL T", nil) +addSymbol(U(0x1D462), "ord", "mitu", "MATHEMATICAL ITALIC SMALL U", nil) +addSymbol(U(0x1D463), "ord", "mitv", "MATHEMATICAL ITALIC SMALL V", nil) +addSymbol(U(0x1D464), "ord", "mitw", "MATHEMATICAL ITALIC SMALL W", nil) +addSymbol(U(0x1D465), "ord", "mitx", "MATHEMATICAL ITALIC SMALL X", nil) +addSymbol(U(0x1D466), "ord", "mity", "MATHEMATICAL ITALIC SMALL Y", nil) +addSymbol(U(0x1D467), "ord", "mitz", "MATHEMATICAL ITALIC SMALL Z", nil) +addSymbol(U(0x1D468), "ord", "mbfitA", "MATHEMATICAL BOLD ITALIC CAPITAL A", nil) +addSymbol(U(0x1D469), "ord", "mbfitB", "MATHEMATICAL BOLD ITALIC CAPITAL B", nil) +addSymbol(U(0x1D46A), "ord", "mbfitC", "MATHEMATICAL BOLD ITALIC CAPITAL C", nil) +addSymbol(U(0x1D46B), "ord", "mbfitD", "MATHEMATICAL BOLD ITALIC CAPITAL D", nil) +addSymbol(U(0x1D46C), "ord", "mbfitE", "MATHEMATICAL BOLD ITALIC CAPITAL E", nil) +addSymbol(U(0x1D46D), "ord", "mbfitF", "MATHEMATICAL BOLD ITALIC CAPITAL F", nil) +addSymbol(U(0x1D46E), "ord", "mbfitG", "MATHEMATICAL BOLD ITALIC CAPITAL G", nil) +addSymbol(U(0x1D46F), "ord", "mbfitH", "MATHEMATICAL BOLD ITALIC CAPITAL H", nil) +addSymbol(U(0x1D470), "ord", "mbfitI", "MATHEMATICAL BOLD ITALIC CAPITAL I", nil) +addSymbol(U(0x1D471), "ord", "mbfitJ", "MATHEMATICAL BOLD ITALIC CAPITAL J", nil) +addSymbol(U(0x1D472), "ord", "mbfitK", "MATHEMATICAL BOLD ITALIC CAPITAL K", nil) +addSymbol(U(0x1D473), "ord", "mbfitL", "MATHEMATICAL BOLD ITALIC CAPITAL L", nil) +addSymbol(U(0x1D474), "ord", "mbfitM", "MATHEMATICAL BOLD ITALIC CAPITAL M", nil) +addSymbol(U(0x1D475), "ord", "mbfitN", "MATHEMATICAL BOLD ITALIC CAPITAL N", nil) +addSymbol(U(0x1D476), "ord", "mbfitO", "MATHEMATICAL BOLD ITALIC CAPITAL O", nil) +addSymbol(U(0x1D477), "ord", "mbfitP", "MATHEMATICAL BOLD ITALIC CAPITAL P", nil) +addSymbol(U(0x1D478), "ord", "mbfitQ", "MATHEMATICAL BOLD ITALIC CAPITAL Q", nil) +addSymbol(U(0x1D479), "ord", "mbfitR", "MATHEMATICAL BOLD ITALIC CAPITAL R", nil) +addSymbol(U(0x1D47A), "ord", "mbfitS", "MATHEMATICAL BOLD ITALIC CAPITAL S", nil) +addSymbol(U(0x1D47B), "ord", "mbfitT", "MATHEMATICAL BOLD ITALIC CAPITAL T", nil) +addSymbol(U(0x1D47C), "ord", "mbfitU", "MATHEMATICAL BOLD ITALIC CAPITAL U", nil) +addSymbol(U(0x1D47D), "ord", "mbfitV", "MATHEMATICAL BOLD ITALIC CAPITAL V", nil) +addSymbol(U(0x1D47E), "ord", "mbfitW", "MATHEMATICAL BOLD ITALIC CAPITAL W", nil) +addSymbol(U(0x1D47F), "ord", "mbfitX", "MATHEMATICAL BOLD ITALIC CAPITAL X", nil) +addSymbol(U(0x1D480), "ord", "mbfitY", "MATHEMATICAL BOLD ITALIC CAPITAL Y", nil) +addSymbol(U(0x1D481), "ord", "mbfitZ", "MATHEMATICAL BOLD ITALIC CAPITAL Z", nil) +addSymbol(U(0x1D482), "ord", "mbfita", "MATHEMATICAL BOLD ITALIC SMALL A", nil) +addSymbol(U(0x1D483), "ord", "mbfitb", "MATHEMATICAL BOLD ITALIC SMALL B", nil) +addSymbol(U(0x1D484), "ord", "mbfitc", "MATHEMATICAL BOLD ITALIC SMALL C", nil) +addSymbol(U(0x1D485), "ord", "mbfitd", "MATHEMATICAL BOLD ITALIC SMALL D", nil) +addSymbol(U(0x1D486), "ord", "mbfite", "MATHEMATICAL BOLD ITALIC SMALL E", nil) +addSymbol(U(0x1D487), "ord", "mbfitf", "MATHEMATICAL BOLD ITALIC SMALL F", nil) +addSymbol(U(0x1D488), "ord", "mbfitg", "MATHEMATICAL BOLD ITALIC SMALL G", nil) +addSymbol(U(0x1D489), "ord", "mbfith", "MATHEMATICAL BOLD ITALIC SMALL H", nil) +addSymbol(U(0x1D48A), "ord", "mbfiti", "MATHEMATICAL BOLD ITALIC SMALL I", nil) +addSymbol(U(0x1D48B), "ord", "mbfitj", "MATHEMATICAL BOLD ITALIC SMALL J", nil) +addSymbol(U(0x1D48C), "ord", "mbfitk", "MATHEMATICAL BOLD ITALIC SMALL K", nil) +addSymbol(U(0x1D48D), "ord", "mbfitl", "MATHEMATICAL BOLD ITALIC SMALL L", nil) +addSymbol(U(0x1D48E), "ord", "mbfitm", "MATHEMATICAL BOLD ITALIC SMALL M", nil) +addSymbol(U(0x1D48F), "ord", "mbfitn", "MATHEMATICAL BOLD ITALIC SMALL N", nil) +addSymbol(U(0x1D490), "ord", "mbfito", "MATHEMATICAL BOLD ITALIC SMALL O", nil) +addSymbol(U(0x1D491), "ord", "mbfitp", "MATHEMATICAL BOLD ITALIC SMALL P", nil) +addSymbol(U(0x1D492), "ord", "mbfitq", "MATHEMATICAL BOLD ITALIC SMALL Q", nil) +addSymbol(U(0x1D493), "ord", "mbfitr", "MATHEMATICAL BOLD ITALIC SMALL R", nil) +addSymbol(U(0x1D494), "ord", "mbfits", "MATHEMATICAL BOLD ITALIC SMALL S", nil) +addSymbol(U(0x1D495), "ord", "mbfitt", "MATHEMATICAL BOLD ITALIC SMALL T", nil) +addSymbol(U(0x1D496), "ord", "mbfitu", "MATHEMATICAL BOLD ITALIC SMALL U", nil) +addSymbol(U(0x1D497), "ord", "mbfitv", "MATHEMATICAL BOLD ITALIC SMALL V", nil) +addSymbol(U(0x1D498), "ord", "mbfitw", "MATHEMATICAL BOLD ITALIC SMALL W", nil) +addSymbol(U(0x1D499), "ord", "mbfitx", "MATHEMATICAL BOLD ITALIC SMALL X", nil) +addSymbol(U(0x1D49A), "ord", "mbfity", "MATHEMATICAL BOLD ITALIC SMALL Y", nil) +addSymbol(U(0x1D49B), "ord", "mbfitz", "MATHEMATICAL BOLD ITALIC SMALL Z", nil) +addSymbol(U(0x1D49C), "ord", "mscrA", "MATHEMATICAL SCRIPT CAPITAL A", nil) +addSymbol(U(0x1D49E), "ord", "mscrC", "MATHEMATICAL SCRIPT CAPITAL C", nil) +addSymbol(U(0x1D49F), "ord", "mscrD", "MATHEMATICAL SCRIPT CAPITAL D", nil) +addSymbol(U(0x1D4A2), "ord", "mscrG", "MATHEMATICAL SCRIPT CAPITAL G", nil) +addSymbol(U(0x1D4A5), "ord", "mscrJ", "MATHEMATICAL SCRIPT CAPITAL J", nil) +addSymbol(U(0x1D4A6), "ord", "mscrK", "MATHEMATICAL SCRIPT CAPITAL K", nil) +addSymbol(U(0x1D4A9), "ord", "mscrN", "MATHEMATICAL SCRIPT CAPITAL N", nil) +addSymbol(U(0x1D4AA), "ord", "mscrO", "MATHEMATICAL SCRIPT CAPITAL O", nil) +addSymbol(U(0x1D4AB), "ord", "mscrP", "MATHEMATICAL SCRIPT CAPITAL P", nil) +addSymbol(U(0x1D4AC), "ord", "mscrQ", "MATHEMATICAL SCRIPT CAPITAL Q", nil) +addSymbol(U(0x1D4AE), "ord", "mscrS", "MATHEMATICAL SCRIPT CAPITAL S", nil) +addSymbol(U(0x1D4AF), "ord", "mscrT", "MATHEMATICAL SCRIPT CAPITAL T", nil) +addSymbol(U(0x1D4B0), "ord", "mscrU", "MATHEMATICAL SCRIPT CAPITAL U", nil) +addSymbol(U(0x1D4B1), "ord", "mscrV", "MATHEMATICAL SCRIPT CAPITAL V", nil) +addSymbol(U(0x1D4B2), "ord", "mscrW", "MATHEMATICAL SCRIPT CAPITAL W", nil) +addSymbol(U(0x1D4B3), "ord", "mscrX", "MATHEMATICAL SCRIPT CAPITAL X", nil) +addSymbol(U(0x1D4B4), "ord", "mscrY", "MATHEMATICAL SCRIPT CAPITAL Y", nil) +addSymbol(U(0x1D4B5), "ord", "mscrZ", "MATHEMATICAL SCRIPT CAPITAL Z", nil) +addSymbol(U(0x1D4B6), "ord", "mscra", "MATHEMATICAL SCRIPT SMALL A", nil) +addSymbol(U(0x1D4B7), "ord", "mscrb", "MATHEMATICAL SCRIPT SMALL B", nil) +addSymbol(U(0x1D4B8), "ord", "mscrc", "MATHEMATICAL SCRIPT SMALL C", nil) +addSymbol(U(0x1D4B9), "ord", "mscrd", "MATHEMATICAL SCRIPT SMALL D", nil) +addSymbol(U(0x1D4BB), "ord", "mscrf", "MATHEMATICAL SCRIPT SMALL F", nil) +addSymbol(U(0x1D4BD), "ord", "mscrh", "MATHEMATICAL SCRIPT SMALL H", nil) +addSymbol(U(0x1D4BE), "ord", "mscri", "MATHEMATICAL SCRIPT SMALL I", nil) +addSymbol(U(0x1D4BF), "ord", "mscrj", "MATHEMATICAL SCRIPT SMALL J", nil) +addSymbol(U(0x1D4C0), "ord", "mscrk", "MATHEMATICAL SCRIPT SMALL K", nil) +addSymbol(U(0x1D4C1), "ord", "mscrl", "MATHEMATICAL SCRIPT SMALL L", nil) +addSymbol(U(0x1D4C2), "ord", "mscrm", "MATHEMATICAL SCRIPT SMALL M", nil) +addSymbol(U(0x1D4C3), "ord", "mscrn", "MATHEMATICAL SCRIPT SMALL N", nil) +addSymbol(U(0x1D4C5), "ord", "mscrp", "MATHEMATICAL SCRIPT SMALL P", nil) +addSymbol(U(0x1D4C6), "ord", "mscrq", "MATHEMATICAL SCRIPT SMALL Q", nil) +addSymbol(U(0x1D4C7), "ord", "mscrr", "MATHEMATICAL SCRIPT SMALL R", nil) +addSymbol(U(0x1D4C8), "ord", "mscrs", "MATHEMATICAL SCRIPT SMALL S", nil) +addSymbol(U(0x1D4C9), "ord", "mscrt", "MATHEMATICAL SCRIPT SMALL T", nil) +addSymbol(U(0x1D4CA), "ord", "mscru", "MATHEMATICAL SCRIPT SMALL U", nil) +addSymbol(U(0x1D4CB), "ord", "mscrv", "MATHEMATICAL SCRIPT SMALL V", nil) +addSymbol(U(0x1D4CC), "ord", "mscrw", "MATHEMATICAL SCRIPT SMALL W", nil) +addSymbol(U(0x1D4CD), "ord", "mscrx", "MATHEMATICAL SCRIPT SMALL X", nil) +addSymbol(U(0x1D4CE), "ord", "mscry", "MATHEMATICAL SCRIPT SMALL Y", nil) +addSymbol(U(0x1D4CF), "ord", "mscrz", "MATHEMATICAL SCRIPT SMALL Z", nil) +addSymbol(U(0x1D4D0), "ord", "mbfscrA", "MATHEMATICAL BOLD SCRIPT CAPITAL A", nil) +addSymbol(U(0x1D4D1), "ord", "mbfscrB", "MATHEMATICAL BOLD SCRIPT CAPITAL B", nil) +addSymbol(U(0x1D4D2), "ord", "mbfscrC", "MATHEMATICAL BOLD SCRIPT CAPITAL C", nil) +addSymbol(U(0x1D4D3), "ord", "mbfscrD", "MATHEMATICAL BOLD SCRIPT CAPITAL D", nil) +addSymbol(U(0x1D4D4), "ord", "mbfscrE", "MATHEMATICAL BOLD SCRIPT CAPITAL E", nil) +addSymbol(U(0x1D4D5), "ord", "mbfscrF", "MATHEMATICAL BOLD SCRIPT CAPITAL F", nil) +addSymbol(U(0x1D4D6), "ord", "mbfscrG", "MATHEMATICAL BOLD SCRIPT CAPITAL G", nil) +addSymbol(U(0x1D4D7), "ord", "mbfscrH", "MATHEMATICAL BOLD SCRIPT CAPITAL H", nil) +addSymbol(U(0x1D4D8), "ord", "mbfscrI", "MATHEMATICAL BOLD SCRIPT CAPITAL I", nil) +addSymbol(U(0x1D4D9), "ord", "mbfscrJ", "MATHEMATICAL BOLD SCRIPT CAPITAL J", nil) +addSymbol(U(0x1D4DA), "ord", "mbfscrK", "MATHEMATICAL BOLD SCRIPT CAPITAL K", nil) +addSymbol(U(0x1D4DB), "ord", "mbfscrL", "MATHEMATICAL BOLD SCRIPT CAPITAL L", nil) +addSymbol(U(0x1D4DC), "ord", "mbfscrM", "MATHEMATICAL BOLD SCRIPT CAPITAL M", nil) +addSymbol(U(0x1D4DD), "ord", "mbfscrN", "MATHEMATICAL BOLD SCRIPT CAPITAL N", nil) +addSymbol(U(0x1D4DE), "ord", "mbfscrO", "MATHEMATICAL BOLD SCRIPT CAPITAL O", nil) +addSymbol(U(0x1D4DF), "ord", "mbfscrP", "MATHEMATICAL BOLD SCRIPT CAPITAL P", nil) +addSymbol(U(0x1D4E0), "ord", "mbfscrQ", "MATHEMATICAL BOLD SCRIPT CAPITAL Q", nil) +addSymbol(U(0x1D4E1), "ord", "mbfscrR", "MATHEMATICAL BOLD SCRIPT CAPITAL R", nil) +addSymbol(U(0x1D4E2), "ord", "mbfscrS", "MATHEMATICAL BOLD SCRIPT CAPITAL S", nil) +addSymbol(U(0x1D4E3), "ord", "mbfscrT", "MATHEMATICAL BOLD SCRIPT CAPITAL T", nil) +addSymbol(U(0x1D4E4), "ord", "mbfscrU", "MATHEMATICAL BOLD SCRIPT CAPITAL U", nil) +addSymbol(U(0x1D4E5), "ord", "mbfscrV", "MATHEMATICAL BOLD SCRIPT CAPITAL V", nil) +addSymbol(U(0x1D4E6), "ord", "mbfscrW", "MATHEMATICAL BOLD SCRIPT CAPITAL W", nil) +addSymbol(U(0x1D4E7), "ord", "mbfscrX", "MATHEMATICAL BOLD SCRIPT CAPITAL X", nil) +addSymbol(U(0x1D4E8), "ord", "mbfscrY", "MATHEMATICAL BOLD SCRIPT CAPITAL Y", nil) +addSymbol(U(0x1D4E9), "ord", "mbfscrZ", "MATHEMATICAL BOLD SCRIPT CAPITAL Z", nil) +addSymbol(U(0x1D4EA), "ord", "mbfscra", "MATHEMATICAL BOLD SCRIPT SMALL A", nil) +addSymbol(U(0x1D4EB), "ord", "mbfscrb", "MATHEMATICAL BOLD SCRIPT SMALL B", nil) +addSymbol(U(0x1D4EC), "ord", "mbfscrc", "MATHEMATICAL BOLD SCRIPT SMALL C", nil) +addSymbol(U(0x1D4ED), "ord", "mbfscrd", "MATHEMATICAL BOLD SCRIPT SMALL D", nil) +addSymbol(U(0x1D4EE), "ord", "mbfscre", "MATHEMATICAL BOLD SCRIPT SMALL E", nil) +addSymbol(U(0x1D4EF), "ord", "mbfscrf", "MATHEMATICAL BOLD SCRIPT SMALL F", nil) +addSymbol(U(0x1D4F0), "ord", "mbfscrg", "MATHEMATICAL BOLD SCRIPT SMALL G", nil) +addSymbol(U(0x1D4F1), "ord", "mbfscrh", "MATHEMATICAL BOLD SCRIPT SMALL H", nil) +addSymbol(U(0x1D4F2), "ord", "mbfscri", "MATHEMATICAL BOLD SCRIPT SMALL I", nil) +addSymbol(U(0x1D4F3), "ord", "mbfscrj", "MATHEMATICAL BOLD SCRIPT SMALL J", nil) +addSymbol(U(0x1D4F4), "ord", "mbfscrk", "MATHEMATICAL BOLD SCRIPT SMALL K", nil) +addSymbol(U(0x1D4F5), "ord", "mbfscrl", "MATHEMATICAL BOLD SCRIPT SMALL L", nil) +addSymbol(U(0x1D4F6), "ord", "mbfscrm", "MATHEMATICAL BOLD SCRIPT SMALL M", nil) +addSymbol(U(0x1D4F7), "ord", "mbfscrn", "MATHEMATICAL BOLD SCRIPT SMALL N", nil) +addSymbol(U(0x1D4F8), "ord", "mbfscro", "MATHEMATICAL BOLD SCRIPT SMALL O", nil) +addSymbol(U(0x1D4F9), "ord", "mbfscrp", "MATHEMATICAL BOLD SCRIPT SMALL P", nil) +addSymbol(U(0x1D4FA), "ord", "mbfscrq", "MATHEMATICAL BOLD SCRIPT SMALL Q", nil) +addSymbol(U(0x1D4FB), "ord", "mbfscrr", "MATHEMATICAL BOLD SCRIPT SMALL R", nil) +addSymbol(U(0x1D4FC), "ord", "mbfscrs", "MATHEMATICAL BOLD SCRIPT SMALL S", nil) +addSymbol(U(0x1D4FD), "ord", "mbfscrt", "MATHEMATICAL BOLD SCRIPT SMALL T", nil) +addSymbol(U(0x1D4FE), "ord", "mbfscru", "MATHEMATICAL BOLD SCRIPT SMALL U", nil) +addSymbol(U(0x1D4FF), "ord", "mbfscrv", "MATHEMATICAL BOLD SCRIPT SMALL V", nil) +addSymbol(U(0x1D500), "ord", "mbfscrw", "MATHEMATICAL BOLD SCRIPT SMALL W", nil) +addSymbol(U(0x1D501), "ord", "mbfscrx", "MATHEMATICAL BOLD SCRIPT SMALL X", nil) +addSymbol(U(0x1D502), "ord", "mbfscry", "MATHEMATICAL BOLD SCRIPT SMALL Y", nil) +addSymbol(U(0x1D503), "ord", "mbfscrz", "MATHEMATICAL BOLD SCRIPT SMALL Z", nil) +addSymbol(U(0x1D504), "ord", "mfrakA", "MATHEMATICAL FRAKTUR CAPITAL A", nil) +addSymbol(U(0x1D505), "ord", "mfrakB", "MATHEMATICAL FRAKTUR CAPITAL B", nil) +addSymbol(U(0x1D507), "ord", "mfrakD", "MATHEMATICAL FRAKTUR CAPITAL D", nil) +addSymbol(U(0x1D508), "ord", "mfrakE", "MATHEMATICAL FRAKTUR CAPITAL E", nil) +addSymbol(U(0x1D509), "ord", "mfrakF", "MATHEMATICAL FRAKTUR CAPITAL F", nil) +addSymbol(U(0x1D50A), "ord", "mfrakG", "MATHEMATICAL FRAKTUR CAPITAL G", nil) +addSymbol(U(0x1D50D), "ord", "mfrakJ", "MATHEMATICAL FRAKTUR CAPITAL J", nil) +addSymbol(U(0x1D50E), "ord", "mfrakK", "MATHEMATICAL FRAKTUR CAPITAL K", nil) +addSymbol(U(0x1D50F), "ord", "mfrakL", "MATHEMATICAL FRAKTUR CAPITAL L", nil) +addSymbol(U(0x1D510), "ord", "mfrakM", "MATHEMATICAL FRAKTUR CAPITAL M", nil) +addSymbol(U(0x1D511), "ord", "mfrakN", "MATHEMATICAL FRAKTUR CAPITAL N", nil) +addSymbol(U(0x1D512), "ord", "mfrakO", "MATHEMATICAL FRAKTUR CAPITAL O", nil) +addSymbol(U(0x1D513), "ord", "mfrakP", "MATHEMATICAL FRAKTUR CAPITAL P", nil) +addSymbol(U(0x1D514), "ord", "mfrakQ", "MATHEMATICAL FRAKTUR CAPITAL Q", nil) +addSymbol(U(0x1D516), "ord", "mfrakS", "MATHEMATICAL FRAKTUR CAPITAL S", nil) +addSymbol(U(0x1D517), "ord", "mfrakT", "MATHEMATICAL FRAKTUR CAPITAL T", nil) +addSymbol(U(0x1D518), "ord", "mfrakU", "MATHEMATICAL FRAKTUR CAPITAL U", nil) +addSymbol(U(0x1D519), "ord", "mfrakV", "MATHEMATICAL FRAKTUR CAPITAL V", nil) +addSymbol(U(0x1D51A), "ord", "mfrakW", "MATHEMATICAL FRAKTUR CAPITAL W", nil) +addSymbol(U(0x1D51B), "ord", "mfrakX", "MATHEMATICAL FRAKTUR CAPITAL X", nil) +addSymbol(U(0x1D51C), "ord", "mfrakY", "MATHEMATICAL FRAKTUR CAPITAL Y", nil) +addSymbol(U(0x1D51E), "ord", "mfraka", "MATHEMATICAL FRAKTUR SMALL A", nil) +addSymbol(U(0x1D51F), "ord", "mfrakb", "MATHEMATICAL FRAKTUR SMALL B", nil) +addSymbol(U(0x1D520), "ord", "mfrakc", "MATHEMATICAL FRAKTUR SMALL C", nil) +addSymbol(U(0x1D521), "ord", "mfrakd", "MATHEMATICAL FRAKTUR SMALL D", nil) +addSymbol(U(0x1D522), "ord", "mfrake", "MATHEMATICAL FRAKTUR SMALL E", nil) +addSymbol(U(0x1D523), "ord", "mfrakf", "MATHEMATICAL FRAKTUR SMALL F", nil) +addSymbol(U(0x1D524), "ord", "mfrakg", "MATHEMATICAL FRAKTUR SMALL G", nil) +addSymbol(U(0x1D525), "ord", "mfrakh", "MATHEMATICAL FRAKTUR SMALL H", nil) +addSymbol(U(0x1D526), "ord", "mfraki", "MATHEMATICAL FRAKTUR SMALL I", nil) +addSymbol(U(0x1D527), "ord", "mfrakj", "MATHEMATICAL FRAKTUR SMALL J", nil) +addSymbol(U(0x1D528), "ord", "mfrakk", "MATHEMATICAL FRAKTUR SMALL K", nil) +addSymbol(U(0x1D529), "ord", "mfrakl", "MATHEMATICAL FRAKTUR SMALL L", nil) +addSymbol(U(0x1D52A), "ord", "mfrakm", "MATHEMATICAL FRAKTUR SMALL M", nil) +addSymbol(U(0x1D52B), "ord", "mfrakn", "MATHEMATICAL FRAKTUR SMALL N", nil) +addSymbol(U(0x1D52C), "ord", "mfrako", "MATHEMATICAL FRAKTUR SMALL O", nil) +addSymbol(U(0x1D52D), "ord", "mfrakp", "MATHEMATICAL FRAKTUR SMALL P", nil) +addSymbol(U(0x1D52E), "ord", "mfrakq", "MATHEMATICAL FRAKTUR SMALL Q", nil) +addSymbol(U(0x1D52F), "ord", "mfrakr", "MATHEMATICAL FRAKTUR SMALL R", nil) +addSymbol(U(0x1D530), "ord", "mfraks", "MATHEMATICAL FRAKTUR SMALL S", nil) +addSymbol(U(0x1D531), "ord", "mfrakt", "MATHEMATICAL FRAKTUR SMALL T", nil) +addSymbol(U(0x1D532), "ord", "mfraku", "MATHEMATICAL FRAKTUR SMALL U", nil) +addSymbol(U(0x1D533), "ord", "mfrakv", "MATHEMATICAL FRAKTUR SMALL V", nil) +addSymbol(U(0x1D534), "ord", "mfrakw", "MATHEMATICAL FRAKTUR SMALL W", nil) +addSymbol(U(0x1D535), "ord", "mfrakx", "MATHEMATICAL FRAKTUR SMALL X", nil) +addSymbol(U(0x1D536), "ord", "mfraky", "MATHEMATICAL FRAKTUR SMALL Y", nil) +addSymbol(U(0x1D537), "ord", "mfrakz", "MATHEMATICAL FRAKTUR SMALL Z", nil) +addSymbol(U(0x1D538), "ord", "BbbA", "MATHEMATICAL DOUBLE-STRUCK CAPITAL A", nil) +addSymbol(U(0x1D539), "ord", "BbbB", "MATHEMATICAL DOUBLE-STRUCK CAPITAL B", nil) +addSymbol(U(0x1D53B), "ord", "BbbD", "MATHEMATICAL DOUBLE-STRUCK CAPITAL D", nil) +addSymbol(U(0x1D53C), "ord", "BbbE", "MATHEMATICAL DOUBLE-STRUCK CAPITAL E", nil) +addSymbol(U(0x1D53D), "ord", "BbbF", "MATHEMATICAL DOUBLE-STRUCK CAPITAL F", nil) +addSymbol(U(0x1D53E), "ord", "BbbG", "MATHEMATICAL DOUBLE-STRUCK CAPITAL G", nil) +addSymbol(U(0x1D540), "ord", "BbbI", "MATHEMATICAL DOUBLE-STRUCK CAPITAL I", nil) +addSymbol(U(0x1D541), "ord", "BbbJ", "MATHEMATICAL DOUBLE-STRUCK CAPITAL J", nil) +addSymbol(U(0x1D542), "ord", "BbbK", "MATHEMATICAL DOUBLE-STRUCK CAPITAL K", nil) +addSymbol(U(0x1D543), "ord", "BbbL", "MATHEMATICAL DOUBLE-STRUCK CAPITAL L", nil) +addSymbol(U(0x1D544), "ord", "BbbM", "MATHEMATICAL DOUBLE-STRUCK CAPITAL M", nil) +addSymbol(U(0x1D546), "ord", "BbbO", "MATHEMATICAL DOUBLE-STRUCK CAPITAL O", nil) +addSymbol(U(0x1D54A), "ord", "BbbS", "MATHEMATICAL DOUBLE-STRUCK CAPITAL S", nil) +addSymbol(U(0x1D54B), "ord", "BbbT", "MATHEMATICAL DOUBLE-STRUCK CAPITAL T", nil) +addSymbol(U(0x1D54C), "ord", "BbbU", "MATHEMATICAL DOUBLE-STRUCK CAPITAL U", nil) +addSymbol(U(0x1D54D), "ord", "BbbV", "MATHEMATICAL DOUBLE-STRUCK CAPITAL V", nil) +addSymbol(U(0x1D54E), "ord", "BbbW", "MATHEMATICAL DOUBLE-STRUCK CAPITAL W", nil) +addSymbol(U(0x1D54F), "ord", "BbbX", "MATHEMATICAL DOUBLE-STRUCK CAPITAL X", nil) +addSymbol(U(0x1D550), "ord", "BbbY", "MATHEMATICAL DOUBLE-STRUCK CAPITAL Y", nil) +addSymbol(U(0x1D552), "ord", "Bbba", "MATHEMATICAL DOUBLE-STRUCK SMALL A", nil) +addSymbol(U(0x1D553), "ord", "Bbbb", "MATHEMATICAL DOUBLE-STRUCK SMALL B", nil) +addSymbol(U(0x1D554), "ord", "Bbbc", "MATHEMATICAL DOUBLE-STRUCK SMALL C", nil) +addSymbol(U(0x1D555), "ord", "Bbbd", "MATHEMATICAL DOUBLE-STRUCK SMALL D", nil) +addSymbol(U(0x1D556), "ord", "Bbbe", "MATHEMATICAL DOUBLE-STRUCK SMALL E", nil) +addSymbol(U(0x1D557), "ord", "Bbbf", "MATHEMATICAL DOUBLE-STRUCK SMALL F", nil) +addSymbol(U(0x1D558), "ord", "Bbbg", "MATHEMATICAL DOUBLE-STRUCK SMALL G", nil) +addSymbol(U(0x1D559), "ord", "Bbbh", "MATHEMATICAL DOUBLE-STRUCK SMALL H", nil) +addSymbol(U(0x1D55A), "ord", "Bbbi", "MATHEMATICAL DOUBLE-STRUCK SMALL I", nil) +addSymbol(U(0x1D55B), "ord", "Bbbj", "MATHEMATICAL DOUBLE-STRUCK SMALL J", nil) +addSymbol(U(0x1D55C), "ord", "Bbbk", "MATHEMATICAL DOUBLE-STRUCK SMALL K", nil) +addSymbol(U(0x1D55D), "ord", "Bbbl", "MATHEMATICAL DOUBLE-STRUCK SMALL L", nil) +addSymbol(U(0x1D55E), "ord", "Bbbm", "MATHEMATICAL DOUBLE-STRUCK SMALL M", nil) +addSymbol(U(0x1D55F), "ord", "Bbbn", "MATHEMATICAL DOUBLE-STRUCK SMALL N", nil) +addSymbol(U(0x1D560), "ord", "Bbbo", "MATHEMATICAL DOUBLE-STRUCK SMALL O", nil) +addSymbol(U(0x1D561), "ord", "Bbbp", "MATHEMATICAL DOUBLE-STRUCK SMALL P", nil) +addSymbol(U(0x1D562), "ord", "Bbbq", "MATHEMATICAL DOUBLE-STRUCK SMALL Q", nil) +addSymbol(U(0x1D563), "ord", "Bbbr", "MATHEMATICAL DOUBLE-STRUCK SMALL R", nil) +addSymbol(U(0x1D564), "ord", "Bbbs", "MATHEMATICAL DOUBLE-STRUCK SMALL S", nil) +addSymbol(U(0x1D565), "ord", "Bbbt", "MATHEMATICAL DOUBLE-STRUCK SMALL T", nil) +addSymbol(U(0x1D566), "ord", "Bbbu", "MATHEMATICAL DOUBLE-STRUCK SMALL U", nil) +addSymbol(U(0x1D567), "ord", "Bbbv", "MATHEMATICAL DOUBLE-STRUCK SMALL V", nil) +addSymbol(U(0x1D568), "ord", "Bbbw", "MATHEMATICAL DOUBLE-STRUCK SMALL W", nil) +addSymbol(U(0x1D569), "ord", "Bbbx", "MATHEMATICAL DOUBLE-STRUCK SMALL X", nil) +addSymbol(U(0x1D56A), "ord", "Bbby", "MATHEMATICAL DOUBLE-STRUCK SMALL Y", nil) +addSymbol(U(0x1D56B), "ord", "Bbbz", "MATHEMATICAL DOUBLE-STRUCK SMALL Z", nil) +addSymbol(U(0x1D56C), "ord", "mbffrakA", "MATHEMATICAL BOLD FRAKTUR CAPITAL A", nil) +addSymbol(U(0x1D56D), "ord", "mbffrakB", "MATHEMATICAL BOLD FRAKTUR CAPITAL B", nil) +addSymbol(U(0x1D56E), "ord", "mbffrakC", "MATHEMATICAL BOLD FRAKTUR CAPITAL C", nil) +addSymbol(U(0x1D56F), "ord", "mbffrakD", "MATHEMATICAL BOLD FRAKTUR CAPITAL D", nil) +addSymbol(U(0x1D570), "ord", "mbffrakE", "MATHEMATICAL BOLD FRAKTUR CAPITAL E", nil) +addSymbol(U(0x1D571), "ord", "mbffrakF", "MATHEMATICAL BOLD FRAKTUR CAPITAL F", nil) +addSymbol(U(0x1D572), "ord", "mbffrakG", "MATHEMATICAL BOLD FRAKTUR CAPITAL G", nil) +addSymbol(U(0x1D573), "ord", "mbffrakH", "MATHEMATICAL BOLD FRAKTUR CAPITAL H", nil) +addSymbol(U(0x1D574), "ord", "mbffrakI", "MATHEMATICAL BOLD FRAKTUR CAPITAL I", nil) +addSymbol(U(0x1D575), "ord", "mbffrakJ", "MATHEMATICAL BOLD FRAKTUR CAPITAL J", nil) +addSymbol(U(0x1D576), "ord", "mbffrakK", "MATHEMATICAL BOLD FRAKTUR CAPITAL K", nil) +addSymbol(U(0x1D577), "ord", "mbffrakL", "MATHEMATICAL BOLD FRAKTUR CAPITAL L", nil) +addSymbol(U(0x1D578), "ord", "mbffrakM", "MATHEMATICAL BOLD FRAKTUR CAPITAL M", nil) +addSymbol(U(0x1D579), "ord", "mbffrakN", "MATHEMATICAL BOLD FRAKTUR CAPITAL N", nil) +addSymbol(U(0x1D57A), "ord", "mbffrakO", "MATHEMATICAL BOLD FRAKTUR CAPITAL O", nil) +addSymbol(U(0x1D57B), "ord", "mbffrakP", "MATHEMATICAL BOLD FRAKTUR CAPITAL P", nil) +addSymbol(U(0x1D57C), "ord", "mbffrakQ", "MATHEMATICAL BOLD FRAKTUR CAPITAL Q", nil) +addSymbol(U(0x1D57D), "ord", "mbffrakR", "MATHEMATICAL BOLD FRAKTUR CAPITAL R", nil) +addSymbol(U(0x1D57E), "ord", "mbffrakS", "MATHEMATICAL BOLD FRAKTUR CAPITAL S", nil) +addSymbol(U(0x1D57F), "ord", "mbffrakT", "MATHEMATICAL BOLD FRAKTUR CAPITAL T", nil) +addSymbol(U(0x1D580), "ord", "mbffrakU", "MATHEMATICAL BOLD FRAKTUR CAPITAL U", nil) +addSymbol(U(0x1D581), "ord", "mbffrakV", "MATHEMATICAL BOLD FRAKTUR CAPITAL V", nil) +addSymbol(U(0x1D582), "ord", "mbffrakW", "MATHEMATICAL BOLD FRAKTUR CAPITAL W", nil) +addSymbol(U(0x1D583), "ord", "mbffrakX", "MATHEMATICAL BOLD FRAKTUR CAPITAL X", nil) +addSymbol(U(0x1D584), "ord", "mbffrakY", "MATHEMATICAL BOLD FRAKTUR CAPITAL Y", nil) +addSymbol(U(0x1D585), "ord", "mbffrakZ", "MATHEMATICAL BOLD FRAKTUR CAPITAL Z", nil) +addSymbol(U(0x1D586), "ord", "mbffraka", "MATHEMATICAL BOLD FRAKTUR SMALL A", nil) +addSymbol(U(0x1D587), "ord", "mbffrakb", "MATHEMATICAL BOLD FRAKTUR SMALL B", nil) +addSymbol(U(0x1D588), "ord", "mbffrakc", "MATHEMATICAL BOLD FRAKTUR SMALL C", nil) +addSymbol(U(0x1D589), "ord", "mbffrakd", "MATHEMATICAL BOLD FRAKTUR SMALL D", nil) +addSymbol(U(0x1D58A), "ord", "mbffrake", "MATHEMATICAL BOLD FRAKTUR SMALL E", nil) +addSymbol(U(0x1D58B), "ord", "mbffrakf", "MATHEMATICAL BOLD FRAKTUR SMALL F", nil) +addSymbol(U(0x1D58C), "ord", "mbffrakg", "MATHEMATICAL BOLD FRAKTUR SMALL G", nil) +addSymbol(U(0x1D58D), "ord", "mbffrakh", "MATHEMATICAL BOLD FRAKTUR SMALL H", nil) +addSymbol(U(0x1D58E), "ord", "mbffraki", "MATHEMATICAL BOLD FRAKTUR SMALL I", nil) +addSymbol(U(0x1D58F), "ord", "mbffrakj", "MATHEMATICAL BOLD FRAKTUR SMALL J", nil) +addSymbol(U(0x1D590), "ord", "mbffrakk", "MATHEMATICAL BOLD FRAKTUR SMALL K", nil) +addSymbol(U(0x1D591), "ord", "mbffrakl", "MATHEMATICAL BOLD FRAKTUR SMALL L", nil) +addSymbol(U(0x1D592), "ord", "mbffrakm", "MATHEMATICAL BOLD FRAKTUR SMALL M", nil) +addSymbol(U(0x1D593), "ord", "mbffrakn", "MATHEMATICAL BOLD FRAKTUR SMALL N", nil) +addSymbol(U(0x1D594), "ord", "mbffrako", "MATHEMATICAL BOLD FRAKTUR SMALL O", nil) +addSymbol(U(0x1D595), "ord", "mbffrakp", "MATHEMATICAL BOLD FRAKTUR SMALL P", nil) +addSymbol(U(0x1D596), "ord", "mbffrakq", "MATHEMATICAL BOLD FRAKTUR SMALL Q", nil) +addSymbol(U(0x1D597), "ord", "mbffrakr", "MATHEMATICAL BOLD FRAKTUR SMALL R", nil) +addSymbol(U(0x1D598), "ord", "mbffraks", "MATHEMATICAL BOLD FRAKTUR SMALL S", nil) +addSymbol(U(0x1D599), "ord", "mbffrakt", "MATHEMATICAL BOLD FRAKTUR SMALL T", nil) +addSymbol(U(0x1D59A), "ord", "mbffraku", "MATHEMATICAL BOLD FRAKTUR SMALL U", nil) +addSymbol(U(0x1D59B), "ord", "mbffrakv", "MATHEMATICAL BOLD FRAKTUR SMALL V", nil) +addSymbol(U(0x1D59C), "ord", "mbffrakw", "MATHEMATICAL BOLD FRAKTUR SMALL W", nil) +addSymbol(U(0x1D59D), "ord", "mbffrakx", "MATHEMATICAL BOLD FRAKTUR SMALL X", nil) +addSymbol(U(0x1D59E), "ord", "mbffraky", "MATHEMATICAL BOLD FRAKTUR SMALL Y", nil) +addSymbol(U(0x1D59F), "ord", "mbffrakz", "MATHEMATICAL BOLD FRAKTUR SMALL Z", nil) +addSymbol(U(0x1D5A0), "ord", "msansA", "MATHEMATICAL SANS-SERIF CAPITAL A", nil) +addSymbol(U(0x1D5A1), "ord", "msansB", "MATHEMATICAL SANS-SERIF CAPITAL B", nil) +addSymbol(U(0x1D5A2), "ord", "msansC", "MATHEMATICAL SANS-SERIF CAPITAL C", nil) +addSymbol(U(0x1D5A3), "ord", "msansD", "MATHEMATICAL SANS-SERIF CAPITAL D", nil) +addSymbol(U(0x1D5A4), "ord", "msansE", "MATHEMATICAL SANS-SERIF CAPITAL E", nil) +addSymbol(U(0x1D5A5), "ord", "msansF", "MATHEMATICAL SANS-SERIF CAPITAL F", nil) +addSymbol(U(0x1D5A6), "ord", "msansG", "MATHEMATICAL SANS-SERIF CAPITAL G", nil) +addSymbol(U(0x1D5A7), "ord", "msansH", "MATHEMATICAL SANS-SERIF CAPITAL H", nil) +addSymbol(U(0x1D5A8), "ord", "msansI", "MATHEMATICAL SANS-SERIF CAPITAL I", nil) +addSymbol(U(0x1D5A9), "ord", "msansJ", "MATHEMATICAL SANS-SERIF CAPITAL J", nil) +addSymbol(U(0x1D5AA), "ord", "msansK", "MATHEMATICAL SANS-SERIF CAPITAL K", nil) +addSymbol(U(0x1D5AB), "ord", "msansL", "MATHEMATICAL SANS-SERIF CAPITAL L", nil) +addSymbol(U(0x1D5AC), "ord", "msansM", "MATHEMATICAL SANS-SERIF CAPITAL M", nil) +addSymbol(U(0x1D5AD), "ord", "msansN", "MATHEMATICAL SANS-SERIF CAPITAL N", nil) +addSymbol(U(0x1D5AE), "ord", "msansO", "MATHEMATICAL SANS-SERIF CAPITAL O", nil) +addSymbol(U(0x1D5AF), "ord", "msansP", "MATHEMATICAL SANS-SERIF CAPITAL P", nil) +addSymbol(U(0x1D5B0), "ord", "msansQ", "MATHEMATICAL SANS-SERIF CAPITAL Q", nil) +addSymbol(U(0x1D5B1), "ord", "msansR", "MATHEMATICAL SANS-SERIF CAPITAL R", nil) +addSymbol(U(0x1D5B2), "ord", "msansS", "MATHEMATICAL SANS-SERIF CAPITAL S", nil) +addSymbol(U(0x1D5B3), "ord", "msansT", "MATHEMATICAL SANS-SERIF CAPITAL T", nil) +addSymbol(U(0x1D5B4), "ord", "msansU", "MATHEMATICAL SANS-SERIF CAPITAL U", nil) +addSymbol(U(0x1D5B5), "ord", "msansV", "MATHEMATICAL SANS-SERIF CAPITAL V", nil) +addSymbol(U(0x1D5B6), "ord", "msansW", "MATHEMATICAL SANS-SERIF CAPITAL W", nil) +addSymbol(U(0x1D5B7), "ord", "msansX", "MATHEMATICAL SANS-SERIF CAPITAL X", nil) +addSymbol(U(0x1D5B8), "ord", "msansY", "MATHEMATICAL SANS-SERIF CAPITAL Y", nil) +addSymbol(U(0x1D5B9), "ord", "msansZ", "MATHEMATICAL SANS-SERIF CAPITAL Z", nil) +addSymbol(U(0x1D5BA), "ord", "msansa", "MATHEMATICAL SANS-SERIF SMALL A", nil) +addSymbol(U(0x1D5BB), "ord", "msansb", "MATHEMATICAL SANS-SERIF SMALL B", nil) +addSymbol(U(0x1D5BC), "ord", "msansc", "MATHEMATICAL SANS-SERIF SMALL C", nil) +addSymbol(U(0x1D5BD), "ord", "msansd", "MATHEMATICAL SANS-SERIF SMALL D", nil) +addSymbol(U(0x1D5BE), "ord", "msanse", "MATHEMATICAL SANS-SERIF SMALL E", nil) +addSymbol(U(0x1D5BF), "ord", "msansf", "MATHEMATICAL SANS-SERIF SMALL F", nil) +addSymbol(U(0x1D5C0), "ord", "msansg", "MATHEMATICAL SANS-SERIF SMALL G", nil) +addSymbol(U(0x1D5C1), "ord", "msansh", "MATHEMATICAL SANS-SERIF SMALL H", nil) +addSymbol(U(0x1D5C2), "ord", "msansi", "MATHEMATICAL SANS-SERIF SMALL I", nil) +addSymbol(U(0x1D5C3), "ord", "msansj", "MATHEMATICAL SANS-SERIF SMALL J", nil) +addSymbol(U(0x1D5C4), "ord", "msansk", "MATHEMATICAL SANS-SERIF SMALL K", nil) +addSymbol(U(0x1D5C5), "ord", "msansl", "MATHEMATICAL SANS-SERIF SMALL L", nil) +addSymbol(U(0x1D5C6), "ord", "msansm", "MATHEMATICAL SANS-SERIF SMALL M", nil) +addSymbol(U(0x1D5C7), "ord", "msansn", "MATHEMATICAL SANS-SERIF SMALL N", nil) +addSymbol(U(0x1D5C8), "ord", "msanso", "MATHEMATICAL SANS-SERIF SMALL O", nil) +addSymbol(U(0x1D5C9), "ord", "msansp", "MATHEMATICAL SANS-SERIF SMALL P", nil) +addSymbol(U(0x1D5CA), "ord", "msansq", "MATHEMATICAL SANS-SERIF SMALL Q", nil) +addSymbol(U(0x1D5CB), "ord", "msansr", "MATHEMATICAL SANS-SERIF SMALL R", nil) +addSymbol(U(0x1D5CC), "ord", "msanss", "MATHEMATICAL SANS-SERIF SMALL S", nil) +addSymbol(U(0x1D5CD), "ord", "msanst", "MATHEMATICAL SANS-SERIF SMALL T", nil) +addSymbol(U(0x1D5CE), "ord", "msansu", "MATHEMATICAL SANS-SERIF SMALL U", nil) +addSymbol(U(0x1D5CF), "ord", "msansv", "MATHEMATICAL SANS-SERIF SMALL V", nil) +addSymbol(U(0x1D5D0), "ord", "msansw", "MATHEMATICAL SANS-SERIF SMALL W", nil) +addSymbol(U(0x1D5D1), "ord", "msansx", "MATHEMATICAL SANS-SERIF SMALL X", nil) +addSymbol(U(0x1D5D2), "ord", "msansy", "MATHEMATICAL SANS-SERIF SMALL Y", nil) +addSymbol(U(0x1D5D3), "ord", "msansz", "MATHEMATICAL SANS-SERIF SMALL Z", nil) +addSymbol(U(0x1D5D4), "ord", "mbfsansA", "MATHEMATICAL SANS-SERIF BOLD CAPITAL A", nil) +addSymbol(U(0x1D5D5), "ord", "mbfsansB", "MATHEMATICAL SANS-SERIF BOLD CAPITAL B", nil) +addSymbol(U(0x1D5D6), "ord", "mbfsansC", "MATHEMATICAL SANS-SERIF BOLD CAPITAL C", nil) +addSymbol(U(0x1D5D7), "ord", "mbfsansD", "MATHEMATICAL SANS-SERIF BOLD CAPITAL D", nil) +addSymbol(U(0x1D5D8), "ord", "mbfsansE", "MATHEMATICAL SANS-SERIF BOLD CAPITAL E", nil) +addSymbol(U(0x1D5D9), "ord", "mbfsansF", "MATHEMATICAL SANS-SERIF BOLD CAPITAL F", nil) +addSymbol(U(0x1D5DA), "ord", "mbfsansG", "MATHEMATICAL SANS-SERIF BOLD CAPITAL G", nil) +addSymbol(U(0x1D5DB), "ord", "mbfsansH", "MATHEMATICAL SANS-SERIF BOLD CAPITAL H", nil) +addSymbol(U(0x1D5DC), "ord", "mbfsansI", "MATHEMATICAL SANS-SERIF BOLD CAPITAL I", nil) +addSymbol(U(0x1D5DD), "ord", "mbfsansJ", "MATHEMATICAL SANS-SERIF BOLD CAPITAL J", nil) +addSymbol(U(0x1D5DE), "ord", "mbfsansK", "MATHEMATICAL SANS-SERIF BOLD CAPITAL K", nil) +addSymbol(U(0x1D5DF), "ord", "mbfsansL", "MATHEMATICAL SANS-SERIF BOLD CAPITAL L", nil) +addSymbol(U(0x1D5E0), "ord", "mbfsansM", "MATHEMATICAL SANS-SERIF BOLD CAPITAL M", nil) +addSymbol(U(0x1D5E1), "ord", "mbfsansN", "MATHEMATICAL SANS-SERIF BOLD CAPITAL N", nil) +addSymbol(U(0x1D5E2), "ord", "mbfsansO", "MATHEMATICAL SANS-SERIF BOLD CAPITAL O", nil) +addSymbol(U(0x1D5E3), "ord", "mbfsansP", "MATHEMATICAL SANS-SERIF BOLD CAPITAL P", nil) +addSymbol(U(0x1D5E4), "ord", "mbfsansQ", "MATHEMATICAL SANS-SERIF BOLD CAPITAL Q", nil) +addSymbol(U(0x1D5E5), "ord", "mbfsansR", "MATHEMATICAL SANS-SERIF BOLD CAPITAL R", nil) +addSymbol(U(0x1D5E6), "ord", "mbfsansS", "MATHEMATICAL SANS-SERIF BOLD CAPITAL S", nil) +addSymbol(U(0x1D5E7), "ord", "mbfsansT", "MATHEMATICAL SANS-SERIF BOLD CAPITAL T", nil) +addSymbol(U(0x1D5E8), "ord", "mbfsansU", "MATHEMATICAL SANS-SERIF BOLD CAPITAL U", nil) +addSymbol(U(0x1D5E9), "ord", "mbfsansV", "MATHEMATICAL SANS-SERIF BOLD CAPITAL V", nil) +addSymbol(U(0x1D5EA), "ord", "mbfsansW", "MATHEMATICAL SANS-SERIF BOLD CAPITAL W", nil) +addSymbol(U(0x1D5EB), "ord", "mbfsansX", "MATHEMATICAL SANS-SERIF BOLD CAPITAL X", nil) +addSymbol(U(0x1D5EC), "ord", "mbfsansY", "MATHEMATICAL SANS-SERIF BOLD CAPITAL Y", nil) +addSymbol(U(0x1D5ED), "ord", "mbfsansZ", "MATHEMATICAL SANS-SERIF BOLD CAPITAL Z", nil) +addSymbol(U(0x1D5EE), "ord", "mbfsansa", "MATHEMATICAL SANS-SERIF BOLD SMALL A", nil) +addSymbol(U(0x1D5EF), "ord", "mbfsansb", "MATHEMATICAL SANS-SERIF BOLD SMALL B", nil) +addSymbol(U(0x1D5F0), "ord", "mbfsansc", "MATHEMATICAL SANS-SERIF BOLD SMALL C", nil) +addSymbol(U(0x1D5F1), "ord", "mbfsansd", "MATHEMATICAL SANS-SERIF BOLD SMALL D", nil) +addSymbol(U(0x1D5F2), "ord", "mbfsanse", "MATHEMATICAL SANS-SERIF BOLD SMALL E", nil) +addSymbol(U(0x1D5F3), "ord", "mbfsansf", "MATHEMATICAL SANS-SERIF BOLD SMALL F", nil) +addSymbol(U(0x1D5F4), "ord", "mbfsansg", "MATHEMATICAL SANS-SERIF BOLD SMALL G", nil) +addSymbol(U(0x1D5F5), "ord", "mbfsansh", "MATHEMATICAL SANS-SERIF BOLD SMALL H", nil) +addSymbol(U(0x1D5F6), "ord", "mbfsansi", "MATHEMATICAL SANS-SERIF BOLD SMALL I", nil) +addSymbol(U(0x1D5F7), "ord", "mbfsansj", "MATHEMATICAL SANS-SERIF BOLD SMALL J", nil) +addSymbol(U(0x1D5F8), "ord", "mbfsansk", "MATHEMATICAL SANS-SERIF BOLD SMALL K", nil) +addSymbol(U(0x1D5F9), "ord", "mbfsansl", "MATHEMATICAL SANS-SERIF BOLD SMALL L", nil) +addSymbol(U(0x1D5FA), "ord", "mbfsansm", "MATHEMATICAL SANS-SERIF BOLD SMALL M", nil) +addSymbol(U(0x1D5FB), "ord", "mbfsansn", "MATHEMATICAL SANS-SERIF BOLD SMALL N", nil) +addSymbol(U(0x1D5FC), "ord", "mbfsanso", "MATHEMATICAL SANS-SERIF BOLD SMALL O", nil) +addSymbol(U(0x1D5FD), "ord", "mbfsansp", "MATHEMATICAL SANS-SERIF BOLD SMALL P", nil) +addSymbol(U(0x1D5FE), "ord", "mbfsansq", "MATHEMATICAL SANS-SERIF BOLD SMALL Q", nil) +addSymbol(U(0x1D5FF), "ord", "mbfsansr", "MATHEMATICAL SANS-SERIF BOLD SMALL R", nil) +addSymbol(U(0x1D600), "ord", "mbfsanss", "MATHEMATICAL SANS-SERIF BOLD SMALL S", nil) +addSymbol(U(0x1D601), "ord", "mbfsanst", "MATHEMATICAL SANS-SERIF BOLD SMALL T", nil) +addSymbol(U(0x1D602), "ord", "mbfsansu", "MATHEMATICAL SANS-SERIF BOLD SMALL U", nil) +addSymbol(U(0x1D603), "ord", "mbfsansv", "MATHEMATICAL SANS-SERIF BOLD SMALL V", nil) +addSymbol(U(0x1D604), "ord", "mbfsansw", "MATHEMATICAL SANS-SERIF BOLD SMALL W", nil) +addSymbol(U(0x1D605), "ord", "mbfsansx", "MATHEMATICAL SANS-SERIF BOLD SMALL X", nil) +addSymbol(U(0x1D606), "ord", "mbfsansy", "MATHEMATICAL SANS-SERIF BOLD SMALL Y", nil) +addSymbol(U(0x1D607), "ord", "mbfsansz", "MATHEMATICAL SANS-SERIF BOLD SMALL Z", nil) +addSymbol(U(0x1D608), "ord", "mitsansA", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL A", nil) +addSymbol(U(0x1D609), "ord", "mitsansB", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL B", nil) +addSymbol(U(0x1D60A), "ord", "mitsansC", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL C", nil) +addSymbol(U(0x1D60B), "ord", "mitsansD", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL D", nil) +addSymbol(U(0x1D60C), "ord", "mitsansE", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL E", nil) +addSymbol(U(0x1D60D), "ord", "mitsansF", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL F", nil) +addSymbol(U(0x1D60E), "ord", "mitsansG", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL G", nil) +addSymbol(U(0x1D60F), "ord", "mitsansH", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL H", nil) +addSymbol(U(0x1D610), "ord", "mitsansI", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL I", nil) +addSymbol(U(0x1D611), "ord", "mitsansJ", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL J", nil) +addSymbol(U(0x1D612), "ord", "mitsansK", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL K", nil) +addSymbol(U(0x1D613), "ord", "mitsansL", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL L", nil) +addSymbol(U(0x1D614), "ord", "mitsansM", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL M", nil) +addSymbol(U(0x1D615), "ord", "mitsansN", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL N", nil) +addSymbol(U(0x1D616), "ord", "mitsansO", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL O", nil) +addSymbol(U(0x1D617), "ord", "mitsansP", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL P", nil) +addSymbol(U(0x1D618), "ord", "mitsansQ", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL Q", nil) +addSymbol(U(0x1D619), "ord", "mitsansR", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL R", nil) +addSymbol(U(0x1D61A), "ord", "mitsansS", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL S", nil) +addSymbol(U(0x1D61B), "ord", "mitsansT", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL T", nil) +addSymbol(U(0x1D61C), "ord", "mitsansU", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL U", nil) +addSymbol(U(0x1D61D), "ord", "mitsansV", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL V", nil) +addSymbol(U(0x1D61E), "ord", "mitsansW", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL W", nil) +addSymbol(U(0x1D61F), "ord", "mitsansX", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL X", nil) +addSymbol(U(0x1D620), "ord", "mitsansY", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL Y", nil) +addSymbol(U(0x1D621), "ord", "mitsansZ", "MATHEMATICAL SANS-SERIF ITALIC CAPITAL Z", nil) +addSymbol(U(0x1D622), "ord", "mitsansa", "MATHEMATICAL SANS-SERIF ITALIC SMALL A", nil) +addSymbol(U(0x1D623), "ord", "mitsansb", "MATHEMATICAL SANS-SERIF ITALIC SMALL B", nil) +addSymbol(U(0x1D624), "ord", "mitsansc", "MATHEMATICAL SANS-SERIF ITALIC SMALL C", nil) +addSymbol(U(0x1D625), "ord", "mitsansd", "MATHEMATICAL SANS-SERIF ITALIC SMALL D", nil) +addSymbol(U(0x1D626), "ord", "mitsanse", "MATHEMATICAL SANS-SERIF ITALIC SMALL E", nil) +addSymbol(U(0x1D627), "ord", "mitsansf", "MATHEMATICAL SANS-SERIF ITALIC SMALL F", nil) +addSymbol(U(0x1D628), "ord", "mitsansg", "MATHEMATICAL SANS-SERIF ITALIC SMALL G", nil) +addSymbol(U(0x1D629), "ord", "mitsansh", "MATHEMATICAL SANS-SERIF ITALIC SMALL H", nil) +addSymbol(U(0x1D62A), "ord", "mitsansi", "MATHEMATICAL SANS-SERIF ITALIC SMALL I", nil) +addSymbol(U(0x1D62B), "ord", "mitsansj", "MATHEMATICAL SANS-SERIF ITALIC SMALL J", nil) +addSymbol(U(0x1D62C), "ord", "mitsansk", "MATHEMATICAL SANS-SERIF ITALIC SMALL K", nil) +addSymbol(U(0x1D62D), "ord", "mitsansl", "MATHEMATICAL SANS-SERIF ITALIC SMALL L", nil) +addSymbol(U(0x1D62E), "ord", "mitsansm", "MATHEMATICAL SANS-SERIF ITALIC SMALL M", nil) +addSymbol(U(0x1D62F), "ord", "mitsansn", "MATHEMATICAL SANS-SERIF ITALIC SMALL N", nil) +addSymbol(U(0x1D630), "ord", "mitsanso", "MATHEMATICAL SANS-SERIF ITALIC SMALL O", nil) +addSymbol(U(0x1D631), "ord", "mitsansp", "MATHEMATICAL SANS-SERIF ITALIC SMALL P", nil) +addSymbol(U(0x1D632), "ord", "mitsansq", "MATHEMATICAL SANS-SERIF ITALIC SMALL Q", nil) +addSymbol(U(0x1D633), "ord", "mitsansr", "MATHEMATICAL SANS-SERIF ITALIC SMALL R", nil) +addSymbol(U(0x1D634), "ord", "mitsanss", "MATHEMATICAL SANS-SERIF ITALIC SMALL S", nil) +addSymbol(U(0x1D635), "ord", "mitsanst", "MATHEMATICAL SANS-SERIF ITALIC SMALL T", nil) +addSymbol(U(0x1D636), "ord", "mitsansu", "MATHEMATICAL SANS-SERIF ITALIC SMALL U", nil) +addSymbol(U(0x1D637), "ord", "mitsansv", "MATHEMATICAL SANS-SERIF ITALIC SMALL V", nil) +addSymbol(U(0x1D638), "ord", "mitsansw", "MATHEMATICAL SANS-SERIF ITALIC SMALL W", nil) +addSymbol(U(0x1D639), "ord", "mitsansx", "MATHEMATICAL SANS-SERIF ITALIC SMALL X", nil) +addSymbol(U(0x1D63A), "ord", "mitsansy", "MATHEMATICAL SANS-SERIF ITALIC SMALL Y", nil) +addSymbol(U(0x1D63B), "ord", "mitsansz", "MATHEMATICAL SANS-SERIF ITALIC SMALL Z", nil) +addSymbol(U(0x1D63C), "ord", "mbfitsansA", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL A", nil) +addSymbol(U(0x1D63D), "ord", "mbfitsansB", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL B", nil) +addSymbol(U(0x1D63E), "ord", "mbfitsansC", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL C", nil) +addSymbol(U(0x1D63F), "ord", "mbfitsansD", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL D", nil) +addSymbol(U(0x1D640), "ord", "mbfitsansE", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL E", nil) +addSymbol(U(0x1D641), "ord", "mbfitsansF", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL F", nil) +addSymbol(U(0x1D642), "ord", "mbfitsansG", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL G", nil) +addSymbol(U(0x1D643), "ord", "mbfitsansH", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL H", nil) +addSymbol(U(0x1D644), "ord", "mbfitsansI", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL I", nil) +addSymbol(U(0x1D645), "ord", "mbfitsansJ", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL J", nil) +addSymbol(U(0x1D646), "ord", "mbfitsansK", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL K", nil) +addSymbol(U(0x1D647), "ord", "mbfitsansL", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL L", nil) +addSymbol(U(0x1D648), "ord", "mbfitsansM", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL M", nil) +addSymbol(U(0x1D649), "ord", "mbfitsansN", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL N", nil) +addSymbol(U(0x1D64A), "ord", "mbfitsansO", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL O", nil) +addSymbol(U(0x1D64B), "ord", "mbfitsansP", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL P", nil) +addSymbol(U(0x1D64C), "ord", "mbfitsansQ", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Q", nil) +addSymbol(U(0x1D64D), "ord", "mbfitsansR", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL R", nil) +addSymbol(U(0x1D64E), "ord", "mbfitsansS", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL S", nil) +addSymbol(U(0x1D64F), "ord", "mbfitsansT", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL T", nil) +addSymbol(U(0x1D650), "ord", "mbfitsansU", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL U", nil) +addSymbol(U(0x1D651), "ord", "mbfitsansV", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL V", nil) +addSymbol(U(0x1D652), "ord", "mbfitsansW", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL W", nil) +addSymbol(U(0x1D653), "ord", "mbfitsansX", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL X", nil) +addSymbol(U(0x1D654), "ord", "mbfitsansY", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Y", nil) +addSymbol(U(0x1D655), "ord", "mbfitsansZ", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Z", nil) +addSymbol(U(0x1D656), "ord", "mbfitsansa", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A", nil) +addSymbol(U(0x1D657), "ord", "mbfitsansb", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL B", nil) +addSymbol(U(0x1D658), "ord", "mbfitsansc", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL C", nil) +addSymbol(U(0x1D659), "ord", "mbfitsansd", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL D", nil) +addSymbol(U(0x1D65A), "ord", "mbfitsanse", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL E", nil) +addSymbol(U(0x1D65B), "ord", "mbfitsansf", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL F", nil) +addSymbol(U(0x1D65C), "ord", "mbfitsansg", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL G", nil) +addSymbol(U(0x1D65D), "ord", "mbfitsansh", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL H", nil) +addSymbol(U(0x1D65E), "ord", "mbfitsansi", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL I", nil) +addSymbol(U(0x1D65F), "ord", "mbfitsansj", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL J", nil) +addSymbol(U(0x1D660), "ord", "mbfitsansk", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL K", nil) +addSymbol(U(0x1D661), "ord", "mbfitsansl", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL L", nil) +addSymbol(U(0x1D662), "ord", "mbfitsansm", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL M", nil) +addSymbol(U(0x1D663), "ord", "mbfitsansn", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL N", nil) +addSymbol(U(0x1D664), "ord", "mbfitsanso", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL O", nil) +addSymbol(U(0x1D665), "ord", "mbfitsansp", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL P", nil) +addSymbol(U(0x1D666), "ord", "mbfitsansq", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Q", nil) +addSymbol(U(0x1D667), "ord", "mbfitsansr", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL R", nil) +addSymbol(U(0x1D668), "ord", "mbfitsanss", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL S", nil) +addSymbol(U(0x1D669), "ord", "mbfitsanst", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL T", nil) +addSymbol(U(0x1D66A), "ord", "mbfitsansu", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL U", nil) +addSymbol(U(0x1D66B), "ord", "mbfitsansv", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL V", nil) +addSymbol(U(0x1D66C), "ord", "mbfitsansw", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL W", nil) +addSymbol(U(0x1D66D), "ord", "mbfitsansx", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL X", nil) +addSymbol(U(0x1D66E), "ord", "mbfitsansy", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Y", nil) +addSymbol(U(0x1D66F), "ord", "mbfitsansz", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z", nil) +addSymbol(U(0x1D670), "ord", "mttA", "MATHEMATICAL MONOSPACE CAPITAL A", nil) +addSymbol(U(0x1D671), "ord", "mttB", "MATHEMATICAL MONOSPACE CAPITAL B", nil) +addSymbol(U(0x1D672), "ord", "mttC", "MATHEMATICAL MONOSPACE CAPITAL C", nil) +addSymbol(U(0x1D673), "ord", "mttD", "MATHEMATICAL MONOSPACE CAPITAL D", nil) +addSymbol(U(0x1D674), "ord", "mttE", "MATHEMATICAL MONOSPACE CAPITAL E", nil) +addSymbol(U(0x1D675), "ord", "mttF", "MATHEMATICAL MONOSPACE CAPITAL F", nil) +addSymbol(U(0x1D676), "ord", "mttG", "MATHEMATICAL MONOSPACE CAPITAL G", nil) +addSymbol(U(0x1D677), "ord", "mttH", "MATHEMATICAL MONOSPACE CAPITAL H", nil) +addSymbol(U(0x1D678), "ord", "mttI", "MATHEMATICAL MONOSPACE CAPITAL I", nil) +addSymbol(U(0x1D679), "ord", "mttJ", "MATHEMATICAL MONOSPACE CAPITAL J", nil) +addSymbol(U(0x1D67A), "ord", "mttK", "MATHEMATICAL MONOSPACE CAPITAL K", nil) +addSymbol(U(0x1D67B), "ord", "mttL", "MATHEMATICAL MONOSPACE CAPITAL L", nil) +addSymbol(U(0x1D67C), "ord", "mttM", "MATHEMATICAL MONOSPACE CAPITAL M", nil) +addSymbol(U(0x1D67D), "ord", "mttN", "MATHEMATICAL MONOSPACE CAPITAL N", nil) +addSymbol(U(0x1D67E), "ord", "mttO", "MATHEMATICAL MONOSPACE CAPITAL O", nil) +addSymbol(U(0x1D67F), "ord", "mttP", "MATHEMATICAL MONOSPACE CAPITAL P", nil) +addSymbol(U(0x1D680), "ord", "mttQ", "MATHEMATICAL MONOSPACE CAPITAL Q", nil) +addSymbol(U(0x1D681), "ord", "mttR", "MATHEMATICAL MONOSPACE CAPITAL R", nil) +addSymbol(U(0x1D682), "ord", "mttS", "MATHEMATICAL MONOSPACE CAPITAL S", nil) +addSymbol(U(0x1D683), "ord", "mttT", "MATHEMATICAL MONOSPACE CAPITAL T", nil) +addSymbol(U(0x1D684), "ord", "mttU", "MATHEMATICAL MONOSPACE CAPITAL U", nil) +addSymbol(U(0x1D685), "ord", "mttV", "MATHEMATICAL MONOSPACE CAPITAL V", nil) +addSymbol(U(0x1D686), "ord", "mttW", "MATHEMATICAL MONOSPACE CAPITAL W", nil) +addSymbol(U(0x1D687), "ord", "mttX", "MATHEMATICAL MONOSPACE CAPITAL X", nil) +addSymbol(U(0x1D688), "ord", "mttY", "MATHEMATICAL MONOSPACE CAPITAL Y", nil) +addSymbol(U(0x1D689), "ord", "mttZ", "MATHEMATICAL MONOSPACE CAPITAL Z", nil) +addSymbol(U(0x1D68A), "ord", "mtta", "MATHEMATICAL MONOSPACE SMALL A", nil) +addSymbol(U(0x1D68B), "ord", "mttb", "MATHEMATICAL MONOSPACE SMALL B", nil) +addSymbol(U(0x1D68C), "ord", "mttc", "MATHEMATICAL MONOSPACE SMALL C", nil) +addSymbol(U(0x1D68D), "ord", "mttd", "MATHEMATICAL MONOSPACE SMALL D", nil) +addSymbol(U(0x1D68E), "ord", "mtte", "MATHEMATICAL MONOSPACE SMALL E", nil) +addSymbol(U(0x1D68F), "ord", "mttf", "MATHEMATICAL MONOSPACE SMALL F", nil) +addSymbol(U(0x1D690), "ord", "mttg", "MATHEMATICAL MONOSPACE SMALL G", nil) +addSymbol(U(0x1D691), "ord", "mtth", "MATHEMATICAL MONOSPACE SMALL H", nil) +addSymbol(U(0x1D692), "ord", "mtti", "MATHEMATICAL MONOSPACE SMALL I", nil) +addSymbol(U(0x1D693), "ord", "mttj", "MATHEMATICAL MONOSPACE SMALL J", nil) +addSymbol(U(0x1D694), "ord", "mttk", "MATHEMATICAL MONOSPACE SMALL K", nil) +addSymbol(U(0x1D695), "ord", "mttl", "MATHEMATICAL MONOSPACE SMALL L", nil) +addSymbol(U(0x1D696), "ord", "mttm", "MATHEMATICAL MONOSPACE SMALL M", nil) +addSymbol(U(0x1D697), "ord", "mttn", "MATHEMATICAL MONOSPACE SMALL N", nil) +addSymbol(U(0x1D698), "ord", "mtto", "MATHEMATICAL MONOSPACE SMALL O", nil) +addSymbol(U(0x1D699), "ord", "mttp", "MATHEMATICAL MONOSPACE SMALL P", nil) +addSymbol(U(0x1D69A), "ord", "mttq", "MATHEMATICAL MONOSPACE SMALL Q", nil) +addSymbol(U(0x1D69B), "ord", "mttr", "MATHEMATICAL MONOSPACE SMALL R", nil) +addSymbol(U(0x1D69C), "ord", "mtts", "MATHEMATICAL MONOSPACE SMALL S", nil) +addSymbol(U(0x1D69D), "ord", "mttt", "MATHEMATICAL MONOSPACE SMALL T", nil) +addSymbol(U(0x1D69E), "ord", "mttu", "MATHEMATICAL MONOSPACE SMALL U", nil) +addSymbol(U(0x1D69F), "ord", "mttv", "MATHEMATICAL MONOSPACE SMALL V", nil) +addSymbol(U(0x1D6A0), "ord", "mttw", "MATHEMATICAL MONOSPACE SMALL W", nil) +addSymbol(U(0x1D6A1), "ord", "mttx", "MATHEMATICAL MONOSPACE SMALL X", nil) +addSymbol(U(0x1D6A2), "ord", "mtty", "MATHEMATICAL MONOSPACE SMALL Y", nil) +addSymbol(U(0x1D6A3), "ord", "mttz", "MATHEMATICAL MONOSPACE SMALL Z", nil) +addSymbol(U(0x1D6A4), "ord", "imath", "MATHEMATICAL ITALIC SMALL DOTLESS I", nil) +addSymbol(U(0x1D6A5), "ord", "jmath", "MATHEMATICAL ITALIC SMALL DOTLESS J", nil) +addSymbol(U(0x1D6A8), "ord", "mbfAlpha", "MATHEMATICAL BOLD CAPITAL ALPHA", nil) +addSymbol(U(0x1D6A9), "ord", "mbfBeta", "MATHEMATICAL BOLD CAPITAL BETA", nil) +addSymbol(U(0x1D6AA), "ord", "mbfGamma", "MATHEMATICAL BOLD CAPITAL GAMMA", nil) +addSymbol(U(0x1D6AB), "ord", "mbfDelta", "MATHEMATICAL BOLD CAPITAL DELTA", nil) +addSymbol(U(0x1D6AC), "ord", "mbfEpsilon", "MATHEMATICAL BOLD CAPITAL EPSILON", nil) +addSymbol(U(0x1D6AD), "ord", "mbfZeta", "MATHEMATICAL BOLD CAPITAL ZETA", nil) +addSymbol(U(0x1D6AE), "ord", "mbfEta", "MATHEMATICAL BOLD CAPITAL ETA", nil) +addSymbol(U(0x1D6AF), "ord", "mbfTheta", "MATHEMATICAL BOLD CAPITAL THETA", nil) +addSymbol(U(0x1D6B0), "ord", "mbfIota", "MATHEMATICAL BOLD CAPITAL IOTA", nil) +addSymbol(U(0x1D6B1), "ord", "mbfKappa", "MATHEMATICAL BOLD CAPITAL KAPPA", nil) +addSymbol(U(0x1D6B2), "ord", "mbfLambda", "MATHEMATICAL BOLD CAPITAL LAMDA", nil) +addSymbol(U(0x1D6B3), "ord", "mbfMu", "MATHEMATICAL BOLD CAPITAL MU", nil) +addSymbol(U(0x1D6B4), "ord", "mbfNu", "MATHEMATICAL BOLD CAPITAL NU", nil) +addSymbol(U(0x1D6B5), "ord", "mbfXi", "MATHEMATICAL BOLD CAPITAL XI", nil) +addSymbol(U(0x1D6B6), "ord", "mbfOmicron", "MATHEMATICAL BOLD CAPITAL OMICRON", nil) +addSymbol(U(0x1D6B7), "ord", "mbfPi", "MATHEMATICAL BOLD CAPITAL PI", nil) +addSymbol(U(0x1D6B8), "ord", "mbfRho", "MATHEMATICAL BOLD CAPITAL RHO", nil) +addSymbol(U(0x1D6B9), "ord", "mbfvarTheta", "MATHEMATICAL BOLD CAPITAL THETA SYMBOL", nil) +addSymbol(U(0x1D6BA), "ord", "mbfSigma", "MATHEMATICAL BOLD CAPITAL SIGMA", nil) +addSymbol(U(0x1D6BB), "ord", "mbfTau", "MATHEMATICAL BOLD CAPITAL TAU", nil) +addSymbol(U(0x1D6BC), "ord", "mbfUpsilon", "MATHEMATICAL BOLD CAPITAL UPSILON", nil) +addSymbol(U(0x1D6BD), "ord", "mbfPhi", "MATHEMATICAL BOLD CAPITAL PHI", nil) +addSymbol(U(0x1D6BE), "ord", "mbfChi", "MATHEMATICAL BOLD CAPITAL CHI", nil) +addSymbol(U(0x1D6BF), "ord", "mbfPsi", "MATHEMATICAL BOLD CAPITAL PSI", nil) +addSymbol(U(0x1D6C0), "ord", "mbfOmega", "MATHEMATICAL BOLD CAPITAL OMEGA", nil) +addSymbol(U(0x1D6C1), "ord", "mbfnabla", "MATHEMATICAL BOLD NABLA", nil) +addSymbol(U(0x1D6C2), "ord", "mbfalpha", "MATHEMATICAL BOLD SMALL ALPHA", nil) +addSymbol(U(0x1D6C3), "ord", "mbfbeta", "MATHEMATICAL BOLD SMALL BETA", nil) +addSymbol(U(0x1D6C4), "ord", "mbfgamma", "MATHEMATICAL BOLD SMALL GAMMA", nil) +addSymbol(U(0x1D6C5), "ord", "mbfdelta", "MATHEMATICAL BOLD SMALL DELTA", nil) +addSymbol(U(0x1D6C6), "ord", "mbfvarepsilon", "MATHEMATICAL BOLD SMALL EPSILON", nil) +addSymbol(U(0x1D6C7), "ord", "mbfzeta", "MATHEMATICAL BOLD SMALL ZETA", nil) +addSymbol(U(0x1D6C8), "ord", "mbfeta", "MATHEMATICAL BOLD SMALL ETA", nil) +addSymbol(U(0x1D6C9), "ord", "mbftheta", "MATHEMATICAL BOLD SMALL THETA", nil) +addSymbol(U(0x1D6CA), "ord", "mbfiota", "MATHEMATICAL BOLD SMALL IOTA", nil) +addSymbol(U(0x1D6CB), "ord", "mbfkappa", "MATHEMATICAL BOLD SMALL KAPPA", nil) +addSymbol(U(0x1D6CC), "ord", "mbflambda", "MATHEMATICAL BOLD SMALL LAMDA", nil) +addSymbol(U(0x1D6CD), "ord", "mbfmu", "MATHEMATICAL BOLD SMALL MU", nil) +addSymbol(U(0x1D6CE), "ord", "mbfnu", "MATHEMATICAL BOLD SMALL NU", nil) +addSymbol(U(0x1D6CF), "ord", "mbfxi", "MATHEMATICAL BOLD SMALL XI", nil) +addSymbol(U(0x1D6D0), "ord", "mbfomicron", "MATHEMATICAL BOLD SMALL OMICRON", nil) +addSymbol(U(0x1D6D1), "ord", "mbfpi", "MATHEMATICAL BOLD SMALL PI", nil) +addSymbol(U(0x1D6D2), "ord", "mbfrho", "MATHEMATICAL BOLD SMALL RHO", nil) +addSymbol(U(0x1D6D3), "ord", "mbfvarsigma", "MATHEMATICAL BOLD SMALL FINAL SIGMA", nil) +addSymbol(U(0x1D6D4), "ord", "mbfsigma", "MATHEMATICAL BOLD SMALL SIGMA", nil) +addSymbol(U(0x1D6D5), "ord", "mbftau", "MATHEMATICAL BOLD SMALL TAU", nil) +addSymbol(U(0x1D6D6), "ord", "mbfupsilon", "MATHEMATICAL BOLD SMALL UPSILON", nil) +addSymbol(U(0x1D6D7), "ord", "mbfvarphi", "MATHEMATICAL BOLD SMALL PHI", nil) +addSymbol(U(0x1D6D8), "ord", "mbfchi", "MATHEMATICAL BOLD SMALL CHI", nil) +addSymbol(U(0x1D6D9), "ord", "mbfpsi", "MATHEMATICAL BOLD SMALL PSI", nil) +addSymbol(U(0x1D6DA), "ord", "mbfomega", "MATHEMATICAL BOLD SMALL OMEGA", nil) +addSymbol(U(0x1D6DB), "ord", "mbfpartial", "MATHEMATICAL BOLD PARTIAL DIFFERENTIAL", nil) +addSymbol(U(0x1D6DC), "ord", "mbfepsilon", "MATHEMATICAL BOLD EPSILON SYMBOL", nil) +addSymbol(U(0x1D6DD), "ord", "mbfvartheta", "MATHEMATICAL BOLD THETA SYMBOL", nil) +addSymbol(U(0x1D6DE), "ord", "mbfvarkappa", "MATHEMATICAL BOLD KAPPA SYMBOL", nil) +addSymbol(U(0x1D6DF), "ord", "mbfphi", "MATHEMATICAL BOLD PHI SYMBOL", nil) +addSymbol(U(0x1D6E0), "ord", "mbfvarrho", "MATHEMATICAL BOLD RHO SYMBOL", nil) +addSymbol(U(0x1D6E1), "ord", "mbfvarpi", "MATHEMATICAL BOLD PI SYMBOL", nil) +addSymbol(U(0x1D6E2), "ord", "mitAlpha", "MATHEMATICAL ITALIC CAPITAL ALPHA", nil) +addSymbol(U(0x1D6E3), "ord", "mitBeta", "MATHEMATICAL ITALIC CAPITAL BETA", nil) +addSymbol(U(0x1D6E4), "ord", "mitGamma", "MATHEMATICAL ITALIC CAPITAL GAMMA", nil) +addSymbol(U(0x1D6E5), "ord", "mitDelta", "MATHEMATICAL ITALIC CAPITAL DELTA", nil) +addSymbol(U(0x1D6E6), "ord", "mitEpsilon", "MATHEMATICAL ITALIC CAPITAL EPSILON", nil) +addSymbol(U(0x1D6E7), "ord", "mitZeta", "MATHEMATICAL ITALIC CAPITAL ZETA", nil) +addSymbol(U(0x1D6E8), "ord", "mitEta", "MATHEMATICAL ITALIC CAPITAL ETA", nil) +addSymbol(U(0x1D6E9), "ord", "mitTheta", "MATHEMATICAL ITALIC CAPITAL THETA", nil) +addSymbol(U(0x1D6EA), "ord", "mitIota", "MATHEMATICAL ITALIC CAPITAL IOTA", nil) +addSymbol(U(0x1D6EB), "ord", "mitKappa", "MATHEMATICAL ITALIC CAPITAL KAPPA", nil) +addSymbol(U(0x1D6EC), "ord", "mitLambda", "MATHEMATICAL ITALIC CAPITAL LAMDA", nil) +addSymbol(U(0x1D6ED), "ord", "mitMu", "MATHEMATICAL ITALIC CAPITAL MU", nil) +addSymbol(U(0x1D6EE), "ord", "mitNu", "MATHEMATICAL ITALIC CAPITAL NU", nil) +addSymbol(U(0x1D6EF), "ord", "mitXi", "MATHEMATICAL ITALIC CAPITAL XI", nil) +addSymbol(U(0x1D6F0), "ord", "mitOmicron", "MATHEMATICAL ITALIC CAPITAL OMICRON", nil) +addSymbol(U(0x1D6F1), "ord", "mitPi", "MATHEMATICAL ITALIC CAPITAL PI", nil) +addSymbol(U(0x1D6F2), "ord", "mitRho", "MATHEMATICAL ITALIC CAPITAL RHO", nil) +addSymbol(U(0x1D6F3), "ord", "mitvarTheta", "MATHEMATICAL ITALIC CAPITAL THETA SYMBOL", nil) +addSymbol(U(0x1D6F4), "ord", "mitSigma", "MATHEMATICAL ITALIC CAPITAL SIGMA", nil) +addSymbol(U(0x1D6F5), "ord", "mitTau", "MATHEMATICAL ITALIC CAPITAL TAU", nil) +addSymbol(U(0x1D6F6), "ord", "mitUpsilon", "MATHEMATICAL ITALIC CAPITAL UPSILON", nil) +addSymbol(U(0x1D6F7), "ord", "mitPhi", "MATHEMATICAL ITALIC CAPITAL PHI", nil) +addSymbol(U(0x1D6F8), "ord", "mitChi", "MATHEMATICAL ITALIC CAPITAL CHI", nil) +addSymbol(U(0x1D6F9), "ord", "mitPsi", "MATHEMATICAL ITALIC CAPITAL PSI", nil) +addSymbol(U(0x1D6FA), "ord", "mitOmega", "MATHEMATICAL ITALIC CAPITAL OMEGA", nil) +addSymbol(U(0x1D6FB), "ord", "mitnabla", "MATHEMATICAL ITALIC NABLA", nil) +addSymbol(U(0x1D6FC), "ord", "mitalpha", "MATHEMATICAL ITALIC SMALL ALPHA", nil) +addSymbol(U(0x1D6FD), "ord", "mitbeta", "MATHEMATICAL ITALIC SMALL BETA", nil) +addSymbol(U(0x1D6FE), "ord", "mitgamma", "MATHEMATICAL ITALIC SMALL GAMMA", nil) +addSymbol(U(0x1D6FF), "ord", "mitdelta", "MATHEMATICAL ITALIC SMALL DELTA", nil) +addSymbol(U(0x1D700), "ord", "mitvarepsilon", "MATHEMATICAL ITALIC SMALL EPSILON", nil) +addSymbol(U(0x1D701), "ord", "mitzeta", "MATHEMATICAL ITALIC SMALL ZETA", nil) +addSymbol(U(0x1D702), "ord", "miteta", "MATHEMATICAL ITALIC SMALL ETA", nil) +addSymbol(U(0x1D703), "ord", "mittheta", "MATHEMATICAL ITALIC SMALL THETA", nil) +addSymbol(U(0x1D704), "ord", "mitiota", "MATHEMATICAL ITALIC SMALL IOTA", nil) +addSymbol(U(0x1D705), "ord", "mitkappa", "MATHEMATICAL ITALIC SMALL KAPPA", nil) +addSymbol(U(0x1D706), "ord", "mitlambda", "MATHEMATICAL ITALIC SMALL LAMDA", nil) +addSymbol(U(0x1D707), "ord", "mitmu", "MATHEMATICAL ITALIC SMALL MU", nil) +addSymbol(U(0x1D708), "ord", "mitnu", "MATHEMATICAL ITALIC SMALL NU", nil) +addSymbol(U(0x1D709), "ord", "mitxi", "MATHEMATICAL ITALIC SMALL XI", nil) +addSymbol(U(0x1D70A), "ord", "mitomicron", "MATHEMATICAL ITALIC SMALL OMICRON", nil) +addSymbol(U(0x1D70B), "ord", "mitpi", "MATHEMATICAL ITALIC SMALL PI", nil) +addSymbol(U(0x1D70C), "ord", "mitrho", "MATHEMATICAL ITALIC SMALL RHO", nil) +addSymbol(U(0x1D70D), "ord", "mitvarsigma", "MATHEMATICAL ITALIC SMALL FINAL SIGMA", nil) +addSymbol(U(0x1D70E), "ord", "mitsigma", "MATHEMATICAL ITALIC SMALL SIGMA", nil) +addSymbol(U(0x1D70F), "ord", "mittau", "MATHEMATICAL ITALIC SMALL TAU", nil) +addSymbol(U(0x1D710), "ord", "mitupsilon", "MATHEMATICAL ITALIC SMALL UPSILON", nil) +addSymbol(U(0x1D711), "ord", "mitvarphi", "MATHEMATICAL ITALIC SMALL PHI", nil) +addSymbol(U(0x1D712), "ord", "mitchi", "MATHEMATICAL ITALIC SMALL CHI", nil) +addSymbol(U(0x1D713), "ord", "mitpsi", "MATHEMATICAL ITALIC SMALL PSI", nil) +addSymbol(U(0x1D714), "ord", "mitomega", "MATHEMATICAL ITALIC SMALL OMEGA", nil) +addSymbol(U(0x1D715), "ord", "mitpartial", "MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL", nil) +addSymbol(U(0x1D716), "ord", "mitepsilon", "MATHEMATICAL ITALIC EPSILON SYMBOL", nil) +addSymbol(U(0x1D717), "ord", "mitvartheta", "MATHEMATICAL ITALIC THETA SYMBOL", nil) +addSymbol(U(0x1D718), "ord", "mitvarkappa", "MATHEMATICAL ITALIC KAPPA SYMBOL", nil) +addSymbol(U(0x1D719), "ord", "mitphi", "MATHEMATICAL ITALIC PHI SYMBOL", nil) +addSymbol(U(0x1D71A), "ord", "mitvarrho", "MATHEMATICAL ITALIC RHO SYMBOL", nil) +addSymbol(U(0x1D71B), "ord", "mitvarpi", "MATHEMATICAL ITALIC PI SYMBOL", nil) +addSymbol(U(0x1D71C), "ord", "mbfitAlpha", "MATHEMATICAL BOLD ITALIC CAPITAL ALPHA", nil) +addSymbol(U(0x1D71D), "ord", "mbfitBeta", "MATHEMATICAL BOLD ITALIC CAPITAL BETA", nil) +addSymbol(U(0x1D71E), "ord", "mbfitGamma", "MATHEMATICAL BOLD ITALIC CAPITAL GAMMA", nil) +addSymbol(U(0x1D71F), "ord", "mbfitDelta", "MATHEMATICAL BOLD ITALIC CAPITAL DELTA", nil) +addSymbol(U(0x1D720), "ord", "mbfitEpsilon", "MATHEMATICAL BOLD ITALIC CAPITAL EPSILON", nil) +addSymbol(U(0x1D721), "ord", "mbfitZeta", "MATHEMATICAL BOLD ITALIC CAPITAL ZETA", nil) +addSymbol(U(0x1D722), "ord", "mbfitEta", "MATHEMATICAL BOLD ITALIC CAPITAL ETA", nil) +addSymbol(U(0x1D723), "ord", "mbfitTheta", "MATHEMATICAL BOLD ITALIC CAPITAL THETA", nil) +addSymbol(U(0x1D724), "ord", "mbfitIota", "MATHEMATICAL BOLD ITALIC CAPITAL IOTA", nil) +addSymbol(U(0x1D725), "ord", "mbfitKappa", "MATHEMATICAL BOLD ITALIC CAPITAL KAPPA", nil) +addSymbol(U(0x1D726), "ord", "mbfitLambda", "MATHEMATICAL BOLD ITALIC CAPITAL LAMDA", nil) +addSymbol(U(0x1D727), "ord", "mbfitMu", "MATHEMATICAL BOLD ITALIC CAPITAL MU", nil) +addSymbol(U(0x1D728), "ord", "mbfitNu", "MATHEMATICAL BOLD ITALIC CAPITAL NU", nil) +addSymbol(U(0x1D729), "ord", "mbfitXi", "MATHEMATICAL BOLD ITALIC CAPITAL XI", nil) +addSymbol(U(0x1D72A), "ord", "mbfitOmicron", "MATHEMATICAL BOLD ITALIC CAPITAL OMICRON", nil) +addSymbol(U(0x1D72B), "ord", "mbfitPi", "MATHEMATICAL BOLD ITALIC CAPITAL PI", nil) +addSymbol(U(0x1D72C), "ord", "mbfitRho", "MATHEMATICAL BOLD ITALIC CAPITAL RHO", nil) +addSymbol(U(0x1D72D), "ord", "mbfitvarTheta", "MATHEMATICAL BOLD ITALIC CAPITAL THETA SYMBOL", nil) +addSymbol(U(0x1D72E), "ord", "mbfitSigma", "MATHEMATICAL BOLD ITALIC CAPITAL SIGMA", nil) +addSymbol(U(0x1D72F), "ord", "mbfitTau", "MATHEMATICAL BOLD ITALIC CAPITAL TAU", nil) +addSymbol(U(0x1D730), "ord", "mbfitUpsilon", "MATHEMATICAL BOLD ITALIC CAPITAL UPSILON", nil) +addSymbol(U(0x1D731), "ord", "mbfitPhi", "MATHEMATICAL BOLD ITALIC CAPITAL PHI", nil) +addSymbol(U(0x1D732), "ord", "mbfitChi", "MATHEMATICAL BOLD ITALIC CAPITAL CHI", nil) +addSymbol(U(0x1D733), "ord", "mbfitPsi", "MATHEMATICAL BOLD ITALIC CAPITAL PSI", nil) +addSymbol(U(0x1D734), "ord", "mbfitOmega", "MATHEMATICAL BOLD ITALIC CAPITAL OMEGA", nil) +addSymbol(U(0x1D735), "ord", "mbfitnabla", "MATHEMATICAL BOLD ITALIC NABLA", nil) +addSymbol(U(0x1D736), "ord", "mbfitalpha", "MATHEMATICAL BOLD ITALIC SMALL ALPHA", nil) +addSymbol(U(0x1D737), "ord", "mbfitbeta", "MATHEMATICAL BOLD ITALIC SMALL BETA", nil) +addSymbol(U(0x1D738), "ord", "mbfitgamma", "MATHEMATICAL BOLD ITALIC SMALL GAMMA", nil) +addSymbol(U(0x1D739), "ord", "mbfitdelta", "MATHEMATICAL BOLD ITALIC SMALL DELTA", nil) +addSymbol(U(0x1D73A), "ord", "mbfitvarepsilon", "MATHEMATICAL BOLD ITALIC SMALL EPSILON", nil) +addSymbol(U(0x1D73B), "ord", "mbfitzeta", "MATHEMATICAL BOLD ITALIC SMALL ZETA", nil) +addSymbol(U(0x1D73C), "ord", "mbfiteta", "MATHEMATICAL BOLD ITALIC SMALL ETA", nil) +addSymbol(U(0x1D73D), "ord", "mbfittheta", "MATHEMATICAL BOLD ITALIC SMALL THETA", nil) +addSymbol(U(0x1D73E), "ord", "mbfitiota", "MATHEMATICAL BOLD ITALIC SMALL IOTA", nil) +addSymbol(U(0x1D73F), "ord", "mbfitkappa", "MATHEMATICAL BOLD ITALIC SMALL KAPPA", nil) +addSymbol(U(0x1D740), "ord", "mbfitlambda", "MATHEMATICAL BOLD ITALIC SMALL LAMDA", nil) +addSymbol(U(0x1D741), "ord", "mbfitmu", "MATHEMATICAL BOLD ITALIC SMALL MU", nil) +addSymbol(U(0x1D742), "ord", "mbfitnu", "MATHEMATICAL BOLD ITALIC SMALL NU", nil) +addSymbol(U(0x1D743), "ord", "mbfitxi", "MATHEMATICAL BOLD ITALIC SMALL XI", nil) +addSymbol(U(0x1D744), "ord", "mbfitomicron", "MATHEMATICAL BOLD ITALIC SMALL OMICRON", nil) +addSymbol(U(0x1D745), "ord", "mbfitpi", "MATHEMATICAL BOLD ITALIC SMALL PI", nil) +addSymbol(U(0x1D746), "ord", "mbfitrho", "MATHEMATICAL BOLD ITALIC SMALL RHO", nil) +addSymbol(U(0x1D747), "ord", "mbfitvarsigma", "MATHEMATICAL BOLD ITALIC SMALL FINAL SIGMA", nil) +addSymbol(U(0x1D748), "ord", "mbfitsigma", "MATHEMATICAL BOLD ITALIC SMALL SIGMA", nil) +addSymbol(U(0x1D749), "ord", "mbfittau", "MATHEMATICAL BOLD ITALIC SMALL TAU", nil) +addSymbol(U(0x1D74A), "ord", "mbfitupsilon", "MATHEMATICAL BOLD ITALIC SMALL UPSILON", nil) +addSymbol(U(0x1D74B), "ord", "mbfitvarphi", "MATHEMATICAL BOLD ITALIC SMALL PHI", nil) +addSymbol(U(0x1D74C), "ord", "mbfitchi", "MATHEMATICAL BOLD ITALIC SMALL CHI", nil) +addSymbol(U(0x1D74D), "ord", "mbfitpsi", "MATHEMATICAL BOLD ITALIC SMALL PSI", nil) +addSymbol(U(0x1D74E), "ord", "mbfitomega", "MATHEMATICAL BOLD ITALIC SMALL OMEGA", nil) +addSymbol(U(0x1D74F), "ord", "mbfitpartial", "MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL", nil) +addSymbol(U(0x1D750), "ord", "mbfitepsilon", "MATHEMATICAL BOLD ITALIC EPSILON SYMBOL", nil) +addSymbol(U(0x1D751), "ord", "mbfitvartheta", "MATHEMATICAL BOLD ITALIC THETA SYMBOL", nil) +addSymbol(U(0x1D752), "ord", "mbfitvarkappa", "MATHEMATICAL BOLD ITALIC KAPPA SYMBOL", nil) +addSymbol(U(0x1D753), "ord", "mbfitphi", "MATHEMATICAL BOLD ITALIC PHI SYMBOL", nil) +addSymbol(U(0x1D754), "ord", "mbfitvarrho", "MATHEMATICAL BOLD ITALIC RHO SYMBOL", nil) +addSymbol(U(0x1D755), "ord", "mbfitvarpi", "MATHEMATICAL BOLD ITALIC PI SYMBOL", nil) +addSymbol(U(0x1D756), "ord", "mbfsansAlpha", "MATHEMATICAL SANS-SERIF BOLD CAPITAL ALPHA", nil) +addSymbol(U(0x1D757), "ord", "mbfsansBeta", "MATHEMATICAL SANS-SERIF BOLD CAPITAL BETA", nil) +addSymbol(U(0x1D758), "ord", "mbfsansGamma", "MATHEMATICAL SANS-SERIF BOLD CAPITAL GAMMA", nil) +addSymbol(U(0x1D759), "ord", "mbfsansDelta", "MATHEMATICAL SANS-SERIF BOLD CAPITAL DELTA", nil) +addSymbol(U(0x1D75A), "ord", "mbfsansEpsilon", "MATHEMATICAL SANS-SERIF BOLD CAPITAL EPSILON", nil) +addSymbol(U(0x1D75B), "ord", "mbfsansZeta", "MATHEMATICAL SANS-SERIF BOLD CAPITAL ZETA", nil) +addSymbol(U(0x1D75C), "ord", "mbfsansEta", "MATHEMATICAL SANS-SERIF BOLD CAPITAL ETA", nil) +addSymbol(U(0x1D75D), "ord", "mbfsansTheta", "MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA", nil) +addSymbol(U(0x1D75E), "ord", "mbfsansIota", "MATHEMATICAL SANS-SERIF BOLD CAPITAL IOTA", nil) +addSymbol(U(0x1D75F), "ord", "mbfsansKappa", "MATHEMATICAL SANS-SERIF BOLD CAPITAL KAPPA", nil) +addSymbol(U(0x1D760), "ord", "mbfsansLambda", "MATHEMATICAL SANS-SERIF BOLD CAPITAL LAMDA", nil) +addSymbol(U(0x1D761), "ord", "mbfsansMu", "MATHEMATICAL SANS-SERIF BOLD CAPITAL MU", nil) +addSymbol(U(0x1D762), "ord", "mbfsansNu", "MATHEMATICAL SANS-SERIF BOLD CAPITAL NU", nil) +addSymbol(U(0x1D763), "ord", "mbfsansXi", "MATHEMATICAL SANS-SERIF BOLD CAPITAL XI", nil) +addSymbol(U(0x1D764), "ord", "mbfsansOmicron", "MATHEMATICAL SANS-SERIF BOLD CAPITAL OMICRON", nil) +addSymbol(U(0x1D765), "ord", "mbfsansPi", "MATHEMATICAL SANS-SERIF BOLD CAPITAL PI", nil) +addSymbol(U(0x1D766), "ord", "mbfsansRho", "MATHEMATICAL SANS-SERIF BOLD CAPITAL RHO", nil) +addSymbol(U(0x1D767), "ord", "mbfsansvarTheta", "MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA SYMBOL", nil) +addSymbol(U(0x1D768), "ord", "mbfsansSigma", "MATHEMATICAL SANS-SERIF BOLD CAPITAL SIGMA", nil) +addSymbol(U(0x1D769), "ord", "mbfsansTau", "MATHEMATICAL SANS-SERIF BOLD CAPITAL TAU", nil) +addSymbol(U(0x1D76A), "ord", "mbfsansUpsilon", "MATHEMATICAL SANS-SERIF BOLD CAPITAL UPSILON", nil) +addSymbol(U(0x1D76B), "ord", "mbfsansPhi", "MATHEMATICAL SANS-SERIF BOLD CAPITAL PHI", nil) +addSymbol(U(0x1D76C), "ord", "mbfsansChi", "MATHEMATICAL SANS-SERIF BOLD CAPITAL CHI", nil) +addSymbol(U(0x1D76D), "ord", "mbfsansPsi", "MATHEMATICAL SANS-SERIF BOLD CAPITAL PSI", nil) +addSymbol(U(0x1D76E), "ord", "mbfsansOmega", "MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA", nil) +addSymbol(U(0x1D76F), "ord", "mbfsansnabla", "MATHEMATICAL SANS-SERIF BOLD NABLA", nil) +addSymbol(U(0x1D770), "ord", "mbfsansalpha", "MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA", nil) +addSymbol(U(0x1D771), "ord", "mbfsansbeta", "MATHEMATICAL SANS-SERIF BOLD SMALL BETA", nil) +addSymbol(U(0x1D772), "ord", "mbfsansgamma", "MATHEMATICAL SANS-SERIF BOLD SMALL GAMMA", nil) +addSymbol(U(0x1D773), "ord", "mbfsansdelta", "MATHEMATICAL SANS-SERIF BOLD SMALL DELTA", nil) +addSymbol(U(0x1D774), "ord", "mbfsansvarepsilon", "MATHEMATICAL SANS-SERIF BOLD SMALL EPSILON", nil) +addSymbol(U(0x1D775), "ord", "mbfsanszeta", "MATHEMATICAL SANS-SERIF BOLD SMALL ZETA", nil) +addSymbol(U(0x1D776), "ord", "mbfsanseta", "MATHEMATICAL SANS-SERIF BOLD SMALL ETA", nil) +addSymbol(U(0x1D777), "ord", "mbfsanstheta", "MATHEMATICAL SANS-SERIF BOLD SMALL THETA", nil) +addSymbol(U(0x1D778), "ord", "mbfsansiota", "MATHEMATICAL SANS-SERIF BOLD SMALL IOTA", nil) +addSymbol(U(0x1D779), "ord", "mbfsanskappa", "MATHEMATICAL SANS-SERIF BOLD SMALL KAPPA", nil) +addSymbol(U(0x1D77A), "ord", "mbfsanslambda", "MATHEMATICAL SANS-SERIF BOLD SMALL LAMDA", nil) +addSymbol(U(0x1D77B), "ord", "mbfsansmu", "MATHEMATICAL SANS-SERIF BOLD SMALL MU", nil) +addSymbol(U(0x1D77C), "ord", "mbfsansnu", "MATHEMATICAL SANS-SERIF BOLD SMALL NU", nil) +addSymbol(U(0x1D77D), "ord", "mbfsansxi", "MATHEMATICAL SANS-SERIF BOLD SMALL XI", nil) +addSymbol(U(0x1D77E), "ord", "mbfsansomicron", "MATHEMATICAL SANS-SERIF BOLD SMALL OMICRON", nil) +addSymbol(U(0x1D77F), "ord", "mbfsanspi", "MATHEMATICAL SANS-SERIF BOLD SMALL PI", nil) +addSymbol(U(0x1D780), "ord", "mbfsansrho", "MATHEMATICAL SANS-SERIF BOLD SMALL RHO", nil) +addSymbol(U(0x1D781), "ord", "mbfsansvarsigma", "MATHEMATICAL SANS-SERIF BOLD SMALL FINAL SIGMA", nil) +addSymbol(U(0x1D782), "ord", "mbfsanssigma", "MATHEMATICAL SANS-SERIF BOLD SMALL SIGMA", nil) +addSymbol(U(0x1D783), "ord", "mbfsanstau", "MATHEMATICAL SANS-SERIF BOLD SMALL TAU", nil) +addSymbol(U(0x1D784), "ord", "mbfsansupsilon", "MATHEMATICAL SANS-SERIF BOLD SMALL UPSILON", nil) +addSymbol(U(0x1D785), "ord", "mbfsansvarphi", "MATHEMATICAL SANS-SERIF BOLD SMALL PHI", nil) +addSymbol(U(0x1D786), "ord", "mbfsanschi", "MATHEMATICAL SANS-SERIF BOLD SMALL CHI", nil) +addSymbol(U(0x1D787), "ord", "mbfsanspsi", "MATHEMATICAL SANS-SERIF BOLD SMALL PSI", nil) +addSymbol(U(0x1D788), "ord", "mbfsansomega", "MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA", nil) +addSymbol(U(0x1D789), "ord", "mbfsanspartial", "MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL", nil) +addSymbol(U(0x1D78A), "ord", "mbfsansepsilon", "MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL", nil) +addSymbol(U(0x1D78B), "ord", "mbfsansvartheta", "MATHEMATICAL SANS-SERIF BOLD THETA SYMBOL", nil) +addSymbol(U(0x1D78C), "ord", "mbfsansvarkappa", "MATHEMATICAL SANS-SERIF BOLD KAPPA SYMBOL", nil) +addSymbol(U(0x1D78D), "ord", "mbfsansphi", "MATHEMATICAL SANS-SERIF BOLD PHI SYMBOL", nil) +addSymbol(U(0x1D78E), "ord", "mbfsansvarrho", "MATHEMATICAL SANS-SERIF BOLD RHO SYMBOL", nil) +addSymbol(U(0x1D78F), "ord", "mbfsansvarpi", "MATHEMATICAL SANS-SERIF BOLD PI SYMBOL", nil) +addSymbol(U(0x1D790), "ord", "mbfitsansAlpha", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ALPHA", nil) +addSymbol(U(0x1D791), "ord", "mbfitsansBeta", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL BETA", nil) +addSymbol(U(0x1D792), "ord", "mbfitsansGamma", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL GAMMA", nil) +addSymbol(U(0x1D793), "ord", "mbfitsansDelta", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL DELTA", nil) +addSymbol(U(0x1D794), "ord", "mbfitsansEpsilon", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL EPSILON", nil) +addSymbol(U(0x1D795), "ord", "mbfitsansZeta", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ZETA", nil) +addSymbol(U(0x1D796), "ord", "mbfitsansEta", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ETA", nil) +addSymbol(U(0x1D797), "ord", "mbfitsansTheta", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA", nil) +addSymbol(U(0x1D798), "ord", "mbfitsansIota", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL IOTA", nil) +addSymbol(U(0x1D799), "ord", "mbfitsansKappa", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL KAPPA", nil) +addSymbol(U(0x1D79A), "ord", "mbfitsansLambda", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL LAMDA", nil) +addSymbol(U(0x1D79B), "ord", "mbfitsansMu", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL MU", nil) +addSymbol(U(0x1D79C), "ord", "mbfitsansNu", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL NU", nil) +addSymbol(U(0x1D79D), "ord", "mbfitsansXi", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL XI", nil) +addSymbol(U(0x1D79E), "ord", "mbfitsansOmicron", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMICRON", nil) +addSymbol(U(0x1D79F), "ord", "mbfitsansPi", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PI", nil) +addSymbol(U(0x1D7A0), "ord", "mbfitsansRho", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL RHO", nil) +addSymbol(U(0x1D7A1), "ord", "mbfitsansvarTheta", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA SYMBOL", nil) +addSymbol(U(0x1D7A2), "ord", "mbfitsansSigma", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL SIGMA", nil) +addSymbol(U(0x1D7A3), "ord", "mbfitsansTau", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL TAU", nil) +addSymbol(U(0x1D7A4), "ord", "mbfitsansUpsilon", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL UPSILON", nil) +addSymbol(U(0x1D7A5), "ord", "mbfitsansPhi", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PHI", nil) +addSymbol(U(0x1D7A6), "ord", "mbfitsansChi", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL CHI", nil) +addSymbol(U(0x1D7A7), "ord", "mbfitsansPsi", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PSI", nil) +addSymbol(U(0x1D7A8), "ord", "mbfitsansOmega", "MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA", nil) +addSymbol(U(0x1D7A9), "ord", "mbfitsansnabla", "MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA", nil) +addSymbol(U(0x1D7AA), "ord", "mbfitsansalpha", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA", nil) +addSymbol(U(0x1D7AB), "ord", "mbfitsansbeta", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL BETA", nil) +addSymbol(U(0x1D7AC), "ord", "mbfitsansgamma", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL GAMMA", nil) +addSymbol(U(0x1D7AD), "ord", "mbfitsansdelta", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL DELTA", nil) +addSymbol(U(0x1D7AE), "ord", "mbfitsansvarepsilon", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL EPSILON", nil) +addSymbol(U(0x1D7AF), "ord", "mbfitsanszeta", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ZETA", nil) +addSymbol(U(0x1D7B0), "ord", "mbfitsanseta", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ETA", nil) +addSymbol(U(0x1D7B1), "ord", "mbfitsanstheta", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL THETA", nil) +addSymbol(U(0x1D7B2), "ord", "mbfitsansiota", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL IOTA", nil) +addSymbol(U(0x1D7B3), "ord", "mbfitsanskappa", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL KAPPA", nil) +addSymbol(U(0x1D7B4), "ord", "mbfitsanslambda", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL LAMDA", nil) +addSymbol(U(0x1D7B5), "ord", "mbfitsansmu", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL MU", nil) +addSymbol(U(0x1D7B6), "ord", "mbfitsansnu", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL NU", nil) +addSymbol(U(0x1D7B7), "ord", "mbfitsansxi", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL XI", nil) +addSymbol(U(0x1D7B8), "ord", "mbfitsansomicron", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMICRON", nil) +addSymbol(U(0x1D7B9), "ord", "mbfitsanspi", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PI", nil) +addSymbol(U(0x1D7BA), "ord", "mbfitsansrho", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL RHO", nil) +addSymbol(U(0x1D7BB), "ord", "mbfitsansvarsigma", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL FINAL SIGMA", nil) +addSymbol(U(0x1D7BC), "ord", "mbfitsanssigma", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL SIGMA", nil) +addSymbol(U(0x1D7BD), "ord", "mbfitsanstau", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL TAU", nil) +addSymbol(U(0x1D7BE), "ord", "mbfitsansupsilon", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL UPSILON", nil) +addSymbol(U(0x1D7BF), "ord", "mbfitsansvarphi", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PHI", nil) +addSymbol(U(0x1D7C0), "ord", "mbfitsanschi", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL CHI", nil) +addSymbol(U(0x1D7C1), "ord", "mbfitsanspsi", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PSI", nil) +addSymbol(U(0x1D7C2), "ord", "mbfitsansomega", "MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA", nil) +addSymbol(U(0x1D7C3), "ord", "mbfitsanspartial", "MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL", nil) +addSymbol(U(0x1D7C4), "ord", "mbfitsansepsilon", "MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL", nil) +addSymbol(U(0x1D7C5), "ord", "mbfitsansvartheta", "MATHEMATICAL SANS-SERIF BOLD ITALIC THETA SYMBOL", nil) +addSymbol(U(0x1D7C6), "ord", "mbfitsansvarkappa", "MATHEMATICAL SANS-SERIF BOLD ITALIC KAPPA SYMBOL", nil) +addSymbol(U(0x1D7C7), "ord", "mbfitsansphi", "MATHEMATICAL SANS-SERIF BOLD ITALIC PHI SYMBOL", nil) +addSymbol(U(0x1D7C8), "ord", "mbfitsansvarrho", "MATHEMATICAL SANS-SERIF BOLD ITALIC RHO SYMBOL", nil) +addSymbol(U(0x1D7C9), "ord", "mbfitsansvarpi", "MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL", nil) +addSymbol(U(0x1D7CA), "ord", "mbfDigamma", "MATHEMATICAL BOLD CAPITAL DIGAMMA", nil) +addSymbol(U(0x1D7CB), "ord", "mbfdigamma", "MATHEMATICAL BOLD SMALL DIGAMMA", nil) +addSymbol(U(0x1D7CE), "ord", "mbfzero", "MATHEMATICAL BOLD DIGIT ZERO", nil) +addSymbol(U(0x1D7CF), "ord", "mbfone", "MATHEMATICAL BOLD DIGIT ONE", nil) +addSymbol(U(0x1D7D0), "ord", "mbftwo", "MATHEMATICAL BOLD DIGIT TWO", nil) +addSymbol(U(0x1D7D1), "ord", "mbfthree", "MATHEMATICAL BOLD DIGIT THREE", nil) +addSymbol(U(0x1D7D2), "ord", "mbffour", "MATHEMATICAL BOLD DIGIT FOUR", nil) +addSymbol(U(0x1D7D3), "ord", "mbffive", "MATHEMATICAL BOLD DIGIT FIVE", nil) +addSymbol(U(0x1D7D4), "ord", "mbfsix", "MATHEMATICAL BOLD DIGIT SIX", nil) +addSymbol(U(0x1D7D5), "ord", "mbfseven", "MATHEMATICAL BOLD DIGIT SEVEN", nil) +addSymbol(U(0x1D7D6), "ord", "mbfeight", "MATHEMATICAL BOLD DIGIT EIGHT", nil) +addSymbol(U(0x1D7D7), "ord", "mbfnine", "MATHEMATICAL BOLD DIGIT NINE", nil) +addSymbol(U(0x1D7D8), "ord", "Bbbzero", "MATHEMATICAL DOUBLE-STRUCK DIGIT ZERO", nil) +addSymbol(U(0x1D7D9), "ord", "Bbbone", "MATHEMATICAL DOUBLE-STRUCK DIGIT ONE", nil) +addSymbol(U(0x1D7DA), "ord", "Bbbtwo", "MATHEMATICAL DOUBLE-STRUCK DIGIT TWO", nil) +addSymbol(U(0x1D7DB), "ord", "Bbbthree", "MATHEMATICAL DOUBLE-STRUCK DIGIT THREE", nil) +addSymbol(U(0x1D7DC), "ord", "Bbbfour", "MATHEMATICAL DOUBLE-STRUCK DIGIT FOUR", nil) +addSymbol(U(0x1D7DD), "ord", "Bbbfive", "MATHEMATICAL DOUBLE-STRUCK DIGIT FIVE", nil) +addSymbol(U(0x1D7DE), "ord", "Bbbsix", "MATHEMATICAL DOUBLE-STRUCK DIGIT SIX", nil) +addSymbol(U(0x1D7DF), "ord", "Bbbseven", "MATHEMATICAL DOUBLE-STRUCK DIGIT SEVEN", nil) +addSymbol(U(0x1D7E0), "ord", "Bbbeight", "MATHEMATICAL DOUBLE-STRUCK DIGIT EIGHT", nil) +addSymbol(U(0x1D7E1), "ord", "Bbbnine", "MATHEMATICAL DOUBLE-STRUCK DIGIT NINE", nil) +addSymbol(U(0x1D7E2), "ord", "msanszero", "MATHEMATICAL SANS-SERIF DIGIT ZERO", nil) +addSymbol(U(0x1D7E3), "ord", "msansone", "MATHEMATICAL SANS-SERIF DIGIT ONE", nil) +addSymbol(U(0x1D7E4), "ord", "msanstwo", "MATHEMATICAL SANS-SERIF DIGIT TWO", nil) +addSymbol(U(0x1D7E5), "ord", "msansthree", "MATHEMATICAL SANS-SERIF DIGIT THREE", nil) +addSymbol(U(0x1D7E6), "ord", "msansfour", "MATHEMATICAL SANS-SERIF DIGIT FOUR", nil) +addSymbol(U(0x1D7E7), "ord", "msansfive", "MATHEMATICAL SANS-SERIF DIGIT FIVE", nil) +addSymbol(U(0x1D7E8), "ord", "msanssix", "MATHEMATICAL SANS-SERIF DIGIT SIX", nil) +addSymbol(U(0x1D7E9), "ord", "msansseven", "MATHEMATICAL SANS-SERIF DIGIT SEVEN", nil) +addSymbol(U(0x1D7EA), "ord", "msanseight", "MATHEMATICAL SANS-SERIF DIGIT EIGHT", nil) +addSymbol(U(0x1D7EB), "ord", "msansnine", "MATHEMATICAL SANS-SERIF DIGIT NINE", nil) +addSymbol(U(0x1D7EC), "ord", "mbfsanszero", "MATHEMATICAL SANS-SERIF BOLD DIGIT ZERO", nil) +addSymbol(U(0x1D7ED), "ord", "mbfsansone", "MATHEMATICAL SANS-SERIF BOLD DIGIT ONE", nil) +addSymbol(U(0x1D7EE), "ord", "mbfsanstwo", "MATHEMATICAL SANS-SERIF BOLD DIGIT TWO", nil) +addSymbol(U(0x1D7EF), "ord", "mbfsansthree", "MATHEMATICAL SANS-SERIF BOLD DIGIT THREE", nil) +addSymbol(U(0x1D7F0), "ord", "mbfsansfour", "MATHEMATICAL SANS-SERIF BOLD DIGIT FOUR", nil) +addSymbol(U(0x1D7F1), "ord", "mbfsansfive", "MATHEMATICAL SANS-SERIF BOLD DIGIT FIVE", nil) +addSymbol(U(0x1D7F2), "ord", "mbfsanssix", "MATHEMATICAL SANS-SERIF BOLD DIGIT SIX", nil) +addSymbol(U(0x1D7F3), "ord", "mbfsansseven", "MATHEMATICAL SANS-SERIF BOLD DIGIT SEVEN", nil) +addSymbol(U(0x1D7F4), "ord", "mbfsanseight", "MATHEMATICAL SANS-SERIF BOLD DIGIT EIGHT", nil) +addSymbol(U(0x1D7F5), "ord", "mbfsansnine", "MATHEMATICAL SANS-SERIF BOLD DIGIT NINE", nil) +addSymbol(U(0x1D7F6), "ord", "mttzero", "MATHEMATICAL MONOSPACE DIGIT ZERO", nil) +addSymbol(U(0x1D7F7), "ord", "mttone", "MATHEMATICAL MONOSPACE DIGIT ONE", nil) +addSymbol(U(0x1D7F8), "ord", "mtttwo", "MATHEMATICAL MONOSPACE DIGIT TWO", nil) +addSymbol(U(0x1D7F9), "ord", "mttthree", "MATHEMATICAL MONOSPACE DIGIT THREE", nil) +addSymbol(U(0x1D7FA), "ord", "mttfour", "MATHEMATICAL MONOSPACE DIGIT FOUR", nil) +addSymbol(U(0x1D7FB), "ord", "mttfive", "MATHEMATICAL MONOSPACE DIGIT FIVE", nil) +addSymbol(U(0x1D7FC), "ord", "mttsix", "MATHEMATICAL MONOSPACE DIGIT SIX", nil) +addSymbol(U(0x1D7FD), "ord", "mttseven", "MATHEMATICAL MONOSPACE DIGIT SEVEN", nil) +addSymbol(U(0x1D7FE), "ord", "mtteight", "MATHEMATICAL MONOSPACE DIGIT EIGHT", nil) +addSymbol(U(0x1D7FF), "ord", "mttnine", "MATHEMATICAL MONOSPACE DIGIT NINE", nil) +addSymbol(U(0x1EEF0), "ord", "arabicmaj", "ARABIC MATHEMATICAL OPERATOR MEEM WITH HAH WITH TATWEEL", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) +addSymbol(U(0x1EEF1), "ord", "arabichad", "ARABIC MATHEMATICAL OPERATOR HAH WITH DAL", { + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) + +return { + operatorDict = operatorDict, + symbols = symbols, +} diff --git a/packages/math/unicode-symbols.lua b/packages/math/unicode-symbols.lua index 511556a67..0f1eaee00 100644 --- a/packages/math/unicode-symbols.lua +++ b/packages/math/unicode-symbols.lua @@ -1,2568 +1,67 @@ -local atomType = { - ordinary = 0, - bigOperator = 1, - binaryOperator = 2, - relationalOperator = 3, - openingSymbol = 4, - closeSymbol = 5, - punctuationSymbol = 6, - inner = 7, - overSymbol = 8, - underSymbol = 9, - accentSymbol = 10, - radicalSymbol = 11, - vcenter = 12, -} - -local symbolDefaults = {} - -local mkAtomType = { - mathopen = atomType.openingSymbol, - mathclose = atomType.closeSymbol, - mathord = atomType.ordinary, - mathfence = atomType.ordinary, - mathalpha = atomType.ordinary, - mathbin = atomType.binaryOperator, - mathaccent = atomType.accentSymbol, - mathaccentwide = atomType.accentSymbol, - mathrel = atomType.relationalOperator, - mathunder = atomType.underSymbol, - mathover = atomType.overSymbol, - mathop = atomType.ordinary, -} - -local symbols = {} +--- Extend the unicode-symbols-generated symbols with additional aliases. +local gen = require("packages/math/unicode-symbols-generated") +local symbols = gen.symbols +local operatorDict = gen.operatorDict --- TODO: Stuff 4th argument (description) into help string for symbol command -local function addSymbol (codepoint, command, typ, _) - local str = luautf8.char(codepoint) - symbols[command] = str - symbolDefaults[str] = { atom = mkAtomType[typ] } +--- Add aliases for symbols that have multiple names. +-- We check that the alias is already defined in the generated dictionary, +-- and that the symbol is not defined. +-- If not, we raise an error: our operator dictionary is probably broken. +-- @tparam string symbol Symbol needing an alias +-- @tparam string alias Existing alias +local function addAlias (symbol, alias) + if symbols[symbol] then + SU.error("Symbol " .. symbol .. " already defined (operator dictionary is probably broken)") + end + if not symbols[alias] then + SU.error("Symbol " .. alias .. " not defined (operator dictionary is probably broken)") + end + symbols[symbol] = symbols[alias] end --- Generated from the unicode-math-table.tex in the unicode-math LaTeX package --- +-- Additional TeX-like operators +addAlias("dots", "unicodeellipsis") +addAlias("ldots", "unicodeellipsis") +addAlias("cdots", "unicodecdots") +addAlias("implies", "Longrightarrow") +addAlias("iff", "Longleftrightarrow") +addAlias("vec", "overrightarrow") -addSymbol(0x00021, "mathexclam", "mathclose", "exclamation mark") -addSymbol(0x00023, "mathoctothorpe", "mathord", "number sign") -addSymbol(0x00024, "mathdollar", "mathord", "dollar sign") -addSymbol(0x00025, "mathpercent", "mathord", "percent sign") -addSymbol(0x00026, "mathampersand", "mathord", "ampersand") -addSymbol(0x00028, "lparen", "mathopen", "left parenthesis") -addSymbol(0x00029, "rparen", "mathclose", "right parenthesis") -addSymbol(0x0002B, "mathplus", "mathbin", "plus sign b:") -addSymbol(0x0002C, "mathcomma", "mathpunct", "comma") -addSymbol(0x0002E, "mathperiod", "mathord", "full stop, period") -addSymbol(0x0002F, "mathslash", "mathord", "solidus") -addSymbol(0x0003A, "mathcolon", "mathpunct", "colon") -addSymbol(0x0003B, "mathsemicolon", "mathpunct", "semicolon p:") -addSymbol(0x0003C, "less", "mathrel", "less-than sign r:") -addSymbol(0x0003D, "equal", "mathrel", "equals sign r:") -addSymbol(0x0003E, "greater", "mathrel", "greater-than sign r:") -addSymbol(0x0003F, "mathquestion", "mathord", "question mark") -addSymbol(0x00040, "mathatsign", "mathord", "commercial at") -addSymbol(0x0005B, "lbrack", "mathopen", "left square bracket") -addSymbol(0x0005C, "backslash", "mathord", "reverse solidus") -addSymbol(0x0005D, "rbrack", "mathclose", "right square bracket") -addSymbol(0x0007B, "lbrace", "mathopen", "left curly bracket") -addSymbol(0x0007C, "vert", "mathfence", "vertical bar") -addSymbol(0x0007D, "rbrace", "mathclose", "right curly bracket") -addSymbol(0x000A3, "mathsterling", "mathord", "pound sign") -addSymbol(0x000A5, "mathyen", "mathord", "yen sign") -addSymbol(0x000A7, "mathsection", "mathord", "section symbol") -addSymbol(0x000AC, "neg", "mathord", "/neg /lnot not sign") -addSymbol(0x000B1, "pm", "mathbin", "plus-or-minus sign") -addSymbol(0x000B6, "mathparagraph", "mathord", "paragraph symbol") -addSymbol(0x000B7, "cdotp", "mathbin", "/centerdot b: middle dot") -addSymbol(0x000D7, "times", "mathbin", "multiply sign") -addSymbol(0x000F0, "matheth", "mathalpha", "eth") -addSymbol(0x000F7, "div", "mathbin", "divide sign") -addSymbol(0x001B5, "Zbar", "mathord", "impedance (latin capital letter z with stroke)") -addSymbol(0x00300, "grave", "mathaccent", "grave accent") -addSymbol(0x00301, "acute", "mathaccent", "acute accent") -addSymbol(0x00302, "hat", "mathaccent", "circumflex accent") -addSymbol(0x00302, "widehat", "mathaccentwide", "circumflex accent") -addSymbol(0x00303, "tilde", "mathaccent", "tilde") -addSymbol(0x00303, "widetilde", "mathaccentwide", "tilde") -addSymbol(0x00304, "bar", "mathaccent", "macron") -addSymbol(0x00305, "overbar", "mathaccent", "overbar embellishment") -addSymbol(0x00305, "wideoverbar", "mathaccentwide", "stretchy overbar embellishment") -addSymbol(0x00306, "breve", "mathaccent", "breve") -addSymbol(0x00306, "widebreve", "mathaccentwide", "stretchy breve") -addSymbol(0x00307, "dot", "mathaccent", "dot above") -addSymbol(0x00308, "ddot", "mathaccent", "dieresis") -addSymbol(0x00309, "ovhook", "mathaccent", "combining hook above") -addSymbol(0x0030A, "ocirc", "mathaccent", "ring") -addSymbol(0x0030C, "check", "mathaccent", "caron") -addSymbol(0x0030C, "widecheck", "mathaccentwide", "stretchy caron") -addSymbol(0x00310, "candra", "mathaccent", "candrabindu (non-spacing)") -addSymbol(0x00312, "oturnedcomma", "mathaccent", "combining turned comma above") -addSymbol(0x00315, "ocommatopright", "mathaccent", "combining comma above right") -addSymbol(0x0031A, "droang", "mathaccent", "left angle above (non-spacing)") -addSymbol(0x00330, "wideutilde", "mathbotaccentwide", "under tilde accent (multiple characters and non-spacing)") -addSymbol(0x00332, "mathunderbar", "mathbotaccentwide", "combining low line") -addSymbol(0x00338, "notaccent", "mathaccentoverlay", "combining long solidus overlay") -addSymbol(0x0034D, "underleftrightarrow", "mathbotaccentwide", "underleftrightarrow accent") -addSymbol(0x00391, "mupAlpha", "mathalpha", "capital alpha, greek") -addSymbol(0x00392, "mupBeta", "mathalpha", "capital beta, greek") -addSymbol(0x00393, "mupGamma", "mathalpha", "capital gamma, greek") -addSymbol(0x00394, "mupDelta", "mathalpha", "capital delta, greek") -addSymbol(0x00395, "mupEpsilon", "mathalpha", "capital epsilon, greek") -addSymbol(0x00396, "mupZeta", "mathalpha", "capital zeta, greek") -addSymbol(0x00397, "mupEta", "mathalpha", "capital eta, greek") -addSymbol(0x00398, "mupTheta", "mathalpha", "capital theta, greek") -addSymbol(0x00399, "mupIota", "mathalpha", "capital iota, greek") -addSymbol(0x0039A, "mupKappa", "mathalpha", "capital kappa, greek") -addSymbol(0x0039B, "mupLambda", "mathalpha", "capital lambda, greek") -addSymbol(0x0039C, "mupMu", "mathalpha", "capital mu, greek") -addSymbol(0x0039D, "mupNu", "mathalpha", "capital nu, greek") -addSymbol(0x0039E, "mupXi", "mathalpha", "capital xi, greek") -addSymbol(0x0039F, "mupOmicron", "mathalpha", "capital omicron, greek") -addSymbol(0x003A0, "mupPi", "mathalpha", "capital pi, greek") -addSymbol(0x003A1, "mupRho", "mathalpha", "capital rho, greek") -addSymbol(0x003A3, "mupSigma", "mathalpha", "capital sigma, greek") -addSymbol(0x003A4, "mupTau", "mathalpha", "capital tau, greek") -addSymbol(0x003A5, "mupUpsilon", "mathalpha", "capital upsilon, greek") -addSymbol(0x003A6, "mupPhi", "mathalpha", "capital phi, greek") -addSymbol(0x003A7, "mupChi", "mathalpha", "capital chi, greek") -addSymbol(0x003A8, "mupPsi", "mathalpha", "capital psi, greek") -addSymbol(0x003A9, "mupOmega", "mathalpha", "capital omega, greek") -addSymbol(0x003B1, "mupalpha", "mathalpha", "small alpha, greek") -addSymbol(0x003B2, "mupbeta", "mathalpha", "small beta, greek") -addSymbol(0x003B3, "mupgamma", "mathalpha", "small gamma, greek") -addSymbol(0x003B4, "mupdelta", "mathalpha", "small delta, greek") -addSymbol(0x003B5, "mupvarepsilon", "mathalpha", "rounded small varepsilon, greek") -addSymbol(0x003B6, "mupzeta", "mathalpha", "small zeta, greek") -addSymbol(0x003B7, "mupeta", "mathalpha", "small eta, greek") -addSymbol(0x003B8, "muptheta", "mathalpha", "straight theta, small theta, greek") -addSymbol(0x003B9, "mupiota", "mathalpha", "small iota, greek") -addSymbol(0x003BA, "mupkappa", "mathalpha", "small kappa, greek") -addSymbol(0x003BB, "muplambda", "mathalpha", "small lambda, greek") -addSymbol(0x003BC, "mupmu", "mathalpha", "small mu, greek") -addSymbol(0x003BD, "mupnu", "mathalpha", "small nu, greek") -addSymbol(0x003BE, "mupxi", "mathalpha", "small xi, greek") -addSymbol(0x003BF, "mupomicron", "mathalpha", "small omicron, greek") -addSymbol(0x003C0, "muppi", "mathalpha", "small pi, greek") -addSymbol(0x003C1, "muprho", "mathalpha", "small rho, greek") -addSymbol(0x003C2, "mupvarsigma", "mathalpha", "terminal sigma, greek") -addSymbol(0x003C3, "mupsigma", "mathalpha", "small sigma, greek") -addSymbol(0x003C4, "muptau", "mathalpha", "small tau, greek") -addSymbol(0x003C5, "mupupsilon", "mathalpha", "small upsilon, greek") -addSymbol(0x003C6, "mupvarphi", "mathalpha", "curly or open small phi, greek") -addSymbol(0x003C7, "mupchi", "mathalpha", "small chi, greek") -addSymbol(0x003C8, "muppsi", "mathalpha", "small psi, greek") -addSymbol(0x003C9, "mupomega", "mathalpha", "small omega, greek") -addSymbol(0x003D1, "mupvartheta", "mathalpha", "/vartheta - curly or open theta") -addSymbol(0x003D5, "mupphi", "mathalpha", "/straightphi - small phi, greek") -addSymbol(0x003D6, "mupvarpi", "mathalpha", "rounded small pi (pomega), greek") -addSymbol(0x003DC, "upDigamma", "mathalpha", "capital digamma") -addSymbol(0x003DD, "updigamma", "mathalpha", "old greek small letter digamma") -addSymbol(0x003F0, "mupvarkappa", "mathalpha", "rounded small kappa, greek") -addSymbol(0x003F1, "mupvarrho", "mathalpha", "rounded small rho, greek") -addSymbol(0x003F4, "mupvarTheta", "mathalpha", "greek capital theta symbol") -addSymbol(0x003F5, "mupepsilon", "mathalpha", "greek lunate varepsilon symbol") -addSymbol(0x003F6, "upbackepsilon", "mathord", "greek reversed lunate epsilon symbol") -addSymbol(0x02010, "mathhyphen", "mathalpha", "hyphen") -addSymbol(0x02015, "horizbar", "mathord", "horizontal bar") -addSymbol(0x02016, "Vert", "mathfence", "double vertical bar") -addSymbol(0x02017, "twolowline", "mathord", "double low line (spacing)") -addSymbol(0x02020, "dagger", "mathbin", "dagger relation") -addSymbol(0x02021, "ddagger", "mathbin", "double dagger relation") -addSymbol(0x02022, "smblkcircle", "mathbin", "/bullet b: round bullet, filled") -addSymbol(0x02025, "enleadertwodots", "mathord", "double baseline dot (en leader)") -addSymbol(0x02026, "unicodeellipsis", "mathord", "ellipsis (horizontal)") -addSymbol(0x02032, "prime", "mathord", "prime or minute, not superscripted") -addSymbol(0x02033, "dprime", "mathord", "double prime or second, not superscripted") -addSymbol(0x02034, "trprime", "mathord", "triple prime (not superscripted)") -addSymbol(0x02035, "backprime", "mathord", "reverse prime, not superscripted") -addSymbol(0x02036, "backdprime", "mathord", "double reverse prime, not superscripted") -addSymbol(0x02037, "backtrprime", "mathord", "triple reverse prime, not superscripted") -addSymbol(0x02038, "caretinsert", "mathord", "caret (insertion mark)") -addSymbol(0x0203C, "Exclam", "mathord", "double exclamation mark") -addSymbol(0x02040, "tieconcat", "mathbin", "character tie, z notation sequence concatenation") -addSymbol(0x02043, "hyphenbullet", "mathord", "rectangle, filled (hyphen bullet)") -addSymbol(0x02044, "fracslash", "mathbin", "fraction slash") -addSymbol(0x02047, "Question", "mathord", "double question mark") -addSymbol(0x02050, "closure", "mathrel", "close up") -addSymbol(0x02057, "qprime", "mathord", "quadruple prime, not superscripted") -addSymbol(0x020AC, "euro", "mathord", "euro sign") -addSymbol(0x020D0, "leftharpoonaccent", "mathaccent", "combining left harpoon above") -addSymbol(0x020D0, "overleftharpoon", "mathaccentwide", "combining left harpoon above") -addSymbol(0x020D1, "rightharpoonaccent", "mathaccent", "combining right harpoon above") -addSymbol(0x020D1, "overrightharpoon", "mathaccentwide", "combining right harpoon above") -addSymbol(0x020D2, "vertoverlay", "mathaccent", "combining long vertical line overlay") -addSymbol(0x020D6, "overleftarrow", "mathaccentwide", "combining left arrow above") -addSymbol(0x020D7, "overrightarrow", "mathaccentwide", "combining left arrow above") -addSymbol(0x020D7, "vec", "mathaccent", "combining right arrow above") -addSymbol(0x020DB, "dddot", "mathaccent", "combining three dots above") -addSymbol(0x020DC, "ddddot", "mathaccent", "combining four dots above") -addSymbol(0x020DD, "enclosecircle", "mathord", "combining enclosing circle") -addSymbol(0x020DE, "enclosesquare", "mathord", "combining enclosing square") -addSymbol(0x020DF, "enclosediamond", "mathord", "combining enclosing diamond") -addSymbol(0x020E1, "overleftrightarrow", "mathaccentwide", "combining left right arrow above") -addSymbol(0x020E4, "enclosetriangle", "mathord", "combining enclosing upward pointing triangle") -addSymbol(0x020E7, "annuity", "mathaccent", "combining annuity symbol") -addSymbol(0x020E8, "threeunderdot", "mathbotaccent", "combining triple underdot") -addSymbol(0x020E9, "widebridgeabove", "mathaccent", "combining wide bridge above") -addSymbol(0x020EC, "underrightharpoondown", "mathbotaccentwide", "combining rightwards harpoon with barb downwards") -addSymbol(0x020ED, "underleftharpoondown", "mathbotaccentwide", "combining leftwards harpoon with barb downwards") -addSymbol(0x020EE, "underleftarrow", "mathbotaccentwide", "combining left arrow below") -addSymbol(0x020EF, "underrightarrow", "mathbotaccentwide", "combining right arrow below") -addSymbol(0x020F0, "asteraccent", "mathaccent", "combining asterisk above") -addSymbol(0x02102, "BbbC", "mathalpha", "/bbb c, open face c") -addSymbol(0x02107, "Eulerconst", "mathord", "euler constant") -addSymbol(0x0210A, "mscrg", "mathalpha", "/scr g, script letter g") -addSymbol(0x0210B, "mscrH", "mathalpha", "hamiltonian (script capital h)") -addSymbol(0x0210C, "mfrakH", "mathalpha", "/frak h, upper case h") -addSymbol(0x0210D, "BbbH", "mathalpha", "/bbb h, open face h") -addSymbol(0x0210E, "Planckconst", "mathord", "planck constant") -addSymbol(0x0210F, "hslash", "mathalpha", "/hslash - variant planck's over 2pi") -addSymbol(0x02110, "mscrI", "mathalpha", "/scr i, script letter i") -addSymbol(0x02111, "Im", "mathalpha", "imaginary part") -addSymbol(0x02112, "mscrL", "mathalpha", "lagrangian (script capital l)") -addSymbol(0x02113, "ell", "mathalpha", "cursive small l") -addSymbol(0x02115, "BbbN", "mathalpha", "/bbb n, open face n") -addSymbol(0x02118, "wp", "mathalpha", "weierstrass p") -addSymbol(0x02119, "BbbP", "mathalpha", "/bbb p, open face p") -addSymbol(0x0211A, "BbbQ", "mathalpha", "/bbb q, open face q") -addSymbol(0x0211B, "mscrR", "mathalpha", "/scr r, script letter r") -addSymbol(0x0211C, "Re", "mathalpha", "real part") -addSymbol(0x0211D, "BbbR", "mathalpha", "/bbb r, open face r") -addSymbol(0x02124, "BbbZ", "mathalpha", "/bbb z, open face z") -addSymbol(0x02127, "mho", "mathord", "conductance") -addSymbol(0x02128, "mfrakZ", "mathalpha", "/frak z, upper case z") -addSymbol(0x02129, "turnediota", "mathalpha", "turned iota") -addSymbol(0x0212B, "Angstrom", "mathalpha", "angstrom capital a, ring") -addSymbol(0x0212C, "mscrB", "mathalpha", "bernoulli function (script capital b)") -addSymbol(0x0212D, "mfrakC", "mathalpha", "black-letter capital c") -addSymbol(0x0212F, "mscre", "mathalpha", "/scr e, script letter e") -addSymbol(0x02130, "mscrE", "mathalpha", "/scr e, script letter e") -addSymbol(0x02131, "mscrF", "mathalpha", "/scr f, script letter f") -addSymbol(0x02132, "Finv", "mathord", "turned capital f") -addSymbol(0x02133, "mscrM", "mathalpha", "physics m-matrix (script capital m)") -addSymbol(0x02134, "mscro", "mathalpha", "order of (script small o)") -addSymbol(0x02135, "aleph", "mathalpha", "aleph, hebrew") -addSymbol(0x02136, "beth", "mathalpha", "beth, hebrew") -addSymbol(0x02137, "gimel", "mathalpha", "gimel, hebrew") -addSymbol(0x02138, "daleth", "mathalpha", "daleth, hebrew") -addSymbol(0x0213C, "Bbbpi", "mathord", "double-struck small pi") -addSymbol(0x0213D, "Bbbgamma", "mathalpha", "double-struck small gamma") -addSymbol(0x0213E, "BbbGamma", "mathalpha", "double-struck capital gamma") -addSymbol(0x0213F, "BbbPi", "mathalpha", "double-struck capital pi") -addSymbol(0x02140, "Bbbsum", "mathop", "double-struck n-ary summation") -addSymbol(0x02141, "Game", "mathord", "turned sans-serif capital g") -addSymbol(0x02142, "sansLturned", "mathord", "turned sans-serif capital l") -addSymbol(0x02143, "sansLmirrored", "mathord", "reversed sans-serif capital l") -addSymbol(0x02144, "Yup", "mathord", "turned sans-serif capital y") -addSymbol(0x02145, "mitBbbD", "mathord", "double-struck italic capital d") -addSymbol(0x02146, "mitBbbd", "mathord", "double-struck italic small d") -addSymbol(0x02147, "mitBbbe", "mathord", "double-struck italic small e") -addSymbol(0x02148, "mitBbbi", "mathord", "double-struck italic small i") -addSymbol(0x02149, "mitBbbj", "mathord", "double-struck italic small j") -addSymbol(0x0214A, "PropertyLine", "mathord", "property line") -addSymbol(0x0214B, "upand", "mathbin", "turned ampersand") -addSymbol(0x02190, "leftarrow", "mathrel", "/leftarrow /gets a: leftward arrow") -addSymbol(0x02191, "uparrow", "mathrel", "upward arrow") -addSymbol(0x02192, "rightarrow", "mathrel", "/rightarrow /to a: rightward arrow") -addSymbol(0x02193, "downarrow", "mathrel", "downward arrow") -addSymbol(0x02194, "leftrightarrow", "mathrel", "left and right arrow") -addSymbol(0x02195, "updownarrow", "mathrel", "up and down arrow") -addSymbol(0x02196, "nwarrow", "mathrel", "nw pointing arrow") -addSymbol(0x02197, "nearrow", "mathrel", "ne pointing arrow") -addSymbol(0x02198, "searrow", "mathrel", "se pointing arrow") -addSymbol(0x02199, "swarrow", "mathrel", "sw pointing arrow") -addSymbol(0x0219A, "nleftarrow", "mathrel", "not left arrow") -addSymbol(0x0219B, "nrightarrow", "mathrel", "not right arrow") -addSymbol(0x0219C, "leftwavearrow", "mathrel", "left arrow-wavy") -addSymbol(0x0219D, "rightwavearrow", "mathrel", "right arrow-wavy") -addSymbol(0x0219E, "twoheadleftarrow", "mathrel", "left two-headed arrow") -addSymbol(0x0219F, "twoheaduparrow", "mathrel", "up two-headed arrow") -addSymbol(0x021A0, "twoheadrightarrow", "mathrel", "right two-headed arrow") -addSymbol(0x021A1, "twoheaddownarrow", "mathrel", "down two-headed arrow") -addSymbol(0x021A2, "leftarrowtail", "mathrel", "left arrow-tailed") -addSymbol(0x021A3, "rightarrowtail", "mathrel", "right arrow-tailed") -addSymbol(0x021A4, "mapsfrom", "mathrel", "maps to, leftward") -addSymbol(0x021A5, "mapsup", "mathrel", "maps to, upward") -addSymbol(0x021A6, "mapsto", "mathrel", "maps to, rightward") -addSymbol(0x021A7, "mapsdown", "mathrel", "maps to, downward") -addSymbol(0x021A8, "updownarrowbar", "mathord", "up down arrow with base (perpendicular)") -addSymbol(0x021A9, "hookleftarrow", "mathrel", "left arrow-hooked") -addSymbol(0x021AA, "hookrightarrow", "mathrel", "right arrow-hooked") -addSymbol(0x021AB, "looparrowleft", "mathrel", "left arrow-looped") -addSymbol(0x021AC, "looparrowright", "mathrel", "right arrow-looped") -addSymbol(0x021AD, "leftrightsquigarrow", "mathrel", "left and right arr-wavy") -addSymbol(0x021AE, "nleftrightarrow", "mathrel", "not left and right arrow") -addSymbol(0x021AF, "downzigzagarrow", "mathrel", "downwards zigzag arrow") -addSymbol(0x021B0, "Lsh", "mathrel", "/lsh a:") -addSymbol(0x021B1, "Rsh", "mathrel", "/rsh a:") -addSymbol(0x021B2, "Ldsh", "mathrel", "left down angled arrow") -addSymbol(0x021B3, "Rdsh", "mathrel", "right down angled arrow") -addSymbol(0x021B4, "linefeed", "mathord", "rightwards arrow with corner downwards") -addSymbol(0x021B5, "carriagereturn", "mathord", "downwards arrow with corner leftward = carriage return") -addSymbol(0x021B6, "curvearrowleft", "mathrel", "left curved arrow") -addSymbol(0x021B7, "curvearrowright", "mathrel", "right curved arrow") -addSymbol(0x021B8, "barovernorthwestarrow", "mathord", "north west arrow to long bar") -addSymbol(0x021B9, "barleftarrowrightarrowbar", "mathord", "leftwards arrow to bar over rightwards arrow to bar") -addSymbol(0x021BA, "acwopencirclearrow", "mathord", "anticlockwise open circle arrow") -addSymbol(0x021BB, "cwopencirclearrow", "mathord", "clockwise open circle arrow") -addSymbol(0x021BC, "leftharpoonup", "mathrel", "left harpoon-up") -addSymbol(0x021BD, "leftharpoondown", "mathrel", "left harpoon-down") -addSymbol(0x021BE, "upharpoonright", "mathrel", "/upharpoonright /restriction a: up harpoon-right") -addSymbol(0x021BF, "upharpoonleft", "mathrel", "up harpoon-left") -addSymbol(0x021C0, "rightharpoonup", "mathrel", "right harpoon-up") -addSymbol(0x021C1, "rightharpoondown", "mathrel", "right harpoon-down") -addSymbol(0x021C2, "downharpoonright", "mathrel", "down harpoon-right") -addSymbol(0x021C3, "downharpoonleft", "mathrel", "down harpoon-left") -addSymbol(0x021C4, "rightleftarrows", "mathrel", "right arrow over left arrow") -addSymbol(0x021C5, "updownarrows", "mathrel", "up arrow, down arrow") -addSymbol(0x021C6, "leftrightarrows", "mathrel", "left arrow over right arrow") -addSymbol(0x021C7, "leftleftarrows", "mathrel", "two left arrows") -addSymbol(0x021C8, "upuparrows", "mathrel", "two up arrows") -addSymbol(0x021C9, "rightrightarrows", "mathrel", "two right arrows") -addSymbol(0x021CA, "downdownarrows", "mathrel", "two down arrows") -addSymbol(0x021CB, "leftrightharpoons", "mathrel", "left harpoon over right") -addSymbol(0x021CC, "rightleftharpoons", "mathrel", "right harpoon over left") -addSymbol(0x021CD, "nLeftarrow", "mathrel", "not implied by") -addSymbol(0x021CE, "nLeftrightarrow", "mathrel", "not left and right double arrows") -addSymbol(0x021CF, "nRightarrow", "mathrel", "not implies") -addSymbol(0x021D0, "Leftarrow", "mathrel", "is implied by") -addSymbol(0x021D1, "Uparrow", "mathrel", "up double arrow") -addSymbol(0x021D2, "Rightarrow", "mathrel", "implies") -addSymbol(0x021D3, "Downarrow", "mathrel", "down double arrow") -addSymbol(0x021D4, "Leftrightarrow", "mathrel", "left and right double arrow") -addSymbol(0x021D5, "Updownarrow", "mathrel", "up and down double arrow") -addSymbol(0x021D6, "Nwarrow", "mathrel", "nw pointing double arrow") -addSymbol(0x021D7, "Nearrow", "mathrel", "ne pointing double arrow") -addSymbol(0x021D8, "Searrow", "mathrel", "se pointing double arrow") -addSymbol(0x021D9, "Swarrow", "mathrel", "sw pointing double arrow") -addSymbol(0x021DA, "Lleftarrow", "mathrel", "left triple arrow") -addSymbol(0x021DB, "Rrightarrow", "mathrel", "right triple arrow") -addSymbol(0x021DC, "leftsquigarrow", "mathrel", "leftwards squiggle arrow") -addSymbol(0x021DD, "rightsquigarrow", "mathrel", "rightwards squiggle arrow") -addSymbol(0x021DE, "nHuparrow", "mathord", "upwards arrow with double stroke") -addSymbol(0x021DF, "nHdownarrow", "mathord", "downwards arrow with double stroke") -addSymbol(0x021E0, "leftdasharrow", "mathord", "leftwards dashed arrow") -addSymbol(0x021E1, "updasharrow", "mathord", "upwards dashed arrow") -addSymbol(0x021E2, "rightdasharrow", "mathord", "rightwards dashed arrow") -addSymbol(0x021E3, "downdasharrow", "mathord", "downwards dashed arrow") -addSymbol(0x021E4, "barleftarrow", "mathrel", "leftwards arrow to bar") -addSymbol(0x021E5, "rightarrowbar", "mathrel", "rightwards arrow to bar") -addSymbol(0x021E6, "leftwhitearrow", "mathord", "leftwards white arrow") -addSymbol(0x021E7, "upwhitearrow", "mathord", "upwards white arrow") -addSymbol(0x021E8, "rightwhitearrow", "mathord", "rightwards white arrow") -addSymbol(0x021E9, "downwhitearrow", "mathord", "downwards white arrow") -addSymbol(0x021EA, "whitearrowupfrombar", "mathord", "upwards white arrow from bar") -addSymbol(0x021F4, "circleonrightarrow", "mathrel", "right arrow with small circle") -addSymbol(0x021F5, "downuparrows", "mathrel", "downwards arrow leftwards of upwards arrow") -addSymbol(0x021F6, "rightthreearrows", "mathrel", "three rightwards arrows") -addSymbol(0x021F7, "nvleftarrow", "mathrel", "leftwards arrow with vertical stroke") -addSymbol(0x021F8, "nvrightarrow", "mathrel", "rightwards arrow with vertical stroke") -addSymbol(0x021F9, "nvleftrightarrow", "mathrel", "left right arrow with vertical stroke") -addSymbol(0x021FA, "nVleftarrow", "mathrel", "leftwards arrow with double vertical stroke") -addSymbol(0x021FB, "nVrightarrow", "mathrel", "rightwards arrow with double vertical stroke") -addSymbol(0x021FC, "nVleftrightarrow", "mathrel", "left right arrow with double vertical stroke") -addSymbol(0x021FD, "leftarrowtriangle", "mathrel", "leftwards open-headed arrow") -addSymbol(0x021FE, "rightarrowtriangle", "mathrel", "rightwards open-headed arrow") -addSymbol(0x021FF, "leftrightarrowtriangle", "mathrel", "left right open-headed arrow") -addSymbol(0x02200, "forall", "mathord", "for all") -addSymbol(0x02201, "complement", "mathord", "complement sign") -addSymbol(0x02202, "partial", "mathalpha", "partial differential") -addSymbol(0x02203, "exists", "mathord", "at least one exists") -addSymbol(0x02204, "nexists", "mathord", "negated exists") -addSymbol(0x02205, "varnothing", "mathord", "circle, slash") -addSymbol(0x02206, "increment", "mathord", "laplacian (delta; nabla^2)") -addSymbol(0x02207, "nabla", "mathalpha", "nabla, del, hamilton operator") -addSymbol(0x02208, "in", "mathrel", "set membership, variant") -addSymbol(0x02209, "notin", "mathrel", "negated set membership") -addSymbol(0x0220A, "smallin", "mathrel", "set membership (small set membership)") -addSymbol(0x0220B, "ni", "mathrel", "contains, variant") -addSymbol(0x0220C, "nni", "mathrel", "negated contains, variant") -addSymbol(0x0220D, "smallni", "mathrel", "/ni /owns r: contains (small contains as member)") -addSymbol(0x0220E, "QED", "mathord", "end of proof") -addSymbol(0x0220F, "prod", "mathop", "product operator") -addSymbol(0x02210, "coprod", "mathop", "coproduct operator") -addSymbol(0x02211, "sum", "mathop", "summation operator") -addSymbol(0x02212, "minus", "mathbin", "minus sign") -addSymbol(0x02213, "mp", "mathbin", "minus-or-plus sign") -addSymbol(0x02214, "dotplus", "mathbin", "plus sign, dot above") -addSymbol(0x02215, "divslash", "mathbin", "division slash") -addSymbol(0x02216, "smallsetminus", "mathbin", "small set minus (cf. reverse solidus)") -addSymbol(0x02217, "ast", "mathbin", "centered asterisk") -addSymbol(0x02218, "vysmwhtcircle", "mathbin", "composite function (small circle)") -addSymbol(0x02219, "vysmblkcircle", "mathbin", "bullet operator") -addSymbol(0x0221A, "sqrt", "mathopen", "radical") -addSymbol(0x0221A, "surd", "mathord", "radical") -addSymbol(0x0221B, "cuberoot", "mathopen", "cube root") -addSymbol(0x0221C, "fourthroot", "mathopen", "fourth root") -addSymbol(0x0221D, "propto", "mathrel", "is proportional to") -addSymbol(0x0221E, "infty", "mathord", "infinity") -addSymbol(0x0221F, "rightangle", "mathord", "right (90 degree) angle") -addSymbol(0x02220, "angle", "mathord", "angle") -addSymbol(0x02221, "measuredangle", "mathord", "angle-measured") -addSymbol(0x02222, "sphericalangle", "mathord", "angle-spherical") -addSymbol(0x02223, "mid", "mathrel", "/mid r:") -addSymbol(0x02224, "nmid", "mathrel", "negated mid") -addSymbol(0x02225, "parallel", "mathrel", "parallel") -addSymbol(0x02226, "nparallel", "mathrel", "not parallel") -addSymbol(0x02227, "wedge", "mathbin", "/wedge /land b: logical and") -addSymbol(0x02228, "vee", "mathbin", "/vee /lor b: logical or") -addSymbol(0x02229, "cap", "mathbin", "intersection") -addSymbol(0x0222A, "cup", "mathbin", "union or logical sum") -addSymbol(0x0222B, "int", "mathop", "integral operator") -addSymbol(0x0222C, "iint", "mathop", "double integral operator") -addSymbol(0x0222D, "iiint", "mathop", "triple integral operator") -addSymbol(0x0222E, "oint", "mathop", "contour integral operator") -addSymbol(0x0222F, "oiint", "mathop", "double contour integral operator") -addSymbol(0x02230, "oiiint", "mathop", "triple contour integral operator") -addSymbol(0x02231, "intclockwise", "mathop", "clockwise integral") -addSymbol(0x02232, "varointclockwise", "mathop", "contour integral, clockwise") -addSymbol(0x02233, "ointctrclockwise", "mathop", "contour integral, anticlockwise") -addSymbol(0x02234, "therefore", "mathord", "therefore") -addSymbol(0x02235, "because", "mathord", "because") -addSymbol(0x02236, "mathratio", "mathrel", "ratio") -addSymbol(0x02237, "Colon", "mathrel", "two colons") -addSymbol(0x02238, "dotminus", "mathbin", "minus sign, dot above") -addSymbol(0x02239, "dashcolon", "mathrel", "excess (-:)") -addSymbol(0x0223A, "dotsminusdots", "mathrel", "minus with four dots, geometric properties") -addSymbol(0x0223B, "kernelcontraction", "mathrel", "homothetic") -addSymbol(0x0223C, "sim", "mathrel", "similar") -addSymbol(0x0223D, "backsim", "mathrel", "reverse similar") -addSymbol(0x0223E, "invlazys", "mathbin", "most positive [inverted lazy s]") -addSymbol(0x0223F, "sinewave", "mathord", "sine wave") -addSymbol(0x02240, "wr", "mathbin", "wreath product") -addSymbol(0x02241, "nsim", "mathrel", "not similar") -addSymbol(0x02242, "eqsim", "mathrel", "equals, similar") -addSymbol(0x02243, "simeq", "mathrel", "similar, equals") -addSymbol(0x02244, "nsime", "mathrel", "not similar, equals") -addSymbol(0x02243, "sime", "mathrel", "similar, equals (alias)") -addSymbol(0x02244, "nsimeq", "mathrel", "not similar, equals (alias)") -addSymbol(0x02245, "cong", "mathrel", "congruent with") -addSymbol(0x02246, "simneqq", "mathrel", "similar, not equals [vert only for 9573 entity]") -addSymbol(0x02247, "ncong", "mathrel", "not congruent with") -addSymbol(0x02248, "approx", "mathrel", "approximate") -addSymbol(0x02249, "napprox", "mathrel", "not approximate") -addSymbol(0x0224A, "approxeq", "mathrel", "approximate, equals") -addSymbol(0x0224B, "approxident", "mathrel", "approximately identical to") -addSymbol(0x0224C, "backcong", "mathrel", "all equal to") -addSymbol(0x0224D, "asymp", "mathrel", "asymptotically equal to") -addSymbol(0x0224E, "Bumpeq", "mathrel", "bumpy equals") -addSymbol(0x0224F, "bumpeq", "mathrel", "bumpy equals, equals") -addSymbol(0x02250, "doteq", "mathrel", "equals, single dot above") -addSymbol(0x02251, "Doteq", "mathrel", "/doteqdot /doteq r: equals, even dots") -addSymbol(0x02252, "fallingdotseq", "mathrel", "equals, falling dots") -addSymbol(0x02253, "risingdotseq", "mathrel", "equals, rising dots") -addSymbol(0x02254, "coloneq", "mathrel", "colon, equals") -addSymbol(0x02255, "eqcolon", "mathrel", "equals, colon") -addSymbol(0x02256, "eqcirc", "mathrel", "circle on equals sign") -addSymbol(0x02257, "circeq", "mathrel", "circle, equals") -addSymbol(0x02258, "arceq", "mathrel", "arc, equals; corresponds to") -addSymbol(0x02259, "wedgeq", "mathrel", "corresponds to (wedge, equals)") -addSymbol(0x0225A, "veeeq", "mathrel", "logical or, equals") -addSymbol(0x0225B, "stareq", "mathrel", "star equals") -addSymbol(0x0225C, "triangleq", "mathrel", "triangle, equals") -addSymbol(0x0225D, "eqdef", "mathrel", "equals by definition") -addSymbol(0x0225E, "measeq", "mathrel", "measured by (m over equals)") -addSymbol(0x0225F, "questeq", "mathrel", "equal with questionmark") -addSymbol(0x02260, "ne", "mathrel", "/ne /neq r: not equal") -addSymbol(0x02261, "equiv", "mathrel", "identical with") -addSymbol(0x02262, "nequiv", "mathrel", "not identical with") -addSymbol(0x02263, "Equiv", "mathrel", "strict equivalence (4 lines)") -addSymbol(0x02264, "leq", "mathrel", "/leq /le r: less-than-or-equal") -addSymbol(0x02265, "geq", "mathrel", "/geq /ge r: greater-than-or-equal") -addSymbol(0x02266, "leqq", "mathrel", "less, double equals") -addSymbol(0x02267, "geqq", "mathrel", "greater, double equals") -addSymbol(0x02268, "lneqq", "mathrel", "less, not double equals") -addSymbol(0x02269, "gneqq", "mathrel", "greater, not double equals") -addSymbol(0x0226A, "ll", "mathrel", "much less than, type 2") -addSymbol(0x0226B, "gg", "mathrel", "much greater than, type 2") -addSymbol(0x0226C, "between", "mathrel", "between") -addSymbol(0x0226D, "nasymp", "mathrel", "not asymptotically equal to") -addSymbol(0x0226E, "nless", "mathrel", "not less-than") -addSymbol(0x0226F, "ngtr", "mathrel", "not greater-than") -addSymbol(0x02270, "nleq", "mathrel", "not less-than-or-equal") -addSymbol(0x02271, "ngeq", "mathrel", "not greater-than-or-equal") -addSymbol(0x02272, "lesssim", "mathrel", "less, similar") -addSymbol(0x02273, "gtrsim", "mathrel", "greater, similar") -addSymbol(0x02274, "nlesssim", "mathrel", "not less, similar") -addSymbol(0x02275, "ngtrsim", "mathrel", "not greater, similar") -addSymbol(0x02276, "lessgtr", "mathrel", "less, greater") -addSymbol(0x02277, "gtrless", "mathrel", "greater, less") -addSymbol(0x02278, "nlessgtr", "mathrel", "not less, greater") -addSymbol(0x02279, "ngtrless", "mathrel", "not greater, less") -addSymbol(0x0227A, "prec", "mathrel", "precedes") -addSymbol(0x0227B, "succ", "mathrel", "succeeds") -addSymbol(0x0227C, "preccurlyeq", "mathrel", "precedes, curly equals") -addSymbol(0x0227D, "succcurlyeq", "mathrel", "succeeds, curly equals") -addSymbol(0x0227E, "precsim", "mathrel", "precedes, similar") -addSymbol(0x0227F, "succsim", "mathrel", "succeeds, similar") -addSymbol(0x02280, "nprec", "mathrel", "not precedes") -addSymbol(0x02281, "nsucc", "mathrel", "not succeeds") -addSymbol(0x02282, "subset", "mathrel", "subset or is implied by") -addSymbol(0x02283, "supset", "mathrel", "superset or implies") -addSymbol(0x02284, "nsubset", "mathrel", "not subset, variant [slash negation]") -addSymbol(0x02285, "nsupset", "mathrel", "not superset, variant [slash negation]") -addSymbol(0x02286, "subseteq", "mathrel", "subset, equals") -addSymbol(0x02287, "supseteq", "mathrel", "superset, equals") -addSymbol(0x02288, "nsubseteq", "mathrel", "not subset, equals") -addSymbol(0x02289, "nsupseteq", "mathrel", "not superset, equals") -addSymbol(0x0228A, "subsetneq", "mathrel", "subset, not equals") -addSymbol(0x0228B, "supsetneq", "mathrel", "superset, not equals") -addSymbol(0x0228C, "cupleftarrow", "mathbin", "multiset") -addSymbol(0x0228D, "cupdot", "mathbin", "union, with dot") -addSymbol(0x0228E, "uplus", "mathbin", "plus sign in union") -addSymbol(0x0228F, "sqsubset", "mathrel", "square subset") -addSymbol(0x02290, "sqsupset", "mathrel", "square superset") -addSymbol(0x02291, "sqsubseteq", "mathrel", "square subset, equals") -addSymbol(0x02292, "sqsupseteq", "mathrel", "square superset, equals") -addSymbol(0x02293, "sqcap", "mathbin", "square intersection") -addSymbol(0x02294, "sqcup", "mathbin", "square union") -addSymbol(0x02295, "oplus", "mathbin", "plus sign in circle") -addSymbol(0x02296, "ominus", "mathbin", "minus sign in circle") -addSymbol(0x02297, "otimes", "mathbin", "multiply sign in circle") -addSymbol(0x02298, "oslash", "mathbin", "solidus in circle") -addSymbol(0x02299, "odot", "mathbin", "middle dot in circle") -addSymbol(0x0229A, "circledcirc", "mathbin", "small circle in circle") -addSymbol(0x0229B, "circledast", "mathbin", "asterisk in circle") -addSymbol(0x0229C, "circledequal", "mathbin", "equal in circle") -addSymbol(0x0229D, "circleddash", "mathbin", "hyphen in circle") -addSymbol(0x0229E, "boxplus", "mathbin", "plus sign in box") -addSymbol(0x0229F, "boxminus", "mathbin", "minus sign in box") -addSymbol(0x022A0, "boxtimes", "mathbin", "multiply sign in box") -addSymbol(0x022A1, "boxdot", "mathbin", "/dotsquare /boxdot b: small dot in box") -addSymbol(0x022A2, "vdash", "mathrel", "vertical, dash") -addSymbol(0x022A3, "dashv", "mathrel", "dash, vertical") -addSymbol(0x022A4, "top", "mathord", "top") -addSymbol(0x022A5, "bot", "mathord", "bottom") -addSymbol(0x022A6, "assert", "mathrel", "assertion (vertical, short dash)") -addSymbol(0x022A7, "models", "mathrel", "models (vertical, short double dash)") -addSymbol(0x022A8, "vDash", "mathrel", "vertical, double dash") -addSymbol(0x022A9, "Vdash", "mathrel", "double vertical, dash") -addSymbol(0x022AA, "Vvdash", "mathrel", "triple vertical, dash") -addSymbol(0x022AB, "VDash", "mathrel", "double vert, double dash") -addSymbol(0x022AC, "nvdash", "mathrel", "not vertical, dash") -addSymbol(0x022AD, "nvDash", "mathrel", "not vertical, double dash") -addSymbol(0x022AE, "nVdash", "mathrel", "not double vertical, dash") -addSymbol(0x022AF, "nVDash", "mathrel", "not double vert, double dash") -addSymbol(0x022B0, "prurel", "mathrel", "element precedes under relation") -addSymbol(0x022B1, "scurel", "mathrel", "succeeds under relation") -addSymbol(0x022B2, "vartriangleleft", "mathrel", "left triangle, open, variant") -addSymbol(0x022B3, "vartriangleright", "mathrel", "right triangle, open, variant") -addSymbol(0x022B4, "trianglelefteq", "mathrel", "left triangle, equals") -addSymbol(0x022B5, "trianglerighteq", "mathrel", "right triangle, equals") -addSymbol(0x022B6, "origof", "mathrel", "original of") -addSymbol(0x022B7, "imageof", "mathrel", "image of") -addSymbol(0x022B8, "multimap", "mathrel", "/multimap a:") -addSymbol(0x022B9, "hermitmatrix", "mathord", "hermitian conjugate matrix") -addSymbol(0x022BA, "intercal", "mathbin", "intercal") -addSymbol(0x022BB, "veebar", "mathbin", "logical or, bar below (large vee); exclusive disjunction") -addSymbol(0x022BC, "barwedge", "mathbin", "bar, wedge (large wedge)") -addSymbol(0x022BD, "barvee", "mathbin", "bar, vee (large vee)") -addSymbol(0x022BE, "measuredrightangle", "mathord", "right angle-measured [with arc]") -addSymbol(0x022BF, "varlrtriangle", "mathord", "right triangle") -addSymbol(0x022C0, "bigwedge", "mathop", "logical and operator") -addSymbol(0x022C1, "bigvee", "mathop", "logical or operator") -addSymbol(0x022C2, "bigcap", "mathop", "intersection operator") -addSymbol(0x022C3, "bigcup", "mathop", "union operator") -addSymbol(0x022C4, "smwhtdiamond", "mathbin", "white diamond") -addSymbol(0x022C5, "cdot", "mathbin", "small middle dot") -addSymbol(0x022C6, "star", "mathbin", "small star, filled, low") -addSymbol(0x022C7, "divideontimes", "mathbin", "division on times") -addSymbol(0x022C8, "bowtie", "mathrel", "bowtie") -addSymbol(0x022C9, "ltimes", "mathbin", "times sign, left closed") -addSymbol(0x022CA, "rtimes", "mathbin", "times sign, right closed") -addSymbol(0x022CB, "leftthreetimes", "mathbin", "left semidirect product") -addSymbol(0x022CC, "rightthreetimes", "mathbin", "right semidirect product") -addSymbol(0x022CD, "backsimeq", "mathrel", "reverse similar, equals") -addSymbol(0x022CE, "curlyvee", "mathbin", "curly logical or") -addSymbol(0x022CF, "curlywedge", "mathbin", "curly logical and") -addSymbol(0x022D0, "Subset", "mathrel", "double subset") -addSymbol(0x022D1, "Supset", "mathrel", "double superset") -addSymbol(0x022D2, "Cap", "mathbin", "/cap /doublecap b: double intersection") -addSymbol(0x022D3, "Cup", "mathbin", "/cup /doublecup b: double union") -addSymbol(0x022D4, "pitchfork", "mathrel", "pitchfork") -addSymbol(0x022D5, "equalparallel", "mathrel", "parallel, equal; equal or parallel") -addSymbol(0x022D6, "lessdot", "mathrel", "less than, with dot") -addSymbol(0x022D7, "gtrdot", "mathrel", "greater than, with dot") -addSymbol(0x022D8, "lll", "mathrel", "/ll /lll /llless r: triple less-than") -addSymbol(0x022D9, "ggg", "mathrel", "/ggg /gg /gggtr r: triple greater-than") -addSymbol(0x022DA, "lesseqgtr", "mathrel", "less, equals, greater") -addSymbol(0x022DB, "gtreqless", "mathrel", "greater, equals, less") -addSymbol(0x022DC, "eqless", "mathrel", "equal-or-less") -addSymbol(0x022DD, "eqgtr", "mathrel", "equal-or-greater") -addSymbol(0x022DE, "curlyeqprec", "mathrel", "curly equals, precedes") -addSymbol(0x022DF, "curlyeqsucc", "mathrel", "curly equals, succeeds") -addSymbol(0x022E0, "npreccurlyeq", "mathrel", "not precedes, curly equals") -addSymbol(0x022E1, "nsucccurlyeq", "mathrel", "not succeeds, curly equals") -addSymbol(0x022E2, "nsqsubseteq", "mathrel", "not, square subset, equals") -addSymbol(0x022E3, "nsqsupseteq", "mathrel", "not, square superset, equals") -addSymbol(0x022E4, "sqsubsetneq", "mathrel", "square subset, not equals") -addSymbol(0x022E5, "sqsupsetneq", "mathrel", "square superset, not equals") -addSymbol(0x022E6, "lnsim", "mathrel", "less, not similar") -addSymbol(0x022E7, "gnsim", "mathrel", "greater, not similar") -addSymbol(0x022E8, "precnsim", "mathrel", "precedes, not similar") -addSymbol(0x022E9, "succnsim", "mathrel", "succeeds, not similar") -addSymbol(0x022EA, "nvartriangleleft", "mathrel", "not left triangle") -addSymbol(0x022EB, "nvartriangleright", "mathrel", "not right triangle") -addSymbol(0x022EC, "ntrianglelefteq", "mathrel", "not left triangle, equals") -addSymbol(0x022ED, "ntrianglerighteq", "mathrel", "not right triangle, equals") -addSymbol(0x022EE, "vdots", "mathrel", "vertical ellipsis") -addSymbol(0x022EF, "unicodecdots", "mathord", "three dots, centered") -addSymbol(0x022F0, "adots", "mathrel", "three dots, ascending") -addSymbol(0x022F1, "ddots", "mathrel", "three dots, descending") -addSymbol(0x022F2, "disin", "mathrel", "element of with long horizontal stroke") -addSymbol(0x022F3, "varisins", "mathrel", "element of with vertical bar at end of horizontal stroke") -addSymbol(0x022F4, "isins", "mathrel", "small element of with vertical bar at end of horizontal stroke") -addSymbol(0x022F5, "isindot", "mathrel", "element of with dot above") -addSymbol(0x022F6, "varisinobar", "mathrel", "element of with overbar") -addSymbol(0x022F7, "isinobar", "mathrel", "small element of with overbar") -addSymbol(0x022F8, "isinvb", "mathrel", "element of with underbar") -addSymbol(0x022F9, "isinE", "mathrel", "element of with two horizontal strokes") -addSymbol(0x022FA, "nisd", "mathrel", "contains with long horizontal stroke") -addSymbol(0x022FB, "varnis", "mathrel", "contains with vertical bar at end of horizontal stroke") -addSymbol(0x022FC, "nis", "mathrel", "small contains with vertical bar at end of horizontal stroke") -addSymbol(0x022FD, "varniobar", "mathrel", "contains with overbar") -addSymbol(0x022FE, "niobar", "mathrel", "small contains with overbar") -addSymbol(0x022FF, "bagmember", "mathrel", "z notation bag membership") -addSymbol(0x02300, "diameter", "mathord", "diameter sign") -addSymbol(0x02302, "house", "mathord", "house") -addSymbol(0x02305, "varbarwedge", "mathbin", "/barwedge b: logical and, bar above [projective (bar over small wedge)]") -addSymbol( - 0x02306, - "vardoublebarwedge", - "mathbin", - "/doublebarwedge b: logical and, double bar above [perspective (double bar over small wedge)]" -) -addSymbol(0x02308, "lceil", "mathopen", "left ceiling") -addSymbol(0x02309, "rceil", "mathclose", "right ceiling") -addSymbol(0x0230A, "lfloor", "mathopen", "left floor") -addSymbol(0x0230B, "rfloor", "mathclose", "right floor") -addSymbol(0x02310, "invnot", "mathord", "reverse not") -addSymbol(0x02311, "sqlozenge", "mathord", "square lozenge") -addSymbol(0x02312, "profline", "mathord", "profile of a line") -addSymbol(0x02313, "profsurf", "mathord", "profile of a surface") -addSymbol(0x02317, "viewdata", "mathord", "viewdata square") -addSymbol(0x02319, "turnednot", "mathord", "turned not sign") -addSymbol(0x0231C, "ulcorner", "mathopen", "upper left corner") -addSymbol(0x0231D, "urcorner", "mathclose", "upper right corner") -addSymbol(0x0231E, "llcorner", "mathopen", "lower left corner") -addSymbol(0x0231F, "lrcorner", "mathclose", "lower right corner") -addSymbol(0x02320, "inttop", "mathord", "top half integral") -addSymbol(0x02321, "intbottom", "mathord", "bottom half integral") -addSymbol(0x02322, "frown", "mathrel", "down curve") -addSymbol(0x02323, "smile", "mathrel", "up curve") -addSymbol(0x0232C, "varhexagonlrbonds", "mathord", "six carbon ring, corner down, double bonds lower right etc") -addSymbol(0x02332, "conictaper", "mathord", "conical taper ") -addSymbol(0x02336, "topbot", "mathord", "top and bottom") -addSymbol(0x0233D, "obar", "mathbin", "circle with vertical bar") -addSymbol(0x0233F, "APLnotslash", "mathrel", "solidus, bar through (apl functional symbol slash bar)") -addSymbol(0x02340, "APLnotbackslash", "mathord", "apl functional symbol backslash bar") -addSymbol(0x02353, "APLboxupcaret", "mathord", "boxed up caret") -addSymbol(0x02370, "APLboxquestion", "mathord", "boxed question mark") -addSymbol(0x0237C, "rangledownzigzagarrow", "mathord", "right angle with downwards zigzag arrow") -addSymbol(0x02394, "hexagon", "mathord", "horizontal benzene ring [hexagon flat open]") -addSymbol(0x0239B, "lparenuend", "mathord", "left parenthesis upper hook") -addSymbol(0x0239C, "lparenextender", "mathord", "left parenthesis extension") -addSymbol(0x0239D, "lparenlend", "mathord", "left parenthesis lower hook") -addSymbol(0x0239E, "rparenuend", "mathord", "right parenthesis upper hook") -addSymbol(0x0239F, "rparenextender", "mathord", "right parenthesis extension") -addSymbol(0x023A0, "rparenlend", "mathord", "right parenthesis lower hook") -addSymbol(0x023A1, "lbrackuend", "mathord", "left square bracket upper corner") -addSymbol(0x023A2, "lbrackextender", "mathord", "left square bracket extension") -addSymbol(0x023A3, "lbracklend", "mathord", "left square bracket lower corner") -addSymbol(0x023A4, "rbrackuend", "mathord", "right square bracket upper corner") -addSymbol(0x023A5, "rbrackextender", "mathord", "right square bracket extension") -addSymbol(0x023A6, "rbracklend", "mathord", "right square bracket lower corner") -addSymbol(0x023A7, "lbraceuend", "mathord", "left curly bracket upper hook") -addSymbol(0x023A8, "lbracemid", "mathord", "left curly bracket middle piece") -addSymbol(0x023A9, "lbracelend", "mathord", "left curly bracket lower hook") -addSymbol(0x023AA, "vbraceextender", "mathord", "curly bracket extension") -addSymbol(0x023AB, "rbraceuend", "mathord", "right curly bracket upper hook") -addSymbol(0x023AC, "rbracemid", "mathord", "right curly bracket middle piece") -addSymbol(0x023AD, "rbracelend", "mathord", "right curly bracket lower hook") -addSymbol(0x023AE, "intextender", "mathord", "integral extension") -addSymbol(0x023AF, "harrowextender", "mathord", "horizontal line extension (used to extend arrows)") -addSymbol(0x023B0, "lmoustache", "mathopen", "upper left or lower right curly bracket section") -addSymbol(0x023B1, "rmoustache", "mathclose", "upper right or lower left curly bracket section") -addSymbol(0x023B2, "sumtop", "mathord", "summation top") -addSymbol(0x023B3, "sumbottom", "mathord", "summation bottom") -addSymbol(0x023B4, "overbracket", "mathover", "top square bracket") -addSymbol(0x023B5, "underbracket", "mathunder", "bottom square bracket") -addSymbol(0x023B6, "bbrktbrk", "mathord", "bottom square bracket over top square bracket") -addSymbol(0x023B7, "sqrtbottom", "mathord", "radical symbol bottom") -addSymbol(0x023B8, "lvboxline", "mathord", "left vertical box line") -addSymbol(0x023B9, "rvboxline", "mathord", "right vertical box line") -addSymbol(0x023CE, "varcarriagereturn", "mathord", "return symbol") -addSymbol(0x023DC, "overparen", "mathover", "top parenthesis (mathematical use)") -addSymbol(0x023DD, "underparen", "mathunder", "bottom parenthesis (mathematical use)") -addSymbol(0x023DE, "overbrace", "mathover", "top curly bracket (mathematical use)") -addSymbol(0x023DF, "underbrace", "mathunder", "bottom curly bracket (mathematical use)") -addSymbol(0x023E0, "obrbrak", "mathord", "top tortoise shell bracket (mathematical use)") -addSymbol(0x023E1, "ubrbrak", "mathord", "bottom tortoise shell bracket (mathematical use)") -addSymbol(0x023E2, "trapezium", "mathord", "white trapezium") -addSymbol(0x023E3, "benzenr", "mathord", "benzene ring with circle") -addSymbol(0x023E4, "strns", "mathord", "straightness") -addSymbol(0x023E5, "fltns", "mathord", "flatness") -addSymbol(0x023E6, "accurrent", "mathord", "ac current") -addSymbol(0x023E7, "elinters", "mathord", "electrical intersection") -addSymbol(0x02422, "blanksymbol", "mathord", "blank symbol") -addSymbol(0x02423, "mathvisiblespace", "mathord", "open box") -addSymbol(0x02506, "bdtriplevdash", "mathord", "doubly broken vert") -addSymbol(0x02580, "blockuphalf", "mathord", "upper half block") -addSymbol(0x02584, "blocklowhalf", "mathord", "lower half block") -addSymbol(0x02588, "blockfull", "mathord", "full block") -addSymbol(0x0258C, "blocklefthalf", "mathord", "left half block") -addSymbol(0x02590, "blockrighthalf", "mathord", "right half block") -addSymbol(0x02591, "blockqtrshaded", "mathord", "25% shaded block") -addSymbol(0x02592, "blockhalfshaded", "mathord", "50% shaded block") -addSymbol(0x02593, "blockthreeqtrshaded", "mathord", "75% shaded block") -addSymbol(0x025A0, "mdlgblksquare", "mathord", "square, filled") -addSymbol(0x025A1, "mdlgwhtsquare", "mathord", "square, open") -addSymbol(0x025A2, "squoval", "mathord", "white square with rounded corners") -addSymbol(0x025A3, "blackinwhitesquare", "mathord", "white square containing black small square") -addSymbol(0x025A4, "squarehfill", "mathord", "square, horizontal rule filled") -addSymbol(0x025A5, "squarevfill", "mathord", "square, vertical rule filled") -addSymbol(0x025A6, "squarehvfill", "mathord", "square with orthogonal crosshatch fill") -addSymbol(0x025A7, "squarenwsefill", "mathord", "square, nw-to-se rule filled") -addSymbol(0x025A8, "squareneswfill", "mathord", "square, ne-to-sw rule filled") -addSymbol(0x025A9, "squarecrossfill", "mathord", "square with diagonal crosshatch fill") -addSymbol(0x025AA, "smblksquare", "mathord", "/blacksquare - sq bullet, filled") -addSymbol(0x025AB, "smwhtsquare", "mathord", "white small square") -addSymbol(0x025AC, "hrectangleblack", "mathord", "black rectangle") -addSymbol(0x025AD, "hrectangle", "mathord", "horizontal rectangle, open") -addSymbol(0x025AE, "vrectangleblack", "mathord", "black vertical rectangle") -addSymbol(0x025AF, "vrectangle", "mathord", "rectangle, white (vertical)") -addSymbol(0x025B0, "parallelogramblack", "mathord", "black parallelogram") -addSymbol(0x025B1, "parallelogram", "mathord", "parallelogram, open") -addSymbol(0x025B2, "bigblacktriangleup", "mathord", "black up-pointing triangle") -addSymbol(0x025B3, "bigtriangleup", "mathbin", "big up triangle, open") -addSymbol(0x025B4, "blacktriangle", "mathord", "up triangle, filled") -addSymbol(0x025B5, "vartriangle", "mathrel", "/triangle - up triangle, open") -addSymbol(0x025B6, "blacktriangleright", "mathord", "(large) right triangle, filled") -addSymbol(0x025B7, "triangleright", "mathbin", "(large) right triangle, open; z notation range restriction") -addSymbol(0x025B8, "smallblacktriangleright", "mathord", "right triangle, filled") -addSymbol(0x025B9, "smalltriangleright", "mathord", "right triangle, open") -addSymbol(0x025BA, "blackpointerright", "mathord", "black right-pointing pointer") -addSymbol(0x025BB, "whitepointerright", "mathord", "white right-pointing pointer") -addSymbol(0x025BC, "bigblacktriangledown", "mathord", "big down triangle, filled") -addSymbol(0x025BD, "bigtriangledown", "mathord", "big down triangle, open") -addSymbol(0x025BE, "blacktriangledown", "mathord", "down triangle, filled") -addSymbol(0x025BF, "triangledown", "mathord", "down triangle, open") -addSymbol(0x025C0, "blacktriangleleft", "mathord", "(large) left triangle, filled") -addSymbol(0x025C1, "triangleleft", "mathbin", "(large) left triangle, open; z notation domain restriction") -addSymbol(0x025C2, "smallblacktriangleleft", "mathord", "left triangle, filled") -addSymbol(0x025C3, "smalltriangleleft", "mathord", "left triangle, open") -addSymbol(0x025C4, "blackpointerleft", "mathord", "black left-pointing pointer") -addSymbol(0x025C5, "whitepointerleft", "mathord", "white left-pointing pointer") -addSymbol(0x025C6, "mdlgblkdiamond", "mathord", "black diamond") -addSymbol(0x025C7, "mdlgwhtdiamond", "mathord", "white diamond; diamond, open") -addSymbol(0x025C8, "blackinwhitediamond", "mathord", "white diamond containing black small diamond") -addSymbol(0x025C9, "fisheye", "mathord", "fisheye") -addSymbol(0x025CA, "mdlgwhtlozenge", "mathord", "lozenge or total mark") -addSymbol(0x025CB, "mdlgwhtcircle", "mathbin", "medium large circle") -addSymbol(0x025CC, "dottedcircle", "mathord", "dotted circle") -addSymbol(0x025CD, "circlevertfill", "mathord", "circle with vertical fill") -addSymbol(0x025CE, "bullseye", "mathord", "bullseye") -addSymbol(0x025CF, "mdlgblkcircle", "mathord", "circle, filled") -addSymbol(0x025D0, "circlelefthalfblack", "mathord", "circle, filled left half [harvey ball]") -addSymbol(0x025D1, "circlerighthalfblack", "mathord", "circle, filled right half") -addSymbol(0x025D2, "circlebottomhalfblack", "mathord", "circle, filled bottom half") -addSymbol(0x025D3, "circletophalfblack", "mathord", "circle, filled top half") -addSymbol(0x025D4, "circleurquadblack", "mathord", "circle with upper right quadrant black") -addSymbol(0x025D5, "blackcircleulquadwhite", "mathord", "circle with all but upper left quadrant black") -addSymbol(0x025D6, "blacklefthalfcircle", "mathord", "left half black circle") -addSymbol(0x025D7, "blackrighthalfcircle", "mathord", "right half black circle") -addSymbol(0x025D8, "inversebullet", "mathord", "inverse bullet ") -addSymbol(0x025D9, "inversewhitecircle", "mathord", "inverse white circle") -addSymbol(0x025DA, "invwhiteupperhalfcircle", "mathord", "upper half inverse white circle") -addSymbol(0x025DB, "invwhitelowerhalfcircle", "mathord", "lower half inverse white circle") -addSymbol(0x025DC, "ularc", "mathord", "upper left quadrant circular arc") -addSymbol(0x025DD, "urarc", "mathord", "upper right quadrant circular arc") -addSymbol(0x025DE, "lrarc", "mathord", "lower right quadrant circular arc") -addSymbol(0x025DF, "llarc", "mathord", "lower left quadrant circular arc") -addSymbol(0x025E0, "topsemicircle", "mathord", "upper half circle") -addSymbol(0x025E1, "botsemicircle", "mathord", "lower half circle") -addSymbol(0x025E2, "lrblacktriangle", "mathord", "lower right triangle, filled") -addSymbol(0x025E3, "llblacktriangle", "mathord", "lower left triangle, filled") -addSymbol(0x025E4, "ulblacktriangle", "mathord", "upper left triangle, filled") -addSymbol(0x025E5, "urblacktriangle", "mathord", "upper right triangle, filled") -addSymbol(0x025E6, "smwhtcircle", "mathord", "white bullet") -addSymbol(0x025E7, "squareleftblack", "mathord", "square, filled left half") -addSymbol(0x025E8, "squarerightblack", "mathord", "square, filled right half") -addSymbol(0x025E9, "squareulblack", "mathord", "square, filled top left corner") -addSymbol(0x025EA, "squarelrblack", "mathord", "square, filled bottom right corner") -addSymbol(0x025EB, "boxbar", "mathbin", "vertical bar in box") -addSymbol(0x025EC, "trianglecdot", "mathord", "triangle with centered dot") -addSymbol(0x025ED, "triangleleftblack", "mathord", "up-pointing triangle with left half black") -addSymbol(0x025EE, "trianglerightblack", "mathord", "up-pointing triangle with right half black") -addSymbol(0x025EF, "lgwhtcircle", "mathord", "large circle") -addSymbol(0x025F0, "squareulquad", "mathord", "white square with upper left quadrant") -addSymbol(0x025F1, "squarellquad", "mathord", "white square with lower left quadrant") -addSymbol(0x025F2, "squarelrquad", "mathord", "white square with lower right quadrant") -addSymbol(0x025F3, "squareurquad", "mathord", "white square with upper right quadrant") -addSymbol(0x025F4, "circleulquad", "mathord", "white circle with upper left quadrant") -addSymbol(0x025F5, "circlellquad", "mathord", "white circle with lower left quadrant") -addSymbol(0x025F6, "circlelrquad", "mathord", "white circle with lower right quadrant") -addSymbol(0x025F7, "circleurquad", "mathord", "white circle with upper right quadrant") -addSymbol(0x025F8, "ultriangle", "mathord", "upper left triangle") -addSymbol(0x025F9, "urtriangle", "mathord", "upper right triangle") -addSymbol(0x025FA, "lltriangle", "mathord", "lower left triangle") -addSymbol(0x025FB, "mdwhtsquare", "mathord", "white medium square") -addSymbol(0x025FC, "mdblksquare", "mathord", "black medium square") -addSymbol(0x025FD, "mdsmwhtsquare", "mathord", "white medium small square") -addSymbol(0x025FE, "mdsmblksquare", "mathord", "black medium small square") -addSymbol(0x025FF, "lrtriangle", "mathord", "lower right triangle") -addSymbol(0x02605, "bigstar", "mathord", "star, filled") -addSymbol(0x02606, "bigwhitestar", "mathord", "star, open") -addSymbol(0x02609, "astrosun", "mathord", "sun") -addSymbol(0x02621, "danger", "mathord", "dangerous bend (caution sign)") -addSymbol(0x0263B, "blacksmiley", "mathord", "black smiling face") -addSymbol(0x0263C, "sun", "mathord", "white sun with rays") -addSymbol(0x0263D, "rightmoon", "mathord", "first quarter moon") -addSymbol(0x0263E, "leftmoon", "mathord", "last quarter moon") -addSymbol(0x02640, "female", "mathord", "venus, female") -addSymbol(0x02642, "male", "mathord", "mars, male") -addSymbol(0x02660, "spadesuit", "mathord", "spades suit symbol") -addSymbol(0x02661, "heartsuit", "mathord", "heart suit symbol") -addSymbol(0x02662, "diamondsuit", "mathord", "diamond suit symbol") -addSymbol(0x02663, "clubsuit", "mathord", "club suit symbol") -addSymbol(0x02664, "varspadesuit", "mathord", "spade, white (card suit)") -addSymbol(0x02665, "varheartsuit", "mathord", "filled heart (card suit)") -addSymbol(0x02666, "vardiamondsuit", "mathord", "filled diamond (card suit)") -addSymbol(0x02667, "varclubsuit", "mathord", "club, white (card suit)") -addSymbol(0x02669, "quarternote", "mathord", "music note (sung text sign)") -addSymbol(0x0266A, "eighthnote", "mathord", "eighth note") -addSymbol(0x0266B, "twonotes", "mathord", "beamed eighth notes") -addSymbol(0x0266D, "flat", "mathord", "musical flat") -addSymbol(0x0266E, "natural", "mathord", "music natural") -addSymbol(0x0266F, "sharp", "mathord", "musical sharp") -addSymbol(0x0267E, "acidfree", "mathord", "permanent paper sign") -addSymbol(0x02680, "dicei", "mathord", "die face-1") -addSymbol(0x02681, "diceii", "mathord", "die face-2") -addSymbol(0x02682, "diceiii", "mathord", "die face-3") -addSymbol(0x02683, "diceiv", "mathord", "die face-4") -addSymbol(0x02684, "dicev", "mathord", "die face-5") -addSymbol(0x02685, "dicevi", "mathord", "die face-6") -addSymbol(0x02686, "circledrightdot", "mathord", "white circle with dot right") -addSymbol(0x02687, "circledtwodots", "mathord", "white circle with two dots") -addSymbol(0x02688, "blackcircledrightdot", "mathord", "black circle with white dot right") -addSymbol(0x02689, "blackcircledtwodots", "mathord", "black circle with two white dots") -addSymbol(0x026A5, "Hermaphrodite", "mathord", "male and female sign") -addSymbol(0x026AA, "mdwhtcircle", "mathord", "medium white circle") -addSymbol(0x026AB, "mdblkcircle", "mathord", "medium black circle") -addSymbol(0x026AC, "mdsmwhtcircle", "mathord", "medium small white circle") -addSymbol(0x026B2, "neuter", "mathord", "neuter") -addSymbol(0x02713, "checkmark", "mathord", "tick, check mark") -addSymbol(0x02720, "maltese", "mathord", "maltese cross") -addSymbol(0x0272A, "circledstar", "mathord", "circled white star") -addSymbol(0x02736, "varstar", "mathord", "six pointed black star") -addSymbol(0x0273D, "dingasterisk", "mathord", "heavy teardrop-spoked asterisk") -addSymbol(0x02772, "lbrbrak", "mathopen", "light left tortoise shell bracket ornament") -addSymbol(0x02773, "rbrbrak", "mathclose", "light right tortoise shell bracket ornament") -addSymbol(0x0279B, "draftingarrow", "mathord", "right arrow with bold head (drafting)") -addSymbol(0x027C0, "threedangle", "mathord", "three dimensional angle") -addSymbol(0x027C1, "whiteinwhitetriangle", "mathord", "white triangle containing small white triangle") -addSymbol(0x027C2, "perp", "mathrel", "perpendicular") -addSymbol(0x027C3, "subsetcirc", "mathord", "open subset") -addSymbol(0x027C4, "supsetcirc", "mathord", "open superset") -addSymbol(0x027C5, "lbag", "mathopen", "left s-shaped bag delimiter") -addSymbol(0x027C6, "rbag", "mathclose", "right s-shaped bag delimiter") -addSymbol(0x027C7, "veedot", "mathbin", "or with dot inside") -addSymbol(0x027C8, "bsolhsub", "mathrel", "reverse solidus preceding subset") -addSymbol(0x027C9, "suphsol", "mathrel", "superset preceding solidus") -addSymbol(0x027CC, "longdivision", "mathopen", "long division") -addSymbol(0x027D0, "diamondcdot", "mathord", "white diamond with centered dot") -addSymbol(0x027D1, "wedgedot", "mathbin", "and with dot") -addSymbol(0x027D2, "upin", "mathrel", "element of opening upwards") -addSymbol(0x027D3, "pullback", "mathrel", "lower right corner with dot") -addSymbol(0x027D4, "pushout", "mathrel", "upper left corner with dot") -addSymbol(0x027D5, "leftouterjoin", "mathop", "left outer join") -addSymbol(0x027D6, "rightouterjoin", "mathop", "right outer join") -addSymbol(0x027D7, "fullouterjoin", "mathop", "full outer join") -addSymbol(0x027D8, "bigbot", "mathop", "large up tack") -addSymbol(0x027D9, "bigtop", "mathop", "large down tack") -addSymbol(0x027DA, "DashVDash", "mathrel", "left and right double turnstile") -addSymbol(0x027DB, "dashVdash", "mathrel", "left and right tack") -addSymbol(0x027DC, "multimapinv", "mathrel", "left multimap") -addSymbol(0x027DD, "vlongdash", "mathrel", "long left tack") -addSymbol(0x027DE, "longdashv", "mathrel", "long right tack") -addSymbol(0x027DF, "cirbot", "mathrel", "up tack with circle above") -addSymbol(0x027E0, "lozengeminus", "mathbin", "lozenge divided by horizontal rule") -addSymbol(0x027E1, "concavediamond", "mathbin", "white concave-sided diamond") -addSymbol(0x027E2, "concavediamondtickleft", "mathbin", "white concave-sided diamond with leftwards tick") -addSymbol(0x027E3, "concavediamondtickright", "mathbin", "white concave-sided diamond with rightwards tick") -addSymbol(0x027E4, "whitesquaretickleft", "mathbin", "white square with leftwards tick") -addSymbol(0x027E5, "whitesquaretickright", "mathbin", "white square with rightwards tick") -addSymbol(0x027E6, "lBrack", "mathopen", "mathematical left white square bracket") -addSymbol(0x027E7, "rBrack", "mathclose", "mathematical right white square bracket") -addSymbol(0x027E8, "langle", "mathopen", "mathematical left angle bracket") -addSymbol(0x027E9, "rangle", "mathclose", "mathematical right angle bracket") -addSymbol(0x027EA, "lAngle", "mathopen", "mathematical left double angle bracket") -addSymbol(0x027EB, "rAngle", "mathclose", "mathematical right double angle bracket") -addSymbol(0x027EC, "Lbrbrak", "mathopen", "mathematical left white tortoise shell bracket") -addSymbol(0x027ED, "Rbrbrak", "mathclose", "mathematical right white tortoise shell bracket") -addSymbol(0x027EE, "lgroup", "mathopen", "mathematical left flattened parenthesis") -addSymbol(0x027EF, "rgroup", "mathclose", "mathematical right flattened parenthesis") -addSymbol(0x027F0, "UUparrow", "mathrel", "upwards quadruple arrow") -addSymbol(0x027F1, "DDownarrow", "mathrel", "downwards quadruple arrow") -addSymbol(0x027F2, "acwgapcirclearrow", "mathrel", "anticlockwise gapped circle arrow") -addSymbol(0x027F3, "cwgapcirclearrow", "mathrel", "clockwise gapped circle arrow") -addSymbol(0x027F4, "rightarrowonoplus", "mathrel", "right arrow with circled plus") -addSymbol(0x027F5, "longleftarrow", "mathrel", "long leftwards arrow") -addSymbol(0x027F6, "longrightarrow", "mathrel", "long rightwards arrow") -addSymbol(0x027F7, "longleftrightarrow", "mathrel", "long left right arrow") -addSymbol(0x027F8, "Longleftarrow", "mathrel", "long leftwards double arrow") -addSymbol(0x027F9, "Longrightarrow", "mathrel", "long rightwards double arrow") -addSymbol(0x027FA, "Longleftrightarrow", "mathrel", "long left right double arrow") -addSymbol(0x027FB, "longmapsfrom", "mathrel", "long leftwards arrow from bar") -addSymbol(0x027FC, "longmapsto", "mathrel", "long rightwards arrow from bar") -addSymbol(0x027FD, "Longmapsfrom", "mathrel", "long leftwards double arrow from bar") -addSymbol(0x027FE, "Longmapsto", "mathrel", "long rightwards double arrow from bar") -addSymbol(0x027FF, "longrightsquigarrow", "mathrel", "long rightwards squiggle arrow") -addSymbol(0x02900, "nvtwoheadrightarrow", "mathrel", "rightwards two-headed arrow with vertical stroke") -addSymbol(0x02901, "nVtwoheadrightarrow", "mathrel", "rightwards two-headed arrow with double vertical stroke") -addSymbol(0x02902, "nvLeftarrow", "mathrel", "leftwards double arrow with vertical stroke") -addSymbol(0x02903, "nvRightarrow", "mathrel", "rightwards double arrow with vertical stroke") -addSymbol(0x02904, "nvLeftrightarrow", "mathrel", "left right double arrow with vertical stroke") -addSymbol(0x02905, "twoheadmapsto", "mathrel", "rightwards two-headed arrow from bar") -addSymbol(0x02906, "Mapsfrom", "mathrel", "leftwards double arrow from bar") -addSymbol(0x02907, "Mapsto", "mathrel", "rightwards double arrow from bar") -addSymbol(0x02908, "downarrowbarred", "mathrel", "downwards arrow with horizontal stroke") -addSymbol(0x02909, "uparrowbarred", "mathrel", "upwards arrow with horizontal stroke") -addSymbol(0x0290A, "Uuparrow", "mathrel", "upwards triple arrow") -addSymbol(0x0290B, "Ddownarrow", "mathrel", "downwards triple arrow") -addSymbol(0x0290C, "leftbkarrow", "mathrel", "leftwards double dash arrow") -addSymbol(0x0290D, "rightbkarrow", "mathrel", "rightwards double dash arrow") -addSymbol(0x0290E, "leftdbkarrow", "mathrel", "leftwards triple dash arrow") -addSymbol(0x0290F, "dbkarrow", "mathrel", "rightwards triple dash arrow") -addSymbol(0x02910, "drbkarrow", "mathrel", "rightwards two-headed triple dash arrow") -addSymbol(0x02911, "rightdotarrow", "mathrel", "rightwards arrow with dotted stem") -addSymbol(0x02912, "baruparrow", "mathrel", "upwards arrow to bar") -addSymbol(0x02913, "downarrowbar", "mathrel", "downwards arrow to bar") -addSymbol(0x02914, "nvrightarrowtail", "mathrel", "rightwards arrow with tail with vertical stroke") -addSymbol(0x02915, "nVrightarrowtail", "mathrel", "rightwards arrow with tail with double vertical stroke") -addSymbol(0x02916, "twoheadrightarrowtail", "mathrel", "rightwards two-headed arrow with tail") -addSymbol(0x02917, "nvtwoheadrightarrowtail", "mathrel", "rightwards two-headed arrow with tail with vertical stroke") -addSymbol( - 0x02918, - "nVtwoheadrightarrowtail", - "mathrel", - "rightwards two-headed arrow with tail with double vertical stroke" -) -addSymbol(0x02919, "lefttail", "mathrel", "leftwards arrow-tail") -addSymbol(0x0291A, "righttail", "mathrel", "rightwards arrow-tail") -addSymbol(0x0291B, "leftdbltail", "mathrel", "leftwards double arrow-tail") -addSymbol(0x0291C, "rightdbltail", "mathrel", "rightwards double arrow-tail") -addSymbol(0x0291D, "diamondleftarrow", "mathrel", "leftwards arrow to black diamond") -addSymbol(0x0291E, "rightarrowdiamond", "mathrel", "rightwards arrow to black diamond") -addSymbol(0x0291F, "diamondleftarrowbar", "mathrel", "leftwards arrow from bar to black diamond") -addSymbol(0x02920, "barrightarrowdiamond", "mathrel", "rightwards arrow from bar to black diamond") -addSymbol(0x02921, "nwsearrow", "mathrel", "north west and south east arrow") -addSymbol(0x02922, "neswarrow", "mathrel", "north east and south west arrow") -addSymbol(0x02923, "hknwarrow", "mathrel", "north west arrow with hook") -addSymbol(0x02924, "hknearrow", "mathrel", "north east arrow with hook") -addSymbol(0x02925, "hksearrow", "mathrel", "south east arrow with hook") -addSymbol(0x02926, "hkswarrow", "mathrel", "south west arrow with hook") -addSymbol(0x02927, "tona", "mathrel", "north west arrow and north east arrow") -addSymbol(0x02928, "toea", "mathrel", "north east arrow and south east arrow") -addSymbol(0x02929, "tosa", "mathrel", "south east arrow and south west arrow") -addSymbol(0x0292A, "towa", "mathrel", "south west arrow and north west arrow") -addSymbol(0x0292B, "rdiagovfdiag", "mathord", "rising diagonal crossing falling diagonal") -addSymbol(0x0292C, "fdiagovrdiag", "mathord", "falling diagonal crossing rising diagonal") -addSymbol(0x0292D, "seovnearrow", "mathord", "south east arrow crossing north east arrow") -addSymbol(0x0292E, "neovsearrow", "mathord", "north east arrow crossing south east arrow") -addSymbol(0x0292F, "fdiagovnearrow", "mathord", "falling diagonal crossing north east arrow") -addSymbol(0x02930, "rdiagovsearrow", "mathord", "rising diagonal crossing south east arrow") -addSymbol(0x02931, "neovnwarrow", "mathord", "north east arrow crossing north west arrow") -addSymbol(0x02932, "nwovnearrow", "mathord", "north west arrow crossing north east arrow") -addSymbol(0x02933, "rightcurvedarrow", "mathrel", "wave arrow pointing directly right") -addSymbol(0x02934, "uprightcurvearrow", "mathord", "arrow pointing rightwards then curving upwards") -addSymbol(0x02935, "downrightcurvedarrow", "mathord", "arrow pointing rightwards then curving downwards") -addSymbol(0x02936, "leftdowncurvedarrow", "mathrel", "arrow pointing downwards then curving leftwards") -addSymbol(0x02937, "rightdowncurvedarrow", "mathrel", "arrow pointing downwards then curving rightwards") -addSymbol(0x02938, "cwrightarcarrow", "mathrel", "right-side arc clockwise arrow") -addSymbol(0x02939, "acwleftarcarrow", "mathrel", "left-side arc anticlockwise arrow") -addSymbol(0x0293A, "acwoverarcarrow", "mathrel", "top arc anticlockwise arrow") -addSymbol(0x0293B, "acwunderarcarrow", "mathrel", "bottom arc anticlockwise arrow") -addSymbol(0x0293C, "curvearrowrightminus", "mathrel", "top arc clockwise arrow with minus") -addSymbol(0x0293D, "curvearrowleftplus", "mathrel", "top arc anticlockwise arrow with plus") -addSymbol(0x0293E, "cwundercurvearrow", "mathrel", "lower right semicircular clockwise arrow") -addSymbol(0x0293F, "ccwundercurvearrow", "mathrel", "lower left semicircular anticlockwise arrow") -addSymbol(0x02940, "acwcirclearrow", "mathrel", "anticlockwise closed circle arrow") -addSymbol(0x02941, "cwcirclearrow", "mathrel", "clockwise closed circle arrow") -addSymbol(0x02942, "rightarrowshortleftarrow", "mathrel", "rightwards arrow above short leftwards arrow") -addSymbol(0x02943, "leftarrowshortrightarrow", "mathrel", "leftwards arrow above short rightwards arrow") -addSymbol(0x02944, "shortrightarrowleftarrow", "mathrel", "short rightwards arrow above leftwards arrow") -addSymbol(0x02945, "rightarrowplus", "mathrel", "rightwards arrow with plus below") -addSymbol(0x02946, "leftarrowplus", "mathrel", "leftwards arrow with plus below") -addSymbol(0x02947, "rightarrowx", "mathrel", "rightwards arrow through x") -addSymbol(0x02948, "leftrightarrowcircle", "mathrel", "left right arrow through small circle") -addSymbol(0x02949, "twoheaduparrowcircle", "mathrel", "upwards two-headed arrow from small circle") -addSymbol(0x0294A, "leftrightharpoonupdown", "mathrel", "left barb up right barb down harpoon") -addSymbol(0x0294B, "leftrightharpoondownup", "mathrel", "left barb down right barb up harpoon") -addSymbol(0x0294C, "updownharpoonrightleft", "mathrel", "up barb right down barb left harpoon") -addSymbol(0x0294D, "updownharpoonleftright", "mathrel", "up barb left down barb right harpoon") -addSymbol(0x0294E, "leftrightharpoonupup", "mathrel", "left barb up right barb up harpoon") -addSymbol(0x0294F, "updownharpoonrightright", "mathrel", "up barb right down barb right harpoon") -addSymbol(0x02950, "leftrightharpoondowndown", "mathrel", "left barb down right barb down harpoon") -addSymbol(0x02951, "updownharpoonleftleft", "mathrel", "up barb left down barb left harpoon") -addSymbol(0x02952, "barleftharpoonup", "mathrel", "leftwards harpoon with barb up to bar") -addSymbol(0x02953, "rightharpoonupbar", "mathrel", "rightwards harpoon with barb up to bar") -addSymbol(0x02954, "barupharpoonright", "mathrel", "upwards harpoon with barb right to bar") -addSymbol(0x02955, "downharpoonrightbar", "mathrel", "downwards harpoon with barb right to bar") -addSymbol(0x02956, "barleftharpoondown", "mathrel", "leftwards harpoon with barb down to bar") -addSymbol(0x02957, "rightharpoondownbar", "mathrel", "rightwards harpoon with barb down to bar") -addSymbol(0x02958, "barupharpoonleft", "mathrel", "upwards harpoon with barb left to bar") -addSymbol(0x02959, "downharpoonleftbar", "mathrel", "downwards harpoon with barb left to bar") -addSymbol(0x0295A, "leftharpoonupbar", "mathrel", "leftwards harpoon with barb up from bar") -addSymbol(0x0295B, "barrightharpoonup", "mathrel", "rightwards harpoon with barb up from bar") -addSymbol(0x0295C, "upharpoonrightbar", "mathrel", "upwards harpoon with barb right from bar") -addSymbol(0x0295D, "bardownharpoonright", "mathrel", "downwards harpoon with barb right from bar") -addSymbol(0x0295E, "leftharpoondownbar", "mathrel", "leftwards harpoon with barb down from bar") -addSymbol(0x0295F, "barrightharpoondown", "mathrel", "rightwards harpoon with barb down from bar") -addSymbol(0x02960, "upharpoonleftbar", "mathrel", "upwards harpoon with barb left from bar") -addSymbol(0x02961, "bardownharpoonleft", "mathrel", "downwards harpoon with barb left from bar") -addSymbol( - 0x02962, - "leftharpoonsupdown", - "mathrel", - "leftwards harpoon with barb up above leftwards harpoon with barb down" -) -addSymbol( - 0x02963, - "upharpoonsleftright", - "mathrel", - "upwards harpoon with barb left beside upwards harpoon with barb right" -) -addSymbol( - 0x02964, - "rightharpoonsupdown", - "mathrel", - "rightwards harpoon with barb up above rightwards harpoon with barb down" -) -addSymbol( - 0x02965, - "downharpoonsleftright", - "mathrel", - "downwards harpoon with barb left beside downwards harpoon with barb right" -) -addSymbol( - 0x02966, - "leftrightharpoonsup", - "mathrel", - "leftwards harpoon with barb up above rightwards harpoon with barb up" -) -addSymbol( - 0x02967, - "leftrightharpoonsdown", - "mathrel", - "leftwards harpoon with barb down above rightwards harpoon with barb down" -) -addSymbol( - 0x02968, - "rightleftharpoonsup", - "mathrel", - "rightwards harpoon with barb up above leftwards harpoon with barb up" -) -addSymbol( - 0x02969, - "rightleftharpoonsdown", - "mathrel", - "rightwards harpoon with barb down above leftwards harpoon with barb down" -) -addSymbol(0x0296A, "leftharpoonupdash", "mathrel", "leftwards harpoon with barb up above long dash") -addSymbol(0x0296B, "dashleftharpoondown", "mathrel", "leftwards harpoon with barb down below long dash") -addSymbol(0x0296C, "rightharpoonupdash", "mathrel", "rightwards harpoon with barb up above long dash") -addSymbol(0x0296D, "dashrightharpoondown", "mathrel", "rightwards harpoon with barb down below long dash") -addSymbol( - 0x0296E, - "updownharpoonsleftright", - "mathrel", - "upwards harpoon with barb left beside downwards harpoon with barb right" -) -addSymbol( - 0x0296F, - "downupharpoonsleftright", - "mathrel", - "downwards harpoon with barb left beside upwards harpoon with barb right" -) -addSymbol(0x02970, "rightimply", "mathrel", "right double arrow with rounded head") -addSymbol(0x02971, "equalrightarrow", "mathrel", "equals sign above rightwards arrow") -addSymbol(0x02972, "similarrightarrow", "mathrel", "tilde operator above rightwards arrow") -addSymbol(0x02973, "leftarrowsimilar", "mathrel", "leftwards arrow above tilde operator") -addSymbol(0x02974, "rightarrowsimilar", "mathrel", "rightwards arrow above tilde operator") -addSymbol(0x02975, "rightarrowapprox", "mathrel", "rightwards arrow above almost equal to") -addSymbol(0x02976, "ltlarr", "mathrel", "less-than above leftwards arrow") -addSymbol(0x02977, "leftarrowless", "mathrel", "leftwards arrow through less-than") -addSymbol(0x02978, "gtrarr", "mathrel", "greater-than above rightwards arrow") -addSymbol(0x02979, "subrarr", "mathrel", "subset above rightwards arrow") -addSymbol(0x0297A, "leftarrowsubset", "mathrel", "leftwards arrow through subset") -addSymbol(0x0297B, "suplarr", "mathrel", "superset above leftwards arrow") -addSymbol(0x0297C, "leftfishtail", "mathrel", "left fish tail") -addSymbol(0x0297D, "rightfishtail", "mathrel", "right fish tail") -addSymbol(0x0297E, "upfishtail", "mathrel", "up fish tail") -addSymbol(0x0297F, "downfishtail", "mathrel", "down fish tail") -addSymbol(0x02980, "Vvert", "mathfence", "triple vertical bar delimiter") -addSymbol(0x02981, "mdsmblkcircle", "mathord", "z notation spot") -addSymbol(0x02982, "typecolon", "mathrel", "z notation type colon") -addSymbol(0x02983, "lBrace", "mathopen", "left white curly bracket") -addSymbol(0x02984, "rBrace", "mathclose", "right white curly bracket") -addSymbol(0x02985, "lParen", "mathopen", "left white parenthesis") -addSymbol(0x02986, "rParen", "mathclose", "right white parenthesis") -addSymbol(0x02987, "llparenthesis", "mathopen", "z notation left image bracket") -addSymbol(0x02988, "rrparenthesis", "mathclose", "z notation right image bracket") -addSymbol(0x02989, "llangle", "mathopen", "z notation left binding bracket") -addSymbol(0x0298A, "rrangle", "mathclose", "z notation right binding bracket") -addSymbol(0x0298B, "lbrackubar", "mathopen", "left square bracket with underbar") -addSymbol(0x0298C, "rbrackubar", "mathclose", "right square bracket with underbar") -addSymbol(0x0298D, "lbrackultick", "mathopen", "left square bracket with tick in top corner") -addSymbol(0x0298E, "rbracklrtick", "mathclose", "right square bracket with tick in bottom corner") -addSymbol(0x0298F, "lbracklltick", "mathopen", "left square bracket with tick in bottom corner") -addSymbol(0x02990, "rbrackurtick", "mathclose", "right square bracket with tick in top corner") -addSymbol(0x02991, "langledot", "mathopen", "left angle bracket with dot") -addSymbol(0x02992, "rangledot", "mathclose", "right angle bracket with dot") -addSymbol(0x02993, "lparenless", "mathopen", "left arc less-than bracket") -addSymbol(0x02994, "rparengtr", "mathclose", "right arc greater-than bracket") -addSymbol(0x02995, "Lparengtr", "mathopen", "double left arc greater-than bracket") -addSymbol(0x02996, "Rparenless", "mathclose", "double right arc less-than bracket") -addSymbol(0x02997, "lblkbrbrak", "mathopen", "left black tortoise shell bracket") -addSymbol(0x02998, "rblkbrbrak", "mathclose", "right black tortoise shell bracket") -addSymbol(0x02999, "fourvdots", "mathord", "dotted fence") -addSymbol(0x0299A, "vzigzag", "mathord", "vertical zigzag line") -addSymbol(0x0299B, "measuredangleleft", "mathord", "measured angle opening left") -addSymbol(0x0299C, "rightanglesqr", "mathord", "right angle variant with square") -addSymbol(0x0299D, "rightanglemdot", "mathord", "measured right angle with dot") -addSymbol(0x0299E, "angles", "mathord", "angle with s inside") -addSymbol(0x0299F, "angdnr", "mathord", "acute angle") -addSymbol(0x029A0, "gtlpar", "mathord", "spherical angle opening left") -addSymbol(0x029A1, "sphericalangleup", "mathord", "spherical angle opening up") -addSymbol(0x029A2, "turnangle", "mathord", "turned angle") -addSymbol(0x029A3, "revangle", "mathord", "reversed angle") -addSymbol(0x029A4, "angleubar", "mathord", "angle with underbar") -addSymbol(0x029A5, "revangleubar", "mathord", "reversed angle with underbar") -addSymbol(0x029A6, "wideangledown", "mathord", "oblique angle opening up") -addSymbol(0x029A7, "wideangleup", "mathord", "oblique angle opening down") -addSymbol(0x029A8, "measanglerutone", "mathord", "measured angle with open arm ending in arrow pointing up and right") -addSymbol(0x029A9, "measanglelutonw", "mathord", "measured angle with open arm ending in arrow pointing up and left") -addSymbol(0x029AA, "measanglerdtose", "mathord", "measured angle with open arm ending in arrow pointing down and right") -addSymbol(0x029AB, "measangleldtosw", "mathord", "measured angle with open arm ending in arrow pointing down and left") -addSymbol(0x029AC, "measangleurtone", "mathord", "measured angle with open arm ending in arrow pointing right and up") -addSymbol(0x029AD, "measangleultonw", "mathord", "measured angle with open arm ending in arrow pointing left and up") -addSymbol(0x029AE, "measangledrtose", "mathord", "measured angle with open arm ending in arrow pointing right and down") -addSymbol(0x029AF, "measangledltosw", "mathord", "measured angle with open arm ending in arrow pointing left and down") -addSymbol(0x029B0, "revemptyset", "mathord", "reversed empty set") -addSymbol(0x029B1, "emptysetobar", "mathord", "empty set with overbar") -addSymbol(0x029B2, "emptysetocirc", "mathord", "empty set with small circle above") -addSymbol(0x029B3, "emptysetoarr", "mathord", "empty set with right arrow above") -addSymbol(0x029B4, "emptysetoarrl", "mathord", "empty set with left arrow above") -addSymbol(0x029B5, "circlehbar", "mathbin", "circle with horizontal bar") -addSymbol(0x029B6, "circledvert", "mathbin", "circled vertical bar") -addSymbol(0x029B7, "circledparallel", "mathbin", "circled parallel") -addSymbol(0x029B8, "obslash", "mathbin", "circled reverse solidus") -addSymbol(0x029B9, "operp", "mathbin", "circled perpendicular") -addSymbol(0x029BA, "obot", "mathord", "circle divided by horizontal bar and top half divided by vertical bar") -addSymbol(0x029BB, "olcross", "mathord", "circle with superimposed x") -addSymbol(0x029BC, "odotslashdot", "mathord", "circled anticlockwise-rotated division sign") -addSymbol(0x029BD, "uparrowoncircle", "mathord", "up arrow through circle") -addSymbol(0x029BE, "circledwhitebullet", "mathord", "circled white bullet") -addSymbol(0x029BF, "circledbullet", "mathord", "circled bullet") -addSymbol(0x029C0, "olessthan", "mathbin", "circled less-than") -addSymbol(0x029C1, "ogreaterthan", "mathbin", "circled greater-than") -addSymbol(0x029C2, "cirscir", "mathord", "circle with small circle to the right") -addSymbol(0x029C3, "cirE", "mathord", "circle with two horizontal strokes to the right") -addSymbol(0x029C4, "boxdiag", "mathbin", "squared rising diagonal slash") -addSymbol(0x029C5, "boxbslash", "mathbin", "squared falling diagonal slash") -addSymbol(0x029C6, "boxast", "mathbin", "squared asterisk") -addSymbol(0x029C7, "boxcircle", "mathbin", "squared small circle") -addSymbol(0x029C8, "boxbox", "mathbin", "squared square") -addSymbol(0x029C9, "boxonbox", "mathord", "two joined squares") -addSymbol(0x029CA, "triangleodot", "mathord", "triangle with dot above") -addSymbol(0x029CB, "triangleubar", "mathord", "triangle with underbar") -addSymbol(0x029CC, "triangles", "mathord", "s in triangle") -addSymbol(0x029CD, "triangleserifs", "mathbin", "triangle with serifs at bottom") -addSymbol(0x029CE, "rtriltri", "mathrel", "right triangle above left triangle") -addSymbol(0x029CF, "ltrivb", "mathrel", "left triangle beside vertical bar") -addSymbol(0x029D0, "vbrtri", "mathrel", "vertical bar beside right triangle") -addSymbol(0x029D1, "lfbowtie", "mathrel", "left black bowtie") -addSymbol(0x029D2, "rfbowtie", "mathrel", "right black bowtie") -addSymbol(0x029D3, "fbowtie", "mathrel", "black bowtie") -addSymbol(0x029D4, "lftimes", "mathrel", "left black times") -addSymbol(0x029D5, "rftimes", "mathrel", "right black times") -addSymbol(0x029D6, "hourglass", "mathbin", "white hourglass") -addSymbol(0x029D7, "blackhourglass", "mathbin", "black hourglass") -addSymbol(0x029D8, "lvzigzag", "mathopen", "left wiggly fence") -addSymbol(0x029D9, "rvzigzag", "mathclose", "right wiggly fence") -addSymbol(0x029DA, "Lvzigzag", "mathopen", "left double wiggly fence") -addSymbol(0x029DB, "Rvzigzag", "mathclose", "right double wiggly fence") -addSymbol(0x029DC, "iinfin", "mathord", "incomplete infinity") -addSymbol(0x029DD, "tieinfty", "mathord", "tie over infinity") -addSymbol(0x029DE, "nvinfty", "mathord", "infinity negated with vertical bar") -addSymbol(0x029DF, "dualmap", "mathrel", "double-ended multimap") -addSymbol(0x029E0, "laplac", "mathord", "square with contoured outline") -addSymbol(0x029E1, "lrtriangleeq", "mathrel", "increases as") -addSymbol(0x029E2, "shuffle", "mathbin", "shuffle product") -addSymbol(0x029E3, "eparsl", "mathrel", "equals sign and slanted parallel") -addSymbol(0x029E4, "smeparsl", "mathrel", "equals sign and slanted parallel with tilde above") -addSymbol(0x029E5, "eqvparsl", "mathrel", "identical to and slanted parallel") -addSymbol(0x029E6, "gleichstark", "mathrel", "gleich stark") -addSymbol(0x029E7, "thermod", "mathord", "thermodynamic") -addSymbol(0x029E8, "downtriangleleftblack", "mathord", "down-pointing triangle with left half black") -addSymbol(0x029E9, "downtrianglerightblack", "mathord", "down-pointing triangle with right half black") -addSymbol(0x029EA, "blackdiamonddownarrow", "mathord", "black diamond with down arrow") -addSymbol(0x029EB, "mdlgblklozenge", "mathbin", "black lozenge") -addSymbol(0x029EC, "circledownarrow", "mathord", "white circle with down arrow") -addSymbol(0x029ED, "blackcircledownarrow", "mathord", "black circle with down arrow") -addSymbol(0x029EE, "errbarsquare", "mathord", "error-barred white square") -addSymbol(0x029EF, "errbarblacksquare", "mathord", "error-barred black square") -addSymbol(0x029F0, "errbardiamond", "mathord", "error-barred white diamond") -addSymbol(0x029F1, "errbarblackdiamond", "mathord", "error-barred black diamond") -addSymbol(0x029F2, "errbarcircle", "mathord", "error-barred white circle") -addSymbol(0x029F3, "errbarblackcircle", "mathord", "error-barred black circle") -addSymbol(0x029F4, "ruledelayed", "mathrel", "rule-delayed") -addSymbol(0x029F5, "setminus", "mathbin", "reverse solidus operator") -addSymbol(0x029F6, "dsol", "mathbin", "solidus with overbar") -addSymbol(0x029F7, "rsolbar", "mathbin", "reverse solidus with horizontal stroke") -addSymbol(0x029F8, "xsol", "mathop", "big solidus") -addSymbol(0x029F9, "xbsol", "mathop", "big reverse solidus") -addSymbol(0x029FA, "doubleplus", "mathbin", "double plus") -addSymbol(0x029FB, "tripleplus", "mathbin", "triple plus") -addSymbol(0x029FC, "lcurvyangle", "mathopen", "left pointing curved angle bracket") -addSymbol(0x029FD, "rcurvyangle", "mathclose", "right pointing curved angle bracket") -addSymbol(0x029FE, "tplus", "mathbin", "tiny") -addSymbol(0x029FF, "tminus", "mathbin", "miny") -addSymbol(0x02A00, "bigodot", "mathop", "n-ary circled dot operator") -addSymbol(0x02A01, "bigoplus", "mathop", "n-ary circled plus operator") -addSymbol(0x02A02, "bigotimes", "mathop", "n-ary circled times operator") -addSymbol(0x02A03, "bigcupdot", "mathop", "n-ary union operator with dot") -addSymbol(0x02A04, "biguplus", "mathop", "n-ary union operator with plus") -addSymbol(0x02A05, "bigsqcap", "mathop", "n-ary square intersection operator") -addSymbol(0x02A06, "bigsqcup", "mathop", "n-ary square union operator") -addSymbol(0x02A07, "conjquant", "mathop", "two logical and operator") -addSymbol(0x02A08, "disjquant", "mathop", "two logical or operator") -addSymbol(0x02A09, "bigtimes", "mathop", "n-ary times operator") -addSymbol(0x02A0A, "modtwosum", "mathop", "modulo two sum") -addSymbol(0x02A0B, "sumint", "mathop", "summation with integral") -addSymbol(0x02A0C, "iiiint", "mathop", "quadruple integral operator") -addSymbol(0x02A0D, "intbar", "mathop", "finite part integral") -addSymbol(0x02A0E, "intBar", "mathop", "integral with double stroke") -addSymbol(0x02A0F, "fint", "mathop", "integral average with slash") -addSymbol(0x02A10, "cirfnint", "mathop", "circulation function") -addSymbol(0x02A11, "awint", "mathop", "anticlockwise integration") -addSymbol(0x02A12, "rppolint", "mathop", "line integration with rectangular path around pole") -addSymbol(0x02A13, "scpolint", "mathop", "line integration with semicircular path around pole") -addSymbol(0x02A14, "npolint", "mathop", "line integration not including the pole") -addSymbol(0x02A15, "pointint", "mathop", "integral around a point operator") -addSymbol(0x02A16, "sqint", "mathop", "quaternion integral operator") -addSymbol(0x02A17, "intlarhk", "mathop", "integral with leftwards arrow with hook") -addSymbol(0x02A18, "intx", "mathop", "integral with times sign") -addSymbol(0x02A19, "intcap", "mathop", "integral with intersection") -addSymbol(0x02A1A, "intcup", "mathop", "integral with union") -addSymbol(0x02A1B, "upint", "mathop", "integral with overbar") -addSymbol(0x02A1C, "lowint", "mathop", "integral with underbar") -addSymbol(0x02A1D, "Join", "mathop", "join") -addSymbol(0x02A1E, "bigtriangleleft", "mathop", "large left triangle operator") -addSymbol(0x02A1F, "zcmp", "mathop", "z notation schema composition") -addSymbol(0x02A20, "zpipe", "mathop", "z notation schema piping") -addSymbol(0x02A21, "zproject", "mathop", "z notation schema projection") -addSymbol(0x02A22, "ringplus", "mathbin", "plus sign with small circle above") -addSymbol(0x02A23, "plushat", "mathbin", "plus sign with circumflex accent above") -addSymbol(0x02A24, "simplus", "mathbin", "plus sign with tilde above") -addSymbol(0x02A25, "plusdot", "mathbin", "plus sign with dot below") -addSymbol(0x02A26, "plussim", "mathbin", "plus sign with tilde below") -addSymbol(0x02A27, "plussubtwo", "mathbin", "plus sign with subscript two") -addSymbol(0x02A28, "plustrif", "mathbin", "plus sign with black triangle") -addSymbol(0x02A29, "commaminus", "mathbin", "minus sign with comma above") -addSymbol(0x02A2A, "minusdot", "mathbin", "minus sign with dot below") -addSymbol(0x02A2B, "minusfdots", "mathbin", "minus sign with falling dots") -addSymbol(0x02A2C, "minusrdots", "mathbin", "minus sign with rising dots") -addSymbol(0x02A2D, "opluslhrim", "mathbin", "plus sign in left half circle") -addSymbol(0x02A2E, "oplusrhrim", "mathbin", "plus sign in right half circle") -addSymbol(0x02A2F, "vectimes", "mathbin", "vector or cross product") -addSymbol(0x02A30, "dottimes", "mathbin", "multiplication sign with dot above") -addSymbol(0x02A31, "timesbar", "mathbin", "multiplication sign with underbar") -addSymbol(0x02A32, "btimes", "mathbin", "semidirect product with bottom closed") -addSymbol(0x02A33, "smashtimes", "mathbin", "smash product") -addSymbol(0x02A34, "otimeslhrim", "mathbin", "multiplication sign in left half circle") -addSymbol(0x02A35, "otimesrhrim", "mathbin", "multiplication sign in right half circle") -addSymbol(0x02A36, "otimeshat", "mathbin", "circled multiplication sign with circumflex accent") -addSymbol(0x02A37, "Otimes", "mathbin", "multiplication sign in double circle") -addSymbol(0x02A38, "odiv", "mathbin", "circled division sign") -addSymbol(0x02A39, "triangleplus", "mathbin", "plus sign in triangle") -addSymbol(0x02A3A, "triangleminus", "mathbin", "minus sign in triangle") -addSymbol(0x02A3B, "triangletimes", "mathbin", "multiplication sign in triangle") -addSymbol(0x02A3C, "intprod", "mathbin", "interior product") -addSymbol(0x02A3D, "intprodr", "mathbin", "righthand interior product") -addSymbol(0x02A3E, "fcmp", "mathbin", "z notation relational composition") -addSymbol(0x02A3F, "amalg", "mathbin", "amalgamation or coproduct") -addSymbol(0x02A40, "capdot", "mathbin", "intersection with dot") -addSymbol(0x02A41, "uminus", "mathbin", "union with minus sign") -addSymbol(0x02A42, "barcup", "mathbin", "union with overbar") -addSymbol(0x02A43, "barcap", "mathbin", "intersection with overbar") -addSymbol(0x02A44, "capwedge", "mathbin", "intersection with logical and") -addSymbol(0x02A45, "cupvee", "mathbin", "union with logical or") -addSymbol(0x02A46, "cupovercap", "mathbin", "union above intersection") -addSymbol(0x02A47, "capovercup", "mathbin", "intersection above union") -addSymbol(0x02A48, "cupbarcap", "mathbin", "union above bar above intersection") -addSymbol(0x02A49, "capbarcup", "mathbin", "intersection above bar above union") -addSymbol(0x02A4A, "twocups", "mathbin", "union beside and joined with union") -addSymbol(0x02A4B, "twocaps", "mathbin", "intersection beside and joined with intersection") -addSymbol(0x02A4C, "closedvarcup", "mathbin", "closed union with serifs") -addSymbol(0x02A4D, "closedvarcap", "mathbin", "closed intersection with serifs") -addSymbol(0x02A4E, "Sqcap", "mathbin", "double square intersection") -addSymbol(0x02A4F, "Sqcup", "mathbin", "double square union") -addSymbol(0x02A50, "closedvarcupsmashprod", "mathbin", "closed union with serifs and smash product") -addSymbol(0x02A51, "wedgeodot", "mathbin", "logical and with dot above") -addSymbol(0x02A52, "veeodot", "mathbin", "logical or with dot above") -addSymbol(0x02A53, "Wedge", "mathbin", "double logical and") -addSymbol(0x02A54, "Vee", "mathbin", "double logical or") -addSymbol(0x02A55, "wedgeonwedge", "mathbin", "two intersecting logical and") -addSymbol(0x02A56, "veeonvee", "mathbin", "two intersecting logical or") -addSymbol(0x02A57, "bigslopedvee", "mathbin", "sloping large or") -addSymbol(0x02A58, "bigslopedwedge", "mathbin", "sloping large and") -addSymbol(0x02A59, "veeonwedge", "mathrel", "logical or overlapping logical and") -addSymbol(0x02A5A, "wedgemidvert", "mathbin", "logical and with middle stem") -addSymbol(0x02A5B, "veemidvert", "mathbin", "logical or with middle stem") -addSymbol(0x02A5C, "midbarwedge", "mathbin", "ogical and with horizontal dash") -addSymbol(0x02A5D, "midbarvee", "mathbin", "logical or with horizontal dash") -addSymbol(0x02A5E, "doublebarwedge", "mathbin", "logical and with double overbar") -addSymbol(0x02A5F, "wedgebar", "mathbin", "logical and with underbar") -addSymbol(0x02A60, "wedgedoublebar", "mathbin", "logical and with double underbar") -addSymbol(0x02A61, "varveebar", "mathbin", "small vee with underbar") -addSymbol(0x02A62, "doublebarvee", "mathbin", "logical or with double overbar") -addSymbol(0x02A63, "veedoublebar", "mathbin", "logical or with double underbar") -addSymbol(0x02A64, "dsub", "mathbin", "z notation domain antirestriction") -addSymbol(0x02A65, "rsub", "mathbin", "z notation range antirestriction") -addSymbol(0x02A66, "eqdot", "mathrel", "equals sign with dot below") -addSymbol(0x02A67, "dotequiv", "mathrel", "identical with dot above") -addSymbol(0x02A68, "equivVert", "mathrel", "triple horizontal bar with double vertical stroke") -addSymbol(0x02A69, "equivVvert", "mathrel", "triple horizontal bar with triple vertical stroke") -addSymbol(0x02A6A, "dotsim", "mathrel", "tilde operator with dot above") -addSymbol(0x02A6B, "simrdots", "mathrel", "tilde operator with rising dots") -addSymbol(0x02A6C, "simminussim", "mathrel", "similar minus similar") -addSymbol(0x02A6D, "congdot", "mathrel", "congruent with dot above") -addSymbol(0x02A6E, "asteq", "mathrel", "equals with asterisk") -addSymbol(0x02A6F, "hatapprox", "mathrel", "almost equal to with circumflex accent") -addSymbol(0x02A70, "approxeqq", "mathrel", "approximately equal or equal to") -addSymbol(0x02A71, "eqqplus", "mathbin", "equals sign above plus sign") -addSymbol(0x02A72, "pluseqq", "mathbin", "plus sign above equals sign") -addSymbol(0x02A73, "eqqsim", "mathrel", "equals sign above tilde operator") -addSymbol(0x02A74, "Coloneq", "mathrel", "double colon equal") -addSymbol(0x02A75, "eqeq", "mathrel", "two consecutive equals signs") -addSymbol(0x02A76, "eqeqeq", "mathrel", "three consecutive equals signs") -addSymbol(0x02A77, "ddotseq", "mathrel", "equals sign with two dots above and two dots below") -addSymbol(0x02A78, "equivDD", "mathrel", "equivalent with four dots above") -addSymbol(0x02A79, "ltcir", "mathrel", "less-than with circle inside") -addSymbol(0x02A7A, "gtcir", "mathrel", "greater-than with circle inside") -addSymbol(0x02A7B, "ltquest", "mathrel", "less-than with question mark above") -addSymbol(0x02A7C, "gtquest", "mathrel", "greater-than with question mark above") -addSymbol(0x02A7D, "leqslant", "mathrel", "less-than or slanted equal to") -addSymbol(0x02A7E, "geqslant", "mathrel", "greater-than or slanted equal to") -addSymbol(0x02A7F, "lesdot", "mathrel", "less-than or slanted equal to with dot inside") -addSymbol(0x02A80, "gesdot", "mathrel", "greater-than or slanted equal to with dot inside") -addSymbol(0x02A81, "lesdoto", "mathrel", "less-than or slanted equal to with dot above") -addSymbol(0x02A82, "gesdoto", "mathrel", "greater-than or slanted equal to with dot above") -addSymbol(0x02A83, "lesdotor", "mathrel", "less-than or slanted equal to with dot above right") -addSymbol(0x02A84, "gesdotol", "mathrel", "greater-than or slanted equal to with dot above left") -addSymbol(0x02A85, "lessapprox", "mathrel", "less-than or approximate") -addSymbol(0x02A86, "gtrapprox", "mathrel", "greater-than or approximate") -addSymbol(0x02A87, "lneq", "mathrel", "less-than and single-line not equal to") -addSymbol(0x02A88, "gneq", "mathrel", "greater-than and single-line not equal to") -addSymbol(0x02A89, "lnapprox", "mathrel", "less-than and not approximate") -addSymbol(0x02A8A, "gnapprox", "mathrel", "greater-than and not approximate") -addSymbol(0x02A8B, "lesseqqgtr", "mathrel", "less-than above double-line equal above greater-than") -addSymbol(0x02A8C, "gtreqqless", "mathrel", "greater-than above double-line equal above less-than") -addSymbol(0x02A8D, "lsime", "mathrel", "less-than above similar or equal") -addSymbol(0x02A8E, "gsime", "mathrel", "greater-than above similar or equal") -addSymbol(0x02A8F, "lsimg", "mathrel", "less-than above similar above greater-than") -addSymbol(0x02A90, "gsiml", "mathrel", "greater-than above similar above less-than") -addSymbol(0x02A91, "lgE", "mathrel", "less-than above greater-than above double-line equal") -addSymbol(0x02A92, "glE", "mathrel", "greater-than above less-than above double-line equal") -addSymbol(0x02A93, "lesges", "mathrel", "less-than above slanted equal above greater-than above slanted equal") -addSymbol(0x02A94, "gesles", "mathrel", "greater-than above slanted equal above less-than above slanted equal") -addSymbol(0x02A95, "eqslantless", "mathrel", "slanted equal to or less-than") -addSymbol(0x02A96, "eqslantgtr", "mathrel", "slanted equal to or greater-than") -addSymbol(0x02A97, "elsdot", "mathrel", "slanted equal to or less-than with dot inside") -addSymbol(0x02A98, "egsdot", "mathrel", "slanted equal to or greater-than with dot inside") -addSymbol(0x02A99, "eqqless", "mathrel", "double-line equal to or less-than") -addSymbol(0x02A9A, "eqqgtr", "mathrel", "double-line equal to or greater-than") -addSymbol(0x02A9B, "eqqslantless", "mathrel", "double-line slanted equal to or less-than") -addSymbol(0x02A9C, "eqqslantgtr", "mathrel", "double-line slanted equal to or greater-than") -addSymbol(0x02A9D, "simless", "mathrel", "similar or less-than") -addSymbol(0x02A9E, "simgtr", "mathrel", "similar or greater-than") -addSymbol(0x02A9F, "simlE", "mathrel", "similar above less-than above equals sign") -addSymbol(0x02AA0, "simgE", "mathrel", "similar above greater-than above equals sign") -addSymbol(0x02AA1, "Lt", "mathrel", "double nested less-than") -addSymbol(0x02AA2, "Gt", "mathrel", "double nested greater-than") -addSymbol(0x02AA3, "partialmeetcontraction", "mathrel", "double less-than with underbar") -addSymbol(0x02AA4, "glj", "mathrel", "greater-than overlapping less-than") -addSymbol(0x02AA5, "gla", "mathrel", "greater-than beside less-than") -addSymbol(0x02AA6, "ltcc", "mathrel", "less-than closed by curve") -addSymbol(0x02AA7, "gtcc", "mathrel", "greater-than closed by curve") -addSymbol(0x02AA8, "lescc", "mathrel", "less-than closed by curve above slanted equal") -addSymbol(0x02AA9, "gescc", "mathrel", "greater-than closed by curve above slanted equal") -addSymbol(0x02AAA, "smt", "mathrel", "smaller than") -addSymbol(0x02AAB, "lat", "mathrel", "larger than") -addSymbol(0x02AAC, "smte", "mathrel", "smaller than or equal to") -addSymbol(0x02AAD, "late", "mathrel", "larger than or equal to") -addSymbol(0x02AAE, "bumpeqq", "mathrel", "equals sign with bumpy above") -addSymbol(0x02AAF, "preceq", "mathrel", "precedes above single-line equals sign") -addSymbol(0x02AB0, "succeq", "mathrel", "succeeds above single-line equals sign") -addSymbol(0x02AB1, "precneq", "mathrel", "precedes above single-line not equal to") -addSymbol(0x02AB2, "succneq", "mathrel", "succeeds above single-line not equal to") -addSymbol(0x02AB3, "preceqq", "mathrel", "precedes above equals sign") -addSymbol(0x02AB4, "succeqq", "mathrel", "succeeds above equals sign") -addSymbol(0x02AB5, "precneqq", "mathrel", "precedes above not equal to") -addSymbol(0x02AB6, "succneqq", "mathrel", "succeeds above not equal to") -addSymbol(0x02AB7, "precapprox", "mathrel", "precedes above almost equal to") -addSymbol(0x02AB8, "succapprox", "mathrel", "succeeds above almost equal to") -addSymbol(0x02AB9, "precnapprox", "mathrel", "precedes above not almost equal to") -addSymbol(0x02ABA, "succnapprox", "mathrel", "succeeds above not almost equal to") -addSymbol(0x02ABB, "Prec", "mathrel", "double precedes") -addSymbol(0x02ABC, "Succ", "mathrel", "double succeeds") -addSymbol(0x02ABD, "subsetdot", "mathrel", "subset with dot") -addSymbol(0x02ABE, "supsetdot", "mathrel", "superset with dot") -addSymbol(0x02ABF, "subsetplus", "mathrel", "subset with plus sign below") -addSymbol(0x02AC0, "supsetplus", "mathrel", "superset with plus sign below") -addSymbol(0x02AC1, "submult", "mathrel", "subset with multiplication sign below") -addSymbol(0x02AC2, "supmult", "mathrel", "superset with multiplication sign below") -addSymbol(0x02AC3, "subedot", "mathrel", "subset of or equal to with dot above") -addSymbol(0x02AC4, "supedot", "mathrel", "superset of or equal to with dot above") -addSymbol(0x02AC5, "subseteqq", "mathrel", "subset of above equals sign") -addSymbol(0x02AC6, "supseteqq", "mathrel", "superset of above equals sign") -addSymbol(0x02AC7, "subsim", "mathrel", "subset of above tilde operator") -addSymbol(0x02AC8, "supsim", "mathrel", "superset of above tilde operator") -addSymbol(0x02AC9, "subsetapprox", "mathrel", "subset of above almost equal to") -addSymbol(0x02ACA, "supsetapprox", "mathrel", "superset of above almost equal to") -addSymbol(0x02ACB, "subsetneqq", "mathrel", "subset of above not equal to") -addSymbol(0x02ACC, "supsetneqq", "mathrel", "superset of above not equal to") -addSymbol(0x02ACD, "lsqhook", "mathrel", "square left open box operator") -addSymbol(0x02ACE, "rsqhook", "mathrel", "square right open box operator") -addSymbol(0x02ACF, "csub", "mathrel", "closed subset") -addSymbol(0x02AD0, "csup", "mathrel", "closed superset") -addSymbol(0x02AD1, "csube", "mathrel", "closed subset or equal to") -addSymbol(0x02AD2, "csupe", "mathrel", "closed superset or equal to") -addSymbol(0x02AD3, "subsup", "mathrel", "subset above superset") -addSymbol(0x02AD4, "supsub", "mathrel", "superset above subset") -addSymbol(0x02AD5, "subsub", "mathrel", "subset above subset") -addSymbol(0x02AD6, "supsup", "mathrel", "superset above superset") -addSymbol(0x02AD7, "suphsub", "mathrel", "superset beside subset") -addSymbol(0x02AD8, "supdsub", "mathrel", "superset beside and joined by dash with subset") -addSymbol(0x02AD9, "forkv", "mathrel", "element of opening downwards") -addSymbol(0x02ADA, "topfork", "mathrel", "pitchfork with tee top") -addSymbol(0x02ADB, "mlcp", "mathrel", "transversal intersection") -addSymbol(0x02ADC, "forks", "mathrel", "forking") -addSymbol(0x02ADD, "forksnot", "mathrel", "nonforking") -addSymbol(0x02ADE, "shortlefttack", "mathrel", "short left tack") -addSymbol(0x02ADF, "shortdowntack", "mathrel", "short down tack") -addSymbol(0x02AE0, "shortuptack", "mathrel", "short up tack") -addSymbol(0x02AE1, "perps", "mathord", "perpendicular with s") -addSymbol(0x02AE2, "vDdash", "mathrel", "vertical bar triple right turnstile") -addSymbol(0x02AE3, "dashV", "mathrel", "double vertical bar left turnstile") -addSymbol(0x02AE4, "Dashv", "mathrel", "vertical bar double left turnstile") -addSymbol(0x02AE5, "DashV", "mathrel", "double vertical bar double left turnstile") -addSymbol(0x02AE6, "varVdash", "mathrel", "long dash from left member of double vertical") -addSymbol(0x02AE7, "Barv", "mathrel", "short down tack with overbar") -addSymbol(0x02AE8, "vBar", "mathrel", "short up tack with underbar") -addSymbol(0x02AE9, "vBarv", "mathrel", "short up tack above short down tack") -addSymbol(0x02AEA, "barV", "mathrel", "double down tack") -addSymbol(0x02AEB, "Vbar", "mathrel", "double up tack") -addSymbol(0x02AEC, "Not", "mathrel", "double stroke not sign") -addSymbol(0x02AED, "bNot", "mathrel", "reversed double stroke not sign") -addSymbol(0x02AEE, "revnmid", "mathrel", "does not divide with reversed negation slash") -addSymbol(0x02AEF, "cirmid", "mathrel", "vertical line with circle above") -addSymbol(0x02AF0, "midcir", "mathrel", "vertical line with circle below") -addSymbol(0x02AF1, "topcir", "mathord", "down tack with circle below") -addSymbol(0x02AF2, "nhpar", "mathrel", "parallel with horizontal stroke") -addSymbol(0x02AF3, "parsim", "mathrel", "parallel with tilde operator") -addSymbol(0x02AF4, "interleave", "mathbin", "triple vertical bar binary relation") -addSymbol(0x02AF5, "nhVvert", "mathbin", "triple vertical bar with horizontal stroke") -addSymbol(0x02AF6, "threedotcolon", "mathbin", "triple colon operator") -addSymbol(0x02AF7, "lllnest", "mathrel", "stacked very much less-than") -addSymbol(0x02AF8, "gggnest", "mathrel", "stacked very much greater-than") -addSymbol(0x02AF9, "leqqslant", "mathrel", "double-line slanted less-than or equal to") -addSymbol(0x02AFA, "geqqslant", "mathrel", "double-line slanted greater-than or equal to") -addSymbol(0x02AFB, "trslash", "mathbin", "triple solidus binary relation") -addSymbol(0x02AFC, "biginterleave", "mathop", "large triple vertical bar operator") -addSymbol(0x02AFD, "sslash", "mathbin", "double solidus operator") -addSymbol(0x02AFE, "talloblong", "mathbin", "white vertical bar") -addSymbol(0x02AFF, "bigtalloblong", "mathop", "n-ary white vertical bar") -addSymbol(0x02B12, "squaretopblack", "mathord", "square with top half black") -addSymbol(0x02B13, "squarebotblack", "mathord", "square with bottom half black") -addSymbol(0x02B14, "squareurblack", "mathord", "square with upper right diagonal half black") -addSymbol(0x02B15, "squarellblack", "mathord", "square with lower left diagonal half black") -addSymbol(0x02B16, "diamondleftblack", "mathord", "diamond with left half black") -addSymbol(0x02B17, "diamondrightblack", "mathord", "diamond with right half black") -addSymbol(0x02B18, "diamondtopblack", "mathord", "diamond with top half black") -addSymbol(0x02B19, "diamondbotblack", "mathord", "diamond with bottom half black") -addSymbol(0x02B1A, "dottedsquare", "mathord", "dotted square") -addSymbol(0x02B1B, "lgblksquare", "mathord", "black large square") -addSymbol(0x02B1C, "lgwhtsquare", "mathord", "white large square") -addSymbol(0x02B1D, "vysmblksquare", "mathord", "black very small square") -addSymbol(0x02B1E, "vysmwhtsquare", "mathord", "white very small square") -addSymbol(0x02B1F, "pentagonblack", "mathord", "black pentagon") -addSymbol(0x02B20, "pentagon", "mathord", "white pentagon") -addSymbol(0x02B21, "varhexagon", "mathord", "white hexagon") -addSymbol(0x02B22, "varhexagonblack", "mathord", "black hexagon") -addSymbol(0x02B23, "hexagonblack", "mathord", "horizontal black hexagon") -addSymbol(0x02B24, "lgblkcircle", "mathord", "black large circle") -addSymbol(0x02B25, "mdblkdiamond", "mathord", "black medium diamond") -addSymbol(0x02B26, "mdwhtdiamond", "mathord", "white medium diamond") -addSymbol(0x02B27, "mdblklozenge", "mathord", "black medium lozenge") -addSymbol(0x02B28, "mdwhtlozenge", "mathord", "white medium lozenge") -addSymbol(0x02B29, "smblkdiamond", "mathord", "black small diamond") -addSymbol(0x02B2A, "smblklozenge", "mathord", "black small lozenge") -addSymbol(0x02B2B, "smwhtlozenge", "mathord", "white small lozenge") -addSymbol(0x02B2C, "blkhorzoval", "mathord", "black horizontal ellipse") -addSymbol(0x02B2D, "whthorzoval", "mathord", "white horizontal ellipse") -addSymbol(0x02B2E, "blkvertoval", "mathord", "black vertical ellipse") -addSymbol(0x02B2F, "whtvertoval", "mathord", "white vertical ellipse") -addSymbol(0x02B30, "circleonleftarrow", "mathrel", "left arrow with small circle") -addSymbol(0x02B31, "leftthreearrows", "mathrel", "three leftwards arrows") -addSymbol(0x02B32, "leftarrowonoplus", "mathrel", "left arrow with circled plus") -addSymbol(0x02B33, "longleftsquigarrow", "mathrel", "long leftwards squiggle arrow") -addSymbol(0x02B34, "nvtwoheadleftarrow", "mathrel", "leftwards two-headed arrow with vertical stroke") -addSymbol(0x02B35, "nVtwoheadleftarrow", "mathrel", "leftwards two-headed arrow with double vertical stroke") -addSymbol(0x02B36, "twoheadmapsfrom", "mathrel", "leftwards two-headed arrow from bar") -addSymbol(0x02B37, "twoheadleftdbkarrow", "mathrel", "leftwards two-headed triple-dash arrow") -addSymbol(0x02B38, "leftdotarrow", "mathrel", "leftwards arrow with dotted stem") -addSymbol(0x02B39, "nvleftarrowtail", "mathrel", "leftwards arrow with tail with vertical stroke") -addSymbol(0x02B3A, "nVleftarrowtail", "mathrel", "leftwards arrow with tail with double vertical stroke") -addSymbol(0x02B3B, "twoheadleftarrowtail", "mathrel", "leftwards two-headed arrow with tail") -addSymbol(0x02B3C, "nvtwoheadleftarrowtail", "mathrel", "leftwards two-headed arrow with tail with vertical stroke") -addSymbol( - 0x02B3D, - "nVtwoheadleftarrowtail", - "mathrel", - "leftwards two-headed arrow with tail with double vertical stroke" -) -addSymbol(0x02B3E, "leftarrowx", "mathrel", "leftwards arrow through x") -addSymbol(0x02B3F, "leftcurvedarrow", "mathrel", "wave arrow pointing directly left") -addSymbol(0x02B40, "equalleftarrow", "mathrel", "equals sign above leftwards arrow") -addSymbol(0x02B41, "bsimilarleftarrow", "mathrel", "reverse tilde operator above leftwards arrow") -addSymbol(0x02B42, "leftarrowbackapprox", "mathrel", "leftwards arrow above reverse almost equal to") -addSymbol(0x02B43, "rightarrowgtr", "mathrel", "rightwards arrow through greater-than") -addSymbol(0x02B44, "rightarrowsupset", "mathrel", "rightwards arrow through subset") -addSymbol(0x02B45, "LLeftarrow", "mathrel", "leftwards quadruple arrow") -addSymbol(0x02B46, "RRightarrow", "mathrel", "rightwards quadruple arrow") -addSymbol(0x02B47, "bsimilarrightarrow", "mathrel", "reverse tilde operator above rightwards arrow") -addSymbol(0x02B48, "rightarrowbackapprox", "mathrel", "rightwards arrow above reverse almost equal to") -addSymbol(0x02B49, "similarleftarrow", "mathrel", "tilde operator above leftwards arrow") -addSymbol(0x02B4A, "leftarrowapprox", "mathrel", "leftwards arrow above almost equal to") -addSymbol(0x02B4B, "leftarrowbsimilar", "mathrel", "leftwards arrow above reverse tilde operator") -addSymbol(0x02B4C, "rightarrowbsimilar", "mathrel", "righttwards arrow above reverse tilde operator") -addSymbol(0x02B50, "medwhitestar", "mathord", "white medium star") -addSymbol(0x02B51, "medblackstar", "mathord", "black medium star") -addSymbol(0x02B52, "smwhitestar", "mathord", "white small star") -addSymbol(0x02B53, "rightpentagonblack", "mathord", "black right-pointing pentagon") -addSymbol(0x02B54, "rightpentagon", "mathord", "white right-pointing pentagon") -addSymbol(0x03012, "postalmark", "mathord", "postal mark") -addSymbol(0x03030, "hzigzag", "mathord", "zigzag") -addSymbol(0x1D400, "mbfA", "mathalpha", "mathematical bold capital a") -addSymbol(0x1D401, "mbfB", "mathalpha", "mathematical bold capital b") -addSymbol(0x1D402, "mbfC", "mathalpha", "mathematical bold capital c") -addSymbol(0x1D403, "mbfD", "mathalpha", "mathematical bold capital d") -addSymbol(0x1D404, "mbfE", "mathalpha", "mathematical bold capital e") -addSymbol(0x1D405, "mbfF", "mathalpha", "mathematical bold capital f") -addSymbol(0x1D406, "mbfG", "mathalpha", "mathematical bold capital g") -addSymbol(0x1D407, "mbfH", "mathalpha", "mathematical bold capital h") -addSymbol(0x1D408, "mbfI", "mathalpha", "mathematical bold capital i") -addSymbol(0x1D409, "mbfJ", "mathalpha", "mathematical bold capital j") -addSymbol(0x1D40A, "mbfK", "mathalpha", "mathematical bold capital k") -addSymbol(0x1D40B, "mbfL", "mathalpha", "mathematical bold capital l") -addSymbol(0x1D40C, "mbfM", "mathalpha", "mathematical bold capital m") -addSymbol(0x1D40D, "mbfN", "mathalpha", "mathematical bold capital n") -addSymbol(0x1D40E, "mbfO", "mathalpha", "mathematical bold capital o") -addSymbol(0x1D40F, "mbfP", "mathalpha", "mathematical bold capital p") -addSymbol(0x1D410, "mbfQ", "mathalpha", "mathematical bold capital q") -addSymbol(0x1D411, "mbfR", "mathalpha", "mathematical bold capital r") -addSymbol(0x1D412, "mbfS", "mathalpha", "mathematical bold capital s") -addSymbol(0x1D413, "mbfT", "mathalpha", "mathematical bold capital t") -addSymbol(0x1D414, "mbfU", "mathalpha", "mathematical bold capital u") -addSymbol(0x1D415, "mbfV", "mathalpha", "mathematical bold capital v") -addSymbol(0x1D416, "mbfW", "mathalpha", "mathematical bold capital w") -addSymbol(0x1D417, "mbfX", "mathalpha", "mathematical bold capital x") -addSymbol(0x1D418, "mbfY", "mathalpha", "mathematical bold capital y") -addSymbol(0x1D419, "mbfZ", "mathalpha", "mathematical bold capital z") -addSymbol(0x1D41A, "mbfa", "mathalpha", "mathematical bold small a") -addSymbol(0x1D41B, "mbfb", "mathalpha", "mathematical bold small b") -addSymbol(0x1D41C, "mbfc", "mathalpha", "mathematical bold small c") -addSymbol(0x1D41D, "mbfd", "mathalpha", "mathematical bold small d") -addSymbol(0x1D41E, "mbfe", "mathalpha", "mathematical bold small e") -addSymbol(0x1D41F, "mbff", "mathalpha", "mathematical bold small f") -addSymbol(0x1D420, "mbfg", "mathalpha", "mathematical bold small g") -addSymbol(0x1D421, "mbfh", "mathalpha", "mathematical bold small h") -addSymbol(0x1D422, "mbfi", "mathalpha", "mathematical bold small i") -addSymbol(0x1D423, "mbfj", "mathalpha", "mathematical bold small j") -addSymbol(0x1D424, "mbfk", "mathalpha", "mathematical bold small k") -addSymbol(0x1D425, "mbfl", "mathalpha", "mathematical bold small l") -addSymbol(0x1D426, "mbfm", "mathalpha", "mathematical bold small m") -addSymbol(0x1D427, "mbfn", "mathalpha", "mathematical bold small n") -addSymbol(0x1D428, "mbfo", "mathalpha", "mathematical bold small o") -addSymbol(0x1D429, "mbfp", "mathalpha", "mathematical bold small p") -addSymbol(0x1D42A, "mbfq", "mathalpha", "mathematical bold small q") -addSymbol(0x1D42B, "mbfr", "mathalpha", "mathematical bold small r") -addSymbol(0x1D42C, "mbfs", "mathalpha", "mathematical bold small s") -addSymbol(0x1D42D, "mbft", "mathalpha", "mathematical bold small t") -addSymbol(0x1D42E, "mbfu", "mathalpha", "mathematical bold small u") -addSymbol(0x1D42F, "mbfv", "mathalpha", "mathematical bold small v") -addSymbol(0x1D430, "mbfw", "mathalpha", "mathematical bold small w") -addSymbol(0x1D431, "mbfx", "mathalpha", "mathematical bold small x") -addSymbol(0x1D432, "mbfy", "mathalpha", "mathematical bold small y") -addSymbol(0x1D433, "mbfz", "mathalpha", "mathematical bold small z") -addSymbol(0x1D434, "mitA", "mathalpha", "mathematical italic capital a") -addSymbol(0x1D435, "mitB", "mathalpha", "mathematical italic capital b") -addSymbol(0x1D436, "mitC", "mathalpha", "mathematical italic capital c") -addSymbol(0x1D437, "mitD", "mathalpha", "mathematical italic capital d") -addSymbol(0x1D438, "mitE", "mathalpha", "mathematical italic capital e") -addSymbol(0x1D439, "mitF", "mathalpha", "mathematical italic capital f") -addSymbol(0x1D43A, "mitG", "mathalpha", "mathematical italic capital g") -addSymbol(0x1D43B, "mitH", "mathalpha", "mathematical italic capital h") -addSymbol(0x1D43C, "mitI", "mathalpha", "mathematical italic capital i") -addSymbol(0x1D43D, "mitJ", "mathalpha", "mathematical italic capital j") -addSymbol(0x1D43E, "mitK", "mathalpha", "mathematical italic capital k") -addSymbol(0x1D43F, "mitL", "mathalpha", "mathematical italic capital l") -addSymbol(0x1D440, "mitM", "mathalpha", "mathematical italic capital m") -addSymbol(0x1D441, "mitN", "mathalpha", "mathematical italic capital n") -addSymbol(0x1D442, "mitO", "mathalpha", "mathematical italic capital o") -addSymbol(0x1D443, "mitP", "mathalpha", "mathematical italic capital p") -addSymbol(0x1D444, "mitQ", "mathalpha", "mathematical italic capital q") -addSymbol(0x1D445, "mitR", "mathalpha", "mathematical italic capital r") -addSymbol(0x1D446, "mitS", "mathalpha", "mathematical italic capital s") -addSymbol(0x1D447, "mitT", "mathalpha", "mathematical italic capital t") -addSymbol(0x1D448, "mitU", "mathalpha", "mathematical italic capital u") -addSymbol(0x1D449, "mitV", "mathalpha", "mathematical italic capital v") -addSymbol(0x1D44A, "mitW", "mathalpha", "mathematical italic capital w") -addSymbol(0x1D44B, "mitX", "mathalpha", "mathematical italic capital x") -addSymbol(0x1D44C, "mitY", "mathalpha", "mathematical italic capital y") -addSymbol(0x1D44D, "mitZ", "mathalpha", "mathematical italic capital z") -addSymbol(0x1D44E, "mita", "mathalpha", "mathematical italic small a") -addSymbol(0x1D44F, "mitb", "mathalpha", "mathematical italic small b") -addSymbol(0x1D450, "mitc", "mathalpha", "mathematical italic small c") -addSymbol(0x1D451, "mitd", "mathalpha", "mathematical italic small d") -addSymbol(0x1D452, "mite", "mathalpha", "mathematical italic small e") -addSymbol(0x1D453, "mitf", "mathalpha", "mathematical italic small f") -addSymbol(0x1D454, "mitg", "mathalpha", "mathematical italic small g") -addSymbol(0x1D456, "miti", "mathalpha", "mathematical italic small i") -addSymbol(0x1D457, "mitj", "mathalpha", "mathematical italic small j") -addSymbol(0x1D458, "mitk", "mathalpha", "mathematical italic small k") -addSymbol(0x1D459, "mitl", "mathalpha", "mathematical italic small l") -addSymbol(0x1D45A, "mitm", "mathalpha", "mathematical italic small m") -addSymbol(0x1D45B, "mitn", "mathalpha", "mathematical italic small n") -addSymbol(0x1D45C, "mito", "mathalpha", "mathematical italic small o") -addSymbol(0x1D45D, "mitp", "mathalpha", "mathematical italic small p") -addSymbol(0x1D45E, "mitq", "mathalpha", "mathematical italic small q") -addSymbol(0x1D45F, "mitr", "mathalpha", "mathematical italic small r") -addSymbol(0x1D460, "mits", "mathalpha", "mathematical italic small s") -addSymbol(0x1D461, "mitt", "mathalpha", "mathematical italic small t") -addSymbol(0x1D462, "mitu", "mathalpha", "mathematical italic small u") -addSymbol(0x1D463, "mitv", "mathalpha", "mathematical italic small v") -addSymbol(0x1D464, "mitw", "mathalpha", "mathematical italic small w") -addSymbol(0x1D465, "mitx", "mathalpha", "mathematical italic small x") -addSymbol(0x1D466, "mity", "mathalpha", "mathematical italic small y") -addSymbol(0x1D467, "mitz", "mathalpha", "mathematical italic small z") -addSymbol(0x1D468, "mbfitA", "mathalpha", "mathematical bold italic capital a") -addSymbol(0x1D469, "mbfitB", "mathalpha", "mathematical bold italic capital b") -addSymbol(0x1D46A, "mbfitC", "mathalpha", "mathematical bold italic capital c") -addSymbol(0x1D46B, "mbfitD", "mathalpha", "mathematical bold italic capital d") -addSymbol(0x1D46C, "mbfitE", "mathalpha", "mathematical bold italic capital e") -addSymbol(0x1D46D, "mbfitF", "mathalpha", "mathematical bold italic capital f") -addSymbol(0x1D46E, "mbfitG", "mathalpha", "mathematical bold italic capital g") -addSymbol(0x1D46F, "mbfitH", "mathalpha", "mathematical bold italic capital h") -addSymbol(0x1D470, "mbfitI", "mathalpha", "mathematical bold italic capital i") -addSymbol(0x1D471, "mbfitJ", "mathalpha", "mathematical bold italic capital j") -addSymbol(0x1D472, "mbfitK", "mathalpha", "mathematical bold italic capital k") -addSymbol(0x1D473, "mbfitL", "mathalpha", "mathematical bold italic capital l") -addSymbol(0x1D474, "mbfitM", "mathalpha", "mathematical bold italic capital m") -addSymbol(0x1D475, "mbfitN", "mathalpha", "mathematical bold italic capital n") -addSymbol(0x1D476, "mbfitO", "mathalpha", "mathematical bold italic capital o") -addSymbol(0x1D477, "mbfitP", "mathalpha", "mathematical bold italic capital p") -addSymbol(0x1D478, "mbfitQ", "mathalpha", "mathematical bold italic capital q") -addSymbol(0x1D479, "mbfitR", "mathalpha", "mathematical bold italic capital r") -addSymbol(0x1D47A, "mbfitS", "mathalpha", "mathematical bold italic capital s") -addSymbol(0x1D47B, "mbfitT", "mathalpha", "mathematical bold italic capital t") -addSymbol(0x1D47C, "mbfitU", "mathalpha", "mathematical bold italic capital u") -addSymbol(0x1D47D, "mbfitV", "mathalpha", "mathematical bold italic capital v") -addSymbol(0x1D47E, "mbfitW", "mathalpha", "mathematical bold italic capital w") -addSymbol(0x1D47F, "mbfitX", "mathalpha", "mathematical bold italic capital x") -addSymbol(0x1D480, "mbfitY", "mathalpha", "mathematical bold italic capital y") -addSymbol(0x1D481, "mbfitZ", "mathalpha", "mathematical bold italic capital z") -addSymbol(0x1D482, "mbfita", "mathalpha", "mathematical bold italic small a") -addSymbol(0x1D483, "mbfitb", "mathalpha", "mathematical bold italic small b") -addSymbol(0x1D484, "mbfitc", "mathalpha", "mathematical bold italic small c") -addSymbol(0x1D485, "mbfitd", "mathalpha", "mathematical bold italic small d") -addSymbol(0x1D486, "mbfite", "mathalpha", "mathematical bold italic small e") -addSymbol(0x1D487, "mbfitf", "mathalpha", "mathematical bold italic small f") -addSymbol(0x1D488, "mbfitg", "mathalpha", "mathematical bold italic small g") -addSymbol(0x1D489, "mbfith", "mathalpha", "mathematical bold italic small h") -addSymbol(0x1D48A, "mbfiti", "mathalpha", "mathematical bold italic small i") -addSymbol(0x1D48B, "mbfitj", "mathalpha", "mathematical bold italic small j") -addSymbol(0x1D48C, "mbfitk", "mathalpha", "mathematical bold italic small k") -addSymbol(0x1D48D, "mbfitl", "mathalpha", "mathematical bold italic small l") -addSymbol(0x1D48E, "mbfitm", "mathalpha", "mathematical bold italic small m") -addSymbol(0x1D48F, "mbfitn", "mathalpha", "mathematical bold italic small n") -addSymbol(0x1D490, "mbfito", "mathalpha", "mathematical bold italic small o") -addSymbol(0x1D491, "mbfitp", "mathalpha", "mathematical bold italic small p") -addSymbol(0x1D492, "mbfitq", "mathalpha", "mathematical bold italic small q") -addSymbol(0x1D493, "mbfitr", "mathalpha", "mathematical bold italic small r") -addSymbol(0x1D494, "mbfits", "mathalpha", "mathematical bold italic small s") -addSymbol(0x1D495, "mbfitt", "mathalpha", "mathematical bold italic small t") -addSymbol(0x1D496, "mbfitu", "mathalpha", "mathematical bold italic small u") -addSymbol(0x1D497, "mbfitv", "mathalpha", "mathematical bold italic small v") -addSymbol(0x1D498, "mbfitw", "mathalpha", "mathematical bold italic small w") -addSymbol(0x1D499, "mbfitx", "mathalpha", "mathematical bold italic small x") -addSymbol(0x1D49A, "mbfity", "mathalpha", "mathematical bold italic small y") -addSymbol(0x1D49B, "mbfitz", "mathalpha", "mathematical bold italic small z") -addSymbol(0x1D49C, "mscrA", "mathalpha", "mathematical script capital a") -addSymbol(0x1D49E, "mscrC", "mathalpha", "mathematical script capital c") -addSymbol(0x1D49F, "mscrD", "mathalpha", "mathematical script capital d") -addSymbol(0x1D4A2, "mscrG", "mathalpha", "mathematical script capital g") -addSymbol(0x1D4A5, "mscrJ", "mathalpha", "mathematical script capital j") -addSymbol(0x1D4A6, "mscrK", "mathalpha", "mathematical script capital k") -addSymbol(0x1D4A9, "mscrN", "mathalpha", "mathematical script capital n") -addSymbol(0x1D4AA, "mscrO", "mathalpha", "mathematical script capital o") -addSymbol(0x1D4AB, "mscrP", "mathalpha", "mathematical script capital p") -addSymbol(0x1D4AC, "mscrQ", "mathalpha", "mathematical script capital q") -addSymbol(0x1D4AE, "mscrS", "mathalpha", "mathematical script capital s") -addSymbol(0x1D4AF, "mscrT", "mathalpha", "mathematical script capital t") -addSymbol(0x1D4B0, "mscrU", "mathalpha", "mathematical script capital u") -addSymbol(0x1D4B1, "mscrV", "mathalpha", "mathematical script capital v") -addSymbol(0x1D4B2, "mscrW", "mathalpha", "mathematical script capital w") -addSymbol(0x1D4B3, "mscrX", "mathalpha", "mathematical script capital x") -addSymbol(0x1D4B4, "mscrY", "mathalpha", "mathematical script capital y") -addSymbol(0x1D4B5, "mscrZ", "mathalpha", "mathematical script capital z") -addSymbol(0x1D4B6, "mscra", "mathalpha", "mathematical script small a") -addSymbol(0x1D4B7, "mscrb", "mathalpha", "mathematical script small b") -addSymbol(0x1D4B8, "mscrc", "mathalpha", "mathematical script small c") -addSymbol(0x1D4B9, "mscrd", "mathalpha", "mathematical script small d") -addSymbol(0x1D4BB, "mscrf", "mathalpha", "mathematical script small f") -addSymbol(0x1D4BD, "mscrh", "mathalpha", "mathematical script small h") -addSymbol(0x1D4BE, "mscri", "mathalpha", "mathematical script small i") -addSymbol(0x1D4BF, "mscrj", "mathalpha", "mathematical script small j") -addSymbol(0x1D4C0, "mscrk", "mathalpha", "mathematical script small k") -addSymbol(0x1D4C1, "mscrl", "mathalpha", "mathematical script small l") -addSymbol(0x1D4C2, "mscrm", "mathalpha", "mathematical script small m") -addSymbol(0x1D4C3, "mscrn", "mathalpha", "mathematical script small n") -addSymbol(0x1D4C5, "mscrp", "mathalpha", "mathematical script small p") -addSymbol(0x1D4C6, "mscrq", "mathalpha", "mathematical script small q") -addSymbol(0x1D4C7, "mscrr", "mathalpha", "mathematical script small r") -addSymbol(0x1D4C8, "mscrs", "mathalpha", "mathematical script small s") -addSymbol(0x1D4C9, "mscrt", "mathalpha", "mathematical script small t") -addSymbol(0x1D4CA, "mscru", "mathalpha", "mathematical script small u") -addSymbol(0x1D4CB, "mscrv", "mathalpha", "mathematical script small v") -addSymbol(0x1D4CC, "mscrw", "mathalpha", "mathematical script small w") -addSymbol(0x1D4CD, "mscrx", "mathalpha", "mathematical script small x") -addSymbol(0x1D4CE, "mscry", "mathalpha", "mathematical script small y") -addSymbol(0x1D4CF, "mscrz", "mathalpha", "mathematical script small z") -addSymbol(0x1D4D0, "mbfscrA", "mathalpha", "mathematical bold script capital a") -addSymbol(0x1D4D1, "mbfscrB", "mathalpha", "mathematical bold script capital b") -addSymbol(0x1D4D2, "mbfscrC", "mathalpha", "mathematical bold script capital c") -addSymbol(0x1D4D3, "mbfscrD", "mathalpha", "mathematical bold script capital d") -addSymbol(0x1D4D4, "mbfscrE", "mathalpha", "mathematical bold script capital e") -addSymbol(0x1D4D5, "mbfscrF", "mathalpha", "mathematical bold script capital f") -addSymbol(0x1D4D6, "mbfscrG", "mathalpha", "mathematical bold script capital g") -addSymbol(0x1D4D7, "mbfscrH", "mathalpha", "mathematical bold script capital h") -addSymbol(0x1D4D8, "mbfscrI", "mathalpha", "mathematical bold script capital i") -addSymbol(0x1D4D9, "mbfscrJ", "mathalpha", "mathematical bold script capital j") -addSymbol(0x1D4DA, "mbfscrK", "mathalpha", "mathematical bold script capital k") -addSymbol(0x1D4DB, "mbfscrL", "mathalpha", "mathematical bold script capital l") -addSymbol(0x1D4DC, "mbfscrM", "mathalpha", "mathematical bold script capital m") -addSymbol(0x1D4DD, "mbfscrN", "mathalpha", "mathematical bold script capital n") -addSymbol(0x1D4DE, "mbfscrO", "mathalpha", "mathematical bold script capital o") -addSymbol(0x1D4DF, "mbfscrP", "mathalpha", "mathematical bold script capital p") -addSymbol(0x1D4E0, "mbfscrQ", "mathalpha", "mathematical bold script capital q") -addSymbol(0x1D4E1, "mbfscrR", "mathalpha", "mathematical bold script capital r") -addSymbol(0x1D4E2, "mbfscrS", "mathalpha", "mathematical bold script capital s") -addSymbol(0x1D4E3, "mbfscrT", "mathalpha", "mathematical bold script capital t") -addSymbol(0x1D4E4, "mbfscrU", "mathalpha", "mathematical bold script capital u") -addSymbol(0x1D4E5, "mbfscrV", "mathalpha", "mathematical bold script capital v") -addSymbol(0x1D4E6, "mbfscrW", "mathalpha", "mathematical bold script capital w") -addSymbol(0x1D4E7, "mbfscrX", "mathalpha", "mathematical bold script capital x") -addSymbol(0x1D4E8, "mbfscrY", "mathalpha", "mathematical bold script capital y") -addSymbol(0x1D4E9, "mbfscrZ", "mathalpha", "mathematical bold script capital z") -addSymbol(0x1D4EA, "mbfscra", "mathalpha", "mathematical bold script small a") -addSymbol(0x1D4EB, "mbfscrb", "mathalpha", "mathematical bold script small b") -addSymbol(0x1D4EC, "mbfscrc", "mathalpha", "mathematical bold script small c") -addSymbol(0x1D4ED, "mbfscrd", "mathalpha", "mathematical bold script small d") -addSymbol(0x1D4EE, "mbfscre", "mathalpha", "mathematical bold script small e") -addSymbol(0x1D4EF, "mbfscrf", "mathalpha", "mathematical bold script small f") -addSymbol(0x1D4F0, "mbfscrg", "mathalpha", "mathematical bold script small g") -addSymbol(0x1D4F1, "mbfscrh", "mathalpha", "mathematical bold script small h") -addSymbol(0x1D4F2, "mbfscri", "mathalpha", "mathematical bold script small i") -addSymbol(0x1D4F3, "mbfscrj", "mathalpha", "mathematical bold script small j") -addSymbol(0x1D4F4, "mbfscrk", "mathalpha", "mathematical bold script small k") -addSymbol(0x1D4F5, "mbfscrl", "mathalpha", "mathematical bold script small l") -addSymbol(0x1D4F6, "mbfscrm", "mathalpha", "mathematical bold script small m") -addSymbol(0x1D4F7, "mbfscrn", "mathalpha", "mathematical bold script small n") -addSymbol(0x1D4F8, "mbfscro", "mathalpha", "mathematical bold script small o") -addSymbol(0x1D4F9, "mbfscrp", "mathalpha", "mathematical bold script small p") -addSymbol(0x1D4FA, "mbfscrq", "mathalpha", "mathematical bold script small q") -addSymbol(0x1D4FB, "mbfscrr", "mathalpha", "mathematical bold script small r") -addSymbol(0x1D4FC, "mbfscrs", "mathalpha", "mathematical bold script small s") -addSymbol(0x1D4FD, "mbfscrt", "mathalpha", "mathematical bold script small t") -addSymbol(0x1D4FE, "mbfscru", "mathalpha", "mathematical bold script small u") -addSymbol(0x1D4FF, "mbfscrv", "mathalpha", "mathematical bold script small v") -addSymbol(0x1D500, "mbfscrw", "mathalpha", "mathematical bold script small w") -addSymbol(0x1D501, "mbfscrx", "mathalpha", "mathematical bold script small x") -addSymbol(0x1D502, "mbfscry", "mathalpha", "mathematical bold script small y") -addSymbol(0x1D503, "mbfscrz", "mathalpha", "mathematical bold script small z") -addSymbol(0x1D504, "mfrakA", "mathalpha", "mathematical fraktur capital a") -addSymbol(0x1D505, "mfrakB", "mathalpha", "mathematical fraktur capital b") -addSymbol(0x1D507, "mfrakD", "mathalpha", "mathematical fraktur capital d") -addSymbol(0x1D508, "mfrakE", "mathalpha", "mathematical fraktur capital e") -addSymbol(0x1D509, "mfrakF", "mathalpha", "mathematical fraktur capital f") -addSymbol(0x1D50A, "mfrakG", "mathalpha", "mathematical fraktur capital g") -addSymbol(0x1D50D, "mfrakJ", "mathalpha", "mathematical fraktur capital j") -addSymbol(0x1D50E, "mfrakK", "mathalpha", "mathematical fraktur capital k") -addSymbol(0x1D50F, "mfrakL", "mathalpha", "mathematical fraktur capital l") -addSymbol(0x1D510, "mfrakM", "mathalpha", "mathematical fraktur capital m") -addSymbol(0x1D511, "mfrakN", "mathalpha", "mathematical fraktur capital n") -addSymbol(0x1D512, "mfrakO", "mathalpha", "mathematical fraktur capital o") -addSymbol(0x1D513, "mfrakP", "mathalpha", "mathematical fraktur capital p") -addSymbol(0x1D514, "mfrakQ", "mathalpha", "mathematical fraktur capital q") -addSymbol(0x1D516, "mfrakS", "mathalpha", "mathematical fraktur capital s") -addSymbol(0x1D517, "mfrakT", "mathalpha", "mathematical fraktur capital t") -addSymbol(0x1D518, "mfrakU", "mathalpha", "mathematical fraktur capital u") -addSymbol(0x1D519, "mfrakV", "mathalpha", "mathematical fraktur capital v") -addSymbol(0x1D51A, "mfrakW", "mathalpha", "mathematical fraktur capital w") -addSymbol(0x1D51B, "mfrakX", "mathalpha", "mathematical fraktur capital x") -addSymbol(0x1D51C, "mfrakY", "mathalpha", "mathematical fraktur capital y") -addSymbol(0x1D51E, "mfraka", "mathalpha", "mathematical fraktur small a") -addSymbol(0x1D51F, "mfrakb", "mathalpha", "mathematical fraktur small b") -addSymbol(0x1D520, "mfrakc", "mathalpha", "mathematical fraktur small c") -addSymbol(0x1D521, "mfrakd", "mathalpha", "mathematical fraktur small d") -addSymbol(0x1D522, "mfrake", "mathalpha", "mathematical fraktur small e") -addSymbol(0x1D523, "mfrakf", "mathalpha", "mathematical fraktur small f") -addSymbol(0x1D524, "mfrakg", "mathalpha", "mathematical fraktur small g") -addSymbol(0x1D525, "mfrakh", "mathalpha", "mathematical fraktur small h") -addSymbol(0x1D526, "mfraki", "mathalpha", "mathematical fraktur small i") -addSymbol(0x1D527, "mfrakj", "mathalpha", "mathematical fraktur small j") -addSymbol(0x1D528, "mfrakk", "mathalpha", "mathematical fraktur small k") -addSymbol(0x1D529, "mfrakl", "mathalpha", "mathematical fraktur small l") -addSymbol(0x1D52A, "mfrakm", "mathalpha", "mathematical fraktur small m") -addSymbol(0x1D52B, "mfrakn", "mathalpha", "mathematical fraktur small n") -addSymbol(0x1D52C, "mfrako", "mathalpha", "mathematical fraktur small o") -addSymbol(0x1D52D, "mfrakp", "mathalpha", "mathematical fraktur small p") -addSymbol(0x1D52E, "mfrakq", "mathalpha", "mathematical fraktur small q") -addSymbol(0x1D52F, "mfrakr", "mathalpha", "mathematical fraktur small r") -addSymbol(0x1D530, "mfraks", "mathalpha", "mathematical fraktur small s") -addSymbol(0x1D531, "mfrakt", "mathalpha", "mathematical fraktur small t") -addSymbol(0x1D532, "mfraku", "mathalpha", "mathematical fraktur small u") -addSymbol(0x1D533, "mfrakv", "mathalpha", "mathematical fraktur small v") -addSymbol(0x1D534, "mfrakw", "mathalpha", "mathematical fraktur small w") -addSymbol(0x1D535, "mfrakx", "mathalpha", "mathematical fraktur small x") -addSymbol(0x1D536, "mfraky", "mathalpha", "mathematical fraktur small y") -addSymbol(0x1D537, "mfrakz", "mathalpha", "mathematical fraktur small z") -addSymbol(0x1D538, "BbbA", "mathalpha", "mathematical double-struck capital a") -addSymbol(0x1D539, "BbbB", "mathalpha", "mathematical double-struck capital b") -addSymbol(0x1D53B, "BbbD", "mathalpha", "mathematical double-struck capital d") -addSymbol(0x1D53C, "BbbE", "mathalpha", "mathematical double-struck capital e") -addSymbol(0x1D53D, "BbbF", "mathalpha", "mathematical double-struck capital f") -addSymbol(0x1D53E, "BbbG", "mathalpha", "mathematical double-struck capital g") -addSymbol(0x1D540, "BbbI", "mathalpha", "mathematical double-struck capital i") -addSymbol(0x1D541, "BbbJ", "mathalpha", "mathematical double-struck capital j") -addSymbol(0x1D542, "BbbK", "mathalpha", "mathematical double-struck capital k") -addSymbol(0x1D543, "BbbL", "mathalpha", "mathematical double-struck capital l") -addSymbol(0x1D544, "BbbM", "mathalpha", "mathematical double-struck capital m") -addSymbol(0x1D546, "BbbO", "mathalpha", "mathematical double-struck capital o") -addSymbol(0x1D54A, "BbbS", "mathalpha", "mathematical double-struck capital s") -addSymbol(0x1D54B, "BbbT", "mathalpha", "mathematical double-struck capital t") -addSymbol(0x1D54C, "BbbU", "mathalpha", "mathematical double-struck capital u") -addSymbol(0x1D54D, "BbbV", "mathalpha", "mathematical double-struck capital v") -addSymbol(0x1D54E, "BbbW", "mathalpha", "mathematical double-struck capital w") -addSymbol(0x1D54F, "BbbX", "mathalpha", "mathematical double-struck capital x") -addSymbol(0x1D550, "BbbY", "mathalpha", "mathematical double-struck capital y") -addSymbol(0x1D552, "Bbba", "mathalpha", "mathematical double-struck small a") -addSymbol(0x1D553, "Bbbb", "mathalpha", "mathematical double-struck small b") -addSymbol(0x1D554, "Bbbc", "mathalpha", "mathematical double-struck small c") -addSymbol(0x1D555, "Bbbd", "mathalpha", "mathematical double-struck small d") -addSymbol(0x1D556, "Bbbe", "mathalpha", "mathematical double-struck small e") -addSymbol(0x1D557, "Bbbf", "mathalpha", "mathematical double-struck small f") -addSymbol(0x1D558, "Bbbg", "mathalpha", "mathematical double-struck small g") -addSymbol(0x1D559, "Bbbh", "mathalpha", "mathematical double-struck small h") -addSymbol(0x1D55A, "Bbbi", "mathalpha", "mathematical double-struck small i") -addSymbol(0x1D55B, "Bbbj", "mathalpha", "mathematical double-struck small j") -addSymbol(0x1D55C, "Bbbk", "mathalpha", "mathematical double-struck small k") -addSymbol(0x1D55D, "Bbbl", "mathalpha", "mathematical double-struck small l") -addSymbol(0x1D55E, "Bbbm", "mathalpha", "mathematical double-struck small m") -addSymbol(0x1D55F, "Bbbn", "mathalpha", "mathematical double-struck small n") -addSymbol(0x1D560, "Bbbo", "mathalpha", "mathematical double-struck small o") -addSymbol(0x1D561, "Bbbp", "mathalpha", "mathematical double-struck small p") -addSymbol(0x1D562, "Bbbq", "mathalpha", "mathematical double-struck small q") -addSymbol(0x1D563, "Bbbr", "mathalpha", "mathematical double-struck small r") -addSymbol(0x1D564, "Bbbs", "mathalpha", "mathematical double-struck small s") -addSymbol(0x1D565, "Bbbt", "mathalpha", "mathematical double-struck small t") -addSymbol(0x1D566, "Bbbu", "mathalpha", "mathematical double-struck small u") -addSymbol(0x1D567, "Bbbv", "mathalpha", "mathematical double-struck small v") -addSymbol(0x1D568, "Bbbw", "mathalpha", "mathematical double-struck small w") -addSymbol(0x1D569, "Bbbx", "mathalpha", "mathematical double-struck small x") -addSymbol(0x1D56A, "Bbby", "mathalpha", "mathematical double-struck small y") -addSymbol(0x1D56B, "Bbbz", "mathalpha", "mathematical double-struck small z") -addSymbol(0x1D56C, "mbffrakA", "mathalpha", "mathematical bold fraktur capital a") -addSymbol(0x1D56D, "mbffrakB", "mathalpha", "mathematical bold fraktur capital b") -addSymbol(0x1D56E, "mbffrakC", "mathalpha", "mathematical bold fraktur capital c") -addSymbol(0x1D56F, "mbffrakD", "mathalpha", "mathematical bold fraktur capital d") -addSymbol(0x1D570, "mbffrakE", "mathalpha", "mathematical bold fraktur capital e") -addSymbol(0x1D571, "mbffrakF", "mathalpha", "mathematical bold fraktur capital f") -addSymbol(0x1D572, "mbffrakG", "mathalpha", "mathematical bold fraktur capital g") -addSymbol(0x1D573, "mbffrakH", "mathalpha", "mathematical bold fraktur capital h") -addSymbol(0x1D574, "mbffrakI", "mathalpha", "mathematical bold fraktur capital i") -addSymbol(0x1D575, "mbffrakJ", "mathalpha", "mathematical bold fraktur capital j") -addSymbol(0x1D576, "mbffrakK", "mathalpha", "mathematical bold fraktur capital k") -addSymbol(0x1D577, "mbffrakL", "mathalpha", "mathematical bold fraktur capital l") -addSymbol(0x1D578, "mbffrakM", "mathalpha", "mathematical bold fraktur capital m") -addSymbol(0x1D579, "mbffrakN", "mathalpha", "mathematical bold fraktur capital n") -addSymbol(0x1D57A, "mbffrakO", "mathalpha", "mathematical bold fraktur capital o") -addSymbol(0x1D57B, "mbffrakP", "mathalpha", "mathematical bold fraktur capital p") -addSymbol(0x1D57C, "mbffrakQ", "mathalpha", "mathematical bold fraktur capital q") -addSymbol(0x1D57D, "mbffrakR", "mathalpha", "mathematical bold fraktur capital r") -addSymbol(0x1D57E, "mbffrakS", "mathalpha", "mathematical bold fraktur capital s") -addSymbol(0x1D57F, "mbffrakT", "mathalpha", "mathematical bold fraktur capital t") -addSymbol(0x1D580, "mbffrakU", "mathalpha", "mathematical bold fraktur capital u") -addSymbol(0x1D581, "mbffrakV", "mathalpha", "mathematical bold fraktur capital v") -addSymbol(0x1D582, "mbffrakW", "mathalpha", "mathematical bold fraktur capital w") -addSymbol(0x1D583, "mbffrakX", "mathalpha", "mathematical bold fraktur capital x") -addSymbol(0x1D584, "mbffrakY", "mathalpha", "mathematical bold fraktur capital y") -addSymbol(0x1D585, "mbffrakZ", "mathalpha", "mathematical bold fraktur capital z") -addSymbol(0x1D586, "mbffraka", "mathalpha", "mathematical bold fraktur small a") -addSymbol(0x1D587, "mbffrakb", "mathalpha", "mathematical bold fraktur small b") -addSymbol(0x1D588, "mbffrakc", "mathalpha", "mathematical bold fraktur small c") -addSymbol(0x1D589, "mbffrakd", "mathalpha", "mathematical bold fraktur small d") -addSymbol(0x1D58A, "mbffrake", "mathalpha", "mathematical bold fraktur small e") -addSymbol(0x1D58B, "mbffrakf", "mathalpha", "mathematical bold fraktur small f") -addSymbol(0x1D58C, "mbffrakg", "mathalpha", "mathematical bold fraktur small g") -addSymbol(0x1D58D, "mbffrakh", "mathalpha", "mathematical bold fraktur small h") -addSymbol(0x1D58E, "mbffraki", "mathalpha", "mathematical bold fraktur small i") -addSymbol(0x1D58F, "mbffrakj", "mathalpha", "mathematical bold fraktur small j") -addSymbol(0x1D590, "mbffrakk", "mathalpha", "mathematical bold fraktur small k") -addSymbol(0x1D591, "mbffrakl", "mathalpha", "mathematical bold fraktur small l") -addSymbol(0x1D592, "mbffrakm", "mathalpha", "mathematical bold fraktur small m") -addSymbol(0x1D593, "mbffrakn", "mathalpha", "mathematical bold fraktur small n") -addSymbol(0x1D594, "mbffrako", "mathalpha", "mathematical bold fraktur small o") -addSymbol(0x1D595, "mbffrakp", "mathalpha", "mathematical bold fraktur small p") -addSymbol(0x1D596, "mbffrakq", "mathalpha", "mathematical bold fraktur small q") -addSymbol(0x1D597, "mbffrakr", "mathalpha", "mathematical bold fraktur small r") -addSymbol(0x1D598, "mbffraks", "mathalpha", "mathematical bold fraktur small s") -addSymbol(0x1D599, "mbffrakt", "mathalpha", "mathematical bold fraktur small t") -addSymbol(0x1D59A, "mbffraku", "mathalpha", "mathematical bold fraktur small u") -addSymbol(0x1D59B, "mbffrakv", "mathalpha", "mathematical bold fraktur small v") -addSymbol(0x1D59C, "mbffrakw", "mathalpha", "mathematical bold fraktur small w") -addSymbol(0x1D59D, "mbffrakx", "mathalpha", "mathematical bold fraktur small x") -addSymbol(0x1D59E, "mbffraky", "mathalpha", "mathematical bold fraktur small y") -addSymbol(0x1D59F, "mbffrakz", "mathalpha", "mathematical bold fraktur small z") -addSymbol(0x1D5A0, "msansA", "mathalpha", "mathematical sans-serif capital a") -addSymbol(0x1D5A1, "msansB", "mathalpha", "mathematical sans-serif capital b") -addSymbol(0x1D5A2, "msansC", "mathalpha", "mathematical sans-serif capital c") -addSymbol(0x1D5A3, "msansD", "mathalpha", "mathematical sans-serif capital d") -addSymbol(0x1D5A4, "msansE", "mathalpha", "mathematical sans-serif capital e") -addSymbol(0x1D5A5, "msansF", "mathalpha", "mathematical sans-serif capital f") -addSymbol(0x1D5A6, "msansG", "mathalpha", "mathematical sans-serif capital g") -addSymbol(0x1D5A7, "msansH", "mathalpha", "mathematical sans-serif capital h") -addSymbol(0x1D5A8, "msansI", "mathalpha", "mathematical sans-serif capital i") -addSymbol(0x1D5A9, "msansJ", "mathalpha", "mathematical sans-serif capital j") -addSymbol(0x1D5AA, "msansK", "mathalpha", "mathematical sans-serif capital k") -addSymbol(0x1D5AB, "msansL", "mathalpha", "mathematical sans-serif capital l") -addSymbol(0x1D5AC, "msansM", "mathalpha", "mathematical sans-serif capital m") -addSymbol(0x1D5AD, "msansN", "mathalpha", "mathematical sans-serif capital n") -addSymbol(0x1D5AE, "msansO", "mathalpha", "mathematical sans-serif capital o") -addSymbol(0x1D5AF, "msansP", "mathalpha", "mathematical sans-serif capital p") -addSymbol(0x1D5B0, "msansQ", "mathalpha", "mathematical sans-serif capital q") -addSymbol(0x1D5B1, "msansR", "mathalpha", "mathematical sans-serif capital r") -addSymbol(0x1D5B2, "msansS", "mathalpha", "mathematical sans-serif capital s") -addSymbol(0x1D5B3, "msansT", "mathalpha", "mathematical sans-serif capital t") -addSymbol(0x1D5B4, "msansU", "mathalpha", "mathematical sans-serif capital u") -addSymbol(0x1D5B5, "msansV", "mathalpha", "mathematical sans-serif capital v") -addSymbol(0x1D5B6, "msansW", "mathalpha", "mathematical sans-serif capital w") -addSymbol(0x1D5B7, "msansX", "mathalpha", "mathematical sans-serif capital x") -addSymbol(0x1D5B8, "msansY", "mathalpha", "mathematical sans-serif capital y") -addSymbol(0x1D5B9, "msansZ", "mathalpha", "mathematical sans-serif capital z") -addSymbol(0x1D5BA, "msansa", "mathalpha", "mathematical sans-serif small a") -addSymbol(0x1D5BB, "msansb", "mathalpha", "mathematical sans-serif small b") -addSymbol(0x1D5BC, "msansc", "mathalpha", "mathematical sans-serif small c") -addSymbol(0x1D5BD, "msansd", "mathalpha", "mathematical sans-serif small d") -addSymbol(0x1D5BE, "msanse", "mathalpha", "mathematical sans-serif small e") -addSymbol(0x1D5BF, "msansf", "mathalpha", "mathematical sans-serif small f") -addSymbol(0x1D5C0, "msansg", "mathalpha", "mathematical sans-serif small g") -addSymbol(0x1D5C1, "msansh", "mathalpha", "mathematical sans-serif small h") -addSymbol(0x1D5C2, "msansi", "mathalpha", "mathematical sans-serif small i") -addSymbol(0x1D5C3, "msansj", "mathalpha", "mathematical sans-serif small j") -addSymbol(0x1D5C4, "msansk", "mathalpha", "mathematical sans-serif small k") -addSymbol(0x1D5C5, "msansl", "mathalpha", "mathematical sans-serif small l") -addSymbol(0x1D5C6, "msansm", "mathalpha", "mathematical sans-serif small m") -addSymbol(0x1D5C7, "msansn", "mathalpha", "mathematical sans-serif small n") -addSymbol(0x1D5C8, "msanso", "mathalpha", "mathematical sans-serif small o") -addSymbol(0x1D5C9, "msansp", "mathalpha", "mathematical sans-serif small p") -addSymbol(0x1D5CA, "msansq", "mathalpha", "mathematical sans-serif small q") -addSymbol(0x1D5CB, "msansr", "mathalpha", "mathematical sans-serif small r") -addSymbol(0x1D5CC, "msanss", "mathalpha", "mathematical sans-serif small s") -addSymbol(0x1D5CD, "msanst", "mathalpha", "mathematical sans-serif small t") -addSymbol(0x1D5CE, "msansu", "mathalpha", "mathematical sans-serif small u") -addSymbol(0x1D5CF, "msansv", "mathalpha", "mathematical sans-serif small v") -addSymbol(0x1D5D0, "msansw", "mathalpha", "mathematical sans-serif small w") -addSymbol(0x1D5D1, "msansx", "mathalpha", "mathematical sans-serif small x") -addSymbol(0x1D5D2, "msansy", "mathalpha", "mathematical sans-serif small y") -addSymbol(0x1D5D3, "msansz", "mathalpha", "mathematical sans-serif small z") -addSymbol(0x1D5D4, "mbfsansA", "mathalpha", "mathematical sans-serif bold capital a") -addSymbol(0x1D5D5, "mbfsansB", "mathalpha", "mathematical sans-serif bold capital b") -addSymbol(0x1D5D6, "mbfsansC", "mathalpha", "mathematical sans-serif bold capital c") -addSymbol(0x1D5D7, "mbfsansD", "mathalpha", "mathematical sans-serif bold capital d") -addSymbol(0x1D5D8, "mbfsansE", "mathalpha", "mathematical sans-serif bold capital e") -addSymbol(0x1D5D9, "mbfsansF", "mathalpha", "mathematical sans-serif bold capital f") -addSymbol(0x1D5DA, "mbfsansG", "mathalpha", "mathematical sans-serif bold capital g") -addSymbol(0x1D5DB, "mbfsansH", "mathalpha", "mathematical sans-serif bold capital h") -addSymbol(0x1D5DC, "mbfsansI", "mathalpha", "mathematical sans-serif bold capital i") -addSymbol(0x1D5DD, "mbfsansJ", "mathalpha", "mathematical sans-serif bold capital j") -addSymbol(0x1D5DE, "mbfsansK", "mathalpha", "mathematical sans-serif bold capital k") -addSymbol(0x1D5DF, "mbfsansL", "mathalpha", "mathematical sans-serif bold capital l") -addSymbol(0x1D5E0, "mbfsansM", "mathalpha", "mathematical sans-serif bold capital m") -addSymbol(0x1D5E1, "mbfsansN", "mathalpha", "mathematical sans-serif bold capital n") -addSymbol(0x1D5E2, "mbfsansO", "mathalpha", "mathematical sans-serif bold capital o") -addSymbol(0x1D5E3, "mbfsansP", "mathalpha", "mathematical sans-serif bold capital p") -addSymbol(0x1D5E4, "mbfsansQ", "mathalpha", "mathematical sans-serif bold capital q") -addSymbol(0x1D5E5, "mbfsansR", "mathalpha", "mathematical sans-serif bold capital r") -addSymbol(0x1D5E6, "mbfsansS", "mathalpha", "mathematical sans-serif bold capital s") -addSymbol(0x1D5E7, "mbfsansT", "mathalpha", "mathematical sans-serif bold capital t") -addSymbol(0x1D5E8, "mbfsansU", "mathalpha", "mathematical sans-serif bold capital u") -addSymbol(0x1D5E9, "mbfsansV", "mathalpha", "mathematical sans-serif bold capital v") -addSymbol(0x1D5EA, "mbfsansW", "mathalpha", "mathematical sans-serif bold capital w") -addSymbol(0x1D5EB, "mbfsansX", "mathalpha", "mathematical sans-serif bold capital x") -addSymbol(0x1D5EC, "mbfsansY", "mathalpha", "mathematical sans-serif bold capital y") -addSymbol(0x1D5ED, "mbfsansZ", "mathalpha", "mathematical sans-serif bold capital z") -addSymbol(0x1D5EE, "mbfsansa", "mathalpha", "mathematical sans-serif bold small a") -addSymbol(0x1D5EF, "mbfsansb", "mathalpha", "mathematical sans-serif bold small b") -addSymbol(0x1D5F0, "mbfsansc", "mathalpha", "mathematical sans-serif bold small c") -addSymbol(0x1D5F1, "mbfsansd", "mathalpha", "mathematical sans-serif bold small d") -addSymbol(0x1D5F2, "mbfsanse", "mathalpha", "mathematical sans-serif bold small e") -addSymbol(0x1D5F3, "mbfsansf", "mathalpha", "mathematical sans-serif bold small f") -addSymbol(0x1D5F4, "mbfsansg", "mathalpha", "mathematical sans-serif bold small g") -addSymbol(0x1D5F5, "mbfsansh", "mathalpha", "mathematical sans-serif bold small h") -addSymbol(0x1D5F6, "mbfsansi", "mathalpha", "mathematical sans-serif bold small i") -addSymbol(0x1D5F7, "mbfsansj", "mathalpha", "mathematical sans-serif bold small j") -addSymbol(0x1D5F8, "mbfsansk", "mathalpha", "mathematical sans-serif bold small k") -addSymbol(0x1D5F9, "mbfsansl", "mathalpha", "mathematical sans-serif bold small l") -addSymbol(0x1D5FA, "mbfsansm", "mathalpha", "mathematical sans-serif bold small m") -addSymbol(0x1D5FB, "mbfsansn", "mathalpha", "mathematical sans-serif bold small n") -addSymbol(0x1D5FC, "mbfsanso", "mathalpha", "mathematical sans-serif bold small o") -addSymbol(0x1D5FD, "mbfsansp", "mathalpha", "mathematical sans-serif bold small p") -addSymbol(0x1D5FE, "mbfsansq", "mathalpha", "mathematical sans-serif bold small q") -addSymbol(0x1D5FF, "mbfsansr", "mathalpha", "mathematical sans-serif bold small r") -addSymbol(0x1D600, "mbfsanss", "mathalpha", "mathematical sans-serif bold small s") -addSymbol(0x1D601, "mbfsanst", "mathalpha", "mathematical sans-serif bold small t") -addSymbol(0x1D602, "mbfsansu", "mathalpha", "mathematical sans-serif bold small u") -addSymbol(0x1D603, "mbfsansv", "mathalpha", "mathematical sans-serif bold small v") -addSymbol(0x1D604, "mbfsansw", "mathalpha", "mathematical sans-serif bold small w") -addSymbol(0x1D605, "mbfsansx", "mathalpha", "mathematical sans-serif bold small x") -addSymbol(0x1D606, "mbfsansy", "mathalpha", "mathematical sans-serif bold small y") -addSymbol(0x1D607, "mbfsansz", "mathalpha", "mathematical sans-serif bold small z") -addSymbol(0x1D608, "mitsansA", "mathalpha", "mathematical sans-serif italic capital a") -addSymbol(0x1D609, "mitsansB", "mathalpha", "mathematical sans-serif italic capital b") -addSymbol(0x1D60A, "mitsansC", "mathalpha", "mathematical sans-serif italic capital c") -addSymbol(0x1D60B, "mitsansD", "mathalpha", "mathematical sans-serif italic capital d") -addSymbol(0x1D60C, "mitsansE", "mathalpha", "mathematical sans-serif italic capital e") -addSymbol(0x1D60D, "mitsansF", "mathalpha", "mathematical sans-serif italic capital f") -addSymbol(0x1D60E, "mitsansG", "mathalpha", "mathematical sans-serif italic capital g") -addSymbol(0x1D60F, "mitsansH", "mathalpha", "mathematical sans-serif italic capital h") -addSymbol(0x1D610, "mitsansI", "mathalpha", "mathematical sans-serif italic capital i") -addSymbol(0x1D611, "mitsansJ", "mathalpha", "mathematical sans-serif italic capital j") -addSymbol(0x1D612, "mitsansK", "mathalpha", "mathematical sans-serif italic capital k") -addSymbol(0x1D613, "mitsansL", "mathalpha", "mathematical sans-serif italic capital l") -addSymbol(0x1D614, "mitsansM", "mathalpha", "mathematical sans-serif italic capital m") -addSymbol(0x1D615, "mitsansN", "mathalpha", "mathematical sans-serif italic capital n") -addSymbol(0x1D616, "mitsansO", "mathalpha", "mathematical sans-serif italic capital o") -addSymbol(0x1D617, "mitsansP", "mathalpha", "mathematical sans-serif italic capital p") -addSymbol(0x1D618, "mitsansQ", "mathalpha", "mathematical sans-serif italic capital q") -addSymbol(0x1D619, "mitsansR", "mathalpha", "mathematical sans-serif italic capital r") -addSymbol(0x1D61A, "mitsansS", "mathalpha", "mathematical sans-serif italic capital s") -addSymbol(0x1D61B, "mitsansT", "mathalpha", "mathematical sans-serif italic capital t") -addSymbol(0x1D61C, "mitsansU", "mathalpha", "mathematical sans-serif italic capital u") -addSymbol(0x1D61D, "mitsansV", "mathalpha", "mathematical sans-serif italic capital v") -addSymbol(0x1D61E, "mitsansW", "mathalpha", "mathematical sans-serif italic capital w") -addSymbol(0x1D61F, "mitsansX", "mathalpha", "mathematical sans-serif italic capital x") -addSymbol(0x1D620, "mitsansY", "mathalpha", "mathematical sans-serif italic capital y") -addSymbol(0x1D621, "mitsansZ", "mathalpha", "mathematical sans-serif italic capital z") -addSymbol(0x1D622, "mitsansa", "mathalpha", "mathematical sans-serif italic small a") -addSymbol(0x1D623, "mitsansb", "mathalpha", "mathematical sans-serif italic small b") -addSymbol(0x1D624, "mitsansc", "mathalpha", "mathematical sans-serif italic small c") -addSymbol(0x1D625, "mitsansd", "mathalpha", "mathematical sans-serif italic small d") -addSymbol(0x1D626, "mitsanse", "mathalpha", "mathematical sans-serif italic small e") -addSymbol(0x1D627, "mitsansf", "mathalpha", "mathematical sans-serif italic small f") -addSymbol(0x1D628, "mitsansg", "mathalpha", "mathematical sans-serif italic small g") -addSymbol(0x1D629, "mitsansh", "mathalpha", "mathematical sans-serif italic small h") -addSymbol(0x1D62A, "mitsansi", "mathalpha", "mathematical sans-serif italic small i") -addSymbol(0x1D62B, "mitsansj", "mathalpha", "mathematical sans-serif italic small j") -addSymbol(0x1D62C, "mitsansk", "mathalpha", "mathematical sans-serif italic small k") -addSymbol(0x1D62D, "mitsansl", "mathalpha", "mathematical sans-serif italic small l") -addSymbol(0x1D62E, "mitsansm", "mathalpha", "mathematical sans-serif italic small m") -addSymbol(0x1D62F, "mitsansn", "mathalpha", "mathematical sans-serif italic small n") -addSymbol(0x1D630, "mitsanso", "mathalpha", "mathematical sans-serif italic small o") -addSymbol(0x1D631, "mitsansp", "mathalpha", "mathematical sans-serif italic small p") -addSymbol(0x1D632, "mitsansq", "mathalpha", "mathematical sans-serif italic small q") -addSymbol(0x1D633, "mitsansr", "mathalpha", "mathematical sans-serif italic small r") -addSymbol(0x1D634, "mitsanss", "mathalpha", "mathematical sans-serif italic small s") -addSymbol(0x1D635, "mitsanst", "mathalpha", "mathematical sans-serif italic small t") -addSymbol(0x1D636, "mitsansu", "mathalpha", "mathematical sans-serif italic small u") -addSymbol(0x1D637, "mitsansv", "mathalpha", "mathematical sans-serif italic small v") -addSymbol(0x1D638, "mitsansw", "mathalpha", "mathematical sans-serif italic small w") -addSymbol(0x1D639, "mitsansx", "mathalpha", "mathematical sans-serif italic small x") -addSymbol(0x1D63A, "mitsansy", "mathalpha", "mathematical sans-serif italic small y") -addSymbol(0x1D63B, "mitsansz", "mathalpha", "mathematical sans-serif italic small z") -addSymbol(0x1D63C, "mbfitsansA", "mathalpha", "mathematical sans-serif bold italic capital a") -addSymbol(0x1D63D, "mbfitsansB", "mathalpha", "mathematical sans-serif bold italic capital b") -addSymbol(0x1D63E, "mbfitsansC", "mathalpha", "mathematical sans-serif bold italic capital c") -addSymbol(0x1D63F, "mbfitsansD", "mathalpha", "mathematical sans-serif bold italic capital d") -addSymbol(0x1D640, "mbfitsansE", "mathalpha", "mathematical sans-serif bold italic capital e") -addSymbol(0x1D641, "mbfitsansF", "mathalpha", "mathematical sans-serif bold italic capital f") -addSymbol(0x1D642, "mbfitsansG", "mathalpha", "mathematical sans-serif bold italic capital g") -addSymbol(0x1D643, "mbfitsansH", "mathalpha", "mathematical sans-serif bold italic capital h") -addSymbol(0x1D644, "mbfitsansI", "mathalpha", "mathematical sans-serif bold italic capital i") -addSymbol(0x1D645, "mbfitsansJ", "mathalpha", "mathematical sans-serif bold italic capital j") -addSymbol(0x1D646, "mbfitsansK", "mathalpha", "mathematical sans-serif bold italic capital k") -addSymbol(0x1D647, "mbfitsansL", "mathalpha", "mathematical sans-serif bold italic capital l") -addSymbol(0x1D648, "mbfitsansM", "mathalpha", "mathematical sans-serif bold italic capital m") -addSymbol(0x1D649, "mbfitsansN", "mathalpha", "mathematical sans-serif bold italic capital n") -addSymbol(0x1D64A, "mbfitsansO", "mathalpha", "mathematical sans-serif bold italic capital o") -addSymbol(0x1D64B, "mbfitsansP", "mathalpha", "mathematical sans-serif bold italic capital p") -addSymbol(0x1D64C, "mbfitsansQ", "mathalpha", "mathematical sans-serif bold italic capital q") -addSymbol(0x1D64D, "mbfitsansR", "mathalpha", "mathematical sans-serif bold italic capital r") -addSymbol(0x1D64E, "mbfitsansS", "mathalpha", "mathematical sans-serif bold italic capital s") -addSymbol(0x1D64F, "mbfitsansT", "mathalpha", "mathematical sans-serif bold italic capital t") -addSymbol(0x1D650, "mbfitsansU", "mathalpha", "mathematical sans-serif bold italic capital u") -addSymbol(0x1D651, "mbfitsansV", "mathalpha", "mathematical sans-serif bold italic capital v") -addSymbol(0x1D652, "mbfitsansW", "mathalpha", "mathematical sans-serif bold italic capital w") -addSymbol(0x1D653, "mbfitsansX", "mathalpha", "mathematical sans-serif bold italic capital x") -addSymbol(0x1D654, "mbfitsansY", "mathalpha", "mathematical sans-serif bold italic capital y") -addSymbol(0x1D655, "mbfitsansZ", "mathalpha", "mathematical sans-serif bold italic capital z") -addSymbol(0x1D656, "mbfitsansa", "mathalpha", "mathematical sans-serif bold italic small a") -addSymbol(0x1D657, "mbfitsansb", "mathalpha", "mathematical sans-serif bold italic small b") -addSymbol(0x1D658, "mbfitsansc", "mathalpha", "mathematical sans-serif bold italic small c") -addSymbol(0x1D659, "mbfitsansd", "mathalpha", "mathematical sans-serif bold italic small d") -addSymbol(0x1D65A, "mbfitsanse", "mathalpha", "mathematical sans-serif bold italic small e") -addSymbol(0x1D65B, "mbfitsansf", "mathalpha", "mathematical sans-serif bold italic small f") -addSymbol(0x1D65C, "mbfitsansg", "mathalpha", "mathematical sans-serif bold italic small g") -addSymbol(0x1D65D, "mbfitsansh", "mathalpha", "mathematical sans-serif bold italic small h") -addSymbol(0x1D65E, "mbfitsansi", "mathalpha", "mathematical sans-serif bold italic small i") -addSymbol(0x1D65F, "mbfitsansj", "mathalpha", "mathematical sans-serif bold italic small j") -addSymbol(0x1D660, "mbfitsansk", "mathalpha", "mathematical sans-serif bold italic small k") -addSymbol(0x1D661, "mbfitsansl", "mathalpha", "mathematical sans-serif bold italic small l") -addSymbol(0x1D662, "mbfitsansm", "mathalpha", "mathematical sans-serif bold italic small m") -addSymbol(0x1D663, "mbfitsansn", "mathalpha", "mathematical sans-serif bold italic small n") -addSymbol(0x1D664, "mbfitsanso", "mathalpha", "mathematical sans-serif bold italic small o") -addSymbol(0x1D665, "mbfitsansp", "mathalpha", "mathematical sans-serif bold italic small p") -addSymbol(0x1D666, "mbfitsansq", "mathalpha", "mathematical sans-serif bold italic small q") -addSymbol(0x1D667, "mbfitsansr", "mathalpha", "mathematical sans-serif bold italic small r") -addSymbol(0x1D668, "mbfitsanss", "mathalpha", "mathematical sans-serif bold italic small s") -addSymbol(0x1D669, "mbfitsanst", "mathalpha", "mathematical sans-serif bold italic small t") -addSymbol(0x1D66A, "mbfitsansu", "mathalpha", "mathematical sans-serif bold italic small u") -addSymbol(0x1D66B, "mbfitsansv", "mathalpha", "mathematical sans-serif bold italic small v") -addSymbol(0x1D66C, "mbfitsansw", "mathalpha", "mathematical sans-serif bold italic small w") -addSymbol(0x1D66D, "mbfitsansx", "mathalpha", "mathematical sans-serif bold italic small x") -addSymbol(0x1D66E, "mbfitsansy", "mathalpha", "mathematical sans-serif bold italic small y") -addSymbol(0x1D66F, "mbfitsansz", "mathalpha", "mathematical sans-serif bold italic small z") -addSymbol(0x1D670, "mttA", "mathalpha", "mathematical monospace capital a") -addSymbol(0x1D671, "mttB", "mathalpha", "mathematical monospace capital b") -addSymbol(0x1D672, "mttC", "mathalpha", "mathematical monospace capital c") -addSymbol(0x1D673, "mttD", "mathalpha", "mathematical monospace capital d") -addSymbol(0x1D674, "mttE", "mathalpha", "mathematical monospace capital e") -addSymbol(0x1D675, "mttF", "mathalpha", "mathematical monospace capital f") -addSymbol(0x1D676, "mttG", "mathalpha", "mathematical monospace capital g") -addSymbol(0x1D677, "mttH", "mathalpha", "mathematical monospace capital h") -addSymbol(0x1D678, "mttI", "mathalpha", "mathematical monospace capital i") -addSymbol(0x1D679, "mttJ", "mathalpha", "mathematical monospace capital j") -addSymbol(0x1D67A, "mttK", "mathalpha", "mathematical monospace capital k") -addSymbol(0x1D67B, "mttL", "mathalpha", "mathematical monospace capital l") -addSymbol(0x1D67C, "mttM", "mathalpha", "mathematical monospace capital m") -addSymbol(0x1D67D, "mttN", "mathalpha", "mathematical monospace capital n") -addSymbol(0x1D67E, "mttO", "mathalpha", "mathematical monospace capital o") -addSymbol(0x1D67F, "mttP", "mathalpha", "mathematical monospace capital p") -addSymbol(0x1D680, "mttQ", "mathalpha", "mathematical monospace capital q") -addSymbol(0x1D681, "mttR", "mathalpha", "mathematical monospace capital r") -addSymbol(0x1D682, "mttS", "mathalpha", "mathematical monospace capital s") -addSymbol(0x1D683, "mttT", "mathalpha", "mathematical monospace capital t") -addSymbol(0x1D684, "mttU", "mathalpha", "mathematical monospace capital u") -addSymbol(0x1D685, "mttV", "mathalpha", "mathematical monospace capital v") -addSymbol(0x1D686, "mttW", "mathalpha", "mathematical monospace capital w") -addSymbol(0x1D687, "mttX", "mathalpha", "mathematical monospace capital x") -addSymbol(0x1D688, "mttY", "mathalpha", "mathematical monospace capital y") -addSymbol(0x1D689, "mttZ", "mathalpha", "mathematical monospace capital z") -addSymbol(0x1D68A, "mtta", "mathalpha", "mathematical monospace small a") -addSymbol(0x1D68B, "mttb", "mathalpha", "mathematical monospace small b") -addSymbol(0x1D68C, "mttc", "mathalpha", "mathematical monospace small c") -addSymbol(0x1D68D, "mttd", "mathalpha", "mathematical monospace small d") -addSymbol(0x1D68E, "mtte", "mathalpha", "mathematical monospace small e") -addSymbol(0x1D68F, "mttf", "mathalpha", "mathematical monospace small f") -addSymbol(0x1D690, "mttg", "mathalpha", "mathematical monospace small g") -addSymbol(0x1D691, "mtth", "mathalpha", "mathematical monospace small h") -addSymbol(0x1D692, "mtti", "mathalpha", "mathematical monospace small i") -addSymbol(0x1D693, "mttj", "mathalpha", "mathematical monospace small j") -addSymbol(0x1D694, "mttk", "mathalpha", "mathematical monospace small k") -addSymbol(0x1D695, "mttl", "mathalpha", "mathematical monospace small l") -addSymbol(0x1D696, "mttm", "mathalpha", "mathematical monospace small m") -addSymbol(0x1D697, "mttn", "mathalpha", "mathematical monospace small n") -addSymbol(0x1D698, "mtto", "mathalpha", "mathematical monospace small o") -addSymbol(0x1D699, "mttp", "mathalpha", "mathematical monospace small p") -addSymbol(0x1D69A, "mttq", "mathalpha", "mathematical monospace small q") -addSymbol(0x1D69B, "mttr", "mathalpha", "mathematical monospace small r") -addSymbol(0x1D69C, "mtts", "mathalpha", "mathematical monospace small s") -addSymbol(0x1D69D, "mttt", "mathalpha", "mathematical monospace small t") -addSymbol(0x1D69E, "mttu", "mathalpha", "mathematical monospace small u") -addSymbol(0x1D69F, "mttv", "mathalpha", "mathematical monospace small v") -addSymbol(0x1D6A0, "mttw", "mathalpha", "mathematical monospace small w") -addSymbol(0x1D6A1, "mttx", "mathalpha", "mathematical monospace small x") -addSymbol(0x1D6A2, "mtty", "mathalpha", "mathematical monospace small y") -addSymbol(0x1D6A3, "mttz", "mathalpha", "mathematical monospace small z") -addSymbol(0x1D6A4, "imath", "mathalpha", "mathematical italic small dotless i") -addSymbol(0x1D6A5, "jmath", "mathalpha", "mathematical italic small dotless j") -addSymbol(0x1D6A8, "mbfAlpha", "mathalpha", "mathematical bold capital alpha") -addSymbol(0x1D6A9, "mbfBeta", "mathalpha", "mathematical bold capital beta") -addSymbol(0x1D6AA, "mbfGamma", "mathalpha", "mathematical bold capital gamma") -addSymbol(0x1D6AB, "mbfDelta", "mathalpha", "mathematical bold capital delta") -addSymbol(0x1D6AC, "mbfEpsilon", "mathalpha", "mathematical bold capital epsilon") -addSymbol(0x1D6AD, "mbfZeta", "mathalpha", "mathematical bold capital zeta") -addSymbol(0x1D6AE, "mbfEta", "mathalpha", "mathematical bold capital eta") -addSymbol(0x1D6AF, "mbfTheta", "mathalpha", "mathematical bold capital theta") -addSymbol(0x1D6B0, "mbfIota", "mathalpha", "mathematical bold capital iota") -addSymbol(0x1D6B1, "mbfKappa", "mathalpha", "mathematical bold capital kappa") -addSymbol(0x1D6B2, "mbfLambda", "mathalpha", "mathematical bold capital lambda") -addSymbol(0x1D6B3, "mbfMu", "mathalpha", "mathematical bold capital mu") -addSymbol(0x1D6B4, "mbfNu", "mathalpha", "mathematical bold capital nu") -addSymbol(0x1D6B5, "mbfXi", "mathalpha", "mathematical bold capital xi") -addSymbol(0x1D6B6, "mbfOmicron", "mathalpha", "mathematical bold capital omicron") -addSymbol(0x1D6B7, "mbfPi", "mathalpha", "mathematical bold capital pi") -addSymbol(0x1D6B8, "mbfRho", "mathalpha", "mathematical bold capital rho") -addSymbol(0x1D6B9, "mbfvarTheta", "mathalpha", "mathematical bold capital theta symbol") -addSymbol(0x1D6BA, "mbfSigma", "mathalpha", "mathematical bold capital sigma") -addSymbol(0x1D6BB, "mbfTau", "mathalpha", "mathematical bold capital tau") -addSymbol(0x1D6BC, "mbfUpsilon", "mathalpha", "mathematical bold capital upsilon") -addSymbol(0x1D6BD, "mbfPhi", "mathalpha", "mathematical bold capital phi") -addSymbol(0x1D6BE, "mbfChi", "mathalpha", "mathematical bold capital chi") -addSymbol(0x1D6BF, "mbfPsi", "mathalpha", "mathematical bold capital psi") -addSymbol(0x1D6C0, "mbfOmega", "mathalpha", "mathematical bold capital omega") -addSymbol(0x1D6C1, "mbfnabla", "mathalpha", "mathematical bold nabla") -addSymbol(0x1D6C2, "mbfalpha", "mathalpha", "mathematical bold small alpha") -addSymbol(0x1D6C3, "mbfbeta", "mathalpha", "mathematical bold small beta") -addSymbol(0x1D6C4, "mbfgamma", "mathalpha", "mathematical bold small gamma") -addSymbol(0x1D6C5, "mbfdelta", "mathalpha", "mathematical bold small delta") -addSymbol(0x1D6C6, "mbfvarepsilon", "mathalpha", "mathematical bold small varepsilon") -addSymbol(0x1D6C7, "mbfzeta", "mathalpha", "mathematical bold small zeta") -addSymbol(0x1D6C8, "mbfeta", "mathalpha", "mathematical bold small eta") -addSymbol(0x1D6C9, "mbftheta", "mathalpha", "mathematical bold small theta") -addSymbol(0x1D6CA, "mbfiota", "mathalpha", "mathematical bold small iota") -addSymbol(0x1D6CB, "mbfkappa", "mathalpha", "mathematical bold small kappa") -addSymbol(0x1D6CC, "mbflambda", "mathalpha", "mathematical bold small lambda") -addSymbol(0x1D6CD, "mbfmu", "mathalpha", "mathematical bold small mu") -addSymbol(0x1D6CE, "mbfnu", "mathalpha", "mathematical bold small nu") -addSymbol(0x1D6CF, "mbfxi", "mathalpha", "mathematical bold small xi") -addSymbol(0x1D6D0, "mbfomicron", "mathalpha", "mathematical bold small omicron") -addSymbol(0x1D6D1, "mbfpi", "mathalpha", "mathematical bold small pi") -addSymbol(0x1D6D2, "mbfrho", "mathalpha", "mathematical bold small rho") -addSymbol(0x1D6D3, "mbfvarsigma", "mathalpha", "mathematical bold small final sigma") -addSymbol(0x1D6D4, "mbfsigma", "mathalpha", "mathematical bold small sigma") -addSymbol(0x1D6D5, "mbftau", "mathalpha", "mathematical bold small tau") -addSymbol(0x1D6D6, "mbfupsilon", "mathalpha", "mathematical bold small upsilon") -addSymbol(0x1D6D7, "mbfvarphi", "mathalpha", "mathematical bold small phi") -addSymbol(0x1D6D8, "mbfchi", "mathalpha", "mathematical bold small chi") -addSymbol(0x1D6D9, "mbfpsi", "mathalpha", "mathematical bold small psi") -addSymbol(0x1D6DA, "mbfomega", "mathalpha", "mathematical bold small omega") -addSymbol(0x1D6DB, "mbfpartial", "mathalpha", "mathematical bold partial differential") -addSymbol(0x1D6DC, "mbfepsilon", "mathalpha", "mathematical bold varepsilon symbol") -addSymbol(0x1D6DD, "mbfvartheta", "mathalpha", "mathematical bold theta symbol") -addSymbol(0x1D6DE, "mbfvarkappa", "mathalpha", "mathematical bold kappa symbol") -addSymbol(0x1D6DF, "mbfphi", "mathalpha", "mathematical bold phi symbol") -addSymbol(0x1D6E0, "mbfvarrho", "mathalpha", "mathematical bold rho symbol") -addSymbol(0x1D6E1, "mbfvarpi", "mathalpha", "mathematical bold pi symbol") -addSymbol(0x1D6E2, "mitAlpha", "mathalpha", "mathematical italic capital alpha") -addSymbol(0x1D6E3, "mitBeta", "mathalpha", "mathematical italic capital beta") -addSymbol(0x1D6E4, "mitGamma", "mathalpha", "mathematical italic capital gamma") -addSymbol(0x1D6E5, "mitDelta", "mathalpha", "mathematical italic capital delta") -addSymbol(0x1D6E6, "mitEpsilon", "mathalpha", "mathematical italic capital epsilon") -addSymbol(0x1D6E7, "mitZeta", "mathalpha", "mathematical italic capital zeta") -addSymbol(0x1D6E8, "mitEta", "mathalpha", "mathematical italic capital eta") -addSymbol(0x1D6E9, "mitTheta", "mathalpha", "mathematical italic capital theta") -addSymbol(0x1D6EA, "mitIota", "mathalpha", "mathematical italic capital iota") -addSymbol(0x1D6EB, "mitKappa", "mathalpha", "mathematical italic capital kappa") -addSymbol(0x1D6EC, "mitLambda", "mathalpha", "mathematical italic capital lambda") -addSymbol(0x1D6ED, "mitMu", "mathalpha", "mathematical italic capital mu") -addSymbol(0x1D6EE, "mitNu", "mathalpha", "mathematical italic capital nu") -addSymbol(0x1D6EF, "mitXi", "mathalpha", "mathematical italic capital xi") -addSymbol(0x1D6F0, "mitOmicron", "mathalpha", "mathematical italic capital omicron") -addSymbol(0x1D6F1, "mitPi", "mathalpha", "mathematical italic capital pi") -addSymbol(0x1D6F2, "mitRho", "mathalpha", "mathematical italic capital rho") -addSymbol(0x1D6F3, "mitvarTheta", "mathalpha", "mathematical italic capital theta symbol") -addSymbol(0x1D6F4, "mitSigma", "mathalpha", "mathematical italic capital sigma") -addSymbol(0x1D6F5, "mitTau", "mathalpha", "mathematical italic capital tau") -addSymbol(0x1D6F6, "mitUpsilon", "mathalpha", "mathematical italic capital upsilon") -addSymbol(0x1D6F7, "mitPhi", "mathalpha", "mathematical italic capital phi") -addSymbol(0x1D6F8, "mitChi", "mathalpha", "mathematical italic capital chi") -addSymbol(0x1D6F9, "mitPsi", "mathalpha", "mathematical italic capital psi") -addSymbol(0x1D6FA, "mitOmega", "mathalpha", "mathematical italic capital omega") -addSymbol(0x1D6FB, "mitnabla", "mathalpha", "mathematical italic nabla") -addSymbol(0x1D6FC, "mitalpha", "mathalpha", "mathematical italic small alpha") -addSymbol(0x1D6FD, "mitbeta", "mathalpha", "mathematical italic small beta") -addSymbol(0x1D6FE, "mitgamma", "mathalpha", "mathematical italic small gamma") -addSymbol(0x1D6FF, "mitdelta", "mathalpha", "mathematical italic small delta") -addSymbol(0x1D700, "mitvarepsilon", "mathalpha", "mathematical italic small varepsilon") -addSymbol(0x1D701, "mitzeta", "mathalpha", "mathematical italic small zeta") -addSymbol(0x1D702, "miteta", "mathalpha", "mathematical italic small eta") -addSymbol(0x1D703, "mittheta", "mathalpha", "mathematical italic small theta") -addSymbol(0x1D704, "mitiota", "mathalpha", "mathematical italic small iota") -addSymbol(0x1D705, "mitkappa", "mathalpha", "mathematical italic small kappa") -addSymbol(0x1D706, "mitlambda", "mathalpha", "mathematical italic small lambda") -addSymbol(0x1D707, "mitmu", "mathalpha", "mathematical italic small mu") -addSymbol(0x1D708, "mitnu", "mathalpha", "mathematical italic small nu") -addSymbol(0x1D709, "mitxi", "mathalpha", "mathematical italic small xi") -addSymbol(0x1D70A, "mitomicron", "mathalpha", "mathematical italic small omicron") -addSymbol(0x1D70B, "mitpi", "mathalpha", "mathematical italic small pi") -addSymbol(0x1D70C, "mitrho", "mathalpha", "mathematical italic small rho") -addSymbol(0x1D70D, "mitvarsigma", "mathalpha", "mathematical italic small final sigma") -addSymbol(0x1D70E, "mitsigma", "mathalpha", "mathematical italic small sigma") -addSymbol(0x1D70F, "mittau", "mathalpha", "mathematical italic small tau") -addSymbol(0x1D710, "mitupsilon", "mathalpha", "mathematical italic small upsilon") -addSymbol(0x1D711, "mitvarphi", "mathalpha", "mathematical italic small phi") -addSymbol(0x1D712, "mitchi", "mathalpha", "mathematical italic small chi") -addSymbol(0x1D713, "mitpsi", "mathalpha", "mathematical italic small psi") -addSymbol(0x1D714, "mitomega", "mathalpha", "mathematical italic small omega") -addSymbol(0x1D715, "mitpartial", "mathalpha", "mathematical italic partial differential") -addSymbol(0x1D716, "mitepsilon", "mathalpha", "mathematical italic varepsilon symbol") -addSymbol(0x1D717, "mitvartheta", "mathalpha", "mathematical italic theta symbol") -addSymbol(0x1D718, "mitvarkappa", "mathalpha", "mathematical italic kappa symbol") -addSymbol(0x1D719, "mitphi", "mathalpha", "mathematical italic phi symbol") -addSymbol(0x1D71A, "mitvarrho", "mathalpha", "mathematical italic rho symbol") -addSymbol(0x1D71B, "mitvarpi", "mathalpha", "mathematical italic pi symbol") -addSymbol(0x1D71C, "mbfitAlpha", "mathalpha", "mathematical bold italic capital alpha") -addSymbol(0x1D71D, "mbfitBeta", "mathalpha", "mathematical bold italic capital beta") -addSymbol(0x1D71E, "mbfitGamma", "mathalpha", "mathematical bold italic capital gamma") -addSymbol(0x1D71F, "mbfitDelta", "mathalpha", "mathematical bold italic capital delta") -addSymbol(0x1D720, "mbfitEpsilon", "mathalpha", "mathematical bold italic capital epsilon") -addSymbol(0x1D721, "mbfitZeta", "mathalpha", "mathematical bold italic capital zeta") -addSymbol(0x1D722, "mbfitEta", "mathalpha", "mathematical bold italic capital eta") -addSymbol(0x1D723, "mbfitTheta", "mathalpha", "mathematical bold italic capital theta") -addSymbol(0x1D724, "mbfitIota", "mathalpha", "mathematical bold italic capital iota") -addSymbol(0x1D725, "mbfitKappa", "mathalpha", "mathematical bold italic capital kappa") -addSymbol(0x1D726, "mbfitLambda", "mathalpha", "mathematical bold italic capital lambda") -addSymbol(0x1D727, "mbfitMu", "mathalpha", "mathematical bold italic capital mu") -addSymbol(0x1D728, "mbfitNu", "mathalpha", "mathematical bold italic capital nu") -addSymbol(0x1D729, "mbfitXi", "mathalpha", "mathematical bold italic capital xi") -addSymbol(0x1D72A, "mbfitOmicron", "mathalpha", "mathematical bold italic capital omicron") -addSymbol(0x1D72B, "mbfitPi", "mathalpha", "mathematical bold italic capital pi") -addSymbol(0x1D72C, "mbfitRho", "mathalpha", "mathematical bold italic capital rho") -addSymbol(0x1D72D, "mbfitvarTheta", "mathalpha", "mathematical bold italic capital theta symbol") -addSymbol(0x1D72E, "mbfitSigma", "mathalpha", "mathematical bold italic capital sigma") -addSymbol(0x1D72F, "mbfitTau", "mathalpha", "mathematical bold italic capital tau") -addSymbol(0x1D730, "mbfitUpsilon", "mathalpha", "mathematical bold italic capital upsilon") -addSymbol(0x1D731, "mbfitPhi", "mathalpha", "mathematical bold italic capital phi") -addSymbol(0x1D732, "mbfitChi", "mathalpha", "mathematical bold italic capital chi") -addSymbol(0x1D733, "mbfitPsi", "mathalpha", "mathematical bold italic capital psi") -addSymbol(0x1D734, "mbfitOmega", "mathalpha", "mathematical bold italic capital omega") -addSymbol(0x1D735, "mbfitnabla", "mathalpha", "mathematical bold italic nabla") -addSymbol(0x1D736, "mbfitalpha", "mathalpha", "mathematical bold italic small alpha") -addSymbol(0x1D737, "mbfitbeta", "mathalpha", "mathematical bold italic small beta") -addSymbol(0x1D738, "mbfitgamma", "mathalpha", "mathematical bold italic small gamma") -addSymbol(0x1D739, "mbfitdelta", "mathalpha", "mathematical bold italic small delta") -addSymbol(0x1D73A, "mbfitvarepsilon", "mathalpha", "mathematical bold italic small varepsilon") -addSymbol(0x1D73B, "mbfitzeta", "mathalpha", "mathematical bold italic small zeta") -addSymbol(0x1D73C, "mbfiteta", "mathalpha", "mathematical bold italic small eta") -addSymbol(0x1D73D, "mbfittheta", "mathalpha", "mathematical bold italic small theta") -addSymbol(0x1D73E, "mbfitiota", "mathalpha", "mathematical bold italic small iota") -addSymbol(0x1D73F, "mbfitkappa", "mathalpha", "mathematical bold italic small kappa") -addSymbol(0x1D740, "mbfitlambda", "mathalpha", "mathematical bold italic small lambda") -addSymbol(0x1D741, "mbfitmu", "mathalpha", "mathematical bold italic small mu") -addSymbol(0x1D742, "mbfitnu", "mathalpha", "mathematical bold italic small nu") -addSymbol(0x1D743, "mbfitxi", "mathalpha", "mathematical bold italic small xi") -addSymbol(0x1D744, "mbfitomicron", "mathalpha", "mathematical bold italic small omicron") -addSymbol(0x1D745, "mbfitpi", "mathalpha", "mathematical bold italic small pi") -addSymbol(0x1D746, "mbfitrho", "mathalpha", "mathematical bold italic small rho") -addSymbol(0x1D747, "mbfitvarsigma", "mathalpha", "mathematical bold italic small final sigma") -addSymbol(0x1D748, "mbfitsigma", "mathalpha", "mathematical bold italic small sigma") -addSymbol(0x1D749, "mbfittau", "mathalpha", "mathematical bold italic small tau") -addSymbol(0x1D74A, "mbfitupsilon", "mathalpha", "mathematical bold italic small upsilon") -addSymbol(0x1D74B, "mbfitvarphi", "mathalpha", "mathematical bold italic small phi") -addSymbol(0x1D74C, "mbfitchi", "mathalpha", "mathematical bold italic small chi") -addSymbol(0x1D74D, "mbfitpsi", "mathalpha", "mathematical bold italic small psi") -addSymbol(0x1D74E, "mbfitomega", "mathalpha", "mathematical bold italic small omega") -addSymbol(0x1D74F, "mbfitpartial", "mathalpha", "mathematical bold italic partial differential") -addSymbol(0x1D750, "mbfitepsilon", "mathalpha", "mathematical bold italic varepsilon symbol") -addSymbol(0x1D751, "mbfitvartheta", "mathalpha", "mathematical bold italic theta symbol") -addSymbol(0x1D752, "mbfitvarkappa", "mathalpha", "mathematical bold italic kappa symbol") -addSymbol(0x1D753, "mbfitphi", "mathalpha", "mathematical bold italic phi symbol") -addSymbol(0x1D754, "mbfitvarrho", "mathalpha", "mathematical bold italic rho symbol") -addSymbol(0x1D755, "mbfitvarpi", "mathalpha", "mathematical bold italic pi symbol") -addSymbol(0x1D756, "mbfsansAlpha", "mathalpha", "mathematical sans-serif bold capital alpha") -addSymbol(0x1D757, "mbfsansBeta", "mathalpha", "mathematical sans-serif bold capital beta") -addSymbol(0x1D758, "mbfsansGamma", "mathalpha", "mathematical sans-serif bold capital gamma") -addSymbol(0x1D759, "mbfsansDelta", "mathalpha", "mathematical sans-serif bold capital delta") -addSymbol(0x1D75A, "mbfsansEpsilon", "mathalpha", "mathematical sans-serif bold capital epsilon") -addSymbol(0x1D75B, "mbfsansZeta", "mathalpha", "mathematical sans-serif bold capital zeta") -addSymbol(0x1D75C, "mbfsansEta", "mathalpha", "mathematical sans-serif bold capital eta") -addSymbol(0x1D75D, "mbfsansTheta", "mathalpha", "mathematical sans-serif bold capital theta") -addSymbol(0x1D75E, "mbfsansIota", "mathalpha", "mathematical sans-serif bold capital iota") -addSymbol(0x1D75F, "mbfsansKappa", "mathalpha", "mathematical sans-serif bold capital kappa") -addSymbol(0x1D760, "mbfsansLambda", "mathalpha", "mathematical sans-serif bold capital lambda") -addSymbol(0x1D761, "mbfsansMu", "mathalpha", "mathematical sans-serif bold capital mu") -addSymbol(0x1D762, "mbfsansNu", "mathalpha", "mathematical sans-serif bold capital nu") -addSymbol(0x1D763, "mbfsansXi", "mathalpha", "mathematical sans-serif bold capital xi") -addSymbol(0x1D764, "mbfsansOmicron", "mathalpha", "mathematical sans-serif bold capital omicron") -addSymbol(0x1D765, "mbfsansPi", "mathalpha", "mathematical sans-serif bold capital pi") -addSymbol(0x1D766, "mbfsansRho", "mathalpha", "mathematical sans-serif bold capital rho") -addSymbol(0x1D767, "mbfsansvarTheta", "mathalpha", "mathematical sans-serif bold capital theta symbol") -addSymbol(0x1D768, "mbfsansSigma", "mathalpha", "mathematical sans-serif bold capital sigma") -addSymbol(0x1D769, "mbfsansTau", "mathalpha", "mathematical sans-serif bold capital tau") -addSymbol(0x1D76A, "mbfsansUpsilon", "mathalpha", "mathematical sans-serif bold capital upsilon") -addSymbol(0x1D76B, "mbfsansPhi", "mathalpha", "mathematical sans-serif bold capital phi") -addSymbol(0x1D76C, "mbfsansChi", "mathalpha", "mathematical sans-serif bold capital chi") -addSymbol(0x1D76D, "mbfsansPsi", "mathalpha", "mathematical sans-serif bold capital psi") -addSymbol(0x1D76E, "mbfsansOmega", "mathalpha", "mathematical sans-serif bold capital omega") -addSymbol(0x1D76F, "mbfsansnabla", "mathalpha", "mathematical sans-serif bold nabla") -addSymbol(0x1D770, "mbfsansalpha", "mathalpha", "mathematical sans-serif bold small alpha") -addSymbol(0x1D771, "mbfsansbeta", "mathalpha", "mathematical sans-serif bold small beta") -addSymbol(0x1D772, "mbfsansgamma", "mathalpha", "mathematical sans-serif bold small gamma") -addSymbol(0x1D773, "mbfsansdelta", "mathalpha", "mathematical sans-serif bold small delta") -addSymbol(0x1D774, "mbfsansvarepsilon", "mathalpha", "mathematical sans-serif bold small varepsilon") -addSymbol(0x1D775, "mbfsanszeta", "mathalpha", "mathematical sans-serif bold small zeta") -addSymbol(0x1D776, "mbfsanseta", "mathalpha", "mathematical sans-serif bold small eta") -addSymbol(0x1D777, "mbfsanstheta", "mathalpha", "mathematical sans-serif bold small theta") -addSymbol(0x1D778, "mbfsansiota", "mathalpha", "mathematical sans-serif bold small iota") -addSymbol(0x1D779, "mbfsanskappa", "mathalpha", "mathematical sans-serif bold small kappa") -addSymbol(0x1D77A, "mbfsanslambda", "mathalpha", "mathematical sans-serif bold small lambda") -addSymbol(0x1D77B, "mbfsansmu", "mathalpha", "mathematical sans-serif bold small mu") -addSymbol(0x1D77C, "mbfsansnu", "mathalpha", "mathematical sans-serif bold small nu") -addSymbol(0x1D77D, "mbfsansxi", "mathalpha", "mathematical sans-serif bold small xi") -addSymbol(0x1D77E, "mbfsansomicron", "mathalpha", "mathematical sans-serif bold small omicron") -addSymbol(0x1D77F, "mbfsanspi", "mathalpha", "mathematical sans-serif bold small pi") -addSymbol(0x1D780, "mbfsansrho", "mathalpha", "mathematical sans-serif bold small rho") -addSymbol(0x1D781, "mbfsansvarsigma", "mathalpha", "mathematical sans-serif bold small final sigma") -addSymbol(0x1D782, "mbfsanssigma", "mathalpha", "mathematical sans-serif bold small sigma") -addSymbol(0x1D783, "mbfsanstau", "mathalpha", "mathematical sans-serif bold small tau") -addSymbol(0x1D784, "mbfsansupsilon", "mathalpha", "mathematical sans-serif bold small upsilon") -addSymbol(0x1D785, "mbfsansvarphi", "mathalpha", "mathematical sans-serif bold small phi") -addSymbol(0x1D786, "mbfsanschi", "mathalpha", "mathematical sans-serif bold small chi") -addSymbol(0x1D787, "mbfsanspsi", "mathalpha", "mathematical sans-serif bold small psi") -addSymbol(0x1D788, "mbfsansomega", "mathalpha", "mathematical sans-serif bold small omega") -addSymbol(0x1D789, "mbfsanspartial", "mathalpha", "mathematical sans-serif bold partial differential") -addSymbol(0x1D78A, "mbfsansepsilon", "mathalpha", "mathematical sans-serif bold varepsilon symbol") -addSymbol(0x1D78B, "mbfsansvartheta", "mathalpha", "mathematical sans-serif bold theta symbol") -addSymbol(0x1D78C, "mbfsansvarkappa", "mathalpha", "mathematical sans-serif bold kappa symbol") -addSymbol(0x1D78D, "mbfsansphi", "mathalpha", "mathematical sans-serif bold phi symbol") -addSymbol(0x1D78E, "mbfsansvarrho", "mathalpha", "mathematical sans-serif bold rho symbol") -addSymbol(0x1D78F, "mbfsansvarpi", "mathalpha", "mathematical sans-serif bold pi symbol") -addSymbol(0x1D790, "mbfitsansAlpha", "mathalpha", "mathematical sans-serif bold italic capital alpha") -addSymbol(0x1D791, "mbfitsansBeta", "mathalpha", "mathematical sans-serif bold italic capital beta") -addSymbol(0x1D792, "mbfitsansGamma", "mathalpha", "mathematical sans-serif bold italic capital gamma") -addSymbol(0x1D793, "mbfitsansDelta", "mathalpha", "mathematical sans-serif bold italic capital delta") -addSymbol(0x1D794, "mbfitsansEpsilon", "mathalpha", "mathematical sans-serif bold italic capital epsilon") -addSymbol(0x1D795, "mbfitsansZeta", "mathalpha", "mathematical sans-serif bold italic capital zeta") -addSymbol(0x1D796, "mbfitsansEta", "mathalpha", "mathematical sans-serif bold italic capital eta") -addSymbol(0x1D797, "mbfitsansTheta", "mathalpha", "mathematical sans-serif bold italic capital theta") -addSymbol(0x1D798, "mbfitsansIota", "mathalpha", "mathematical sans-serif bold italic capital iota") -addSymbol(0x1D799, "mbfitsansKappa", "mathalpha", "mathematical sans-serif bold italic capital kappa") -addSymbol(0x1D79A, "mbfitsansLambda", "mathalpha", "mathematical sans-serif bold italic capital lambda") -addSymbol(0x1D79B, "mbfitsansMu", "mathalpha", "mathematical sans-serif bold italic capital mu") -addSymbol(0x1D79C, "mbfitsansNu", "mathalpha", "mathematical sans-serif bold italic capital nu") -addSymbol(0x1D79D, "mbfitsansXi", "mathalpha", "mathematical sans-serif bold italic capital xi") -addSymbol(0x1D79E, "mbfitsansOmicron", "mathalpha", "mathematical sans-serif bold italic capital omicron") -addSymbol(0x1D79F, "mbfitsansPi", "mathalpha", "mathematical sans-serif bold italic capital pi") -addSymbol(0x1D7A0, "mbfitsansRho", "mathalpha", "mathematical sans-serif bold italic capital rho") -addSymbol(0x1D7A1, "mbfitsansvarTheta", "mathalpha", "mathematical sans-serif bold italic capital theta symbol") -addSymbol(0x1D7A2, "mbfitsansSigma", "mathalpha", "mathematical sans-serif bold italic capital sigma") -addSymbol(0x1D7A3, "mbfitsansTau", "mathalpha", "mathematical sans-serif bold italic capital tau") -addSymbol(0x1D7A4, "mbfitsansUpsilon", "mathalpha", "mathematical sans-serif bold italic capital upsilon") -addSymbol(0x1D7A5, "mbfitsansPhi", "mathalpha", "mathematical sans-serif bold italic capital phi") -addSymbol(0x1D7A6, "mbfitsansChi", "mathalpha", "mathematical sans-serif bold italic capital chi") -addSymbol(0x1D7A7, "mbfitsansPsi", "mathalpha", "mathematical sans-serif bold italic capital psi") -addSymbol(0x1D7A8, "mbfitsansOmega", "mathalpha", "mathematical sans-serif bold italic capital omega") -addSymbol(0x1D7A9, "mbfitsansnabla", "mathalpha", "mathematical sans-serif bold italic nabla") -addSymbol(0x1D7AA, "mbfitsansalpha", "mathalpha", "mathematical sans-serif bold italic small alpha") -addSymbol(0x1D7AB, "mbfitsansbeta", "mathalpha", "mathematical sans-serif bold italic small beta") -addSymbol(0x1D7AC, "mbfitsansgamma", "mathalpha", "mathematical sans-serif bold italic small gamma") -addSymbol(0x1D7AD, "mbfitsansdelta", "mathalpha", "mathematical sans-serif bold italic small delta") -addSymbol(0x1D7AE, "mbfitsansvarepsilon", "mathalpha", "mathematical sans-serif bold italic small varepsilon") -addSymbol(0x1D7AF, "mbfitsanszeta", "mathalpha", "mathematical sans-serif bold italic small zeta") -addSymbol(0x1D7B0, "mbfitsanseta", "mathalpha", "mathematical sans-serif bold italic small eta") -addSymbol(0x1D7B1, "mbfitsanstheta", "mathalpha", "mathematical sans-serif bold italic small theta") -addSymbol(0x1D7B2, "mbfitsansiota", "mathalpha", "mathematical sans-serif bold italic small iota") -addSymbol(0x1D7B3, "mbfitsanskappa", "mathalpha", "mathematical sans-serif bold italic small kappa") -addSymbol(0x1D7B4, "mbfitsanslambda", "mathalpha", "mathematical sans-serif bold italic small lambda") -addSymbol(0x1D7B5, "mbfitsansmu", "mathalpha", "mathematical sans-serif bold italic small mu") -addSymbol(0x1D7B6, "mbfitsansnu", "mathalpha", "mathematical sans-serif bold italic small nu") -addSymbol(0x1D7B7, "mbfitsansxi", "mathalpha", "mathematical sans-serif bold italic small xi") -addSymbol(0x1D7B8, "mbfitsansomicron", "mathalpha", "mathematical sans-serif bold italic small omicron") -addSymbol(0x1D7B9, "mbfitsanspi", "mathalpha", "mathematical sans-serif bold italic small pi") -addSymbol(0x1D7BA, "mbfitsansrho", "mathalpha", "mathematical sans-serif bold italic small rho") -addSymbol(0x1D7BB, "mbfitsansvarsigma", "mathalpha", "mathematical sans-serif bold italic small final sigma") -addSymbol(0x1D7BC, "mbfitsanssigma", "mathalpha", "mathematical sans-serif bold italic small sigma") -addSymbol(0x1D7BD, "mbfitsanstau", "mathalpha", "mathematical sans-serif bold italic small tau") -addSymbol(0x1D7BE, "mbfitsansupsilon", "mathalpha", "mathematical sans-serif bold italic small upsilon") -addSymbol(0x1D7BF, "mbfitsansvarphi", "mathalpha", "mathematical sans-serif bold italic small phi") -addSymbol(0x1D7C0, "mbfitsanschi", "mathalpha", "mathematical sans-serif bold italic small chi") -addSymbol(0x1D7C1, "mbfitsanspsi", "mathalpha", "mathematical sans-serif bold italic small psi") -addSymbol(0x1D7C2, "mbfitsansomega", "mathalpha", "mathematical sans-serif bold italic small omega") -addSymbol(0x1D7C3, "mbfitsanspartial", "mathalpha", "mathematical sans-serif bold italic partial differential") -addSymbol(0x1D7C4, "mbfitsansepsilon", "mathalpha", "mathematical sans-serif bold italic varepsilon symbol") -addSymbol(0x1D7C5, "mbfitsansvartheta", "mathalpha", "mathematical sans-serif bold italic theta symbol") -addSymbol(0x1D7C6, "mbfitsansvarkappa", "mathalpha", "mathematical sans-serif bold italic kappa symbol") -addSymbol(0x1D7C7, "mbfitsansphi", "mathalpha", "mathematical sans-serif bold italic phi symbol") -addSymbol(0x1D7C8, "mbfitsansvarrho", "mathalpha", "mathematical sans-serif bold italic rho symbol") -addSymbol(0x1D7C9, "mbfitsansvarpi", "mathalpha", "mathematical sans-serif bold italic pi symbol") -addSymbol(0x1D7CA, "mbfDigamma", "mathalpha", "mathematical bold capital digamma") -addSymbol(0x1D7CB, "mbfdigamma", "mathalpha", "mathematical bold small digamma") -addSymbol(0x1D7CE, "mbfzero", "mathord", "mathematical bold digit 0") -addSymbol(0x1D7CF, "mbfone", "mathord", "mathematical bold digit 1") -addSymbol(0x1D7D0, "mbftwo", "mathord", "mathematical bold digit 2") -addSymbol(0x1D7D1, "mbfthree", "mathord", "mathematical bold digit 3") -addSymbol(0x1D7D2, "mbffour", "mathord", "mathematical bold digit 4") -addSymbol(0x1D7D3, "mbffive", "mathord", "mathematical bold digit 5") -addSymbol(0x1D7D4, "mbfsix", "mathord", "mathematical bold digit 6") -addSymbol(0x1D7D5, "mbfseven", "mathord", "mathematical bold digit 7") -addSymbol(0x1D7D6, "mbfeight", "mathord", "mathematical bold digit 8") -addSymbol(0x1D7D7, "mbfnine", "mathord", "mathematical bold digit 9") -addSymbol(0x1D7D8, "Bbbzero", "mathord", "mathematical double-struck digit 0") -addSymbol(0x1D7D9, "Bbbone", "mathord", "mathematical double-struck digit 1") -addSymbol(0x1D7DA, "Bbbtwo", "mathord", "mathematical double-struck digit 2") -addSymbol(0x1D7DB, "Bbbthree", "mathord", "mathematical double-struck digit 3") -addSymbol(0x1D7DC, "Bbbfour", "mathord", "mathematical double-struck digit 4") -addSymbol(0x1D7DD, "Bbbfive", "mathord", "mathematical double-struck digit 5") -addSymbol(0x1D7DE, "Bbbsix", "mathord", "mathematical double-struck digit 6") -addSymbol(0x1D7DF, "Bbbseven", "mathord", "mathematical double-struck digit 7") -addSymbol(0x1D7E0, "Bbbeight", "mathord", "mathematical double-struck digit 8") -addSymbol(0x1D7E1, "Bbbnine", "mathord", "mathematical double-struck digit 9") -addSymbol(0x1D7E2, "msanszero", "mathord", "mathematical sans-serif digit 0") -addSymbol(0x1D7E3, "msansone", "mathord", "mathematical sans-serif digit 1") -addSymbol(0x1D7E4, "msanstwo", "mathord", "mathematical sans-serif digit 2") -addSymbol(0x1D7E5, "msansthree", "mathord", "mathematical sans-serif digit 3") -addSymbol(0x1D7E6, "msansfour", "mathord", "mathematical sans-serif digit 4") -addSymbol(0x1D7E7, "msansfive", "mathord", "mathematical sans-serif digit 5") -addSymbol(0x1D7E8, "msanssix", "mathord", "mathematical sans-serif digit 6") -addSymbol(0x1D7E9, "msansseven", "mathord", "mathematical sans-serif digit 7") -addSymbol(0x1D7EA, "msanseight", "mathord", "mathematical sans-serif digit 8") -addSymbol(0x1D7EB, "msansnine", "mathord", "mathematical sans-serif digit 9") -addSymbol(0x1D7EC, "mbfsanszero", "mathord", "mathematical sans-serif bold digit 0") -addSymbol(0x1D7ED, "mbfsansone", "mathord", "mathematical sans-serif bold digit 1") -addSymbol(0x1D7EE, "mbfsanstwo", "mathord", "mathematical sans-serif bold digit 2") -addSymbol(0x1D7EF, "mbfsansthree", "mathord", "mathematical sans-serif bold digit 3") -addSymbol(0x1D7F0, "mbfsansfour", "mathord", "mathematical sans-serif bold digit 4") -addSymbol(0x1D7F1, "mbfsansfive", "mathord", "mathematical sans-serif bold digit 5") -addSymbol(0x1D7F2, "mbfsanssix", "mathord", "mathematical sans-serif bold digit 6") -addSymbol(0x1D7F3, "mbfsansseven", "mathord", "mathematical sans-serif bold digit 7") -addSymbol(0x1D7F4, "mbfsanseight", "mathord", "mathematical sans-serif bold digit 8") -addSymbol(0x1D7F5, "mbfsansnine", "mathord", "mathematical sans-serif bold digit 9") -addSymbol(0x1D7F6, "mttzero", "mathord", "mathematical monospace digit 0") -addSymbol(0x1D7F7, "mttone", "mathord", "mathematical monospace digit 1") -addSymbol(0x1D7F8, "mtttwo", "mathord", "mathematical monospace digit 2") -addSymbol(0x1D7F9, "mttthree", "mathord", "mathematical monospace digit 3") -addSymbol(0x1D7FA, "mttfour", "mathord", "mathematical monospace digit 4") -addSymbol(0x1D7FB, "mttfive", "mathord", "mathematical monospace digit 5") -addSymbol(0x1D7FC, "mttsix", "mathord", "mathematical monospace digit 6") -addSymbol(0x1D7FD, "mttseven", "mathord", "mathematical monospace digit 7") -addSymbol(0x1D7FE, "mtteight", "mathord", "mathematical monospace digit 8") -addSymbol(0x1D7FF, "mttnine", "mathord", "mathematical monospace digit 9") -addSymbol(0x1EEF0, "arabicmaj", "mathop", "arabic mathematical operator meem with hah with tatweel") -addSymbol(0x1EEF1, "arabichad", "mathop", "arabic mathematical operator hah with dal") +-- Alias from unicode-math/um-code-epilogue.dtx +-- (Symbols with multiple names) +addAlias("le", "leq") +addAlias("ge", "geq") +addAlias("neq", "ne") +addAlias("triangle", "bigtriangleup") +addAlias("bigcirc", "mdlgwhtcircle") +addAlias("circ", "vysmwhtcircle") +addAlias("bullet", "smblkcircle") +addAlias("yen", "mathyen") +addAlias("sterling", "mathsterling") +addAlias("diamond", "smwhtdiamond") +addAlias("emptyset", "varnothing") +addAlias("hbar", "hslash") +addAlias("land", "wedge") +addAlias("lor", "vee") +addAlias("owns", "ni") +addAlias("gets", "leftarrow") +addAlias("mathring", "ocirc") +addAlias("lnot", "neg") --- Operators -symbols["in"] = "∈" -symbols.sum = "∑" -symbols.infty = "∞" -symbols.dots = "⋯" -symbols.implies = "⟹" +-- Additional aliases from LaTeX / AMS +-- (Mix from unicode-math and AMS names in unicode.xml +addAlias("colon", "mathcolon") +addAlias("eth", "matheth") +addAlias("AA", "Angstrom") +addAlias("bbsum", "Bbbsum") +addAlias("blacksquare", "mdlgblksquare") +addAlias("square", "mdlgwhtsquare") +addAlias("lozenge", "mdlgwhtlozenge") +addAlias("circlearrowleft", "acwcirclearrow") +addAlias("circlearrowright", "cwcirclearrow") +addAlias("blacklozenge", "mdlgblklozenge") --- Greek letters +-- (Original-TeX) TeX-like greek letters symbols.alpha = "α" symbols.beta = "β" symbols.gamma = "γ" @@ -2617,48 +116,16 @@ symbols.Phi = "Φ" symbols.Chi = "Χ" symbols.Psi = "Ψ" symbols.Omega = "Ω" +-- Other TeX-like greek symbols +symbols.digamma = "ϝ" -- Supported by TeMML, MathJax, and LaTeX's unicode-math +symbols.Digamma = "Ϝ" -- Supported by LaTeX's unicode-math -symbolDefaults["+"] = { atom = atomType.binaryOperator } -symbolDefaults["−"] = { atom = atomType.binaryOperator } -symbolDefaults["<"] = { atom = atomType.relationalOperator } -symbolDefaults["⩽"] = { atom = atomType.relationalOperator } -symbolDefaults[">"] = { atom = atomType.relationalOperator } -symbolDefaults["⩾"] = { atom = atomType.relationalOperator } -symbolDefaults["="] = { atom = atomType.relationalOperator } -symbolDefaults["≠"] = { atom = atomType.relationalOperator } -symbolDefaults["∈"] = { atom = atomType.relationalOperator } -symbolDefaults["⊆"] = { atom = atomType.relationalOperator } -symbolDefaults["∑"] = { atom = atomType.bigOperator, largeop = true, movablelimits = true } -symbolDefaults["∏"] = { atom = atomType.bigOperator, largeop = true, movablelimits = true } -symbolDefaults["⋀"] = { atom = atomType.bigOperator, largeop = true, movablelimits = true } -symbolDefaults["⋁"] = { atom = atomType.bigOperator, largeop = true, movablelimits = true } -symbolDefaults["⋂"] = { atom = atomType.bigOperator, largeop = true, movablelimits = true } -symbolDefaults["⋃"] = { atom = atomType.bigOperator, largeop = true, movablelimits = true } -symbolDefaults["⨅"] = { atom = atomType.bigOperator, largeop = true, movablelimits = true } -symbolDefaults["⨆"] = { atom = atomType.bigOperator, largeop = true, movablelimits = true } -symbolDefaults["∫"] = { largeop = true } -symbolDefaults["∬"] = { largeop = true } -symbolDefaults["∭"] = { largeop = true } -symbolDefaults["∮"] = { largeop = true } -symbolDefaults["∯"] = { largeop = true } -symbolDefaults["∰"] = { largeop = true } -symbolDefaults[","] = { atom = atomType.punctuationSymbol } -symbolDefaults["⟹"] = { atom = atomType.relationalOperator } -symbolDefaults["/"] = { atom = atomType.binaryOperator } -symbolDefaults[":"] = { atom = atomType.relationalOperator } -symbolDefaults["⟶"] = { atom = atomType.relationalOperator } -symbolDefaults["|"] = { atom = atomType.relationalOperator } -symbolDefaults["("] = { atom = atomType.openingSymbol, stretchy = true } -symbolDefaults[")"] = { atom = atomType.closeSymbol, stretchy = true } -symbolDefaults["["] = { atom = atomType.openingSymbol, stretchy = true } -symbolDefaults["]"] = { atom = atomType.closeSymbol, stretchy = true } -symbolDefaults["{"] = { atom = atomType.openingSymbol, stretchy = true } -symbolDefaults["}"] = { atom = atomType.closeSymbol, stretchy = true } -symbolDefaults["mod"] = { atom = atomType.binaryOperator } -symbolDefaults["%"] = { atom = atomType.binaryOperator } +-- In xml-entities's unicode.xml, the minus-hyphen (U+002D) has different +-- properties from to the minus sign (U+2212). +-- In our TeX-like syntax, they should however lead to the same symbol. +operatorDict["-"] = operatorDict["−"] return { symbols = symbols, - atomType = atomType, - symbolDefaults = symbolDefaults, + operatorDict = operatorDict, } From 81a1be52604efbb162c18bf45bcc1473e42c1f9a Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sat, 16 Nov 2024 02:37:06 +0100 Subject: [PATCH 02/14] fix(math): Spacing rules must distinguish binary and unary operators --- packages/math/base-elements.lua | 87 +++++++++++++++++++++++++++++++-- 1 file changed, 84 insertions(+), 3 deletions(-) diff --git a/packages/math/base-elements.lua b/packages/math/base-elements.lua index d09a3b804..9544f199b 100644 --- a/packages/math/base-elements.lua +++ b/packages/math/base-elements.lua @@ -297,41 +297,84 @@ local spaceKind = { thick = "thick", } --- Indexed by left atom +-- Spacing table indexed by left atom, as in TeXbook p. 170. +-- Notes +-- - the "notScript" key is used to prevent spaces in script and scriptscript modes +-- (= parenthesized non-zero value in The TeXbook's table). +-- - Cases commented are as expected, just listed for clarity and completeness. +-- (= no space i.e. 0 in in The TeXbook's table) +-- - Cases marked as impossible are not expected to happen (= stars in the TeXbook): +-- "... such cases never arise, because binary atoms must be preceded and followed +-- by atoms compatible with the nature of binary operations." +-- This must be understood with the context explained onp. 133: +-- "... binary operations are treated as ordinary symbols if they don’t occur +-- between two quantities that they can operate on." (a rule which notably helps +-- addressing binary atoms used as unary operators.) local spacingRules = { [atomType.ordinary] = { + -- [atomType.ordinary] = nil [atomType.bigOperator] = { spaceKind.thin }, [atomType.binaryOperator] = { spaceKind.med, notScript = true }, [atomType.relationalOperator] = { spaceKind.thick, notScript = true }, + -- [atomType.openingSymbol] = nil + -- [atomType.closeSymbol] = nil + -- [atomType.punctuationSymbol] = nil [atomType.inner] = { spaceKind.thin, notScript = true }, }, [atomType.bigOperator] = { [atomType.ordinary] = { spaceKind.thin }, [atomType.bigOperator] = { spaceKind.thin }, + [atomType.binaryOperator] = { impossible = true }, [atomType.relationalOperator] = { spaceKind.thick, notScript = true }, + -- [atomType.openingSymbol] = nil + -- [atomType.closeSymbol] = nil + -- [atomType.punctuationSymbol] = nil [atomType.inner] = { spaceKind.thin, notScript = true }, }, [atomType.binaryOperator] = { [atomType.ordinary] = { spaceKind.med, notScript = true }, [atomType.bigOperator] = { spaceKind.med, notScript = true }, + [atomType.binaryOperator] = { impossible = true }, + [atomType.relationalOperator] = { impossible = true }, [atomType.openingSymbol] = { spaceKind.med, notScript = true }, + [atomType.closeSymbol] = { impossible = true }, + [atomType.punctuationSymbol] = { impossible = true }, [atomType.inner] = { spaceKind.med, notScript = true }, }, [atomType.relationalOperator] = { [atomType.ordinary] = { spaceKind.thick, notScript = true }, [atomType.bigOperator] = { spaceKind.thick, notScript = true }, + [atomType.binaryOperator] = { impossible = true }, + -- [atomType.relationalOperator] = nil [atomType.openingSymbol] = { spaceKind.thick, notScript = true }, + -- [atomType.closeSymbol] = nil + -- [atomType.punctuationSymbol] = nil [atomType.inner] = { spaceKind.thick, notScript = true }, }, + [atomType.openingSymbol] = { + -- [atomType.ordinary] = nil + -- [atomType.bigOperator] = nil + [atomType.binaryOperator] = { impossible = true }, + -- [atomType.relationalOperator] = nil + -- [atomType.openingSymbol] = nil + -- [atomType.closeSymbol] = nil + -- [atomType.punctuationSymbol] = nil + -- [atomType.inner] = nil + }, [atomType.closeSymbol] = { + -- [atomType.ordinary] = nil [atomType.bigOperator] = { spaceKind.thin }, [atomType.binaryOperator] = { spaceKind.med, notScript = true }, [atomType.relationalOperator] = { spaceKind.thick, notScript = true }, + -- [atomType.openingSymbol] = nil + -- [atomType.closeSymbol] = nil + -- [atomType.punctuationSymbol] = nil [atomType.inner] = { spaceKind.thin, notScript = true }, }, [atomType.punctuationSymbol] = { [atomType.ordinary] = { spaceKind.thin, notScript = true }, [atomType.bigOperator] = { spaceKind.thin, notScript = true }, + [atomType.binaryOperator] = { impossible = true }, [atomType.relationalOperator] = { spaceKind.thin, notScript = true }, [atomType.openingSymbol] = { spaceKind.thin, notScript = true }, [atomType.closeSymbol] = { spaceKind.thin, notScript = true }, @@ -345,6 +388,7 @@ local spacingRules = { [atomType.relationalOperator] = { spaceKind.thick, notScript = true }, [atomType.openingSymbol] = { spaceKind.thin, notScript = true }, [atomType.punctuationSymbol] = { spaceKind.thin, notScript = true }, + -- [atomType.closeSymbol] = nil [atomType.inner] = { spaceKind.thin, notScript = true }, }, } @@ -377,14 +421,51 @@ function elements.stackbox:styleChildren () end if self.direction == "H" then -- Insert spaces according to the atom type, following Knuth's guidelines - -- in the TeXbook + -- in The TeXbook, p. 170 (amended with p. 133 for binary operators) + -- FIXME: This implementation is not using the atom form and the MathML logic (lspace/rspace). + -- (This is notably unsatisfactory for elements) local spaces = {} + if #self.children >= 1 then + -- An interpretation of the TeXbook p. 133 for binary operator exceptions: + -- A binary operator at the beginning of the expression is treated as an ordinary atom + -- (so as to be considered as a unary operator, without more context). + local v = self.children[1] + if v.atom == atomType.binaryOperator then + v.atom = atomType.ordinary + end + end for i = 1, #self.children - 1 do local v = self.children[i] local v2 = self.children[i + 1] if spacingRules[v.atom] and spacingRules[v.atom][v2.atom] then local rule = spacingRules[v.atom][v2.atom] - if not (rule.notScript and (isScriptMode(self.mode) or isScriptScriptMode(self.mode))) then + if rule.impossible then + -- Another interpretation of the TeXbook p. 133 for binary operator exceptions: + if v2.atom == atomType.binaryOperator then + -- If a binary atom follows an atom that is not compatible with it, make it an ordinary. + -- (so as to be conidered as a unary operator). + -- Typical case: "a = -b" (ord rel bin ord), "a + -b" (ord bin bin ord) + v2.atom = atomType.ordinary + else + -- If a binary atom precedes an atom that is not compatible with it, make it an ordinary. + -- Quite unusual case (bin, rel/close/punct) unlikely to happen in practice. + -- (Not seen in 80+ test formulas) + -- We might address it a bit late here, the preceding atom has already based its spacing + -- on the binary atom... but this might not be a big deal. + -- (i.e. rather than add an extra look-ahead just for this case). + -- Artificial example: "a + = b" (ord bin rel ord) + v.atom = atomType.ordinary + end + rule = spacingRules[v.atom][v2.atom] + if rule and rule.impossible then + -- Should not occur if we did our table based on the TeXbook correctly? + -- We can still handle it by ignoring the rule: no spacing sounds logical. + -- But let's have a warning so it might be investigated further. + SU.warn("Impossible spacing rule for (" .. v.atom .. ", " .. v2.atom .. "), please report this issue") + rule = nil + end + end + if rule and not (rule.notScript and (isScriptMode(self.mode) or isScriptScriptMode(self.mode))) then spaces[i + 1] = rule[1] end end From 41707190c58035741de60a8b3b638ec1d5d3826c Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sat, 16 Nov 2024 17:11:25 +0100 Subject: [PATCH 03/14] fix(math): The (escaped) percent is an ordinary atom in TeX-like syntax --- packages/math/texlike.lua | 5 +---- packages/math/unicode-symbols.lua | 3 +++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/math/texlike.lua b/packages/math/texlike.lua index d8a800400..ead571dc7 100644 --- a/packages/math/texlike.lua +++ b/packages/math/texlike.lua @@ -595,9 +595,6 @@ local function convertTexlike (_, content) return ret end -registerCommand("%", {}, function () - return { "%", command = "mo", options = {} } -end) registerCommand("mi", { [1] = objType.str }, function (x) return x end) @@ -617,6 +614,7 @@ compileToMathML( \def{sqrt}{\msqrt{#1}} \def{bi}{\mi[mathvariant=bold-italic]{#1}} \def{dsi}{\mi[mathvariant=double-struck]{#1}} + \def{vec}{\mover[accent=true]{#1}{\rightarrow}} \def{lim}{\mo[movablelimits=true]{lim}} @@ -691,7 +689,6 @@ compileToMathML( \def{phantom}{\mphantom{#1}} \def{hphantom}{\mpadded[height=0, depth=0]{\mphantom{#1}}} \def{vphantom}{\mpadded[width=0]{\mphantom{#1}}} - %\mphantom[special=v]{#1}}} ]==], }) ) diff --git a/packages/math/unicode-symbols.lua b/packages/math/unicode-symbols.lua index 0f1eaee00..51c344335 100644 --- a/packages/math/unicode-symbols.lua +++ b/packages/math/unicode-symbols.lua @@ -19,6 +19,9 @@ local function addAlias (symbol, alias) symbols[symbol] = symbols[alias] end +-- \% in TeX is the regular ordinary mathpercent symbol (U+0025) +addAlias("%", "mathpercent") + -- Additional TeX-like operators addAlias("dots", "unicodeellipsis") addAlias("ldots", "unicodeellipsis") From 60398f0d298676fa2596dce7f03b1ebbd1b96a44 Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sat, 16 Nov 2024 17:15:15 +0100 Subject: [PATCH 04/14] test(math): Correct re-wrapping of the percent to make it a binary operator In TeX, `\%` is a regular ("ord") atom. The test assumed it was a binary ("bin") operator. Let's wrap it into a `` for the same result (i.e. surrounding spacing). --- tests/math-ops.sil | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/math-ops.sil b/tests/math-ops.sil index 2fd0f9902..7f6d30909 100644 --- a/tests/math-ops.sil +++ b/tests/math-ops.sil @@ -24,7 +24,7 @@ Custom atom types: Modulus operator: \math[mode=display]{42 \bmod 11 = 9} -\math[mode=display]{42 \% 11 = 9} +\math[mode=display]{42 \mo[atom=bin]{\%} 11 = 9} \math[mode=display]{\mi{mod}(42, 11) = 9} \math[mode=display]{42 ≡ 9 \pmod{11}} From cb4d6e45cb26282a9070df655194a78f63db9ea5 Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sat, 16 Nov 2024 17:34:22 +0100 Subject: [PATCH 05/14] test(math): Adjust MathML tests in math-ops.sil to the operator dictionary The MathML code was using U29F5 (reverse solidus), and the supposedly identical TeX-like code uses "setminus", which formerly mapped it to the reverse solidus. It was changed in unicode-math in 2023 to correctly map to U2216 - and our new operator dictionary table follows that change. So the test is adapted to use U2216 too now, and the test results also need to be regenerated. On that occasion, the MathML code is also ajusted to use `` elements in sub-expressions, so the sizes of parentheses is in line with the TeX-line examples. --- tests/math-variants.expected | 356 +++++++++++++++++------------------ tests/math-variants.xml | 24 +-- 2 files changed, 182 insertions(+), 198 deletions(-) diff --git a/tests/math-variants.expected b/tests/math-variants.expected index fdf17775c..3c850414f 100644 --- a/tests/math-variants.expected +++ b/tests/math-variants.expected @@ -4,70 +4,66 @@ Mx 49.7638 My 51.9745 Set font Gentium Plus;10;400;;normal;;;LTR T 48 68 87 75 w=21.6113 (Math) -Mx 74.0466 +Mx 74.0468 T 89 68 85 76 68 81 87 86 w=33.6035 (variants) -Mx 107.6501 +Mx 107.6503 T 15 w=2.2900 (,) -Mx 112.6116 +Mx 112.6120 T 87 72 91 87 w=16.5332 (text) -Mx 129.1448 +Mx 129.1452 T 15 w=2.2900 (,) -Mx 134.1063 +Mx 134.1069 T 48 68 87 75 48 47 w=34.4336 (MathML) -Mx 168.5399 +Mx 168.5405 T 29 w=2.2900 (:) -Mx 173.5014 +Mx 173.5021 Set font Libertinus Math;10;400;Regular;normal;;;LTR T 2070 w=5.9800 (nil) -Mx 179.4814 +Mx 179.4821 T 2758 w=4.7100 (nil) -Mx 187.0421 +Mx 187.0433 T 2078 w=6.3700 (nil) -Mx 196.2627 +Mx 196.2644 T 1880 w=8.2400 (nil) -Mx 204.5027 +Mx 204.5044 T 13 w=2.2000 (nil) -Mx 208.3694 -Mx 3.0000 -T 3798 a=4.2100 (nil) -Mx 212.5794 +Mx 208.3711 +T 9 w=3.5600 (nil) +Mx 211.9311 T 70 w=4.4700 (nil) -Mx 217.0494 +Mx 216.4011 My 48.8745 Set font Libertinus Math;8;400;Regular;normal;;;LTR T 2758 w=3.7328 (nil) -Mx 221.2122 +Mx 220.5639 My 51.9745 Set font Libertinus Math;10;400;Regular;normal;;;LTR T 13 w=2.2000 (nil) -Mx 225.0789 +Mx 224.4305 T 3000 2990 2995 w=14.3900 (nil) -Mx 239.4689 -Mx 3.0000 -T 3798 a=4.2100 (nil) -Mx 243.6789 +Mx 238.8205 +T 9 w=3.5600 (nil) +Mx 242.3805 T 2758 w=4.7100 (nil) -Mx 248.3889 -Mx 2.9900 -T 3799 a=4.2100 (nil) -Mx 252.5989 -Mx 2.9900 -T 3799 a=4.2100 (nil) -Mx 259.6595 +Mx 247.0905 +T 10 w=3.5600 (nil) +Mx 250.6505 +T 10 w=3.5600 (nil) +Mx 257.0617 T 2078 w=6.3700 (nil) -Mx 268.8802 +Mx 266.2828 Mx 2.8200 T 9 a=3.5600 (nil) -Mx 272.4402 +Mx 269.8428 T 1887 w=6.1800 (nil) -Mx 280.8716 -T 2601 w=5.2700 (nil) -Mx 288.3930 +Mx 278.2743 +T 2092 w=6.2000 (nil) +Mx 286.7259 T 1884 w=7.0200 (nil) -Mx 295.4130 +Mx 293.7459 Mx 2.8200 T 10 a=3.5600 (nil) -Mx 298.9730 +Mx 297.3059 My 46.9745 Set font Libertinus Math;8;400;Regular;normal;;;LTR T 19 w=3.7200 (nil) @@ -75,78 +71,74 @@ Mx 49.7638 My 72.8485 Set font Gentium Plus;10;400;;normal;;;LTR T 48 68 87 75 w=21.6113 (Math) -Mx 74.0295 +Mx 74.0298 T 89 68 85 76 68 81 87 86 w=33.6035 (variants) -Mx 107.6330 +Mx 107.6333 T 15 w=2.2900 (,) -Mx 112.5774 +Mx 112.5780 T 87 72 91 87 w=16.5332 (text) -Mx 131.7649 +Mx 131.7659 T 11 w=3.1689 (() -Mx 134.9339 +Mx 134.9349 T 79 68 85 74 72 w=20.7568 (large) -Mx 158.3451 +Mx 158.3464 T 73 82 81 87 w=17.0996 (font) -Mx 175.4447 +Mx 175.4460 T 12 w=3.1689 ()) -Mx 178.6136 +Mx 178.6149 T 15 w=2.2900 (,) -Mx 183.5580 +Mx 183.5597 T 48 68 87 75 48 47 w=34.4336 (MathML) -Mx 217.9916 +Mx 217.9933 T 29 w=2.2900 (:) -Mx 225.5904 +Mx 225.5927 Set font Libertinus Math;18;400;Regular;normal;;;LTR T 2070 w=10.7640 (nil) -Mx 236.3544 +Mx 236.3567 T 2758 w=8.4780 (nil) -Mx 249.8859 +Mx 249.8897 T 2078 w=11.4660 (nil) -Mx 266.4053 +Mx 266.4107 T 1880 w=14.8320 (nil) -Mx 281.2373 +Mx 281.2427 T 13 w=3.9600 (nil) -Mx 288.1973 -Mx 5.4000 -T 3798 a=7.5780 (nil) -Mx 295.7753 +Mx 288.2027 +T 9 w=6.4080 (nil) +Mx 294.6107 T 70 w=8.0460 (nil) -Mx 303.8213 +Mx 302.6567 My 67.2685 Set font Libertinus Math;14.4;400;Regular;normal;;;LTR T 2758 w=6.7190 (nil) -Mx 311.3144 +Mx 310.1497 My 72.8485 Set font Libertinus Math;18;400;Regular;normal;;;LTR T 13 w=3.9600 (nil) -Mx 318.2744 +Mx 317.1097 T 3000 2990 2995 w=25.9020 (nil) -Mx 344.1764 -Mx 5.4000 -T 3798 a=7.5780 (nil) -Mx 351.7544 +Mx 343.0117 +T 9 w=6.4080 (nil) +Mx 349.4197 T 2758 w=8.4780 (nil) -Mx 360.2324 -Mx 5.3820 -T 3799 a=7.5780 (nil) -Mx 367.8104 -Mx 5.3820 -T 3799 a=7.5780 (nil) -Mx 380.4419 +Mx 357.8977 +T 10 w=6.4080 (nil) +Mx 364.3057 +T 10 w=6.4080 (nil) +Mx 375.7687 T 2078 w=11.4660 (nil) -Mx 396.9614 +Mx 392.2897 Mx 5.0760 T 9 a=6.4080 (nil) -Mx 403.3694 +Mx 398.6977 T 1887 w=11.1240 (nil) -Mx 418.5148 -T 2601 w=9.4860 (nil) -Mx 432.0222 +Mx 413.8437 +T 2092 w=11.1600 (nil) +Mx 429.0257 T 1884 w=12.6360 (nil) -Mx 444.6582 +Mx 441.6617 Mx 5.0760 T 10 a=6.4080 (nil) -Mx 451.0662 +Mx 448.0697 My 63.8485 Set font Libertinus Math;14.4;400;Regular;normal;;;LTR T 19 w=6.6960 (nil) @@ -166,59 +158,55 @@ Mx 146.9143 T 48 68 87 75 48 47 w=34.4336 (MathML) Mx 181.3479 T 29 w=2.2900 (:) -Mx 233.0020 +Mx 233.8370 My 107.5823 Set font Libertinus Math;10;400;Regular;normal;;;LTR T 2070 w=5.9800 (nil) -Mx 238.9820 +Mx 239.8170 T 2758 w=4.7100 (nil) -Mx 246.4697 +Mx 247.3047 T 2078 w=6.3700 (nil) -Mx 255.6175 +Mx 256.4525 T 1880 w=8.2400 (nil) -Mx 263.8575 +Mx 264.6925 T 13 w=2.2000 (nil) -Mx 267.7242 -Mx 3.0000 -T 3798 a=4.2100 (nil) -Mx 271.9342 +Mx 268.5592 +T 9 w=3.5600 (nil) +Mx 272.1192 T 70 w=4.4700 (nil) -Mx 276.4042 +Mx 276.5892 My 103.8323 Set font Libertinus Math;8;400;Regular;normal;;;LTR T 2758 w=3.7328 (nil) -Mx 280.5670 +Mx 280.7520 My 107.5823 Set font Libertinus Math;10;400;Regular;normal;;;LTR T 13 w=2.2000 (nil) -Mx 284.4336 +Mx 284.6186 T 3000 2990 2995 w=14.3900 (nil) -Mx 298.8236 -Mx 3.0000 -T 3798 a=4.2100 (nil) -Mx 303.0336 +Mx 299.0086 +T 9 w=3.5600 (nil) +Mx 302.5686 T 2758 w=4.7100 (nil) -Mx 307.7436 -Mx 2.9900 -T 3799 a=4.2100 (nil) -Mx 311.9536 -Mx 2.9900 -T 3799 a=4.2100 (nil) -Mx 318.9414 +Mx 307.2786 +T 10 w=3.5600 (nil) +Mx 310.8386 +T 10 w=3.5600 (nil) +Mx 317.1764 T 2078 w=6.3700 (nil) -Mx 328.0892 +Mx 326.3242 Mx 2.8200 T 9 a=3.5600 (nil) -Mx 331.6492 +Mx 329.8842 T 1887 w=6.1800 (nil) -Mx 340.0514 -T 2601 w=5.2700 (nil) -Mx 347.5436 +Mx 338.2864 +T 2092 w=6.2000 (nil) +Mx 346.7086 T 1884 w=7.0200 (nil) -Mx 354.5636 +Mx 353.7286 Mx 2.8200 T 10 a=3.5600 (nil) -Mx 358.1236 +Mx 357.2886 My 102.5823 Set font Libertinus Math;8;400;Regular;normal;;;LTR T 19 w=3.7200 (nil) @@ -246,59 +234,55 @@ Mx 196.4507 T 48 68 87 75 48 47 w=34.4336 (MathML) Mx 230.8842 T 29 w=2.2900 (:) -Mx 181.2933 +Mx 182.7963 My 158.9718 Set font Libertinus Math;18;400;Regular;normal;;;LTR T 2070 w=10.7640 (nil) -Mx 192.0573 +Mx 193.5603 T 2758 w=8.4780 (nil) -Mx 205.5353 +Mx 207.0383 T 2078 w=11.4660 (nil) -Mx 222.0013 +Mx 223.5043 T 1880 w=14.8320 (nil) -Mx 236.8333 +Mx 238.3363 T 13 w=3.9600 (nil) -Mx 243.7933 -Mx 5.4000 -T 3798 a=7.5780 (nil) -Mx 251.3713 +Mx 245.2963 +T 9 w=6.4080 (nil) +Mx 251.7043 T 70 w=8.0460 (nil) -Mx 259.4173 +Mx 259.7503 My 152.2218 Set font Libertinus Math;14.4;400;Regular;normal;;;LTR T 2758 w=6.7190 (nil) -Mx 266.9103 +Mx 267.2433 My 158.9718 Set font Libertinus Math;18;400;Regular;normal;;;LTR T 13 w=3.9600 (nil) -Mx 273.8703 +Mx 274.2033 T 3000 2990 2995 w=25.9020 (nil) -Mx 299.7723 -Mx 5.4000 -T 3798 a=7.5780 (nil) -Mx 307.3503 +Mx 300.1053 +T 9 w=6.4080 (nil) +Mx 306.5133 T 2758 w=8.4780 (nil) -Mx 315.8283 -Mx 5.3820 -T 3799 a=7.5780 (nil) -Mx 323.4063 -Mx 5.3820 -T 3799 a=7.5780 (nil) -Mx 335.9843 +Mx 314.9913 +T 10 w=6.4080 (nil) +Mx 321.3993 +T 10 w=6.4080 (nil) +Mx 332.8073 T 2078 w=11.4660 (nil) -Mx 352.4503 +Mx 349.2733 Mx 5.0760 T 9 a=6.4080 (nil) -Mx 358.8583 +Mx 355.6813 T 1887 w=11.1240 (nil) -Mx 373.9823 -T 2601 w=9.4860 (nil) -Mx 387.4683 +Mx 370.8053 +T 2092 w=11.1600 (nil) +Mx 385.9653 T 1884 w=12.6360 (nil) -Mx 400.1043 +Mx 398.6013 Mx 5.0760 T 10 a=6.4080 (nil) -Mx 406.5123 +Mx 405.0093 My 149.9718 Set font Libertinus Math;14.4;400;Regular;normal;;;LTR T 19 w=6.6960 (nil) @@ -306,66 +290,66 @@ Mx 49.7638 My 182.6958 Set font Gentium Plus;10;400;;normal;;;LTR T 48 68 87 75 w=21.6113 (Math) -Mx 74.0491 +Mx 74.0490 T 89 68 85 76 68 81 87 86 w=33.6035 (variants) -Mx 107.6526 +Mx 107.6525 T 15 w=2.2900 (,) -Mx 112.6167 +Mx 112.6165 T 87 72 91 87 w=16.5332 (text) -Mx 129.1499 +Mx 129.1497 T 15 w=2.2900 (,) -Mx 134.1139 +Mx 134.1136 T 55 72 59 w=16.2793 (TeX) -Mx 150.3932 +Mx 150.3929 T 29 w=2.2900 (:) -Mx 155.3573 +Mx 155.3569 Set font Libertinus Math;10;400;Regular;normal;;;LTR T 2070 w=5.9800 (nil) -Mx 161.3373 +Mx 161.3369 T 2758 w=4.7100 (nil) -Mx 168.9044 +Mx 168.9037 T 2078 w=6.3700 (nil) -Mx 178.1314 +Mx 178.1305 T 1880 w=8.2400 (nil) -Mx 186.3714 +Mx 186.3705 T 13 w=2.2000 (nil) -Mx 190.2381 +Mx 190.2372 T 9 w=3.5600 (nil) -Mx 193.7981 +Mx 193.7972 T 70 w=4.4700 (nil) -Mx 198.2681 +Mx 198.2672 My 179.5958 Set font Libertinus Math;8;400;Regular;normal;;;LTR T 2758 w=3.7328 (nil) -Mx 202.4309 +Mx 202.4300 My 182.6958 Set font Libertinus Math;10;400;Regular;normal;;;LTR T 13 w=2.2000 (nil) -Mx 206.2976 +Mx 206.2966 T 84 74 79 w=12.0300 (nil) -Mx 218.3276 +Mx 218.3266 T 9 w=3.5600 (nil) -Mx 221.8876 +Mx 221.8866 T 2758 w=4.7100 (nil) -Mx 226.5976 +Mx 226.5966 T 10 w=3.5600 (nil) -Mx 230.1576 +Mx 230.1566 T 10 w=3.5600 (nil) -Mx 236.5746 +Mx 236.5734 T 2078 w=6.3700 (nil) -Mx 245.8017 +Mx 245.8003 Mx 2.8200 T 9 a=3.5600 (nil) -Mx 249.3617 +Mx 249.3603 T 1887 w=6.1800 (nil) -Mx 257.7956 -T 2601 w=5.2700 (nil) -Mx 265.3196 +Mx 257.7941 +T 2092 w=6.2000 (nil) +Mx 266.2479 T 1884 w=7.0200 (nil) -Mx 272.3396 +Mx 273.2679 Mx 2.8200 T 10 a=3.5600 (nil) -Mx 275.8996 +Mx 276.8279 My 177.6958 Set font Libertinus Math;8;400;Regular;normal;;;LTR T 19 w=3.7200 (nil) @@ -385,55 +369,55 @@ Mx 146.9203 T 55 72 59 w=16.2793 (TeX) Mx 163.1996 T 29 w=2.2900 (:) -Mx 235.4820 +Mx 235.0170 My 217.0992 Set font Libertinus Math;10;400;Regular;normal;;;LTR T 2070 w=5.9800 (nil) -Mx 241.4620 +Mx 240.9970 T 2758 w=4.7100 (nil) -Mx 248.9497 +Mx 248.4847 T 2078 w=6.3700 (nil) -Mx 258.0975 +Mx 257.6325 T 1880 w=8.2400 (nil) -Mx 266.3375 +Mx 265.8725 T 13 w=2.2000 (nil) -Mx 270.2042 +Mx 269.7392 T 9 w=3.5600 (nil) -Mx 273.7642 +Mx 273.2992 T 70 w=4.4700 (nil) -Mx 278.2342 +Mx 277.7692 My 213.3492 Set font Libertinus Math;8;400;Regular;normal;;;LTR T 2758 w=3.7328 (nil) -Mx 282.3970 +Mx 281.9320 My 217.0992 Set font Libertinus Math;10;400;Regular;normal;;;LTR T 13 w=2.2000 (nil) -Mx 286.2636 +Mx 285.7986 T 84 74 79 w=12.0300 (nil) -Mx 298.2936 +Mx 297.8286 T 9 w=3.5600 (nil) -Mx 301.8536 +Mx 301.3886 T 2758 w=4.7100 (nil) -Mx 306.5636 +Mx 306.0986 T 10 w=3.5600 (nil) -Mx 310.1236 +Mx 309.6586 T 10 w=3.5600 (nil) -Mx 316.4614 +Mx 315.9964 T 2078 w=6.3700 (nil) -Mx 325.6092 +Mx 325.1442 Mx 2.8200 T 9 a=3.5600 (nil) -Mx 329.1692 +Mx 328.7042 T 1887 w=6.1800 (nil) -Mx 337.5714 -T 2601 w=5.2700 (nil) -Mx 345.0636 +Mx 337.1064 +T 2092 w=6.2000 (nil) +Mx 345.5286 T 1884 w=7.0200 (nil) -Mx 352.0836 +Mx 352.5486 Mx 2.8200 T 10 a=3.5600 (nil) -Mx 355.6436 +Mx 356.1086 My 212.0992 Set font Libertinus Math;8;400;Regular;normal;;;LTR T 19 w=3.7200 (nil) diff --git a/tests/math-variants.xml b/tests/math-variants.xml index 27d91fae9..b6b182e97 100644 --- a/tests/math-variants.xml +++ b/tests/math-variants.xml @@ -6,14 +6,14 @@ Math variants, text, MathML: nN - , ( e + , ( e n , sin - (n) ) + (n) ) (R - Q) + Q) 2 @@ -25,14 +25,14 @@ Math variants, text (large font), MathML: nN - , ( e + , ( e n , sin - (n) ) + (n) ) (R - Q) + Q) 2 @@ -44,14 +44,14 @@ Math variants, display, MathML: nN - , ( e + , ( e n , sin - (n) ) + (n) ) (R - Q) + Q) 2 @@ -63,14 +63,14 @@ Math variants, display (large font), MathML: nN - , ( e + , ( e n , sin - (n) ) + (n) ) (R - Q) + Q) 2 From 56edc14c9b69806ef288ce870abad1d0f6add34f Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sat, 16 Nov 2024 18:55:11 +0100 Subject: [PATCH 06/14] fix(math): A period must be allowed in TeX-like math syntax for numbers --- packages/math/texlike.lua | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages/math/texlike.lua b/packages/math/texlike.lua index ead571dc7..74575bd30 100644 --- a/packages/math/texlike.lua +++ b/packages/math/texlike.lua @@ -18,7 +18,19 @@ local mathGrammar = function (_ENV) local _ = WS^0 local eol = S"\r\n" local digit = R("09") - local natural = digit^1 / tostring + local natural = ( + -- TeX doesn't really knows what a number in a formula is. + -- It handles any sequence of "ordinary" characters, including period(s): + -- See for instance The TeXbook, p. 132. + -- When later converting to MathML, we'll ideally want 0.0123 + -- instead of, say, 0.0123 (not only wrong + -- in essence, but also taking the risk of using a operator, then + -- considered as a punctuation, thus inserting a space) + -- We cannot be general, but checking MathJax and TeMML's behavior, they + -- are not general either in this regard. + digit^0 * P(".")^-1 * digit^1 + -- Decimal number (ex: 1.23, 0.23, .23) + digit^1 -- Integer (digits only, ex: 123) + ) / tostring local pos_natural = R("19") * digit^0 / tonumber local ctrl_word = R("AZ", "az")^1 local ctrl_symbol = P(1) - S"{}\\" From 781f62ad0527a6275b4ce8645c3231bae98a1121 Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sun, 17 Nov 2024 16:25:58 +0100 Subject: [PATCH 07/14] fix(math): Improve spacing rules on limit-like operators Including another small refactor / clarification on our atom types. --- packages/math/atoms.lua | 16 +- packages/math/base-elements.lua | 3 + packages/math/texlike.lua | 28 +- packages/math/tools/unicode-xml-to-sile.xsl | 29 +- packages/math/typesetter.lua | 7 +- packages/math/unicode-symbols-generated.lua | 3764 +++++++------------ 6 files changed, 1306 insertions(+), 2541 deletions(-) diff --git a/packages/math/atoms.lua b/packages/math/atoms.lua index 91af62c61..9753aac6f 100644 --- a/packages/math/atoms.lua +++ b/packages/math/atoms.lua @@ -1,24 +1,23 @@ local atomType = { ordinary = 0, - bigOperator = 1, + bigOperator = 1, -- Misnamed used for TeX's "mathop" binaryOperator = 2, relationalOperator = 3, openingSymbol = 4, closeSymbol = 5, punctuationSymbol = 6, - inner = 7, - overSymbol = 8, - underSymbol = 9, + inner = 7, -- Unused for now (used for fractions in The TeXbook) + overSymbol = 8, -- Unused for now (used for overlines etc. in The TeXbook) + underSymbol = 9, -- Unused for now (used for underlines etc. in The TeXbook) accentSymbol = 10, - radicalSymbol = 11, - vcenter = 12, + botAccentSymbol = 11, -- Unused for now but botaccent is encoded in our dictionary } -- Shorthands for atom types, used in the `atom` command option -- and also in the unicode symbols table / operator dictionary local atomTypeShort = { ord = atomType.ordinary, - big = atomType.bigOperator, + op = atomType.bigOperator, bin = atomType.binaryOperator, rel = atomType.relationalOperator, open = atomType.openingSymbol, @@ -28,8 +27,7 @@ local atomTypeShort = { over = atomType.overSymbol, under = atomType.underSymbol, accent = atomType.accentSymbol, - radical = atomType.radicalSymbol, - vcenter = atomType.vcenter, + botaccent = atomType.botAccentSymbol, } return { diff --git a/packages/math/base-elements.lua b/packages/math/base-elements.lua index 9544f199b..325bcb630 100644 --- a/packages/math/base-elements.lua +++ b/packages/math/base-elements.lua @@ -437,6 +437,9 @@ function elements.stackbox:styleChildren () for i = 1, #self.children - 1 do local v = self.children[i] local v2 = self.children[i + 1] + -- Handle re-wrapped paired open/close symbols + v = v.is_paired and v.children[#v.children] or v + v2 = v2.is_paired and v2.children[1] or v2 if spacingRules[v.atom] and spacingRules[v.atom][v2.atom] then local rule = spacingRules[v.atom][v2.atom] if rule.impossible then diff --git a/packages/math/texlike.lua b/packages/math/texlike.lua index 74575bd30..e7ba3b6e3 100644 --- a/packages/math/texlike.lua +++ b/packages/math/texlike.lua @@ -281,8 +281,8 @@ local function isOperatorKind (tree, typeOfAtom) if tree.command ~= "mo" then return false end - -- Case \mo[atom=big]{ops} - -- E.g. \mo[atom=big]{lim} + -- Case \mo[atom=xxx]{ops} + -- E.g. \mo[atom=op]{lim} if tree.options and tree.options.atom == typeOfAtom then return true end @@ -391,6 +391,7 @@ local function compileToMathML_aux (_, arg_env, tree) table.insert(stack, children) local mrow = { command = "mrow", + is_paired = true, -- Internal flag to mark this re-wrapped mrow options = {}, child, } @@ -454,7 +455,7 @@ local function compileToMathML_aux (_, arg_env, tree) end tree.options = {} -- Translate TeX-like sub/superscripts to `munderover` or `msubsup`, - -- depending on whether the base is a big operator + -- depending on whether the base is an operator with moveable limits. elseif tree.id == "sup" and isMoveableLimits(tree[1]) then tree.command = "mover" elseif tree.id == "sub" and isMoveableLimits(tree[1]) then @@ -628,20 +629,19 @@ compileToMathML( \def{dsi}{\mi[mathvariant=double-struck]{#1}} \def{vec}{\mover[accent=true]{#1}{\rightarrow}} - \def{lim}{\mo[movablelimits=true]{lim}} - % From amsmath: \def{to}{\mo[atom=bin]{→}} - \def{gcd}{\mo[movablelimits=true]{gcd}} - \def{sup}{\mo[movablelimits=true]{sup}} - \def{inf}{\mo[movablelimits=true]{inf}} - \def{max}{\mo[movablelimits=true]{max}} - \def{min}{\mo[movablelimits=true]{min}} + \def{lim}{\mo[atom=op, movablelimits=true]{lim}} + \def{gcd}{\mo[atom=op, movablelimits=true]{gcd}} + \def{sup}{\mo[atom=op, movablelimits=true]{sup}} + \def{inf}{\mo[atom=op, movablelimits=true]{inf}} + \def{max}{\mo[atom=op, movablelimits=true]{max}} + \def{min}{\mo[atom=op, movablelimits=true]{min}} % Those use U+202F NARROW NO-BREAK SPACE in their names - \def{limsup}{\mo[movablelimits=true]{lim sup}} - \def{liminf}{\mo[movablelimits=true]{lim inf}} - \def{projlim}{\mo[movablelimits=true]{proj lim}} - \def{injlim}{\mo[movablelimits=true]{inj lim}} + \def{limsup}{\mo[atom=op, movablelimits=true]{lim sup}} + \def{liminf}{\mo[atom=op, movablelimits=true]{lim inf}} + \def{projlim}{\mo[atom=op, movablelimits=true]{proj lim}} + \def{injlim}{\mo[atom=op, movablelimits=true]{inj lim}} % Standard spaces gleaned from plain TeX \def{thinspace}{\mspace[width=thin]} diff --git a/packages/math/tools/unicode-xml-to-sile.xsl b/packages/math/tools/unicode-xml-to-sile.xsl index 2a11f7457..2467bc7d9 100644 --- a/packages/math/tools/unicode-xml-to-sile.xsl +++ b/packages/math/tools/unicode-xml-to-sile.xsl @@ -49,26 +49,26 @@ botaccent accent - ord + ord - ord - ord + ord + ord - + ord - big + op - open - punct - rel - ord - ord - bin - ord + open + punct + rel + ord + ord + bin + ord @@ -129,8 +129,9 @@ local function addSymbol (str, shortatom, mathlatex, _, ops) op.forms = {} for _, v in pairs(ops) do if v.form then - v.lspace = SILE.types.length(v.lspace and ("%smu"):format(v.lspace) or "0mu") - v.rspace = SILE.types.length(v.rspace and ("%smu"):format(v.rspace) or "0mu") + -- NOTE: At this point the mu unit is not yet defined, so keep it as a string. + v.lspace = v.lspace and ("%smu"):format(v.lspace) or "0mu" + v.rspace = v.rspace and ("%smu"):format(v.rspace) or "0mu" op.forms[v.form] = v else SU.warn("No form for operator " .. str .. " (operator dictionary is probably incomplete)") diff --git a/packages/math/typesetter.lua b/packages/math/typesetter.lua index 9b936ade4..69db11f4e 100644 --- a/packages/math/typesetter.lua +++ b/packages/math/typesetter.lua @@ -113,10 +113,11 @@ function ConvertMathML (_, content) if content.command == "math" or content.command == "mathml" then -- toplevel return b.stackbox("H", convertChildren(content)) elseif content.command == "mrow" then - return b.stackbox("H", convertChildren(content)) + local ret = b.stackbox("H", convertChildren(content)) + -- Internal property to keep tracks or paired open/close in TeX-like syntax + ret.is_paired = content.is_paired + return ret elseif content.command == "mphantom" then - -- MathML's standard mphantom corresponds to TeX's \phantom only. - -- Let's support a special attribute "h" or "v" for TeX-like \hphantom or \vphantom. local special = content.options.special return b.phantom(convertChildren(content), special) elseif content.command == "mi" then diff --git a/packages/math/unicode-symbols-generated.lua b/packages/math/unicode-symbols-generated.lua index 5e220fcd9..34bff19af 100644 --- a/packages/math/unicode-symbols-generated.lua +++ b/packages/math/unicode-symbols-generated.lua @@ -19,12 +19,12 @@ local atomTypeShort = atoms.atomTypeShort --- Transform a list of codepoints into a string local function U (...) - local t = { ... } - local str = "" - for i = 1, #t do - str = str .. luautf8.char(t[i]) - end - return str + local t = { ... } + local str = "" + for i = 1, #t do + str = str .. luautf8.char(t[i]) + end + return str end local symbols = {} @@ -37,272 +37,200 @@ local operatorDict = {} -- @tparam string _ Unicode name of the symbol (informative) -- @tparam table ops List of operator forms and their properties local function addSymbol (str, shortatom, mathlatex, _, ops) - if mathlatex then - SU.debug("math.symbols", "Registering symbol", str, "as", mathlatex) - symbols[mathlatex] = str - end - local op = {} - op.atom = atomTypeShort[shortatom] - if ops then - op.forms = {} - for _, v in pairs(ops) do - if v.form then - v.lspace = SILE.types.length(v.lspace and ("%smu"):format(v.lspace) or "0mu") - v.rspace = SILE.types.length(v.rspace and ("%smu"):format(v.rspace) or "0mu") - op.forms[v.form] = v - else - SU.warn("No form for operator " .. str .. " (operator dictionary is probably incomplete)") - end + if mathlatex then + SU.debug("math.symbols", "Registering symbol", str, "as", mathlatex) + symbols[mathlatex] = str + end + local op = {} + op.atom = atomTypeShort[shortatom] + if ops then + op.forms = {} + for _, v in pairs(ops) do + if v.form then + -- NOTE: At this point the mu unit is not yet defined, so keep it as a string. + v.lspace = v.lspace and ("%smu"):format(v.lspace) or "0mu" + v.rspace = v.rspace and ("%smu"):format(v.rspace) or "0mu" + op.forms[v.form] = v + else + SU.warn("No form for operator " .. str .. " (operator dictionary is probably incomplete)") end - end - operatorDict[str] = op + end + end + operatorDict[str] = op end + addSymbol(U(0x00021), "ord", "mathexclam", "EXCLAMATION MARK", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) addSymbol(U(0x00021, 0x00021), "ord", nil, "MULTIPLE CHARACTER OPERATOR: !!", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }}) addSymbol(U(0x00021, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: !=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x00022), "ord", nil, "QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x00023), "ord", "mathoctothorpe", "NUMBER SIGN", nil) addSymbol(U(0x00024), "ord", "mathdollar", "DOLLAR SIGN", nil) addSymbol(U(0x00025), "ord", "mathpercent", "PERCENT SIGN", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, - { form = "infix", lspace = 3, priority = 640, rspace = 3 }, -}) + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, + { form = "infix", lspace = 3, priority = 640, rspace = 3 }}) addSymbol(U(0x00026), "ord", "mathampersand", "AMPERSAND", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x00026, 0x00026), "ord", nil, "MULTIPLE CHARACTER OPERATOR: &&", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x00027), "ord", nil, "APOSTROPHE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x00028), "open", "lparen", "LEFT PARENTHESIS", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x00029), "close", "rparen", "RIGHT PARENTHESIS", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0002A), "ord", nil, "ASTERISK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x0002A, 0x0002A), "ord", nil, "MULTIPLE CHARACTER OPERATOR: **", { - { form = "infix", lspace = 3, priority = 760, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 760, rspace = 3 }}) addSymbol(U(0x0002A, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: *=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0002B), "bin", "mathplus", "PLUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x0002B, 0x0002B), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ++", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x0002B, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: +=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0002C), "punct", "mathcomma", "COMMA", { - { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 3, separator = true }, -}) + { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 3, separator = true }}) addSymbol(U(0x0002D), "ord", nil, "HYPHEN-MINUS", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x0002D, 0x0002D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: --", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x0002D, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: -=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0002D, 0x0003E), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ->", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 220, rspace = 5 }}) addSymbol(U(0x0002E), "punct", "mathperiod", "FULL STOP", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x0002F), "bin", "mathslash", "SOLIDUS", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x0002F, 0x0002F), "ord", nil, "MULTIPLE CHARACTER OPERATOR: //", { - { form = "infix", lspace = 5, priority = 240, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 240, rspace = 5 }}) addSymbol(U(0x0002F, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: /=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0003A), "punct", "mathcolon", "COLON", { - { form = "infix", lspace = 0, priority = 180, rspace = 3 }, -}) + { form = "infix", lspace = 0, priority = 180, rspace = 3 }}) addSymbol(U(0x0003A, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: :=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0003B), "punct", "mathsemicolon", "SEMICOLON", { - { form = "infix", linebreakstyle = "after", lspace = 0, priority = 140, rspace = 3, separator = true }, -}) + { form = "infix", linebreakstyle = "after", lspace = 0, priority = 140, rspace = 3, separator = true }}) addSymbol(U(0x0003C), "rel", "less", "LESS-THAN SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0003C, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: <=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0003C, 0x0003E), "ord", nil, "MULTIPLE CHARACTER OPERATOR: <>", { - { form = "infix", lspace = 3, priority = 800, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 800, rspace = 3 }}) addSymbol(U(0x0003D), "rel", "equal", "EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0003D, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ==", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0003E), "rel", "greater", "GREATER-THAN SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0003E, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: >=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0003F), "punct", "mathquestion", "QUESTION MARK", { - { form = "infix", lspace = 3, priority = 840, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 840, rspace = 3 }}) addSymbol(U(0x00040), "ord", "mathatsign", "COMMERCIAL AT", { - { form = "infix", lspace = 3, priority = 560, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 560, rspace = 3 }}) addSymbol(U(0x0005B), "open", "lbrack", "LEFT SQUARE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0005C), "bin", "backslash", "REVERSE SOLIDUS", { - { form = "infix", lspace = 0, priority = 660, rspace = 0 }, -}) + { form = "infix", lspace = 0, priority = 660, rspace = 0 }}) addSymbol(U(0x0005D), "close", "rbrack", "RIGHT SQUARE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0005E), "ord", nil, "CIRCUMFLEX ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, - { form = "infix", lspace = 3, priority = 800, rspace = 3 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { form = "infix", lspace = 3, priority = 800, rspace = 3 }}) addSymbol(U(0x0005F), "ord", nil, "LOW LINE", { - { form = "infix", lspace = 0, priority = 940, rspace = 0 }, - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "infix", lspace = 0, priority = 940, rspace = 0 }, + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x00060), "ord", nil, "GRAVE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x0007B), "open", "lbrace", "LEFT CURLY BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0007C), "ord", "vert", "VERTICAL LINE", { - { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0007C, 0x0007C), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ||", { - { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0 }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0 }, -}) + { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0 }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0 }}) addSymbol(U(0x0007D), "close", "rbrace", "RIGHT CURLY BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0007E), "ord", nil, "TILDE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x000A1), "punct", nil, "INVERTED EXCLAMATION MARK", nil) addSymbol(U(0x000A3), "ord", "mathsterling", "POUND SIGN", nil) addSymbol(U(0x000A5), "ord", "mathyen", "YEN SIGN", nil) addSymbol(U(0x000A7), "ord", "mathsection", "SECTION SIGN", nil) addSymbol(U(0x000A8), "ord", nil, "DIAERESIS", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x000AC), "ord", "neg", "NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) addSymbol(U(0x000AF), "ord", nil, "MACRON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x000B0), "ord", nil, "DEGREE SIGN", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x000B1), "bin", "pm", "PLUS-MINUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x000B2), "ord", nil, "SUPERSCRIPT TWO", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x000B3), "ord", nil, "SUPERSCRIPT THREE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x000B4), "ord", nil, "ACUTE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x000B6), "ord", "mathparagraph", "PILCROW SIGN", nil) addSymbol(U(0x000B7), "bin", "cdotp", "MIDDLE DOT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x000B8), "ord", nil, "CEDILLA", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x000B9), "ord", nil, "SUPERSCRIPT ONE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x000BF), "punct", nil, "INVERTED QUESTION MARK", nil) addSymbol(U(0x000D7), "bin", "times", "MULTIPLICATION SIGN", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x000F0), "ord", "matheth", "LATIN SMALL LETTER ETH", nil) addSymbol(U(0x000F7), "bin", "div", "DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x001B5), "ord", "Zbar", "LATIN CAPITAL LETTER Z WITH STROKE", nil) addSymbol(U(0x002C6), "ord", nil, "MODIFIER LETTER CIRCUMFLEX ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x002C7), "ord", nil, "CARON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x002C9), "ord", nil, "MODIFIER LETTER MACRON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x002CA), "ord", nil, "MODIFIER LETTER ACUTE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x002CB), "ord", nil, "MODIFIER LETTER GRAVE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x002CD), "ord", nil, "MODIFIER LETTER LOW MACRON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x002D8), "ord", nil, "BREVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x002D9), "ord", nil, "DOT ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x002DA), "ord", nil, "RING ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x002DC), "ord", nil, "SMALL TILDE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x002DD), "ord", nil, "DOUBLE ACUTE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x002F7), "ord", nil, "MODIFIER LETTER LOW TILDE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x00300), "accent", "grave", "COMBINING GRAVE ACCENT", nil) addSymbol(U(0x00301), "accent", "acute", "COMBINING ACUTE ACCENT", nil) addSymbol(U(0x00302), "accent", "hat", "COMBINING CIRCUMFLEX ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x00303), "accent", "tilde", "COMBINING TILDE", nil) addSymbol(U(0x00304), "accent", "bar", "COMBINING MACRON", nil) addSymbol(U(0x00305), "accent", "overbar", "COMBINING OVERLINE", nil) @@ -314,8 +242,7 @@ addSymbol(U(0x0030A), "accent", "ocirc", "COMBINING RING ABOVE", nil) addSymbol(U(0x0030C), "accent", "check", "COMBINING CARON", nil) addSymbol(U(0x00310), "ord", "candra", "COMBINING CANDRABINDU", nil) addSymbol(U(0x00311), "accent", nil, "COMBINING INVERTED BREVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x00312), "ord", "oturnedcomma", "COMBINING TURNED COMMA ABOVE", nil) addSymbol(U(0x00315), "ord", "ocommatopright", "COMBINING COMMA ABOVE RIGHT", nil) addSymbol(U(0x0031A), "ord", "droang", "COMBINING LEFT ANGLE ABOVE", nil) @@ -392,98 +319,74 @@ addSymbol(U(0x003F1), "ord", "mupvarrho", "GREEK RHO SYMBOL", nil) addSymbol(U(0x003F4), "ord", "mupvarTheta", "GREEK CAPITAL THETA SYMBOL", nil) addSymbol(U(0x003F5), "ord", "mupepsilon", "GREEK LUNATE EPSILON SYMBOL", nil) addSymbol(U(0x003F6), "ord", "upbackepsilon", "GREEK REVERSED LUNATE EPSILON SYMBOL", nil) -addSymbol(U(0x00606), "big", nil, "ARABIC-INDIC CUBE ROOT", nil) -addSymbol(U(0x00607), "big", nil, "ARABIC-INDIC FOURTH ROOT", nil) +addSymbol(U(0x00606), "op", nil, "ARABIC-INDIC CUBE ROOT", nil) +addSymbol(U(0x00607), "op", nil, "ARABIC-INDIC FOURTH ROOT", nil) addSymbol(U(0x02010), "punct", "mathhyphen", "HYPHEN", nil) addSymbol(U(0x02012), "punct", nil, "FIGURE DASH", nil) addSymbol(U(0x02013), "punct", nil, "EN DASH", nil) addSymbol(U(0x02014), "punct", nil, "EM DASH", nil) addSymbol(U(0x02015), "ord", "horizbar", "HORIZONTAL BAR", nil) addSymbol(U(0x02016), "ord", "Vert", "DOUBLE VERTICAL LINE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02017), "ord", "twolowline", "DOUBLE LOW LINE", nil) addSymbol(U(0x02018), "ord", nil, "LEFT SINGLE QUOTATION MARK", { - { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }}) addSymbol(U(0x02019), "ord", nil, "RIGHT SINGLE QUOTATION MARK", { - { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }}) addSymbol(U(0x0201A), "ord", nil, "SINGLE LOW-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x0201B), "ord", nil, "SINGLE HIGH-REVERSED-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x0201C), "ord", nil, "LEFT DOUBLE QUOTATION MARK", { - { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }}) addSymbol(U(0x0201D), "ord", nil, "RIGHT DOUBLE QUOTATION MARK", { - { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }}) addSymbol(U(0x0201E), "ord", nil, "DOUBLE LOW-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x0201F), "ord", nil, "DOUBLE HIGH-REVERSED-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x02020), "rel", "dagger", "DAGGER", nil) addSymbol(U(0x02021), "rel", "ddagger", "DOUBLE DAGGER", nil) addSymbol(U(0x02022), "bin", "smblkcircle", "BULLET", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02025), "ord", "enleadertwodots", "TWO DOT LEADER", nil) addSymbol(U(0x02026), "ord", "unicodeellipsis", "HORIZONTAL ELLIPSIS", nil) addSymbol(U(0x02032), "ord", "prime", "PRIME", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }}) addSymbol(U(0x02033), "ord", "dprime", "DOUBLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x02034), "ord", "trprime", "TRIPLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x02035), "ord", "backprime", "REVERSED PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x02036), "ord", "backdprime", "REVERSED DOUBLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x02037), "ord", "backtrprime", "REVERSED TRIPLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x02038), "ord", "caretinsert", "CARET", nil) addSymbol(U(0x0203C), "ord", "Exclam", "DOUBLE EXCLAMATION MARK", nil) addSymbol(U(0x0203E), "ord", nil, "OVERLINE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x02040), "bin", "tieconcat", "CHARACTER TIE", nil) addSymbol(U(0x02043), "ord", "hyphenbullet", "HYPHEN BULLET", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02044), "bin", "fracslash", "FRACTION SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x02047), "ord", "Question", "DOUBLE QUESTION MARK", nil) addSymbol(U(0x0204E), "bin", nil, "LOW ASTERISK", nil) addSymbol(U(0x0204F), "rel", nil, "REVERSED SEMICOLON", nil) addSymbol(U(0x02050), "rel", "closure", "CLOSE UP", nil) addSymbol(U(0x02057), "ord", "qprime", "QUADRUPLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x02061), "bin", nil, "FUNCTION APPLICATION", { - { form = "infix", lspace = 0, priority = 880, rspace = 0 }, -}) + { form = "infix", lspace = 0, priority = 880, rspace = 0 }}) addSymbol(U(0x02062), "bin", nil, "INVISIBLE TIMES", { - { form = "infix", lspace = 0, priority = 620, rspace = 0 }, -}) + { form = "infix", lspace = 0, priority = 620, rspace = 0 }}) addSymbol(U(0x02063), "punct", nil, "INVISIBLE SEPARATOR", { - { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 0, separator = true }, -}) + { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 0, separator = true }}) addSymbol(U(0x02064), "ord", nil, "INVISIBLE PLUS", { - { form = "infix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "infix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x020AC), "ord", "euro", "EURO SIGN", nil) addSymbol(U(0x020D0), "accent", "leftharpoonaccent", "COMBINING LEFT HARPOON ABOVE", nil) addSymbol(U(0x020D1), "accent", "rightharpoonaccent", "COMBINING RIGHT HARPOON ABOVE", nil) @@ -493,11 +396,9 @@ addSymbol(U(0x020D5), "accent", nil, "COMBINING CLOCKWISE ARROW ABOVE", nil) addSymbol(U(0x020D6), "accent", "overleftarrow", "COMBINING LEFT ARROW ABOVE", nil) addSymbol(U(0x020D7), "accent", "overrightarrow", "COMBINING RIGHT ARROW ABOVE", nil) addSymbol(U(0x020DB), "accent", "dddot", "COMBINING THREE DOTS ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x020DC), "accent", "ddddot", "COMBINING FOUR DOTS ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x020DD), "ord", "enclosecircle", "COMBINING ENCLOSING CIRCLE", nil) addSymbol(U(0x020DE), "ord", "enclosesquare", "COMBINING ENCLOSING SQUARE", nil) addSymbol(U(0x020DF), "ord", "enclosediamond", "COMBINING ENCLOSING DIAMOND", nil) @@ -551,1140 +452,772 @@ addSymbol(U(0x0213C), "ord", "Bbbpi", "DOUBLE-STRUCK SMALL PI", nil) addSymbol(U(0x0213D), "ord", "Bbbgamma", "DOUBLE-STRUCK SMALL GAMMA", nil) addSymbol(U(0x0213E), "ord", "BbbGamma", "DOUBLE-STRUCK CAPITAL GAMMA", nil) addSymbol(U(0x0213F), "ord", "BbbPi", "DOUBLE-STRUCK CAPITAL PI", nil) -addSymbol(U(0x02140), "big", "Bbbsum", "DOUBLE-STRUCK N-ARY SUMMATION", nil) +addSymbol(U(0x02140), "op", "Bbbsum", "DOUBLE-STRUCK N-ARY SUMMATION", nil) addSymbol(U(0x02141), "ord", "Game", "TURNED SANS-SERIF CAPITAL G", nil) addSymbol(U(0x02142), "ord", "sansLturned", "TURNED SANS-SERIF CAPITAL L", nil) addSymbol(U(0x02143), "ord", "sansLmirrored", "REVERSED SANS-SERIF CAPITAL L", nil) addSymbol(U(0x02144), "ord", "Yup", "TURNED SANS-SERIF CAPITAL Y", nil) addSymbol(U(0x02145), "ord", "mitBbbD", "DOUBLE-STRUCK ITALIC CAPITAL D", { - { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, -}) + { form = "prefix", lspace = 3, priority = 780, rspace = 0 }}) addSymbol(U(0x02146), "ord", "mitBbbd", "DOUBLE-STRUCK ITALIC SMALL D", { - { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, -}) + { form = "prefix", lspace = 3, priority = 780, rspace = 0 }}) addSymbol(U(0x02147), "ord", "mitBbbe", "DOUBLE-STRUCK ITALIC SMALL E", nil) addSymbol(U(0x02148), "ord", "mitBbbi", "DOUBLE-STRUCK ITALIC SMALL I", nil) addSymbol(U(0x02149), "ord", "mitBbbj", "DOUBLE-STRUCK ITALIC SMALL J", nil) addSymbol(U(0x0214A), "ord", "PropertyLine", "PROPERTY LINE", nil) addSymbol(U(0x0214B), "ord", "upand", "TURNED AMPERSAND", nil) addSymbol(U(0x02190), "rel", "leftarrow", "LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02191), "rel", "uparrow", "UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02192), "rel", "rightarrow", "RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02193), "rel", "downarrow", "DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02194), "rel", "leftrightarrow", "LEFT RIGHT ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02195), "rel", "updownarrow", "UP DOWN ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02196), "rel", "nwarrow", "NORTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02197), "rel", "nearrow", "NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02198), "rel", "searrow", "SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02199), "rel", "swarrow", "SOUTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0219A), "rel", "nleftarrow", "LEFTWARDS ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0219B), "rel", "nrightarrow", "RIGHTWARDS ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0219C), "rel", "leftwavearrow", "LEFTWARDS WAVE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0219D), "rel", "rightwavearrow", "RIGHTWARDS WAVE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0219E), "rel", "twoheadleftarrow", "LEFTWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0219F), "rel", "twoheaduparrow", "UPWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021A0), "rel", "twoheadrightarrow", "RIGHTWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021A1), "rel", "twoheaddownarrow", "DOWNWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021A2), "rel", "leftarrowtail", "LEFTWARDS ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021A3), "rel", "rightarrowtail", "RIGHTWARDS ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021A4), "rel", "mapsfrom", "LEFTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021A5), "rel", "mapsup", "UPWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021A6), "rel", "mapsto", "RIGHTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021A7), "rel", "mapsdown", "DOWNWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021A8), "rel", "updownarrowbar", "UP DOWN ARROW WITH BASE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021A9), "rel", "hookleftarrow", "LEFTWARDS ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021AA), "rel", "hookrightarrow", "RIGHTWARDS ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021AB), "rel", "looparrowleft", "LEFTWARDS ARROW WITH LOOP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021AC), "rel", "looparrowright", "RIGHTWARDS ARROW WITH LOOP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021AD), "rel", "leftrightsquigarrow", "LEFT RIGHT WAVE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021AE), "rel", "nleftrightarrow", "LEFT RIGHT ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021AF), "rel", "downzigzagarrow", "DOWNWARDS ZIGZAG ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021B0), "rel", "Lsh", "UPWARDS ARROW WITH TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021B1), "rel", "Rsh", "UPWARDS ARROW WITH TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021B2), "rel", "Ldsh", "DOWNWARDS ARROW WITH TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021B3), "rel", "Rdsh", "DOWNWARDS ARROW WITH TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021B4), "ord", "linefeed", "RIGHTWARDS ARROW WITH CORNER DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021B5), "ord", "carriagereturn", "DOWNWARDS ARROW WITH CORNER LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021B6), "rel", "curvearrowleft", "ANTICLOCKWISE TOP SEMICIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021B7), "rel", "curvearrowright", "CLOCKWISE TOP SEMICIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021B8), "ord", "barovernorthwestarrow", "NORTH WEST ARROW TO LONG BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021B9), "ord", "barleftarrowrightarrowbar", "LEFTWARDS ARROW TO BAR OVER RIGHTWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021BA), "rel", "acwopencirclearrow", "ANTICLOCKWISE OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021BB), "rel", "cwopencirclearrow", "CLOCKWISE OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021BC), "rel", "leftharpoonup", "LEFTWARDS HARPOON WITH BARB UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021BD), "rel", "leftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021BE), "rel", "upharpoonright", "UPWARDS HARPOON WITH BARB RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021BF), "rel", "upharpoonleft", "UPWARDS HARPOON WITH BARB LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021C0), "rel", "rightharpoonup", "RIGHTWARDS HARPOON WITH BARB UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021C1), "rel", "rightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021C2), "rel", "downharpoonright", "DOWNWARDS HARPOON WITH BARB RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021C3), "rel", "downharpoonleft", "DOWNWARDS HARPOON WITH BARB LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021C4), "rel", "rightleftarrows", "RIGHTWARDS ARROW OVER LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021C5), "rel", "updownarrows", "UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021C6), "rel", "leftrightarrows", "LEFTWARDS ARROW OVER RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021C7), "rel", "leftleftarrows", "LEFTWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021C8), "rel", "upuparrows", "UPWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021C9), "rel", "rightrightarrows", "RIGHTWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021CA), "rel", "downdownarrows", "DOWNWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021CB), "rel", "leftrightharpoons", "LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021CC), "rel", "rightleftharpoons", "RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021CD), "rel", "nLeftarrow", "LEFTWARDS DOUBLE ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021CE), "rel", "nLeftrightarrow", "LEFT RIGHT DOUBLE ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021CF), "rel", "nRightarrow", "RIGHTWARDS DOUBLE ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021D0), "rel", "Leftarrow", "LEFTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021D1), "rel", "Uparrow", "UPWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021D2), "rel", "Rightarrow", "RIGHTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021D3), "rel", "Downarrow", "DOWNWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021D4), "rel", "Leftrightarrow", "LEFT RIGHT DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021D5), "rel", "Updownarrow", "UP DOWN DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021D6), "rel", "Nwarrow", "NORTH WEST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021D7), "rel", "Nearrow", "NORTH EAST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021D8), "rel", "Searrow", "SOUTH EAST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021D9), "rel", "Swarrow", "SOUTH WEST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021DA), "rel", "Lleftarrow", "LEFTWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021DB), "rel", "Rrightarrow", "RIGHTWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021DC), "rel", "leftsquigarrow", "LEFTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021DD), "rel", "rightsquigarrow", "RIGHTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021DE), "rel", "nHuparrow", "UPWARDS ARROW WITH DOUBLE STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021DF), "rel", "nHdownarrow", "DOWNWARDS ARROW WITH DOUBLE STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021E0), "rel", "leftdasharrow", "LEFTWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021E1), "rel", "updasharrow", "UPWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021E2), "rel", "rightdasharrow", "RIGHTWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021E3), "rel", "downdasharrow", "DOWNWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021E4), "rel", "barleftarrow", "LEFTWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021E5), "rel", "rightarrowbar", "RIGHTWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021E6), "rel", "leftwhitearrow", "LEFTWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021E7), "rel", "upwhitearrow", "UPWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021E8), "rel", "rightwhitearrow", "RIGHTWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021E9), "rel", "downwhitearrow", "DOWNWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021EA), "rel", "whitearrowupfrombar", "UPWARDS WHITE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021EB), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021EC), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL WITH HORIZONTAL BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021ED), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL WITH VERTICAL BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021EE), "rel", nil, "UPWARDS WHITE DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021EF), "rel", nil, "UPWARDS WHITE DOUBLE ARROW ON PEDESTAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021F0), "rel", nil, "RIGHTWARDS WHITE ARROW FROM WALL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021F1), "rel", nil, "NORTH WEST ARROW TO CORNER", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021F2), "rel", nil, "SOUTH EAST ARROW TO CORNER", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x021F3), "rel", nil, "UP DOWN WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021F4), "rel", "circleonrightarrow", "RIGHT ARROW WITH SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021F5), "rel", "downuparrows", "DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021F6), "rel", "rightthreearrows", "THREE RIGHTWARDS ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021F7), "rel", "nvleftarrow", "LEFTWARDS ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021F8), "rel", "nvrightarrow", "RIGHTWARDS ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021F9), "rel", "nvleftrightarrow", "LEFT RIGHT ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021FA), "rel", "nVleftarrow", "LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021FB), "rel", "nVrightarrow", "RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021FC), "rel", "nVleftrightarrow", "LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021FD), "rel", "leftarrowtriangle", "LEFTWARDS OPEN-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021FE), "rel", "rightarrowtriangle", "RIGHTWARDS OPEN-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x021FF), "rel", "leftrightarrowtriangle", "LEFT RIGHT OPEN-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02200), "ord", "forall", "FOR ALL", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) addSymbol(U(0x02201), "ord", "complement", "COMPLEMENT", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }}) addSymbol(U(0x02202), "ord", "partial", "PARTIAL DIFFERENTIAL", { - { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, -}) + { form = "prefix", lspace = 3, priority = 780, rspace = 0 }}) addSymbol(U(0x02203), "ord", "exists", "THERE EXISTS", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) addSymbol(U(0x02204), "ord", "nexists", "THERE DOES NOT EXIST", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) addSymbol(U(0x02205), "ord", "varnothing", "EMPTY SET", nil) addSymbol(U(0x02206), "ord", "increment", "INCREMENT", { - { form = "infix", lspace = 0, priority = 720, rspace = 0 }, -}) + { form = "infix", lspace = 0, priority = 720, rspace = 0 }}) addSymbol(U(0x02207), "ord", "nabla", "NABLA", { - { form = "prefix", lspace = 0, priority = 780, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 780, rspace = 0 }}) addSymbol(U(0x02208), "rel", "in", "ELEMENT OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02209), "rel", "notin", "NOT AN ELEMENT OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x0220A), "rel", "smallin", "SMALL ELEMENT OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x0220B), "rel", "ni", "CONTAINS AS MEMBER", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x0220C), "rel", "nni", "DOES NOT CONTAIN AS MEMBER", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x0220D), "rel", "smallni", "SMALL CONTAINS AS MEMBER", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x0220E), "ord", "QED", "END OF PROOF", nil) -addSymbol(U(0x0220F), "big", "prod", "N-ARY PRODUCT", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02210), "big", "coprod", "N-ARY COPRODUCT", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02211), "big", "sum", "N-ARY SUMMATION", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, -}) +addSymbol(U(0x0220F), "op", "prod", "N-ARY PRODUCT", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }}) +addSymbol(U(0x02210), "op", "coprod", "N-ARY COPRODUCT", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }}) +addSymbol(U(0x02211), "op", "sum", "N-ARY SUMMATION", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }}) addSymbol(U(0x02212), "bin", "minus", "MINUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02213), "bin", "mp", "MINUS-OR-PLUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02214), "bin", "dotplus", "DOT PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02215), "bin", "divslash", "DIVISION SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x02216), "bin", "setminus", "SET MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02217), "bin", "ast", "ASTERISK OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02218), "bin", "vysmwhtcircle", "RING OPERATOR", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 900, rspace = 3 }}) addSymbol(U(0x02219), "bin", "vysmblkcircle", "BULLET OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) -addSymbol(U(0x0221A), "big", "sqrt", "SQUARE ROOT", { - { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, -}) -addSymbol(U(0x0221B), "big", "cuberoot", "CUBE ROOT", { - { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, -}) -addSymbol(U(0x0221C), "big", "fourthroot", "FOURTH ROOT", { - { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) +addSymbol(U(0x0221A), "op", "sqrt", "SQUARE ROOT", { + { form = "prefix", lspace = 3, priority = 860, rspace = 0 }}) +addSymbol(U(0x0221B), "op", "cuberoot", "CUBE ROOT", { + { form = "prefix", lspace = 3, priority = 860, rspace = 0 }}) +addSymbol(U(0x0221C), "op", "fourthroot", "FOURTH ROOT", { + { form = "prefix", lspace = 3, priority = 860, rspace = 0 }}) addSymbol(U(0x0221D), "rel", "propto", "PROPORTIONAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0221E), "ord", "infty", "INFINITY", nil) addSymbol(U(0x0221F), "ord", "rightangle", "RIGHT ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x02220), "ord", "angle", "ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x02221), "ord", "measuredangle", "MEASURED ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x02222), "ord", "sphericalangle", "SPHERICAL ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x02223), "rel", "mid", "DIVIDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02224), "rel", "nmid", "DOES NOT DIVIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02225), "rel", "parallel", "PARALLEL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02226), "rel", "nparallel", "NOT PARALLEL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02227), "bin", "wedge", "LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x02228), "bin", "vee", "LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02229), "bin", "cap", "INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x0222A), "bin", "cup", "UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x0222B), "ord", "int", "INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x0222C), "ord", "iint", "DOUBLE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x0222D), "ord", "iiint", "TRIPLE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x0222E), "ord", "oint", "CONTOUR INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x0222F), "ord", "oiint", "SURFACE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02230), "ord", "oiiint", "VOLUME INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02231), "ord", "intclockwise", "CLOCKWISE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02232), "ord", "varointclockwise", "CLOCKWISE CONTOUR INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02233), "ord", "ointctrclockwise", "ANTICLOCKWISE CONTOUR INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02234), "rel", "therefore", "THEREFORE", { - { form = "prefix", lspace = 0, priority = 200, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 200, rspace = 0 }}) addSymbol(U(0x02235), "rel", "because", "BECAUSE", { - { form = "prefix", lspace = 0, priority = 200, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 200, rspace = 0 }}) addSymbol(U(0x02236), "rel", "mathratio", "RATIO", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x02237), "rel", "Colon", "PROPORTION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02238), "bin", "dotminus", "DOT MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02239), "rel", "dashcolon", "EXCESS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0223A), "rel", "dotsminusdots", "GEOMETRIC PROPORTION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0223B), "rel", "kernelcontraction", "HOMOTHETIC", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0223C), "rel", "sim", "TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) addSymbol(U(0x0223D), "rel", "backsim", "REVERSED TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0223E), "bin", "invlazys", "INVERTED LAZY S", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0223F), "ord", "sinewave", "SINE WAVE", nil) addSymbol(U(0x02240), "bin", "wr", "WREATH PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02241), "rel", "nsim", "NOT TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02242), "rel", "eqsim", "MINUS TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02243), "rel", "simeq", "ASYMPTOTICALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02244), "rel", "nsime", "NOT ASYMPTOTICALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02245), "rel", "cong", "APPROXIMATELY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02246), "rel", "simneqq", "APPROXIMATELY BUT NOT ACTUALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02247), "rel", "ncong", "NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02248), "rel", "approx", "ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02249), "rel", "napprox", "NOT ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0224A), "rel", "approxeq", "ALMOST EQUAL OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0224B), "rel", "approxident", "TRIPLE TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0224C), "rel", "backcong", "ALL EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0224D), "rel", "asymp", "EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0224E), "rel", "Bumpeq", "GEOMETRICALLY EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0224F), "rel", "bumpeq", "DIFFERENCE BETWEEN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02250), "rel", "doteq", "APPROACHES THE LIMIT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02251), "rel", "Doteq", "GEOMETRICALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02252), "rel", "fallingdotseq", "APPROXIMATELY EQUAL TO OR THE IMAGE OF", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02253), "rel", "risingdotseq", "IMAGE OF OR APPROXIMATELY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02254), "rel", "coloneq", "COLON EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02255), "rel", "eqcolon", "EQUALS COLON", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02256), "rel", "eqcirc", "RING IN EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02257), "rel", "circeq", "RING EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02258), "rel", "arceq", "CORRESPONDS TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02259), "rel", "wedgeq", "ESTIMATES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0225A), "rel", "veeeq", "EQUIANGULAR TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0225B), "rel", "stareq", "STAR EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0225C), "rel", "triangleq", "DELTA EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0225D), "rel", "eqdef", "EQUAL TO BY DEFINITION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0225E), "rel", "measeq", "MEASURED BY", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0225F), "rel", "questeq", "QUESTIONED EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02260), "rel", "ne", "NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02261), "rel", "equiv", "IDENTICAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02262), "rel", "nequiv", "NOT IDENTICAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02263), "rel", "Equiv", "STRICTLY EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02264), "rel", "leq", "LESS-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02265), "rel", "geq", "GREATER-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02266), "rel", "leqq", "LESS-THAN OVER EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02267), "rel", "geqq", "GREATER-THAN OVER EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02268), "rel", "lneqq", "LESS-THAN BUT NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02269), "rel", "gneqq", "GREATER-THAN BUT NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0226A), "rel", "ll", "MUCH LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0226B), "rel", "gg", "MUCH GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0226C), "rel", "between", "BETWEEN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0226D), "rel", "nasymp", "NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0226E), "rel", "nless", "NOT LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0226F), "rel", "ngtr", "NOT GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02270), "rel", "nleq", "NEITHER LESS-THAN NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02271), "rel", "ngeq", "NEITHER GREATER-THAN NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02272), "rel", "lesssim", "LESS-THAN OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02273), "rel", "gtrsim", "GREATER-THAN OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02274), "rel", "nlesssim", "NEITHER LESS-THAN NOR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02275), "rel", "ngtrsim", "NEITHER GREATER-THAN NOR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02276), "rel", "lessgtr", "LESS-THAN OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02277), "rel", "gtrless", "GREATER-THAN OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02278), "rel", "nlessgtr", "NEITHER LESS-THAN NOR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02279), "rel", "ngtrless", "NEITHER GREATER-THAN NOR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0227A), "rel", "prec", "PRECEDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0227B), "rel", "succ", "SUCCEEDS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0227C), "rel", "preccurlyeq", "PRECEDES OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0227D), "rel", "succcurlyeq", "SUCCEEDS OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0227E), "rel", "precsim", "PRECEDES OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0227F), "rel", "succsim", "SUCCEEDS OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02280), "rel", "nprec", "DOES NOT PRECEDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02281), "rel", "nsucc", "DOES NOT SUCCEED", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02282), "rel", "subset", "SUBSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02283), "rel", "supset", "SUPERSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02284), "rel", "nsubset", "NOT A SUBSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02285), "rel", "nsupset", "NOT A SUPERSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02286), "rel", "subseteq", "SUBSET OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02287), "rel", "supseteq", "SUPERSET OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02288), "rel", "nsubseteq", "NEITHER A SUBSET OF NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02289), "rel", "nsupseteq", "NEITHER A SUPERSET OF NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x0228A), "rel", "subsetneq", "SUBSET OF WITH NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x0228B), "rel", "supsetneq", "SUPERSET OF WITH NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x0228C), "bin", "cupleftarrow", "MULTISET", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x0228D), "bin", "cupdot", "MULTISET MULTIPLICATION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x0228E), "bin", "uplus", "MULTISET UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x0228F), "rel", "sqsubset", "SQUARE IMAGE OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02290), "rel", "sqsupset", "SQUARE ORIGINAL OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02291), "rel", "sqsubseteq", "SQUARE IMAGE OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02292), "rel", "sqsupseteq", "SQUARE ORIGINAL OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02293), "bin", "sqcap", "SQUARE CAP", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02294), "bin", "sqcup", "SQUARE CUP", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x02295), "bin", "oplus", "CIRCLED PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02296), "bin", "ominus", "CIRCLED MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02297), "bin", "otimes", "CIRCLED TIMES", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02298), "bin", "oslash", "CIRCLED DIVISION SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x02299), "bin", "odot", "CIRCLED DOT OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x0229A), "bin", "circledcirc", "CIRCLED RING OPERATOR", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 900, rspace = 3 }}) addSymbol(U(0x0229B), "bin", "circledast", "CIRCLED ASTERISK OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x0229C), "bin", "circledequal", "CIRCLED EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x0229D), "bin", "circleddash", "CIRCLED DASH", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x0229E), "bin", "boxplus", "SQUARED PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x0229F), "bin", "boxminus", "SQUARED MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x022A0), "bin", "boxtimes", "SQUARED TIMES", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x022A1), "bin", "boxdot", "SQUARED DOT OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x022A2), "rel", "vdash", "RIGHT TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x022A3), "rel", "dashv", "LEFT TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x022A4), "ord", "top", "DOWN TACK", nil) addSymbol(U(0x022A5), "rel", "bot", "UP TACK", nil) addSymbol(U(0x022A6), "rel", "assert", "ASSERTION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022A7), "rel", "models", "MODELS", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x022A8), "rel", "vDash", "TRUE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x022A9), "rel", "Vdash", "FORCES", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x022AA), "rel", "Vvdash", "TRIPLE VERTICAL BAR RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x022AB), "rel", "VDash", "DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x022AC), "rel", "nvdash", "DOES NOT PROVE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x022AD), "rel", "nvDash", "NOT TRUE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x022AE), "rel", "nVdash", "DOES NOT FORCE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x022AF), "rel", "nVDash", "NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x022B0), "rel", "prurel", "PRECEDES UNDER RELATION", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022B1), "rel", "scurel", "SUCCEEDS UNDER RELATION", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022B2), "rel", "vartriangleleft", "NORMAL SUBGROUP OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022B3), "rel", "vartriangleright", "CONTAINS AS NORMAL SUBGROUP", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022B4), "rel", "trianglelefteq", "NORMAL SUBGROUP OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022B5), "rel", "trianglerighteq", "CONTAINS AS NORMAL SUBGROUP OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022B6), "rel", "origof", "ORIGINAL OF", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 220, rspace = 5 }}) addSymbol(U(0x022B7), "rel", "imageof", "IMAGE OF", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 220, rspace = 5 }}) addSymbol(U(0x022B8), "rel", "multimap", "MULTIMAP", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 220, rspace = 5 }}) addSymbol(U(0x022B9), "bin", "hermitmatrix", "HERMITIAN CONJUGATE MATRIX", nil) addSymbol(U(0x022BA), "bin", "intercal", "INTERCALATE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x022BB), "bin", "veebar", "XOR", { - { form = "infix", lspace = 4, priority = 420, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 420, rspace = 4 }}) addSymbol(U(0x022BC), "bin", "barwedge", "NAND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x022BD), "bin", "barvee", "NOR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x022BE), "ord", "measuredrightangle", "RIGHT ANGLE WITH ARC", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x022BF), "ord", "varlrtriangle", "RIGHT TRIANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) -addSymbol(U(0x022C0), "big", "bigwedge", "N-ARY LOGICAL AND", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x022C1), "big", "bigvee", "N-ARY LOGICAL OR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x022C2), "big", "bigcap", "N-ARY INTERSECTION", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x022C3), "big", "bigcup", "N-ARY UNION", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) +addSymbol(U(0x022C0), "op", "bigwedge", "N-ARY LOGICAL AND", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) +addSymbol(U(0x022C1), "op", "bigvee", "N-ARY LOGICAL OR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) +addSymbol(U(0x022C2), "op", "bigcap", "N-ARY INTERSECTION", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) +addSymbol(U(0x022C3), "op", "bigcup", "N-ARY UNION", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }}) addSymbol(U(0x022C4), "bin", "smwhtdiamond", "DIAMOND OPERATOR", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 900, rspace = 3 }}) addSymbol(U(0x022C5), "bin", "cdot", "DOT OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x022C6), "bin", "star", "STAR OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x022C7), "bin", "divideontimes", "DIVISION TIMES", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x022C8), "rel", "bowtie", "BOWTIE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022C9), "bin", "ltimes", "LEFT NORMAL FACTOR SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x022CA), "bin", "rtimes", "RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x022CB), "bin", "leftthreetimes", "LEFT SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x022CC), "bin", "rightthreetimes", "RIGHT SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x022CD), "rel", "backsimeq", "REVERSED TILDE EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022CE), "bin", "curlyvee", "CURLY LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x022CF), "bin", "curlywedge", "CURLY LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x022D0), "rel", "Subset", "DOUBLE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022D1), "rel", "Supset", "DOUBLE SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022D2), "bin", "Cap", "DOUBLE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x022D3), "bin", "Cup", "DOUBLE UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x022D4), "rel", "pitchfork", "PITCHFORK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022D5), "rel", "equalparallel", "EQUAL AND PARALLEL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022D6), "rel", "lessdot", "LESS-THAN WITH DOT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022D7), "rel", "gtrdot", "GREATER-THAN WITH DOT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022D8), "rel", "lll", "VERY MUCH LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022D9), "rel", "ggg", "VERY MUCH GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022DA), "rel", "lesseqgtr", "LESS-THAN EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022DB), "rel", "gtreqless", "GREATER-THAN EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022DC), "rel", "eqless", "EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022DD), "rel", "eqgtr", "EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022DE), "rel", "curlyeqprec", "EQUAL TO OR PRECEDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022DF), "rel", "curlyeqsucc", "EQUAL TO OR SUCCEEDS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022E0), "rel", "npreccurlyeq", "DOES NOT PRECEDE OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022E1), "rel", "nsucccurlyeq", "DOES NOT SUCCEED OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022E2), "rel", "nsqsubseteq", "NOT SQUARE IMAGE OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022E3), "rel", "nsqsupseteq", "NOT SQUARE ORIGINAL OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022E4), "rel", "sqsubsetneq", "SQUARE IMAGE OF OR NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022E5), "rel", "sqsupsetneq", "SQUARE ORIGINAL OF OR NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022E6), "rel", "lnsim", "LESS-THAN BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022E7), "rel", "gnsim", "GREATER-THAN BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022E8), "rel", "precnsim", "PRECEDES BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022E9), "rel", "succnsim", "SUCCEEDS BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x022EA), "rel", "nvartriangleleft", "NOT NORMAL SUBGROUP OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022EB), "rel", "nvartriangleright", "DOES NOT CONTAIN AS NORMAL SUBGROUP", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022EC), "rel", "ntrianglelefteq", "NOT NORMAL SUBGROUP OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022ED), "rel", "ntrianglerighteq", "DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022EE), "rel", "vdots", "VERTICAL ELLIPSIS", nil) addSymbol(U(0x022EF), "rel", "unicodecdots", "MIDLINE HORIZONTAL ELLIPSIS", nil) addSymbol(U(0x022F0), "rel", "adots", "UP RIGHT DIAGONAL ELLIPSIS", nil) addSymbol(U(0x022F1), "rel", "ddots", "DOWN RIGHT DIAGONAL ELLIPSIS", nil) addSymbol(U(0x022F2), "rel", "disin", "ELEMENT OF WITH LONG HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022F3), "rel", "varisins", "ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022F4), "rel", "isins", "SMALL ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022F5), "rel", "isindot", "ELEMENT OF WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022F6), "rel", "varisinobar", "ELEMENT OF WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022F7), "rel", "isinobar", "SMALL ELEMENT OF WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022F8), "rel", "isinvb", "ELEMENT OF WITH UNDERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022F9), "rel", "isinE", "ELEMENT OF WITH TWO HORIZONTAL STROKES", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022FA), "rel", "nisd", "CONTAINS WITH LONG HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022FB), "rel", "varnis", "CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022FC), "rel", "nis", "SMALL CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022FD), "rel", "varniobar", "CONTAINS WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022FE), "rel", "niobar", "SMALL CONTAINS WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x022FF), "rel", "bagmember", "Z NOTATION BAG MEMBERSHIP", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02300), "ord", "diameter", "DIAMETER SIGN", nil) addSymbol(U(0x02301), "ord", nil, "ELECTRIC ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02302), "ord", "house", "HOUSE", nil) addSymbol(U(0x02305), "bin", "varbarwedge", "PROJECTIVE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02306), "bin", "vardoublebarwedge", "PERSPECTIVE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02308), "open", "lceil", "LEFT CEILING", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02309), "close", "rceil", "RIGHT CEILING", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0230A), "open", "lfloor", "LEFT FLOOR", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0230B), "close", "rfloor", "RIGHT FLOOR", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02310), "ord", "invnot", "REVERSED NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) addSymbol(U(0x02311), "ord", "sqlozenge", "SQUARE LOZENGE", nil) addSymbol(U(0x02312), "ord", "profline", "ARC", nil) addSymbol(U(0x02313), "ord", "profsurf", "SEGMENT", nil) addSymbol(U(0x02317), "ord", "viewdata", "VIEWDATA SQUARE", nil) addSymbol(U(0x02319), "ord", "turnednot", "TURNED NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) addSymbol(U(0x0231C), "open", "ulcorner", "TOP LEFT CORNER", nil) addSymbol(U(0x0231D), "close", "urcorner", "TOP RIGHT CORNER", nil) addSymbol(U(0x0231E), "open", "llcorner", "BOTTOM LEFT CORNER", nil) @@ -1692,17 +1225,13 @@ addSymbol(U(0x0231F), "close", "lrcorner", "BOTTOM RIGHT CORNER", nil) addSymbol(U(0x02320), "ord", "inttop", "TOP HALF INTEGRAL", nil) addSymbol(U(0x02321), "ord", "intbottom", "BOTTOM HALF INTEGRAL", nil) addSymbol(U(0x02322), "rel", "frown", "FROWN", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x02323), "rel", "smile", "SMILE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x02329), "ord", nil, "LEFT-POINTING ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0232A), "ord", nil, "RIGHT-POINTING ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0232C), "ord", "varhexagonlrbonds", "BENZENE RING", nil) addSymbol(U(0x02332), "ord", "conictaper", "CONICAL TAPER", nil) addSymbol(U(0x02336), "ord", "topbot", "APL FUNCTIONAL SYMBOL I-BEAM", nil) @@ -1712,11 +1241,9 @@ addSymbol(U(0x02340), "ord", "APLnotbackslash", "APL FUNCTIONAL SYMBOL BACKSLASH addSymbol(U(0x02353), "ord", "APLboxupcaret", "APL FUNCTIONAL SYMBOL QUAD UP CARET", nil) addSymbol(U(0x02370), "ord", "APLboxquestion", "APL FUNCTIONAL SYMBOL QUAD QUESTION", nil) addSymbol(U(0x0237C), "rel", "rangledownzigzagarrow", "RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0238B), "ord", nil, "BROKEN CIRCLE WITH NORTHWEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02394), "ord", "hexagon", "SOFTWARE-FUNCTION SYMBOL", nil) addSymbol(U(0x0239B), "ord", "lparenuend", "LEFT PARENTHESIS UPPER HOOK", nil) addSymbol(U(0x0239C), "ord", "lparenextender", "LEFT PARENTHESIS EXTENSION", nil) @@ -1744,37 +1271,28 @@ addSymbol(U(0x023B1), "rel", "rmoustache", "UPPER RIGHT OR LOWER LEFT CURLY BRAC addSymbol(U(0x023B2), "ord", "sumtop", "SUMMATION TOP", nil) addSymbol(U(0x023B3), "ord", "sumbottom", "SUMMATION BOTTOM", nil) addSymbol(U(0x023B4), "ord", "overbracket", "TOP SQUARE BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x023B5), "ord", "underbracket", "BOTTOM SQUARE BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x023B6), "ord", "bbrktbrk", "BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET", nil) addSymbol(U(0x023B7), "ord", "sqrtbottom", "RADICAL SYMBOL BOTTOM", nil) addSymbol(U(0x023B8), "ord", "lvboxline", "LEFT VERTICAL BOX LINE", nil) addSymbol(U(0x023B9), "ord", "rvboxline", "RIGHT VERTICAL BOX LINE", nil) addSymbol(U(0x023CD), "ord", nil, "SQUARE FOOT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) addSymbol(U(0x023CE), "ord", "varcarriagereturn", "RETURN SYMBOL", nil) addSymbol(U(0x023DC), "ord", "overparen", "TOP PARENTHESIS", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x023DD), "ord", "underparen", "BOTTOM PARENTHESIS", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x023DE), "ord", "overbrace", "TOP CURLY BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x023DF), "ord", "underbrace", "BOTTOM CURLY BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x023E0), "ord", "obrbrak", "TOP TORTOISE SHELL BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x023E1), "ord", "ubrbrak", "BOTTOM TORTOISE SHELL BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x023E2), "ord", "trapezium", "WHITE TRAPEZIUM", nil) addSymbol(U(0x023E3), "ord", "benzenr", "BENZENE RING WITH CIRCLE", nil) addSymbol(U(0x023E4), "ord", "strns", "STRAIGHTNESS", nil) @@ -1934,137 +1452,94 @@ addSymbol(U(0x0272A), "ord", "circledstar", "CIRCLED WHITE STAR", nil) addSymbol(U(0x02736), "ord", "varstar", "SIX POINTED BLACK STAR", nil) addSymbol(U(0x0273D), "ord", "dingasterisk", "HEAVY TEARDROP-SPOKED ASTERISK", nil) addSymbol(U(0x02772), "open", "lbrbrak", "LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02773), "close", "rbrbrak", "LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02794), "ord", nil, "HEAVY WIDE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02795), "ord", nil, "HEAVY PLUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02796), "ord", nil, "HEAVY MINUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02797), "ord", nil, "HEAVY DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x02798), "ord", nil, "HEAVY SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02799), "ord", nil, "HEAVY RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0279A), "ord", nil, "HEAVY NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0279B), "ord", "draftingarrow", "DRAFTING POINT RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0279C), "ord", nil, "HEAVY ROUND-TIPPED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0279D), "ord", nil, "TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0279E), "ord", nil, "HEAVY TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0279F), "ord", nil, "DASHED TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027A0), "ord", nil, "HEAVY DASHED TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027A1), "ord", nil, "BLACK RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027A5), "ord", nil, "HEAVY BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027A6), "ord", nil, "HEAVY BLACK CURVED UPWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027A7), "ord", nil, "SQUAT BLACK RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x027A8), "ord", nil, "HEAVY CONCAVE-POINTED BLACK RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027A9), "ord", nil, "RIGHT-SHADED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027AA), "ord", nil, "LEFT-SHADED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027AB), "ord", nil, "BACK-TILTED SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027AC), "ord", nil, "FRONT-TILTED SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027AD), "ord", nil, "HEAVY LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027AE), "ord", nil, "HEAVY UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027AF), "ord", nil, "NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027B1), "ord", nil, "NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027B2), "ord", nil, "CIRCLED HEAVY WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x027B3), "ord", nil, "WHITE-FEATHERED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027B4), "ord", nil, "BLACK-FEATHERED SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x027B5), "ord", nil, "BLACK-FEATHERED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027B6), "ord", nil, "BLACK-FEATHERED NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x027B7), "ord", nil, "HEAVY BLACK-FEATHERED SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x027B8), "ord", nil, "HEAVY BLACK-FEATHERED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027B9), "ord", nil, "HEAVY BLACK-FEATHERED NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x027BA), "ord", nil, "TEARDROP-BARBED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027BB), "ord", nil, "HEAVY TEARDROP-SHANKED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027BC), "ord", nil, "WEDGE-TAILED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027BD), "ord", nil, "HEAVY WEDGE-TAILED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027BE), "ord", nil, "OPEN-OUTLINED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027C0), "ord", "threedangle", "THREE DIMENSIONAL ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x027C1), "ord", "whiteinwhitetriangle", "WHITE TRIANGLE CONTAINING SMALL WHITE TRIANGLE", nil) addSymbol(U(0x027C2), "rel", "perp", "PERPENDICULAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x027C3), "rel", "subsetcirc", "OPEN SUBSET", nil) addSymbol(U(0x027C4), "rel", "supsetcirc", "OPEN SUPERSET", nil) addSymbol(U(0x027C5), "rel", "lbag", "LEFT S-SHAPED BAG DELIMITER", nil) @@ -2074,12 +1549,10 @@ addSymbol(U(0x027C8), "rel", "bsolhsub", "REVERSE SOLIDUS PRECEDING SUBSET", nil addSymbol(U(0x027C9), "rel", "suphsol", "SUPERSET PRECEDING SOLIDUS", nil) addSymbol(U(0x027CA), "rel", nil, "VERTICAL BAR WITH HORIZONTAL STROKE", nil) addSymbol(U(0x027CB), "rel", "diagup", "MATHEMATICAL RISING DIAGONAL", { - { form = "infix", lspace = 3, priority = 680, rspace = 3 }, -}) -addSymbol(U(0x027CC), "big", "longdivision", "LONG DIVISION", nil) + { form = "infix", lspace = 3, priority = 680, rspace = 3 }}) +addSymbol(U(0x027CC), "op", "longdivision", "LONG DIVISION", nil) addSymbol(U(0x027CD), "rel", "diagdown", "MATHEMATICAL FALLING DIAGONAL", { - { form = "infix", lspace = 3, priority = 680, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 680, rspace = 3 }}) addSymbol(U(0x027CE), "bin", nil, "SQUARED LOGICAL AND", nil) addSymbol(U(0x027CF), "bin", nil, "SQUARED LOGICAL OR", nil) addSymbol(U(0x027D0), "ord", "diamondcdot", "WHITE DIAMOND WITH CENTRED DOT", nil) @@ -2087,11 +1560,11 @@ addSymbol(U(0x027D1), "bin", "wedgedot", "AND WITH DOT", nil) addSymbol(U(0x027D2), "rel", "upin", "ELEMENT OF OPENING UPWARDS", nil) addSymbol(U(0x027D3), "rel", "pullback", "LOWER RIGHT CORNER WITH DOT", nil) addSymbol(U(0x027D4), "rel", "pushout", "UPPER LEFT CORNER WITH DOT", nil) -addSymbol(U(0x027D5), "big", "leftouterjoin", "LEFT OUTER JOIN", nil) -addSymbol(U(0x027D6), "big", "rightouterjoin", "RIGHT OUTER JOIN", nil) -addSymbol(U(0x027D7), "big", "fullouterjoin", "FULL OUTER JOIN", nil) -addSymbol(U(0x027D8), "big", "bigbot", "LARGE UP TACK", nil) -addSymbol(U(0x027D9), "big", "bigtop", "LARGE DOWN TACK", nil) +addSymbol(U(0x027D5), "op", "leftouterjoin", "LEFT OUTER JOIN", nil) +addSymbol(U(0x027D6), "op", "rightouterjoin", "RIGHT OUTER JOIN", nil) +addSymbol(U(0x027D7), "op", "fullouterjoin", "FULL OUTER JOIN", nil) +addSymbol(U(0x027D8), "op", "bigbot", "LARGE UP TACK", nil) +addSymbol(U(0x027D9), "op", "bigtop", "LARGE DOWN TACK", nil) addSymbol(U(0x027DA), "rel", "DashVDash", "LEFT AND RIGHT DOUBLE TURNSTILE", nil) addSymbol(U(0x027DB), "rel", "dashVdash", "LEFT AND RIGHT TACK", nil) addSymbol(U(0x027DC), "rel", "multimapinv", "LEFT MULTIMAP", nil) @@ -2105,689 +1578,410 @@ addSymbol(U(0x027E3), "bin", "concavediamondtickright", "WHITE CONCAVE-SIDED DIA addSymbol(U(0x027E4), "bin", "whitesquaretickleft", "WHITE SQUARE WITH LEFTWARDS TICK", nil) addSymbol(U(0x027E5), "bin", "whitesquaretickright", "WHITE SQUARE WITH RIGHTWARDS TICK", nil) addSymbol(U(0x027E6), "open", "lBrack", "MATHEMATICAL LEFT WHITE SQUARE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x027E7), "close", "rBrack", "MATHEMATICAL RIGHT WHITE SQUARE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x027E8), "open", "langle", "MATHEMATICAL LEFT ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x027E9), "close", "rangle", "MATHEMATICAL RIGHT ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x027EA), "open", "lAngle", "MATHEMATICAL LEFT DOUBLE ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x027EB), "close", "rAngle", "MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x027EC), "open", "Lbrbrak", "MATHEMATICAL LEFT WHITE TORTOISE SHELL BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x027ED), "close", "Rbrbrak", "MATHEMATICAL RIGHT WHITE TORTOISE SHELL BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x027EE), "open", "lgroup", "MATHEMATICAL LEFT FLATTENED PARENTHESIS", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x027EF), "close", "rgroup", "MATHEMATICAL RIGHT FLATTENED PARENTHESIS", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x027F0), "rel", "UUparrow", "UPWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027F1), "rel", "DDownarrow", "DOWNWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027F2), "rel", "acwgapcirclearrow", "ANTICLOCKWISE GAPPED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x027F3), "rel", "cwgapcirclearrow", "CLOCKWISE GAPPED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x027F4), "rel", "rightarrowonoplus", "RIGHT ARROW WITH CIRCLED PLUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027F5), "rel", "longleftarrow", "LONG LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027F6), "rel", "longrightarrow", "LONG RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027F7), "rel", "longleftrightarrow", "LONG LEFT RIGHT ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027F8), "rel", "Longleftarrow", "LONG LEFTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027F9), "rel", "Longrightarrow", "LONG RIGHTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027FA), "rel", "Longleftrightarrow", "LONG LEFT RIGHT DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027FB), "rel", "longmapsfrom", "LONG LEFTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027FC), "rel", "longmapsto", "LONG RIGHTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027FD), "rel", "Longmapsfrom", "LONG LEFTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027FE), "rel", "Longmapsto", "LONG RIGHTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x027FF), "rel", "longrightsquigarrow", "LONG RIGHTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02900), "rel", "nvtwoheadrightarrow", "RIGHTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02901), "rel", "nVtwoheadrightarrow", "RIGHTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02902), "rel", "nvLeftarrow", "LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02903), "rel", "nvRightarrow", "RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02904), "rel", "nvLeftrightarrow", "LEFT RIGHT DOUBLE ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02905), "rel", "twoheadmapsto", "RIGHTWARDS TWO-HEADED ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02906), "rel", "Mapsfrom", "LEFTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02907), "rel", "Mapsto", "RIGHTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02908), "rel", "downarrowbarred", "DOWNWARDS ARROW WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02909), "rel", "uparrowbarred", "UPWARDS ARROW WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0290A), "rel", "Uuparrow", "UPWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0290B), "rel", "Ddownarrow", "DOWNWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0290C), "rel", "leftbkarrow", "LEFTWARDS DOUBLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0290D), "rel", "rightbkarrow", "RIGHTWARDS DOUBLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0290E), "rel", "leftdbkarrow", "LEFTWARDS TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0290F), "rel", "dbkarrow", "RIGHTWARDS TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02910), "rel", "drbkarrow", "RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02911), "rel", "rightdotarrow", "RIGHTWARDS ARROW WITH DOTTED STEM", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02912), "rel", "baruparrow", "UPWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02913), "rel", "downarrowbar", "DOWNWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02914), "rel", "nvrightarrowtail", "RIGHTWARDS ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02915), "rel", "nVrightarrowtail", "RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02916), "rel", "twoheadrightarrowtail", "RIGHTWARDS TWO-HEADED ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02917), "rel", "nvtwoheadrightarrowtail", "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) -addSymbol( - U(0x02918), - "rel", - "nVtwoheadrightarrowtail", - "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x02918), "rel", "nVtwoheadrightarrowtail", "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02919), "rel", "lefttail", "LEFTWARDS ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0291A), "rel", "righttail", "RIGHTWARDS ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0291B), "rel", "leftdbltail", "LEFTWARDS DOUBLE ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0291C), "rel", "rightdbltail", "RIGHTWARDS DOUBLE ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0291D), "rel", "diamondleftarrow", "LEFTWARDS ARROW TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0291E), "rel", "rightarrowdiamond", "RIGHTWARDS ARROW TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0291F), "rel", "diamondleftarrowbar", "LEFTWARDS ARROW FROM BAR TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02920), "rel", "barrightarrowdiamond", "RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02921), "rel", "nwsearrow", "NORTH WEST AND SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02922), "rel", "neswarrow", "NORTH EAST AND SOUTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02923), "rel", "hknwarrow", "NORTH WEST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02924), "rel", "hknearrow", "NORTH EAST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02925), "rel", "hksearrow", "SOUTH EAST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02926), "rel", "hkswarrow", "SOUTH WEST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02927), "rel", "tona", "NORTH WEST ARROW AND NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02928), "rel", "toea", "NORTH EAST ARROW AND SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02929), "rel", "tosa", "SOUTH EAST ARROW AND SOUTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0292A), "rel", "towa", "SOUTH WEST ARROW AND NORTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0292B), "rel", "rdiagovfdiag", "RISING DIAGONAL CROSSING FALLING DIAGONAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0292C), "rel", "fdiagovrdiag", "FALLING DIAGONAL CROSSING RISING DIAGONAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0292D), "rel", "seovnearrow", "SOUTH EAST ARROW CROSSING NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0292E), "rel", "neovsearrow", "NORTH EAST ARROW CROSSING SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0292F), "rel", "fdiagovnearrow", "FALLING DIAGONAL CROSSING NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02930), "rel", "rdiagovsearrow", "RISING DIAGONAL CROSSING SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02931), "rel", "neovnwarrow", "NORTH EAST ARROW CROSSING NORTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02932), "rel", "nwovnearrow", "NORTH WEST ARROW CROSSING NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02933), "rel", "rightcurvedarrow", "WAVE ARROW POINTING DIRECTLY RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02934), "rel", "uprightcurvearrow", "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02935), "rel", "downrightcurvedarrow", "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02936), "rel", "leftdowncurvedarrow", "ARROW POINTING DOWNWARDS THEN CURVING LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02937), "rel", "rightdowncurvedarrow", "ARROW POINTING DOWNWARDS THEN CURVING RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02938), "rel", "cwrightarcarrow", "RIGHT-SIDE ARC CLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02939), "rel", "acwleftarcarrow", "LEFT-SIDE ARC ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0293A), "rel", "acwoverarcarrow", "TOP ARC ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0293B), "rel", "acwunderarcarrow", "BOTTOM ARC ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0293C), "rel", "curvearrowrightminus", "TOP ARC CLOCKWISE ARROW WITH MINUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0293D), "rel", "curvearrowleftplus", "TOP ARC ANTICLOCKWISE ARROW WITH PLUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0293E), "rel", "cwundercurvearrow", "LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x0293F), "rel", "ccwundercurvearrow", "LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02940), "rel", "acwcirclearrow", "ANTICLOCKWISE CLOSED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02941), "rel", "cwcirclearrow", "CLOCKWISE CLOSED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02942), "rel", "rightarrowshortleftarrow", "RIGHTWARDS ARROW ABOVE SHORT LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02943), "rel", "leftarrowshortrightarrow", "LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02944), "rel", "shortrightarrowleftarrow", "SHORT RIGHTWARDS ARROW ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02945), "rel", "rightarrowplus", "RIGHTWARDS ARROW WITH PLUS BELOW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02946), "rel", "leftarrowplus", "LEFTWARDS ARROW WITH PLUS BELOW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02947), "rel", "rightarrowx", "RIGHTWARDS ARROW THROUGH X", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02948), "rel", "leftrightarrowcircle", "LEFT RIGHT ARROW THROUGH SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02949), "rel", "twoheaduparrowcircle", "UPWARDS TWO-HEADED ARROW FROM SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0294A), "rel", "leftrightharpoonupdown", "LEFT BARB UP RIGHT BARB DOWN HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0294B), "rel", "leftrightharpoondownup", "LEFT BARB DOWN RIGHT BARB UP HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0294C), "rel", "updownharpoonrightleft", "UP BARB RIGHT DOWN BARB LEFT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0294D), "rel", "updownharpoonleftright", "UP BARB LEFT DOWN BARB RIGHT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0294E), "rel", "leftrightharpoonupup", "LEFT BARB UP RIGHT BARB UP HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0294F), "rel", "updownharpoonrightright", "UP BARB RIGHT DOWN BARB RIGHT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02950), "rel", "leftrightharpoondowndown", "LEFT BARB DOWN RIGHT BARB DOWN HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02951), "rel", "updownharpoonleftleft", "UP BARB LEFT DOWN BARB LEFT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02952), "rel", "barleftharpoonup", "LEFTWARDS HARPOON WITH BARB UP TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02953), "rel", "rightharpoonupbar", "RIGHTWARDS HARPOON WITH BARB UP TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02954), "rel", "barupharpoonright", "UPWARDS HARPOON WITH BARB RIGHT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02955), "rel", "downharpoonrightbar", "DOWNWARDS HARPOON WITH BARB RIGHT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02956), "rel", "barleftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWN TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02957), "rel", "rightharpoondownbar", "RIGHTWARDS HARPOON WITH BARB DOWN TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02958), "rel", "barupharpoonleft", "UPWARDS HARPOON WITH BARB LEFT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02959), "rel", "downharpoonleftbar", "DOWNWARDS HARPOON WITH BARB LEFT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0295A), "rel", "leftharpoonupbar", "LEFTWARDS HARPOON WITH BARB UP FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0295B), "rel", "barrightharpoonup", "RIGHTWARDS HARPOON WITH BARB UP FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0295C), "rel", "upharpoonrightbar", "UPWARDS HARPOON WITH BARB RIGHT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0295D), "rel", "bardownharpoonright", "DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0295E), "rel", "leftharpoondownbar", "LEFTWARDS HARPOON WITH BARB DOWN FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0295F), "rel", "barrightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWN FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02960), "rel", "upharpoonleftbar", "UPWARDS HARPOON WITH BARB LEFT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02961), "rel", "bardownharpoonleft", "DOWNWARDS HARPOON WITH BARB LEFT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) -addSymbol( - U(0x02962), - "rel", - "leftharpoonsupdown", - "LEFTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB DOWN", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) -addSymbol( - U(0x02963), - "rel", - "upharpoonsleftright", - "UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) -addSymbol( - U(0x02964), - "rel", - "rightharpoonsupdown", - "RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) -addSymbol( - U(0x02965), - "rel", - "downharpoonsleftright", - "DOWNWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) -addSymbol( - U(0x02966), - "rel", - "leftrightharpoonsup", - "LEFTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB UP", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) -addSymbol( - U(0x02967), - "rel", - "leftrightharpoonsdown", - "LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) -addSymbol( - U(0x02968), - "rel", - "rightleftharpoonsup", - "RIGHTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB UP", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) -addSymbol( - U(0x02969), - "rel", - "rightleftharpoonsdown", - "RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x02962), "rel", "leftharpoonsupdown", "LEFTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB DOWN", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x02963), "rel", "upharpoonsleftright", "UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x02964), "rel", "rightharpoonsupdown", "RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x02965), "rel", "downharpoonsleftright", "DOWNWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x02966), "rel", "leftrightharpoonsup", "LEFTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB UP", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x02967), "rel", "leftrightharpoonsdown", "LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x02968), "rel", "rightleftharpoonsup", "RIGHTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB UP", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x02969), "rel", "rightleftharpoonsdown", "RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0296A), "rel", "leftharpoonupdash", "LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0296B), "rel", "dashleftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0296C), "rel", "rightharpoonupdash", "RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0296D), "rel", "dashrightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) -addSymbol( - U(0x0296E), - "rel", - "updownharpoonsleftright", - "UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) -addSymbol( - U(0x0296F), - "rel", - "downupharpoonsleftright", - "DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x0296E), "rel", "updownharpoonsleftright", "UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x0296F), "rel", "downupharpoonsleftright", "DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02970), "rel", "rightimply", "RIGHT DOUBLE ARROW WITH ROUNDED HEAD", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02971), "rel", "equalrightarrow", "EQUALS SIGN ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02972), "rel", "similarrightarrow", "TILDE OPERATOR ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02973), "rel", "leftarrowsimilar", "LEFTWARDS ARROW ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02974), "rel", "rightarrowsimilar", "RIGHTWARDS ARROW ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02975), "rel", "rightarrowapprox", "RIGHTWARDS ARROW ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02976), "rel", "ltlarr", "LESS-THAN ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02977), "rel", "leftarrowless", "LEFTWARDS ARROW THROUGH LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02978), "rel", "gtrarr", "GREATER-THAN ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02979), "rel", "subrarr", "SUBSET ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x0297A), "rel", "leftarrowsubset", "LEFTWARDS ARROW THROUGH SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x0297B), "rel", "suplarr", "SUPERSET ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x0297C), "rel", "leftfishtail", "LEFT FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0297D), "rel", "rightfishtail", "RIGHT FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0297E), "rel", "upfishtail", "UP FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x0297F), "rel", "downfishtail", "DOWN FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02980), "ord", "Vvert", "TRIPLE VERTICAL BAR DELIMITER", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02981), "ord", "mdsmblkcircle", "Z NOTATION SPOT", { - { form = "infix", lspace = 5, priority = 140, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 140, rspace = 5 }}) addSymbol(U(0x02982), "ord", "typecolon", "Z NOTATION TYPE COLON", { - { form = "infix", lspace = 5, priority = 180, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 180, rspace = 5 }}) addSymbol(U(0x02983), "open", "lBrace", "LEFT WHITE CURLY BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02984), "close", "rBrace", "RIGHT WHITE CURLY BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02985), "open", "lParen", "LEFT WHITE PARENTHESIS", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02986), "close", "rParen", "RIGHT WHITE PARENTHESIS", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02987), "open", "llparenthesis", "Z NOTATION LEFT IMAGE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02988), "close", "rrparenthesis", "Z NOTATION RIGHT IMAGE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02989), "open", "llangle", "Z NOTATION LEFT BINDING BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0298A), "close", "rrangle", "Z NOTATION RIGHT BINDING BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0298B), "open", "lbrackubar", "LEFT SQUARE BRACKET WITH UNDERBAR", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0298C), "close", "rbrackubar", "RIGHT SQUARE BRACKET WITH UNDERBAR", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0298D), "open", "lbrackultick", "LEFT SQUARE BRACKET WITH TICK IN TOP CORNER", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0298E), "close", "rbracklrtick", "RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0298F), "open", "lbracklltick", "LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02990), "close", "rbrackurtick", "RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02991), "open", "langledot", "LEFT ANGLE BRACKET WITH DOT", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02992), "close", "rangledot", "RIGHT ANGLE BRACKET WITH DOT", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02993), "open", "lparenless", "LEFT ARC LESS-THAN BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02994), "close", "rparengtr", "RIGHT ARC GREATER-THAN BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02995), "open", "Lparengtr", "DOUBLE LEFT ARC GREATER-THAN BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02996), "close", "Rparenless", "DOUBLE RIGHT ARC LESS-THAN BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02997), "open", "lblkbrbrak", "LEFT BLACK TORTOISE SHELL BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02998), "close", "rblkbrbrak", "RIGHT BLACK TORTOISE SHELL BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x02999), "ord", "fourvdots", "DOTTED FENCE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x0299A), "ord", "vzigzag", "VERTICAL ZIGZAG LINE", nil) addSymbol(U(0x0299B), "ord", "measuredangleleft", "MEASURED ANGLE OPENING LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x0299C), "ord", "rightanglesqr", "RIGHT ANGLE VARIANT WITH SQUARE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x0299D), "ord", "rightanglemdot", "MEASURED RIGHT ANGLE WITH DOT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x0299E), "ord", "angles", "ANGLE WITH S INSIDE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x0299F), "ord", "angdnr", "ACUTE ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029A0), "ord", "gtlpar", "SPHERICAL ANGLE OPENING LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029A1), "ord", "sphericalangleup", "SPHERICAL ANGLE OPENING UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029A2), "ord", "turnangle", "TURNED ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029A3), "ord", "revangle", "REVERSED ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029A4), "ord", "angleubar", "ANGLE WITH UNDERBAR", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029A5), "ord", "revangleubar", "REVERSED ANGLE WITH UNDERBAR", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029A6), "ord", "wideangledown", "OBLIQUE ANGLE OPENING UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029A7), "ord", "wideangleup", "OBLIQUE ANGLE OPENING DOWN", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029A8), "ord", "measanglerutone", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND RIGHT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029A9), "ord", "measanglelutonw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) -addSymbol( - U(0x029AA), - "ord", - "measanglerdtose", - "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND RIGHT", - { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, - } -) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) +addSymbol(U(0x029AA), "ord", "measanglerdtose", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND RIGHT", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029AB), "ord", "measangleldtosw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029AC), "ord", "measangleurtone", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029AD), "ord", "measangleultonw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) -addSymbol( - U(0x029AE), - "ord", - "measangledrtose", - "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND DOWN", - { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, - } -) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) +addSymbol(U(0x029AE), "ord", "measangledrtose", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND DOWN", { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029AF), "ord", "measangledltosw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND DOWN", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) addSymbol(U(0x029B0), "ord", "revemptyset", "REVERSED EMPTY SET", nil) addSymbol(U(0x029B1), "ord", "emptysetobar", "EMPTY SET WITH OVERBAR", nil) addSymbol(U(0x029B2), "ord", "emptysetocirc", "EMPTY SET WITH SMALL CIRCLE ABOVE", nil) @@ -2795,120 +1989,87 @@ addSymbol(U(0x029B3), "ord", "emptysetoarr", "EMPTY SET WITH RIGHT ARROW ABOVE", addSymbol(U(0x029B4), "ord", "emptysetoarrl", "EMPTY SET WITH LEFT ARROW ABOVE", nil) addSymbol(U(0x029B5), "ord", "circlehbar", "CIRCLE WITH HORIZONTAL BAR", nil) addSymbol(U(0x029B6), "bin", "circledvert", "CIRCLED VERTICAL BAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029B7), "bin", "circledparallel", "CIRCLED PARALLEL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029B8), "bin", "obslash", "CIRCLED REVERSE SOLIDUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x029B9), "bin", "operp", "CIRCLED PERPENDICULAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029BA), "ord", "obot", "CIRCLE DIVIDED BY HORIZONTAL BAR AND TOP HALF DIVIDED BY VERTICAL BAR", nil) addSymbol(U(0x029BB), "ord", "olcross", "CIRCLE WITH SUPERIMPOSED X", nil) addSymbol(U(0x029BC), "ord", "odotslashdot", "CIRCLED ANTICLOCKWISE-ROTATED DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x029BD), "ord", "uparrowoncircle", "UP ARROW THROUGH CIRCLE", nil) addSymbol(U(0x029BE), "ord", "circledwhitebullet", "CIRCLED WHITE BULLET", nil) addSymbol(U(0x029BF), "ord", "circledbullet", "CIRCLED BULLET", nil) addSymbol(U(0x029C0), "bin", "olessthan", "CIRCLED LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029C1), "bin", "ogreaterthan", "CIRCLED GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029C2), "ord", "cirscir", "CIRCLE WITH SMALL CIRCLE TO THE RIGHT", nil) addSymbol(U(0x029C3), "ord", "cirE", "CIRCLE WITH TWO HORIZONTAL STROKES TO THE RIGHT", nil) addSymbol(U(0x029C4), "bin", "boxdiag", "SQUARED RISING DIAGONAL SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x029C5), "bin", "boxbslash", "SQUARED FALLING DIAGONAL SLASH", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x029C6), "bin", "boxast", "SQUARED ASTERISK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x029C7), "bin", "boxcircle", "SQUARED SMALL CIRCLE", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 900, rspace = 3 }}) addSymbol(U(0x029C8), "bin", "boxbox", "SQUARED SQUARE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x029C9), "ord", "boxonbox", "TWO JOINED SQUARES", nil) addSymbol(U(0x029CA), "ord", "triangleodot", "TRIANGLE WITH DOT ABOVE", nil) addSymbol(U(0x029CB), "ord", "triangleubar", "TRIANGLE WITH UNDERBAR", nil) addSymbol(U(0x029CC), "ord", "triangles", "S IN TRIANGLE", nil) addSymbol(U(0x029CD), "ord", "triangleserifs", "TRIANGLE WITH SERIFS AT BOTTOM", nil) addSymbol(U(0x029CE), "rel", "rtriltri", "RIGHT TRIANGLE ABOVE LEFT TRIANGLE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029CF), "rel", "ltrivb", "LEFT TRIANGLE BESIDE VERTICAL BAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029D0), "rel", "vbrtri", "VERTICAL BAR BESIDE RIGHT TRIANGLE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029D1), "rel", "lfbowtie", "BOWTIE WITH LEFT HALF BLACK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029D2), "rel", "rfbowtie", "BOWTIE WITH RIGHT HALF BLACK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029D3), "rel", "fbowtie", "BLACK BOWTIE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029D4), "rel", "lftimes", "TIMES WITH LEFT HALF BLACK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x029D5), "rel", "rftimes", "TIMES WITH RIGHT HALF BLACK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x029D6), "bin", "hourglass", "WHITE HOURGLASS", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x029D7), "bin", "blackhourglass", "BLACK HOURGLASS", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x029D8), "open", "lvzigzag", "LEFT WIGGLY FENCE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x029D9), "close", "rvzigzag", "RIGHT WIGGLY FENCE", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x029DA), "open", "Lvzigzag", "LEFT DOUBLE WIGGLY FENCE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x029DB), "close", "Rvzigzag", "RIGHT DOUBLE WIGGLY FENCE", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x029DC), "ord", "iinfin", "INCOMPLETE INFINITY", nil) addSymbol(U(0x029DD), "ord", "tieinfty", "TIE OVER INFINITY", nil) addSymbol(U(0x029DE), "ord", "nvinfty", "INFINITY NEGATED WITH VERTICAL BAR", nil) addSymbol(U(0x029DF), "rel", "dualmap", "DOUBLE-ENDED MULTIMAP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x029E0), "ord", "laplac", "SQUARE WITH CONTOURED OUTLINE", nil) addSymbol(U(0x029E1), "rel", "lrtriangleeq", "INCREASES AS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029E2), "bin", "shuffle", "SHUFFLE PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x029E3), "rel", "eparsl", "EQUALS SIGN AND SLANTED PARALLEL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029E4), "rel", "smeparsl", "EQUALS SIGN AND SLANTED PARALLEL WITH TILDE ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029E5), "rel", "eqvparsl", "IDENTICAL TO AND SLANTED PARALLEL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029E6), "rel", "gleichstark", "GLEICH STARK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x029E7), "ord", "thermod", "THERMODYNAMIC", nil) addSymbol(U(0x029E8), "ord", "downtriangleleftblack", "DOWN-POINTING TRIANGLE WITH LEFT HALF BLACK", nil) addSymbol(U(0x029E9), "ord", "downtrianglerightblack", "DOWN-POINTING TRIANGLE WITH RIGHT HALF BLACK", nil) @@ -2923,855 +2084,574 @@ addSymbol(U(0x029F1), "ord", "errbarblackdiamond", "ERROR-BARRED BLACK DIAMOND", addSymbol(U(0x029F2), "ord", "errbarcircle", "ERROR-BARRED WHITE CIRCLE", nil) addSymbol(U(0x029F3), "ord", "errbarblackcircle", "ERROR-BARRED BLACK CIRCLE", nil) addSymbol(U(0x029F4), "rel", "ruledelayed", "RULE-DELAYED", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 220, rspace = 5 }}) addSymbol(U(0x029F5), "bin", "reversesolidus", "REVERSE SOLIDUS OPERATOR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x029F6), "bin", "dsol", "SOLIDUS WITH OVERBAR", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x029F7), "bin", "rsolbar", "REVERSE SOLIDUS WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) -addSymbol(U(0x029F8), "big", "xsol", "BIG SOLIDUS", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) -addSymbol(U(0x029F9), "big", "xbsol", "BIG REVERSE SOLIDUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) +addSymbol(U(0x029F8), "op", "xsol", "BIG SOLIDUS", { + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) +addSymbol(U(0x029F9), "op", "xbsol", "BIG REVERSE SOLIDUS", { + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x029FA), "bin", "doubleplus", "DOUBLE PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x029FB), "bin", "tripleplus", "TRIPLE PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x029FC), "open", "lcurvyangle", "LEFT-POINTING CURVED ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x029FD), "close", "rcurvyangle", "RIGHT-POINTING CURVED ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, -}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) addSymbol(U(0x029FE), "bin", "tplus", "TINY", nil) addSymbol(U(0x029FF), "bin", "tminus", "MINY", nil) -addSymbol(U(0x02A00), "big", "bigodot", "N-ARY CIRCLED DOT OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A01), "big", "bigoplus", "N-ARY CIRCLED PLUS OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 460, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A02), "big", "bigotimes", "N-ARY CIRCLED TIMES OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A03), "big", "bigcupdot", "N-ARY UNION OPERATOR WITH DOT", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A04), "big", "biguplus", "N-ARY UNION OPERATOR WITH PLUS", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A05), "big", "bigsqcap", "N-ARY SQUARE INTERSECTION OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A06), "big", "bigsqcup", "N-ARY SQUARE UNION OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A07), "big", "conjquant", "TWO LOGICAL AND OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A08), "big", "disjquant", "TWO LOGICAL OR OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A09), "big", "bigtimes", "N-ARY TIMES OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A0A), "big", "modtwosum", "MODULO TWO SUM", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, -}) +addSymbol(U(0x02A00), "op", "bigodot", "N-ARY CIRCLED DOT OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A01), "op", "bigoplus", "N-ARY CIRCLED PLUS OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 460, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A02), "op", "bigotimes", "N-ARY CIRCLED TIMES OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A03), "op", "bigcupdot", "N-ARY UNION OPERATOR WITH DOT", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A04), "op", "biguplus", "N-ARY UNION OPERATOR WITH PLUS", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A05), "op", "bigsqcap", "N-ARY SQUARE INTERSECTION OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A06), "op", "bigsqcup", "N-ARY SQUARE UNION OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A07), "op", "conjquant", "TWO LOGICAL AND OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A08), "op", "disjquant", "TWO LOGICAL OR OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A09), "op", "bigtimes", "N-ARY TIMES OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A0A), "op", "modtwosum", "MODULO TWO SUM", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }}) addSymbol(U(0x02A0B), "ord", "sumint", "SUMMATION WITH INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 440, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 440, rspace = 3, symmetric = true }}) addSymbol(U(0x02A0C), "ord", "iiiint", "QUADRUPLE INTEGRAL OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02A0D), "ord", "intbar", "FINITE PART INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02A0E), "ord", "intBar", "INTEGRAL WITH DOUBLE STROKE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02A0F), "ord", "fint", "INTEGRAL AVERAGE WITH SLASH", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A10), "big", "cirfnint", "CIRCULATION FUNCTION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A11), "big", "awint", "ANTICLOCKWISE INTEGRATION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A12), "big", "rppolint", "LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A13), "big", "scpolint", "LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A14), "big", "npolint", "LINE INTEGRATION NOT INCLUDING THE POLE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A10), "op", "cirfnint", "CIRCULATION FUNCTION", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A11), "op", "awint", "ANTICLOCKWISE INTEGRATION", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A12), "op", "rppolint", "LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A13), "op", "scpolint", "LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A14), "op", "npolint", "LINE INTEGRATION NOT INCLUDING THE POLE", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02A15), "ord", "pointint", "INTEGRAL AROUND A POINT OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02A16), "ord", "sqint", "QUATERNION INTEGRAL OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02A17), "ord", "intlarhk", "INTEGRAL WITH LEFTWARDS ARROW WITH HOOK", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02A18), "ord", "intx", "INTEGRAL WITH TIMES SIGN", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02A19), "ord", "intcap", "INTEGRAL WITH INTERSECTION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02A1A), "ord", "intcup", "INTEGRAL WITH UNION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02A1B), "ord", "upint", "INTEGRAL WITH OVERBAR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) addSymbol(U(0x02A1C), "ord", "lowint", "INTEGRAL WITH UNDERBAR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A1D), "big", "Join", "JOIN", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A1E), "big", "bigtriangleleft", "LARGE LEFT TRIANGLE OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, -}) -addSymbol(U(0x02A1F), "big", "zcmp", "Z NOTATION SCHEMA COMPOSITION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) -addSymbol(U(0x02A20), "big", "zpipe", "Z NOTATION SCHEMA PIPING", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) -addSymbol(U(0x02A21), "big", "zproject", "Z NOTATION SCHEMA PROJECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A1D), "op", "Join", "JOIN", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A1E), "op", "bigtriangleleft", "LARGE LEFT TRIANGLE OPERATOR", { + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }}) +addSymbol(U(0x02A1F), "op", "zcmp", "Z NOTATION SCHEMA COMPOSITION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) +addSymbol(U(0x02A20), "op", "zpipe", "Z NOTATION SCHEMA PIPING", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) +addSymbol(U(0x02A21), "op", "zproject", "Z NOTATION SCHEMA PROJECTION", { + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A22), "bin", "ringplus", "PLUS SIGN WITH SMALL CIRCLE ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A23), "bin", "plushat", "PLUS SIGN WITH CIRCUMFLEX ACCENT ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A24), "bin", "simplus", "PLUS SIGN WITH TILDE ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A25), "bin", "plusdot", "PLUS SIGN WITH DOT BELOW", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A26), "bin", "plussim", "PLUS SIGN WITH TILDE BELOW", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A27), "bin", "plussubtwo", "PLUS SIGN WITH SUBSCRIPT TWO", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A28), "bin", "plustrif", "PLUS SIGN WITH BLACK TRIANGLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A29), "bin", "commaminus", "MINUS SIGN WITH COMMA ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A2A), "bin", "minusdot", "MINUS SIGN WITH DOT BELOW", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A2B), "bin", "minusfdots", "MINUS SIGN WITH FALLING DOTS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A2C), "bin", "minusrdots", "MINUS SIGN WITH RISING DOTS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A2D), "bin", "opluslhrim", "PLUS SIGN IN LEFT HALF CIRCLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A2E), "bin", "oplusrhrim", "PLUS SIGN IN RIGHT HALF CIRCLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A2F), "bin", "vectimes", "VECTOR OR CROSS PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A30), "bin", "dottimes", "MULTIPLICATION SIGN WITH DOT ABOVE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A31), "bin", "timesbar", "MULTIPLICATION SIGN WITH UNDERBAR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A32), "bin", "btimes", "SEMIDIRECT PRODUCT WITH BOTTOM CLOSED", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A33), "bin", "smashtimes", "SMASH PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A34), "bin", "otimeslhrim", "MULTIPLICATION SIGN IN LEFT HALF CIRCLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A35), "bin", "otimesrhrim", "MULTIPLICATION SIGN IN RIGHT HALF CIRCLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A36), "bin", "otimeshat", "CIRCLED MULTIPLICATION SIGN WITH CIRCUMFLEX ACCENT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A37), "bin", "Otimes", "MULTIPLICATION SIGN IN DOUBLE CIRCLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A38), "bin", "odiv", "CIRCLED DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x02A39), "bin", "triangleplus", "PLUS SIGN IN TRIANGLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A3A), "bin", "triangleminus", "MINUS SIGN IN TRIANGLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A3B), "bin", "triangletimes", "MULTIPLICATION SIGN IN TRIANGLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A3C), "bin", "intprod", "INTERIOR PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A3D), "bin", "intprodr", "RIGHTHAND INTERIOR PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A3E), "bin", "fcmp", "Z NOTATION RELATIONAL COMPOSITION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A3F), "bin", "amalg", "AMALGAMATION OR COPRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A40), "bin", "capdot", "INTERSECTION WITH DOT", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A41), "bin", "uminus", "UNION WITH MINUS SIGN", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x02A42), "bin", "barcup", "UNION WITH OVERBAR", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x02A43), "bin", "barcap", "INTERSECTION WITH OVERBAR", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A44), "bin", "capwedge", "INTERSECTION WITH LOGICAL AND", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A45), "bin", "cupvee", "UNION WITH LOGICAL OR", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x02A46), "bin", "cupovercap", "UNION ABOVE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A47), "bin", "capovercup", "INTERSECTION ABOVE UNION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A48), "bin", "cupbarcap", "UNION ABOVE BAR ABOVE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A49), "bin", "capbarcup", "INTERSECTION ABOVE BAR ABOVE UNION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A4A), "bin", "twocups", "UNION BESIDE AND JOINED WITH UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x02A4B), "bin", "twocaps", "INTERSECTION BESIDE AND JOINED WITH INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A4C), "bin", "closedvarcup", "CLOSED UNION WITH SERIFS", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x02A4D), "bin", "closedvarcap", "CLOSED INTERSECTION WITH SERIFS", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A4E), "bin", "Sqcap", "DOUBLE SQUARE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02A4F), "bin", "Sqcup", "DOUBLE SQUARE UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) addSymbol(U(0x02A50), "bin", "closedvarcupsmashprod", "CLOSED UNION WITH SERIFS AND SMASH PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) addSymbol(U(0x02A51), "bin", "wedgeodot", "LOGICAL AND WITH DOT ABOVE", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x02A52), "bin", "veeodot", "LOGICAL OR WITH DOT ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A53), "bin", "Wedge", "DOUBLE LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x02A54), "bin", "Vee", "DOUBLE LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A55), "bin", "wedgeonwedge", "TWO INTERSECTING LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x02A56), "bin", "veeonvee", "TWO INTERSECTING LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A57), "bin", "bigslopedvee", "SLOPING LARGE OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A58), "bin", "bigslopedwedge", "SLOPING LARGE AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x02A59), "rel", "veeonwedge", "LOGICAL OR OVERLAPPING LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x02A5A), "bin", "wedgemidvert", "LOGICAL AND WITH MIDDLE STEM", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x02A5B), "bin", "veemidvert", "LOGICAL OR WITH MIDDLE STEM", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A5C), "bin", "midbarwedge", "LOGICAL AND WITH HORIZONTAL DASH", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x02A5D), "bin", "midbarvee", "LOGICAL OR WITH HORIZONTAL DASH", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A5E), "bin", "doublebarwedge", "LOGICAL AND WITH DOUBLE OVERBAR", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x02A5F), "bin", "wedgebar", "LOGICAL AND WITH UNDERBAR", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x02A60), "bin", "wedgedoublebar", "LOGICAL AND WITH DOUBLE UNDERBAR", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) addSymbol(U(0x02A61), "bin", "varveebar", "SMALL VEE WITH UNDERBAR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A62), "bin", "doublebarvee", "LOGICAL OR WITH DOUBLE OVERBAR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A63), "bin", "veedoublebar", "LOGICAL OR WITH DOUBLE UNDERBAR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) addSymbol(U(0x02A64), "bin", "dsub", "Z NOTATION DOMAIN ANTIRESTRICTION", { - { form = "infix", lspace = 3, priority = 700, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 700, rspace = 3 }}) addSymbol(U(0x02A65), "bin", "rsub", "Z NOTATION RANGE ANTIRESTRICTION", { - { form = "infix", lspace = 3, priority = 700, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 700, rspace = 3 }}) addSymbol(U(0x02A66), "rel", "eqdot", "EQUALS SIGN WITH DOT BELOW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A67), "rel", "dotequiv", "IDENTICAL WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A68), "rel", "equivVert", "TRIPLE HORIZONTAL BAR WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A69), "rel", "equivVvert", "TRIPLE HORIZONTAL BAR WITH TRIPLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A6A), "rel", "dotsim", "TILDE OPERATOR WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A6B), "rel", "simrdots", "TILDE OPERATOR WITH RISING DOTS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A6C), "rel", "simminussim", "SIMILAR MINUS SIMILAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A6D), "rel", "congdot", "CONGRUENT WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A6E), "rel", "asteq", "EQUALS WITH ASTERISK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A6F), "rel", "hatapprox", "ALMOST EQUAL TO WITH CIRCUMFLEX ACCENT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A70), "rel", "approxeqq", "APPROXIMATELY EQUAL OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A71), "bin", "eqqplus", "EQUALS SIGN ABOVE PLUS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A72), "bin", "pluseqq", "PLUS SIGN ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A73), "rel", "eqqsim", "EQUALS SIGN ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A74), "rel", "Coloneq", "DOUBLE COLON EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A75), "rel", "eqeq", "TWO CONSECUTIVE EQUALS SIGNS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A76), "rel", "eqeqeq", "THREE CONSECUTIVE EQUALS SIGNS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A77), "rel", "ddotseq", "EQUALS SIGN WITH TWO DOTS ABOVE AND TWO DOTS BELOW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A78), "rel", "equivDD", "EQUIVALENT WITH FOUR DOTS ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A79), "rel", "ltcir", "LESS-THAN WITH CIRCLE INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A7A), "rel", "gtcir", "GREATER-THAN WITH CIRCLE INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A7B), "rel", "ltquest", "LESS-THAN WITH QUESTION MARK ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A7C), "rel", "gtquest", "GREATER-THAN WITH QUESTION MARK ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A7D), "rel", "leqslant", "LESS-THAN OR SLANTED EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A7E), "rel", "geqslant", "GREATER-THAN OR SLANTED EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A7F), "rel", "lesdot", "LESS-THAN OR SLANTED EQUAL TO WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A80), "rel", "gesdot", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A81), "rel", "lesdoto", "LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A82), "rel", "gesdoto", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A83), "rel", "lesdotor", "LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE RIGHT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A84), "rel", "gesdotol", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE LEFT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A85), "rel", "lessapprox", "LESS-THAN OR APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A86), "rel", "gtrapprox", "GREATER-THAN OR APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A87), "rel", "lneq", "LESS-THAN AND SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A88), "rel", "gneq", "GREATER-THAN AND SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A89), "rel", "lnapprox", "LESS-THAN AND NOT APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A8A), "rel", "gnapprox", "GREATER-THAN AND NOT APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A8B), "rel", "lesseqqgtr", "LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A8C), "rel", "gtreqqless", "GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A8D), "rel", "lsime", "LESS-THAN ABOVE SIMILAR OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A8E), "rel", "gsime", "GREATER-THAN ABOVE SIMILAR OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A8F), "rel", "lsimg", "LESS-THAN ABOVE SIMILAR ABOVE GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A90), "rel", "gsiml", "GREATER-THAN ABOVE SIMILAR ABOVE LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A91), "rel", "lgE", "LESS-THAN ABOVE GREATER-THAN ABOVE DOUBLE-LINE EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A92), "rel", "glE", "GREATER-THAN ABOVE LESS-THAN ABOVE DOUBLE-LINE EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A93), "rel", "lesges", "LESS-THAN ABOVE SLANTED EQUAL ABOVE GREATER-THAN ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A94), "rel", "gesles", "GREATER-THAN ABOVE SLANTED EQUAL ABOVE LESS-THAN ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A95), "rel", "eqslantless", "SLANTED EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A96), "rel", "eqslantgtr", "SLANTED EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A97), "rel", "elsdot", "SLANTED EQUAL TO OR LESS-THAN WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A98), "rel", "egsdot", "SLANTED EQUAL TO OR GREATER-THAN WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A99), "rel", "eqqless", "DOUBLE-LINE EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A9A), "rel", "eqqgtr", "DOUBLE-LINE EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A9B), "rel", "eqqslantless", "DOUBLE-LINE SLANTED EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A9C), "rel", "eqqslantgtr", "DOUBLE-LINE SLANTED EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A9D), "rel", "simless", "SIMILAR OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A9E), "rel", "simgtr", "SIMILAR OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02A9F), "rel", "simlE", "SIMILAR ABOVE LESS-THAN ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AA0), "rel", "simgE", "SIMILAR ABOVE GREATER-THAN ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AA1), "rel", "Lt", "DOUBLE NESTED LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AA2), "rel", "Gt", "DOUBLE NESTED GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AA3), "rel", "partialmeetcontraction", "DOUBLE NESTED LESS-THAN WITH UNDERBAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AA4), "rel", "glj", "GREATER-THAN OVERLAPPING LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AA5), "rel", "gla", "GREATER-THAN BESIDE LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AA6), "rel", "ltcc", "LESS-THAN CLOSED BY CURVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AA7), "rel", "gtcc", "GREATER-THAN CLOSED BY CURVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AA8), "rel", "lescc", "LESS-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AA9), "rel", "gescc", "GREATER-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AAA), "rel", "smt", "SMALLER THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AAB), "rel", "lat", "LARGER THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AAC), "rel", "smte", "SMALLER THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AAD), "rel", "late", "LARGER THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AAE), "rel", "bumpeqq", "EQUALS SIGN WITH BUMPY ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AAF), "rel", "preceq", "PRECEDES ABOVE SINGLE-LINE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AB0), "rel", "succeq", "SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AB1), "rel", "precneq", "PRECEDES ABOVE SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AB2), "rel", "succneq", "SUCCEEDS ABOVE SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AB3), "rel", "preceqq", "PRECEDES ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AB4), "rel", "succeqq", "SUCCEEDS ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AB5), "rel", "precneqq", "PRECEDES ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AB6), "rel", "succneqq", "SUCCEEDS ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AB7), "rel", "precapprox", "PRECEDES ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AB8), "rel", "succapprox", "SUCCEEDS ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AB9), "rel", "precnapprox", "PRECEDES ABOVE NOT ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02ABA), "rel", "succnapprox", "SUCCEEDS ABOVE NOT ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02ABB), "rel", "Prec", "DOUBLE PRECEDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02ABC), "rel", "Succ", "DOUBLE SUCCEEDS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02ABD), "rel", "subsetdot", "SUBSET WITH DOT", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02ABE), "rel", "supsetdot", "SUPERSET WITH DOT", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02ABF), "rel", "subsetplus", "SUBSET WITH PLUS SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AC0), "rel", "supsetplus", "SUPERSET WITH PLUS SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AC1), "rel", "submult", "SUBSET WITH MULTIPLICATION SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AC2), "rel", "supmult", "SUPERSET WITH MULTIPLICATION SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AC3), "rel", "subedot", "SUBSET OF OR EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AC4), "rel", "supedot", "SUPERSET OF OR EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AC5), "rel", "subseteqq", "SUBSET OF ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AC6), "rel", "supseteqq", "SUPERSET OF ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AC7), "rel", "subsim", "SUBSET OF ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AC8), "rel", "supsim", "SUPERSET OF ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AC9), "rel", "subsetapprox", "SUBSET OF ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02ACA), "rel", "supsetapprox", "SUPERSET OF ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02ACB), "rel", "subsetneqq", "SUBSET OF ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02ACC), "rel", "supsetneqq", "SUPERSET OF ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02ACD), "rel", "lsqhook", "SQUARE LEFT OPEN BOX OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02ACE), "rel", "rsqhook", "SQUARE RIGHT OPEN BOX OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02ACF), "rel", "csub", "CLOSED SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AD0), "rel", "csup", "CLOSED SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AD1), "rel", "csube", "CLOSED SUBSET OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AD2), "rel", "csupe", "CLOSED SUPERSET OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AD3), "rel", "subsup", "SUBSET ABOVE SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AD4), "rel", "supsub", "SUPERSET ABOVE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AD5), "rel", "subsub", "SUBSET ABOVE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AD6), "rel", "supsup", "SUPERSET ABOVE SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AD7), "rel", "suphsub", "SUPERSET BESIDE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AD8), "rel", "supdsub", "SUPERSET BESIDE AND JOINED BY DASH WITH SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02AD9), "rel", "forkv", "ELEMENT OF OPENING DOWNWARDS", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) addSymbol(U(0x02ADA), "rel", "topfork", "PITCHFORK WITH TEE TOP", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02ADB), "rel", "mlcp", "TRANSVERSAL INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) addSymbol(U(0x02ADC), "rel", "forks", "FORKING", { - { form = "infix", lspace = 3, priority = 740, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 740, rspace = 3 }}) addSymbol(U(0x02ADD), "rel", "forksnot", "NONFORKING", { - { form = "infix", lspace = 3, priority = 740, rspace = 3 }, -}) + { form = "infix", lspace = 3, priority = 740, rspace = 3 }}) addSymbol(U(0x02ADE), "rel", "shortlefttack", "SHORT LEFT TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02ADF), "rel", "shortdowntack", "SHORT DOWN TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AE0), "rel", "shortuptack", "SHORT UP TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AE1), "ord", "perps", "PERPENDICULAR WITH S", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AE2), "rel", "vDdash", "VERTICAL BAR TRIPLE RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AE3), "rel", "dashV", "DOUBLE VERTICAL BAR LEFT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AE4), "rel", "Dashv", "VERTICAL BAR DOUBLE LEFT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AE5), "rel", "DashV", "DOUBLE VERTICAL BAR DOUBLE LEFT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AE6), "rel", "varVdash", "LONG DASH FROM LEFT MEMBER OF DOUBLE VERTICAL", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AE7), "rel", "Barv", "SHORT DOWN TACK WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AE8), "rel", "vBar", "SHORT UP TACK WITH UNDERBAR", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AE9), "rel", "vBarv", "SHORT UP TACK ABOVE SHORT DOWN TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AEA), "rel", "barV", "DOUBLE DOWN TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AEB), "rel", "Vbar", "DOUBLE UP TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) addSymbol(U(0x02AEC), "rel", "Not", "DOUBLE STROKE NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) addSymbol(U(0x02AED), "rel", "bNot", "REVERSED DOUBLE STROKE NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, -}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) addSymbol(U(0x02AEE), "rel", "revnmid", "DOES NOT DIVIDE WITH REVERSED NEGATION SLASH", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AEF), "rel", "cirmid", "VERTICAL LINE WITH CIRCLE ABOVE", nil) addSymbol(U(0x02AF0), "rel", "midcir", "VERTICAL LINE WITH CIRCLE BELOW", nil) addSymbol(U(0x02AF1), "ord", "topcir", "DOWN TACK WITH CIRCLE BELOW", nil) addSymbol(U(0x02AF2), "rel", "nhpar", "PARALLEL WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AF3), "rel", "parsim", "PARALLEL WITH TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AF4), "bin", "interleave", "TRIPLE VERTICAL BAR BINARY RELATION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AF5), "bin", "nhVvert", "TRIPLE VERTICAL BAR WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AF6), "bin", "threedotcolon", "TRIPLE COLON OPERATOR", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x02AF7), "rel", "lllnest", "TRIPLE NESTED LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AF8), "rel", "gggnest", "TRIPLE NESTED GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AF9), "rel", "leqqslant", "DOUBLE-LINE SLANTED LESS-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AFA), "rel", "geqqslant", "DOUBLE-LINE SLANTED GREATER-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x02AFB), "bin", "trslash", "TRIPLE SOLIDUS BINARY RELATION", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) -addSymbol(U(0x02AFC), "big", "biginterleave", "LARGE TRIPLE VERTICAL BAR OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) +addSymbol(U(0x02AFC), "op", "biginterleave", "LARGE TRIPLE VERTICAL BAR OPERATOR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) addSymbol(U(0x02AFD), "bin", "sslash", "DOUBLE SOLIDUS OPERATOR", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, -}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) addSymbol(U(0x02AFE), "bin", "talloblong", "WHITE VERTICAL BAR", { - { form = "infix", lspace = 3, priority = 680, rspace = 3 }, -}) -addSymbol(U(0x02AFF), "big", "bigtalloblong", "N-ARY WHITE VERTICAL BAR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, -}) + { form = "infix", lspace = 3, priority = 680, rspace = 3 }}) +addSymbol(U(0x02AFF), "op", "bigtalloblong", "N-ARY WHITE VERTICAL BAR", { + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) addSymbol(U(0x02B00), "rel", nil, "NORTH EAST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B01), "rel", nil, "NORTH WEST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B02), "rel", nil, "SOUTH EAST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B03), "rel", nil, "SOUTH WEST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B04), "rel", nil, "LEFT RIGHT WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B05), "rel", nil, "LEFTWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B06), "rel", nil, "UPWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B07), "rel", nil, "DOWNWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B08), "rel", nil, "NORTH EAST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B09), "rel", nil, "NORTH WEST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B0A), "rel", nil, "SOUTH EAST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B0B), "rel", nil, "SOUTH WEST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B0C), "rel", nil, "LEFT RIGHT BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B0D), "rel", nil, "UP DOWN BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B0E), "rel", nil, "RIGHTWARDS ARROW WITH TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B0F), "rel", nil, "RIGHTWARDS ARROW WITH TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B10), "rel", nil, "LEFTWARDS ARROW WITH TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B11), "rel", nil, "LEFTWARDS ARROW WITH TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B12), "ord", "squaretopblack", "SQUARE WITH TOP HALF BLACK", nil) addSymbol(U(0x02B13), "ord", "squarebotblack", "SQUARE WITH BOTTOM HALF BLACK", nil) addSymbol(U(0x02B14), "ord", "squareurblack", "SQUARE WITH UPPER RIGHT DIAGONAL HALF BLACK", nil) @@ -3803,346 +2683,230 @@ addSymbol(U(0x02B2D), "ord", "whthorzoval", "WHITE HORIZONTAL ELLIPSE", nil) addSymbol(U(0x02B2E), "ord", "blkvertoval", "BLACK VERTICAL ELLIPSE", nil) addSymbol(U(0x02B2F), "ord", "whtvertoval", "WHITE VERTICAL ELLIPSE", nil) addSymbol(U(0x02B30), "rel", "circleonleftarrow", "LEFT ARROW WITH SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B31), "rel", "leftthreearrows", "THREE LEFTWARDS ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B32), "rel", "leftarrowonoplus", "LEFT ARROW WITH CIRCLED PLUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B33), "rel", "longleftsquigarrow", "LONG LEFTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B34), "rel", "nvtwoheadleftarrow", "LEFTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B35), "rel", "nVtwoheadleftarrow", "LEFTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B36), "rel", "twoheadmapsfrom", "LEFTWARDS TWO-HEADED ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B37), "rel", "twoheadleftdbkarrow", "LEFTWARDS TWO-HEADED TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B38), "rel", "leftdotarrow", "LEFTWARDS ARROW WITH DOTTED STEM", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B39), "rel", "nvleftarrowtail", "LEFTWARDS ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B3A), "rel", "nVleftarrowtail", "LEFTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B3B), "rel", "twoheadleftarrowtail", "LEFTWARDS TWO-HEADED ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B3C), "rel", "nvtwoheadleftarrowtail", "LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) -addSymbol( - U(0x02B3D), - "rel", - "nVtwoheadleftarrowtail", - "LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", - { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, - } -) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) +addSymbol(U(0x02B3D), "rel", "nVtwoheadleftarrowtail", "LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B3E), "rel", "leftarrowx", "LEFTWARDS ARROW THROUGH X", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B3F), "rel", "leftcurvedarrow", "WAVE ARROW POINTING DIRECTLY LEFT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B40), "rel", "equalleftarrow", "EQUALS SIGN ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B41), "rel", "bsimilarleftarrow", "REVERSE TILDE OPERATOR ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B42), "rel", "leftarrowbackapprox", "LEFTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B43), "rel", "rightarrowgtr", "RIGHTWARDS ARROW THROUGH GREATER-THAN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B44), "rel", "rightarrowsupset", "RIGHTWARDS ARROW THROUGH SUPERSET", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B45), "ord", "LLeftarrow", "LEFTWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B46), "ord", "RRightarrow", "RIGHTWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B47), "rel", "bsimilarrightarrow", "REVERSE TILDE OPERATOR ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B48), "rel", "rightarrowbackapprox", "RIGHTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B49), "rel", "similarleftarrow", "TILDE OPERATOR ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B4A), "rel", "leftarrowapprox", "LEFTWARDS ARROW ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B4B), "rel", "leftarrowbsimilar", "LEFTWARDS ARROW ABOVE REVERSE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B4C), "rel", "rightarrowbsimilar", "RIGHTWARDS ARROW ABOVE REVERSE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B4D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ZIGZAG ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B4E), "ord", nil, "SHORT SLANTED NORTH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B4F), "ord", nil, "SHORT BACKSLANTED SOUTH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B50), "ord", "medwhitestar", "WHITE MEDIUM STAR", nil) addSymbol(U(0x02B51), "ord", "medblackstar", "BLACK SMALL STAR", nil) addSymbol(U(0x02B52), "ord", "smwhitestar", "WHITE SMALL STAR", nil) addSymbol(U(0x02B53), "ord", "rightpentagonblack", "BLACK RIGHT-POINTING PENTAGON", nil) addSymbol(U(0x02B54), "ord", "rightpentagon", "WHITE RIGHT-POINTING PENTAGON", nil) addSymbol(U(0x02B5A), "ord", nil, "SLANTED NORTH ARROW WITH HOOKED HEAD", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B5B), "ord", nil, "BACKSLANTED SOUTH ARROW WITH HOOKED TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B5C), "ord", nil, "SLANTED NORTH ARROW WITH HORIZONTAL TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B5D), "ord", nil, "BACKSLANTED SOUTH ARROW WITH HORIZONTAL TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B5E), "ord", nil, "BENT ARROW POINTING DOWNWARDS THEN NORTH EAST", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B5F), "ord", nil, "SHORT BENT ARROW POINTING DOWNWARDS THEN NORTH EAST", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B60), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B61), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B62), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B63), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B64), "ord", nil, "LEFT RIGHT TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B65), "ord", nil, "UP DOWN TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B66), "ord", nil, "NORTH WEST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B67), "ord", nil, "NORTH EAST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B68), "ord", nil, "SOUTH EAST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B69), "ord", nil, "SOUTH WEST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B6A), "ord", nil, "LEFTWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B6B), "ord", nil, "UPWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B6C), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B6D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B6E), "ord", nil, "CLOCKWISE TRIANGLE-HEADED OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B6F), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B70), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B71), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B72), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B73), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B76), "ord", nil, "NORTH WEST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B77), "ord", nil, "NORTH EAST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B78), "ord", nil, "SOUTH EAST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B79), "ord", nil, "SOUTH WEST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B7A), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B7B), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B7C), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B7D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B80), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW OVER RIGHTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B81), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW LEFTWARDS OF DOWNWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B82), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW OVER LEFTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B83), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW LEFTWARDS OF UPWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B84), "ord", nil, "LEFTWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B85), "ord", nil, "UPWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B86), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B87), "ord", nil, "DOWNWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02B88), "ord", nil, "LEFTWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B89), "ord", nil, "UPWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B8A), "ord", nil, "RIGHTWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B8B), "ord", nil, "DOWNWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B8C), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED RIGHT U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B8D), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED BOTTOM U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B8E), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED LEFT U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B8F), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED TOP U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B94), "ord", nil, "FOUR CORNER ARROWS CIRCLING ANTICLOCKWISE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02B95), "ord", nil, "RIGHTWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BA0), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH LONG TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BA1), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH LONG TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BA2), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH LONG TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BA3), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH LONG TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BA4), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BA5), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BA6), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BA7), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BA8), "ord", nil, "BLACK CURVED DOWNWARDS AND LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BA9), "ord", nil, "BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BAA), "ord", nil, "BLACK CURVED UPWARDS AND LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BAB), "ord", nil, "BLACK CURVED UPWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BAC), "ord", nil, "BLACK CURVED LEFTWARDS AND UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BAD), "ord", nil, "BLACK CURVED RIGHTWARDS AND UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BAE), "ord", nil, "BLACK CURVED LEFTWARDS AND DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BAF), "ord", nil, "BLACK CURVED RIGHTWARDS AND DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BB0), "ord", nil, "RIBBON ARROW DOWN LEFT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02BB1), "ord", nil, "RIBBON ARROW DOWN RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02BB2), "ord", nil, "RIBBON ARROW UP LEFT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02BB3), "ord", nil, "RIBBON ARROW UP RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02BB4), "ord", nil, "RIBBON ARROW LEFT UP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02BB5), "ord", nil, "RIBBON ARROW RIGHT UP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02BB6), "ord", nil, "RIBBON ARROW LEFT DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02BB7), "ord", nil, "RIBBON ARROW RIGHT DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) addSymbol(U(0x02BB8), "ord", nil, "UPWARDS WHITE ARROW FROM BAR WITH HORIZONTAL BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, -}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) addSymbol(U(0x02BD1), "ord", nil, "UNCERTAINTY SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, -}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) addSymbol(U(0x03012), "ord", "postalmark", "POSTAL MARK", nil) addSymbol(U(0x03030), "ord", "hzigzag", "WAVY DASH", nil) addSymbol(U(0x1D400), "ord", "mbfA", "MATHEMATICAL BOLD CAPITAL A", nil) @@ -5142,13 +3906,11 @@ addSymbol(U(0x1D7FD), "ord", "mttseven", "MATHEMATICAL MONOSPACE DIGIT SEVEN", n addSymbol(U(0x1D7FE), "ord", "mtteight", "MATHEMATICAL MONOSPACE DIGIT EIGHT", nil) addSymbol(U(0x1D7FF), "ord", "mttnine", "MATHEMATICAL MONOSPACE DIGIT NINE", nil) addSymbol(U(0x1EEF0), "ord", "arabicmaj", "ARABIC MATHEMATICAL OPERATOR MEEM WITH HAH WITH TATWEEL", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) addSymbol(U(0x1EEF1), "ord", "arabichad", "ARABIC MATHEMATICAL OPERATOR HAH WITH DAL", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, -}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) return { - operatorDict = operatorDict, - symbols = symbols, + operatorDict = operatorDict, + symbols = symbols } From 22a9523b3ba4a9edc162dcf3c3c38211a91ce6c6 Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sun, 17 Nov 2024 17:52:21 +0100 Subject: [PATCH 08/14] refactor(math): Further simplify atom type mappings We had too many intermediary types (TeX's names mathxxx, our shorthands, internal values). We got rid from the TeX's math-prefixed named in our new table of symbols and operators, but it was still confusing. --- packages/math/atoms.lua | 48 +- packages/math/base-elements.lua | 160 +- packages/math/texlike.lua | 14 +- packages/math/tools/unicode-xml-to-sile.xsl | 5 +- packages/math/typesetter.lua | 5 +- packages/math/unicode-symbols-generated.lua | 3686 +++++++++++++------ 6 files changed, 2567 insertions(+), 1351 deletions(-) diff --git a/packages/math/atoms.lua b/packages/math/atoms.lua index 9753aac6f..9aaeef16b 100644 --- a/packages/math/atoms.lua +++ b/packages/math/atoms.lua @@ -1,36 +1,20 @@ -local atomType = { - ordinary = 0, - bigOperator = 1, -- Misnamed used for TeX's "mathop" - binaryOperator = 2, - relationalOperator = 3, - openingSymbol = 4, - closeSymbol = 5, - punctuationSymbol = 6, - inner = 7, -- Unused for now (used for fractions in The TeXbook) - overSymbol = 8, -- Unused for now (used for overlines etc. in The TeXbook) - underSymbol = 9, -- Unused for now (used for underlines etc. in The TeXbook) - accentSymbol = 10, - botAccentSymbol = 11, -- Unused for now but botaccent is encoded in our dictionary -} - -- Shorthands for atom types, used in the `atom` command option -- and also in the unicode symbols table / operator dictionary -local atomTypeShort = { - ord = atomType.ordinary, - op = atomType.bigOperator, - bin = atomType.binaryOperator, - rel = atomType.relationalOperator, - open = atomType.openingSymbol, - close = atomType.closeSymbol, - punct = atomType.punctuationSymbol, - inner = atomType.inner, - over = atomType.overSymbol, - under = atomType.underSymbol, - accent = atomType.accentSymbol, - botaccent = atomType.botAccentSymbol, +local atomType = { + -- The 8 atom types defined in the TeXbook's spacing table + ord = 0, + op = 1, + bin = 2, + rel = 3, + open = 4, + close = 5, + punct = 6, + inner = 7, -- Unused for now (used for fractions in The TeXbook) + -- Other atom types (considered as "ord" for spacing) + over = 8, -- Unused for now (used for overlines etc. in The TeXbook) + under = 9, -- Unused for now (used for underlines etc. in The TeXbook) + accent = 10, + botaccent = 11, -- Unused for now but botaccent is encoded in our dictionary } -return { - atomType = atomType, - atomTypeShort = atomTypeShort, -} +return { types = atomType } diff --git a/packages/math/base-elements.lua b/packages/math/base-elements.lua index 325bcb630..faea4b98e 100644 --- a/packages/math/base-elements.lua +++ b/packages/math/base-elements.lua @@ -5,8 +5,6 @@ local atoms = require("packages.math.atoms") local mathvariants = require("packages.math.unicode-mathvariants") local convertMathVariantScript = mathvariants.convertMathVariantScript -local atomType = atoms.atomType - local elements = {} local mathMode = { @@ -210,7 +208,7 @@ function elements.mbox:_init () self.relY = SILE.types.length(0) -- y position relative to its parent box self.value = {} self.mode = mathMode.display - self.atom = atomType.ordinary + self.atom = atoms.types.ord local font = { family = SILE.settings:get("math.font.family"), size = SILE.settings:get("math.font.size"), @@ -311,85 +309,85 @@ local spaceKind = { -- between two quantities that they can operate on." (a rule which notably helps -- addressing binary atoms used as unary operators.) local spacingRules = { - [atomType.ordinary] = { - -- [atomType.ordinary] = nil - [atomType.bigOperator] = { spaceKind.thin }, - [atomType.binaryOperator] = { spaceKind.med, notScript = true }, - [atomType.relationalOperator] = { spaceKind.thick, notScript = true }, - -- [atomType.openingSymbol] = nil - -- [atomType.closeSymbol] = nil - -- [atomType.punctuationSymbol] = nil - [atomType.inner] = { spaceKind.thin, notScript = true }, + [atoms.types.ord] = { + -- [atoms.types.ord] = nil + [atoms.types.op] = { spaceKind.thin }, + [atoms.types.bin] = { spaceKind.med, notScript = true }, + [atoms.types.rel] = { spaceKind.thick, notScript = true }, + -- [atoms.types.open] = nil + -- [atoms.types.close] = nil + -- [atoms.types.punct] = nil + [atoms.types.inner] = { spaceKind.thin, notScript = true }, }, - [atomType.bigOperator] = { - [atomType.ordinary] = { spaceKind.thin }, - [atomType.bigOperator] = { spaceKind.thin }, - [atomType.binaryOperator] = { impossible = true }, - [atomType.relationalOperator] = { spaceKind.thick, notScript = true }, - -- [atomType.openingSymbol] = nil - -- [atomType.closeSymbol] = nil - -- [atomType.punctuationSymbol] = nil - [atomType.inner] = { spaceKind.thin, notScript = true }, + [atoms.types.op] = { + [atoms.types.ord] = { spaceKind.thin }, + [atoms.types.op] = { spaceKind.thin }, + [atoms.types.bin] = { impossible = true }, + [atoms.types.rel] = { spaceKind.thick, notScript = true }, + -- [atoms.types.open] = nil + -- [atoms.types.close] = nil + -- [atoms.types.punct] = nil + [atoms.types.inner] = { spaceKind.thin, notScript = true }, }, - [atomType.binaryOperator] = { - [atomType.ordinary] = { spaceKind.med, notScript = true }, - [atomType.bigOperator] = { spaceKind.med, notScript = true }, - [atomType.binaryOperator] = { impossible = true }, - [atomType.relationalOperator] = { impossible = true }, - [atomType.openingSymbol] = { spaceKind.med, notScript = true }, - [atomType.closeSymbol] = { impossible = true }, - [atomType.punctuationSymbol] = { impossible = true }, - [atomType.inner] = { spaceKind.med, notScript = true }, + [atoms.types.bin] = { + [atoms.types.ord] = { spaceKind.med, notScript = true }, + [atoms.types.op] = { spaceKind.med, notScript = true }, + [atoms.types.bin] = { impossible = true }, + [atoms.types.rel] = { impossible = true }, + [atoms.types.open] = { spaceKind.med, notScript = true }, + [atoms.types.close] = { impossible = true }, + [atoms.types.punct] = { impossible = true }, + [atoms.types.inner] = { spaceKind.med, notScript = true }, }, - [atomType.relationalOperator] = { - [atomType.ordinary] = { spaceKind.thick, notScript = true }, - [atomType.bigOperator] = { spaceKind.thick, notScript = true }, - [atomType.binaryOperator] = { impossible = true }, - -- [atomType.relationalOperator] = nil - [atomType.openingSymbol] = { spaceKind.thick, notScript = true }, - -- [atomType.closeSymbol] = nil - -- [atomType.punctuationSymbol] = nil - [atomType.inner] = { spaceKind.thick, notScript = true }, + [atoms.types.rel] = { + [atoms.types.ord] = { spaceKind.thick, notScript = true }, + [atoms.types.op] = { spaceKind.thick, notScript = true }, + [atoms.types.bin] = { impossible = true }, + -- [atoms.types.rel] = nil + [atoms.types.open] = { spaceKind.thick, notScript = true }, + -- [atoms.types.close] = nil + -- [atoms.types.punct] = nil + [atoms.types.inner] = { spaceKind.thick, notScript = true }, }, - [atomType.openingSymbol] = { - -- [atomType.ordinary] = nil - -- [atomType.bigOperator] = nil - [atomType.binaryOperator] = { impossible = true }, - -- [atomType.relationalOperator] = nil - -- [atomType.openingSymbol] = nil - -- [atomType.closeSymbol] = nil - -- [atomType.punctuationSymbol] = nil - -- [atomType.inner] = nil + [atoms.types.open] = { + -- [atoms.types.ord] = nil + -- [atoms.types.op] = nil + [atoms.types.bin] = { impossible = true }, + -- [atoms.types.rel] = nil + -- [atoms.types.open] = nil + -- [atoms.types.close] = nil + -- [atoms.types.punct] = nil + -- [atoms.types.inner] = nil }, - [atomType.closeSymbol] = { - -- [atomType.ordinary] = nil - [atomType.bigOperator] = { spaceKind.thin }, - [atomType.binaryOperator] = { spaceKind.med, notScript = true }, - [atomType.relationalOperator] = { spaceKind.thick, notScript = true }, - -- [atomType.openingSymbol] = nil - -- [atomType.closeSymbol] = nil - -- [atomType.punctuationSymbol] = nil - [atomType.inner] = { spaceKind.thin, notScript = true }, + [atoms.types.close] = { + -- [atoms.types.ord] = nil + [atoms.types.op] = { spaceKind.thin }, + [atoms.types.bin] = { spaceKind.med, notScript = true }, + [atoms.types.rel] = { spaceKind.thick, notScript = true }, + -- [atoms.types.open] = nil + -- [atoms.types.close] = nil + -- [atoms.types.punct] = nil + [atoms.types.inner] = { spaceKind.thin, notScript = true }, }, - [atomType.punctuationSymbol] = { - [atomType.ordinary] = { spaceKind.thin, notScript = true }, - [atomType.bigOperator] = { spaceKind.thin, notScript = true }, - [atomType.binaryOperator] = { impossible = true }, - [atomType.relationalOperator] = { spaceKind.thin, notScript = true }, - [atomType.openingSymbol] = { spaceKind.thin, notScript = true }, - [atomType.closeSymbol] = { spaceKind.thin, notScript = true }, - [atomType.punctuationSymbol] = { spaceKind.thin, notScript = true }, - [atomType.inner] = { spaceKind.thin, notScript = true }, + [atoms.types.punct] = { + [atoms.types.ord] = { spaceKind.thin, notScript = true }, + [atoms.types.op] = { spaceKind.thin, notScript = true }, + [atoms.types.bin] = { impossible = true }, + [atoms.types.rel] = { spaceKind.thin, notScript = true }, + [atoms.types.open] = { spaceKind.thin, notScript = true }, + [atoms.types.close] = { spaceKind.thin, notScript = true }, + [atoms.types.punct] = { spaceKind.thin, notScript = true }, + [atoms.types.inner] = { spaceKind.thin, notScript = true }, }, - [atomType.inner] = { - [atomType.ordinary] = { spaceKind.thin, notScript = true }, - [atomType.bigOperator] = { spaceKind.thin }, - [atomType.binaryOperator] = { spaceKind.med, notScript = true }, - [atomType.relationalOperator] = { spaceKind.thick, notScript = true }, - [atomType.openingSymbol] = { spaceKind.thin, notScript = true }, - [atomType.punctuationSymbol] = { spaceKind.thin, notScript = true }, - -- [atomType.closeSymbol] = nil - [atomType.inner] = { spaceKind.thin, notScript = true }, + [atoms.types.inner] = { + [atoms.types.ord] = { spaceKind.thin, notScript = true }, + [atoms.types.op] = { spaceKind.thin }, + [atoms.types.bin] = { spaceKind.med, notScript = true }, + [atoms.types.rel] = { spaceKind.thick, notScript = true }, + [atoms.types.open] = { spaceKind.thin, notScript = true }, + [atoms.types.punct] = { spaceKind.thin, notScript = true }, + -- [atoms.types.close] = nil + [atoms.types.inner] = { spaceKind.thin, notScript = true }, }, } @@ -430,8 +428,8 @@ function elements.stackbox:styleChildren () -- A binary operator at the beginning of the expression is treated as an ordinary atom -- (so as to be considered as a unary operator, without more context). local v = self.children[1] - if v.atom == atomType.binaryOperator then - v.atom = atomType.ordinary + if v.atom == atoms.types.bin then + v.atom = atoms.types.ord end end for i = 1, #self.children - 1 do @@ -444,11 +442,11 @@ function elements.stackbox:styleChildren () local rule = spacingRules[v.atom][v2.atom] if rule.impossible then -- Another interpretation of the TeXbook p. 133 for binary operator exceptions: - if v2.atom == atomType.binaryOperator then + if v2.atom == atoms.types.bin then -- If a binary atom follows an atom that is not compatible with it, make it an ordinary. -- (so as to be conidered as a unary operator). -- Typical case: "a = -b" (ord rel bin ord), "a + -b" (ord bin bin ord) - v2.atom = atomType.ordinary + v2.atom = atoms.types.ord else -- If a binary atom precedes an atom that is not compatible with it, make it an ordinary. -- Quite unusual case (bin, rel/close/punct) unlikely to happen in practice. @@ -457,7 +455,7 @@ function elements.stackbox:styleChildren () -- on the binary atom... but this might not be a big deal. -- (i.e. rather than add an extra look-ahead just for this case). -- Artificial example: "a + = b" (ord bin rel ord) - v.atom = atomType.ordinary + v.atom = atoms.types.ord end rule = spacingRules[v.atom][v2.atom] if rule and rule.impossible then @@ -912,7 +910,7 @@ function elements.underOver:calculateItalicsCorrection () -- If this is a big operator, and we are in display style, then the -- base glyph may be bigger than the font size. We need to adjust the -- italic correction accordingly. - if self.base.atom == atomType.bigOperator and isDisplayMode(self.mode) then + if SU.boolean(self.base.largeop) and isDisplayMode(self.mode) then c = c * (self.base and self.base.font.size / self.font.size or 1.0) end return c diff --git a/packages/math/texlike.lua b/packages/math/texlike.lua index e7ba3b6e3..8fa66c351 100644 --- a/packages/math/texlike.lua +++ b/packages/math/texlike.lua @@ -5,8 +5,6 @@ local bits = require("core.parserbits") local epnf = require("epnf") local lpeg = require("lpeg") -local atomType = atoms.atomType -local atomTypeShort = atoms.atomTypeShort local operatorDict = syms.operatorDict local symbols = syms.symbols @@ -283,13 +281,13 @@ local function isOperatorKind (tree, typeOfAtom) end -- Case \mo[atom=xxx]{ops} -- E.g. \mo[atom=op]{lim} - if tree.options and tree.options.atom == typeOfAtom then - return true + if tree.options and tree.options.atom then + return atoms.types[tree.options.atom] == typeOfAtom end -- Case \mo{ops} where ops is registered with the resquested type -- E.g. \mo{∑) or \sum if tree[1] and operatorDict[tree[1]] and operatorDict[tree[1]].atom then - return operatorDict[tree[1]].atom == atomTypeShort[typeOfAtom] + return operatorDict[tree[1]].atom == typeOfAtom end return false end @@ -319,14 +317,14 @@ local function isMoveableLimits (tree) return false end local function isCloseOperator (tree) - return isOperatorKind(tree, "close") + return isOperatorKind(tree, atoms.types.close) end local function isOpeningOperator (tree) - return isOperatorKind(tree, "open") + return isOperatorKind(tree, atoms.types.open) end local function isAccentSymbol (symbol) - return operatorDict[symbol] and operatorDict[symbol].atom == atomType.accentSymbol + return operatorDict[symbol] and operatorDict[symbol].atom == atoms.types.accent end local function compileToMathML_aux (_, arg_env, tree) diff --git a/packages/math/tools/unicode-xml-to-sile.xsl b/packages/math/tools/unicode-xml-to-sile.xsl index 2467bc7d9..dc4dd4336 100644 --- a/packages/math/tools/unicode-xml-to-sile.xsl +++ b/packages/math/tools/unicode-xml-to-sile.xsl @@ -58,7 +58,7 @@ - ord + ord op @@ -97,7 +97,6 @@ -- local atoms = require("packages/math/atoms") -local atomTypeShort = atoms.atomTypeShort --- Transform a list of codepoints into a string local function U (...) @@ -124,7 +123,7 @@ local function addSymbol (str, shortatom, mathlatex, _, ops) symbols[mathlatex] = str end local op = {} - op.atom = atomTypeShort[shortatom] + op.atom = atoms.types[shortatom] if ops then op.forms = {} for _, v in pairs(ops) do diff --git a/packages/math/typesetter.lua b/packages/math/typesetter.lua index 69db11f4e..9ba7559e8 100644 --- a/packages/math/typesetter.lua +++ b/packages/math/typesetter.lua @@ -4,7 +4,6 @@ local b = require("packages.math.base-elements") local syms = require("packages.math.unicode-symbols") local mathvariants = require("packages.math.unicode-mathvariants") local mathVariantToScriptType, scriptType = mathvariants.mathVariantToScriptType, mathvariants.scriptType -local atomTypeShort = atoms.atomTypeShort local ConvertMathML @@ -150,10 +149,10 @@ function ConvertMathML (_, content) attributes[attribute] = value end if content.options.atom then - if not atomTypeShort[content.options.atom] then + if not atoms.types[content.options.atom] then SU.error("Unknown atom type " .. content.options.atom) else - attributes.atom = atomTypeShort[content.options.atom] + attributes.atom = atoms.types[content.options.atom] end end if type(text) ~= "string" then diff --git a/packages/math/unicode-symbols-generated.lua b/packages/math/unicode-symbols-generated.lua index 34bff19af..e33acfc05 100644 --- a/packages/math/unicode-symbols-generated.lua +++ b/packages/math/unicode-symbols-generated.lua @@ -15,16 +15,15 @@ -- local atoms = require("packages/math/atoms") -local atomTypeShort = atoms.atomTypeShort --- Transform a list of codepoints into a string local function U (...) - local t = { ... } - local str = "" - for i = 1, #t do - str = str .. luautf8.char(t[i]) - end - return str + local t = { ... } + local str = "" + for i = 1, #t do + str = str .. luautf8.char(t[i]) + end + return str end local symbols = {} @@ -37,200 +36,273 @@ local operatorDict = {} -- @tparam string _ Unicode name of the symbol (informative) -- @tparam table ops List of operator forms and their properties local function addSymbol (str, shortatom, mathlatex, _, ops) - if mathlatex then - SU.debug("math.symbols", "Registering symbol", str, "as", mathlatex) - symbols[mathlatex] = str - end - local op = {} - op.atom = atomTypeShort[shortatom] - if ops then - op.forms = {} - for _, v in pairs(ops) do - if v.form then - -- NOTE: At this point the mu unit is not yet defined, so keep it as a string. - v.lspace = v.lspace and ("%smu"):format(v.lspace) or "0mu" - v.rspace = v.rspace and ("%smu"):format(v.rspace) or "0mu" - op.forms[v.form] = v - else - SU.warn("No form for operator " .. str .. " (operator dictionary is probably incomplete)") + if mathlatex then + SU.debug("math.symbols", "Registering symbol", str, "as", mathlatex) + symbols[mathlatex] = str + end + local op = {} + op.atom = atoms.types[shortatom] + if ops then + op.forms = {} + for _, v in pairs(ops) do + if v.form then + -- NOTE: At this point the mu unit is not yet defined, so keep it as a string. + v.lspace = v.lspace and ("%smu"):format(v.lspace) or "0mu" + v.rspace = v.rspace and ("%smu"):format(v.rspace) or "0mu" + op.forms[v.form] = v + else + SU.warn("No form for operator " .. str .. " (operator dictionary is probably incomplete)") + end end - end - end - operatorDict[str] = op + end + operatorDict[str] = op end - addSymbol(U(0x00021), "ord", "mathexclam", "EXCLAMATION MARK", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) addSymbol(U(0x00021, 0x00021), "ord", nil, "MULTIPLE CHARACTER OPERATOR: !!", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, +}) addSymbol(U(0x00021, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: !=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x00022), "ord", nil, "QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x00023), "ord", "mathoctothorpe", "NUMBER SIGN", nil) addSymbol(U(0x00024), "ord", "mathdollar", "DOLLAR SIGN", nil) addSymbol(U(0x00025), "ord", "mathpercent", "PERCENT SIGN", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, - { form = "infix", lspace = 3, priority = 640, rspace = 3 }}) + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, + { form = "infix", lspace = 3, priority = 640, rspace = 3 }, +}) addSymbol(U(0x00026), "ord", "mathampersand", "AMPERSAND", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x00026, 0x00026), "ord", nil, "MULTIPLE CHARACTER OPERATOR: &&", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x00027), "ord", nil, "APOSTROPHE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x00028), "open", "lparen", "LEFT PARENTHESIS", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x00029), "close", "rparen", "RIGHT PARENTHESIS", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0002A), "ord", nil, "ASTERISK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x0002A, 0x0002A), "ord", nil, "MULTIPLE CHARACTER OPERATOR: **", { - { form = "infix", lspace = 3, priority = 760, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 760, rspace = 3 }, +}) addSymbol(U(0x0002A, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: *=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0002B), "bin", "mathplus", "PLUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x0002B, 0x0002B), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ++", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x0002B, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: +=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0002C), "punct", "mathcomma", "COMMA", { - { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 3, separator = true }}) + { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 3, separator = true }, +}) addSymbol(U(0x0002D), "ord", nil, "HYPHEN-MINUS", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x0002D, 0x0002D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: --", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x0002D, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: -=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0002D, 0x0003E), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ->", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 220, rspace = 5 }, +}) addSymbol(U(0x0002E), "punct", "mathperiod", "FULL STOP", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x0002F), "bin", "mathslash", "SOLIDUS", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x0002F, 0x0002F), "ord", nil, "MULTIPLE CHARACTER OPERATOR: //", { - { form = "infix", lspace = 5, priority = 240, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 240, rspace = 5 }, +}) addSymbol(U(0x0002F, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: /=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0003A), "punct", "mathcolon", "COLON", { - { form = "infix", lspace = 0, priority = 180, rspace = 3 }}) + { form = "infix", lspace = 0, priority = 180, rspace = 3 }, +}) addSymbol(U(0x0003A, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: :=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0003B), "punct", "mathsemicolon", "SEMICOLON", { - { form = "infix", linebreakstyle = "after", lspace = 0, priority = 140, rspace = 3, separator = true }}) + { form = "infix", linebreakstyle = "after", lspace = 0, priority = 140, rspace = 3, separator = true }, +}) addSymbol(U(0x0003C), "rel", "less", "LESS-THAN SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0003C, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: <=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0003C, 0x0003E), "ord", nil, "MULTIPLE CHARACTER OPERATOR: <>", { - { form = "infix", lspace = 3, priority = 800, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 800, rspace = 3 }, +}) addSymbol(U(0x0003D), "rel", "equal", "EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0003D, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ==", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0003E), "rel", "greater", "GREATER-THAN SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0003E, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: >=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0003F), "punct", "mathquestion", "QUESTION MARK", { - { form = "infix", lspace = 3, priority = 840, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 840, rspace = 3 }, +}) addSymbol(U(0x00040), "ord", "mathatsign", "COMMERCIAL AT", { - { form = "infix", lspace = 3, priority = 560, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 560, rspace = 3 }, +}) addSymbol(U(0x0005B), "open", "lbrack", "LEFT SQUARE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0005C), "bin", "backslash", "REVERSE SOLIDUS", { - { form = "infix", lspace = 0, priority = 660, rspace = 0 }}) + { form = "infix", lspace = 0, priority = 660, rspace = 0 }, +}) addSymbol(U(0x0005D), "close", "rbrack", "RIGHT SQUARE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0005E), "ord", nil, "CIRCUMFLEX ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, - { form = "infix", lspace = 3, priority = 800, rspace = 3 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { form = "infix", lspace = 3, priority = 800, rspace = 3 }, +}) addSymbol(U(0x0005F), "ord", nil, "LOW LINE", { - { form = "infix", lspace = 0, priority = 940, rspace = 0 }, - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "infix", lspace = 0, priority = 940, rspace = 0 }, + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x00060), "ord", nil, "GRAVE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x0007B), "open", "lbrace", "LEFT CURLY BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0007C), "ord", "vert", "VERTICAL LINE", { - { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0007C, 0x0007C), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ||", { - { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0 }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0 }}) + { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0 }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0 }, +}) addSymbol(U(0x0007D), "close", "rbrace", "RIGHT CURLY BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0007E), "ord", nil, "TILDE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x000A1), "punct", nil, "INVERTED EXCLAMATION MARK", nil) addSymbol(U(0x000A3), "ord", "mathsterling", "POUND SIGN", nil) addSymbol(U(0x000A5), "ord", "mathyen", "YEN SIGN", nil) addSymbol(U(0x000A7), "ord", "mathsection", "SECTION SIGN", nil) addSymbol(U(0x000A8), "ord", nil, "DIAERESIS", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x000AC), "ord", "neg", "NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) addSymbol(U(0x000AF), "ord", nil, "MACRON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x000B0), "ord", nil, "DEGREE SIGN", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x000B1), "bin", "pm", "PLUS-MINUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x000B2), "ord", nil, "SUPERSCRIPT TWO", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x000B3), "ord", nil, "SUPERSCRIPT THREE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x000B4), "ord", nil, "ACUTE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x000B6), "ord", "mathparagraph", "PILCROW SIGN", nil) addSymbol(U(0x000B7), "bin", "cdotp", "MIDDLE DOT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x000B8), "ord", nil, "CEDILLA", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x000B9), "ord", nil, "SUPERSCRIPT ONE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x000BF), "punct", nil, "INVERTED QUESTION MARK", nil) addSymbol(U(0x000D7), "bin", "times", "MULTIPLICATION SIGN", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x000F0), "ord", "matheth", "LATIN SMALL LETTER ETH", nil) addSymbol(U(0x000F7), "bin", "div", "DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x001B5), "ord", "Zbar", "LATIN CAPITAL LETTER Z WITH STROKE", nil) addSymbol(U(0x002C6), "ord", nil, "MODIFIER LETTER CIRCUMFLEX ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x002C7), "ord", nil, "CARON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x002C9), "ord", nil, "MODIFIER LETTER MACRON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x002CA), "ord", nil, "MODIFIER LETTER ACUTE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x002CB), "ord", nil, "MODIFIER LETTER GRAVE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x002CD), "ord", nil, "MODIFIER LETTER LOW MACRON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x002D8), "ord", nil, "BREVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x002D9), "ord", nil, "DOT ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x002DA), "ord", nil, "RING ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x002DC), "ord", nil, "SMALL TILDE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x002DD), "ord", nil, "DOUBLE ACUTE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x002F7), "ord", nil, "MODIFIER LETTER LOW TILDE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x00300), "accent", "grave", "COMBINING GRAVE ACCENT", nil) addSymbol(U(0x00301), "accent", "acute", "COMBINING ACUTE ACCENT", nil) addSymbol(U(0x00302), "accent", "hat", "COMBINING CIRCUMFLEX ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x00303), "accent", "tilde", "COMBINING TILDE", nil) addSymbol(U(0x00304), "accent", "bar", "COMBINING MACRON", nil) addSymbol(U(0x00305), "accent", "overbar", "COMBINING OVERLINE", nil) @@ -242,7 +314,8 @@ addSymbol(U(0x0030A), "accent", "ocirc", "COMBINING RING ABOVE", nil) addSymbol(U(0x0030C), "accent", "check", "COMBINING CARON", nil) addSymbol(U(0x00310), "ord", "candra", "COMBINING CANDRABINDU", nil) addSymbol(U(0x00311), "accent", nil, "COMBINING INVERTED BREVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x00312), "ord", "oturnedcomma", "COMBINING TURNED COMMA ABOVE", nil) addSymbol(U(0x00315), "ord", "ocommatopright", "COMBINING COMMA ABOVE RIGHT", nil) addSymbol(U(0x0031A), "ord", "droang", "COMBINING LEFT ANGLE ABOVE", nil) @@ -327,66 +400,90 @@ addSymbol(U(0x02013), "punct", nil, "EN DASH", nil) addSymbol(U(0x02014), "punct", nil, "EM DASH", nil) addSymbol(U(0x02015), "ord", "horizbar", "HORIZONTAL BAR", nil) addSymbol(U(0x02016), "ord", "Vert", "DOUBLE VERTICAL LINE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02017), "ord", "twolowline", "DOUBLE LOW LINE", nil) addSymbol(U(0x02018), "ord", nil, "LEFT SINGLE QUOTATION MARK", { - { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }}) + { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }, +}) addSymbol(U(0x02019), "ord", nil, "RIGHT SINGLE QUOTATION MARK", { - { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }}) + { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }, +}) addSymbol(U(0x0201A), "ord", nil, "SINGLE LOW-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x0201B), "ord", nil, "SINGLE HIGH-REVERSED-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x0201C), "ord", nil, "LEFT DOUBLE QUOTATION MARK", { - { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }}) + { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }, +}) addSymbol(U(0x0201D), "ord", nil, "RIGHT DOUBLE QUOTATION MARK", { - { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }}) + { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }, +}) addSymbol(U(0x0201E), "ord", nil, "DOUBLE LOW-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x0201F), "ord", nil, "DOUBLE HIGH-REVERSED-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x02020), "rel", "dagger", "DAGGER", nil) addSymbol(U(0x02021), "rel", "ddagger", "DOUBLE DAGGER", nil) addSymbol(U(0x02022), "bin", "smblkcircle", "BULLET", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02025), "ord", "enleadertwodots", "TWO DOT LEADER", nil) addSymbol(U(0x02026), "ord", "unicodeellipsis", "HORIZONTAL ELLIPSIS", nil) addSymbol(U(0x02032), "ord", "prime", "PRIME", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, +}) addSymbol(U(0x02033), "ord", "dprime", "DOUBLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x02034), "ord", "trprime", "TRIPLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x02035), "ord", "backprime", "REVERSED PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x02036), "ord", "backdprime", "REVERSED DOUBLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x02037), "ord", "backtrprime", "REVERSED TRIPLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x02038), "ord", "caretinsert", "CARET", nil) addSymbol(U(0x0203C), "ord", "Exclam", "DOUBLE EXCLAMATION MARK", nil) addSymbol(U(0x0203E), "ord", nil, "OVERLINE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x02040), "bin", "tieconcat", "CHARACTER TIE", nil) addSymbol(U(0x02043), "ord", "hyphenbullet", "HYPHEN BULLET", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02044), "bin", "fracslash", "FRACTION SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x02047), "ord", "Question", "DOUBLE QUESTION MARK", nil) addSymbol(U(0x0204E), "bin", nil, "LOW ASTERISK", nil) addSymbol(U(0x0204F), "rel", nil, "REVERSED SEMICOLON", nil) addSymbol(U(0x02050), "rel", "closure", "CLOSE UP", nil) addSymbol(U(0x02057), "ord", "qprime", "QUADRUPLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x02061), "bin", nil, "FUNCTION APPLICATION", { - { form = "infix", lspace = 0, priority = 880, rspace = 0 }}) + { form = "infix", lspace = 0, priority = 880, rspace = 0 }, +}) addSymbol(U(0x02062), "bin", nil, "INVISIBLE TIMES", { - { form = "infix", lspace = 0, priority = 620, rspace = 0 }}) + { form = "infix", lspace = 0, priority = 620, rspace = 0 }, +}) addSymbol(U(0x02063), "punct", nil, "INVISIBLE SEPARATOR", { - { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 0, separator = true }}) + { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 0, separator = true }, +}) addSymbol(U(0x02064), "ord", nil, "INVISIBLE PLUS", { - { form = "infix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "infix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x020AC), "ord", "euro", "EURO SIGN", nil) addSymbol(U(0x020D0), "accent", "leftharpoonaccent", "COMBINING LEFT HARPOON ABOVE", nil) addSymbol(U(0x020D1), "accent", "rightharpoonaccent", "COMBINING RIGHT HARPOON ABOVE", nil) @@ -396,9 +493,11 @@ addSymbol(U(0x020D5), "accent", nil, "COMBINING CLOCKWISE ARROW ABOVE", nil) addSymbol(U(0x020D6), "accent", "overleftarrow", "COMBINING LEFT ARROW ABOVE", nil) addSymbol(U(0x020D7), "accent", "overrightarrow", "COMBINING RIGHT ARROW ABOVE", nil) addSymbol(U(0x020DB), "accent", "dddot", "COMBINING THREE DOTS ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x020DC), "accent", "ddddot", "COMBINING FOUR DOTS ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x020DD), "ord", "enclosecircle", "COMBINING ENCLOSING CIRCLE", nil) addSymbol(U(0x020DE), "ord", "enclosesquare", "COMBINING ENCLOSING SQUARE", nil) addSymbol(U(0x020DF), "ord", "enclosediamond", "COMBINING ENCLOSING DIAMOND", nil) @@ -458,766 +557,1134 @@ addSymbol(U(0x02142), "ord", "sansLturned", "TURNED SANS-SERIF CAPITAL L", nil) addSymbol(U(0x02143), "ord", "sansLmirrored", "REVERSED SANS-SERIF CAPITAL L", nil) addSymbol(U(0x02144), "ord", "Yup", "TURNED SANS-SERIF CAPITAL Y", nil) addSymbol(U(0x02145), "ord", "mitBbbD", "DOUBLE-STRUCK ITALIC CAPITAL D", { - { form = "prefix", lspace = 3, priority = 780, rspace = 0 }}) + { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, +}) addSymbol(U(0x02146), "ord", "mitBbbd", "DOUBLE-STRUCK ITALIC SMALL D", { - { form = "prefix", lspace = 3, priority = 780, rspace = 0 }}) + { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, +}) addSymbol(U(0x02147), "ord", "mitBbbe", "DOUBLE-STRUCK ITALIC SMALL E", nil) addSymbol(U(0x02148), "ord", "mitBbbi", "DOUBLE-STRUCK ITALIC SMALL I", nil) addSymbol(U(0x02149), "ord", "mitBbbj", "DOUBLE-STRUCK ITALIC SMALL J", nil) addSymbol(U(0x0214A), "ord", "PropertyLine", "PROPERTY LINE", nil) addSymbol(U(0x0214B), "ord", "upand", "TURNED AMPERSAND", nil) addSymbol(U(0x02190), "rel", "leftarrow", "LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02191), "rel", "uparrow", "UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02192), "rel", "rightarrow", "RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02193), "rel", "downarrow", "DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02194), "rel", "leftrightarrow", "LEFT RIGHT ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02195), "rel", "updownarrow", "UP DOWN ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02196), "rel", "nwarrow", "NORTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02197), "rel", "nearrow", "NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02198), "rel", "searrow", "SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02199), "rel", "swarrow", "SOUTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0219A), "rel", "nleftarrow", "LEFTWARDS ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0219B), "rel", "nrightarrow", "RIGHTWARDS ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0219C), "rel", "leftwavearrow", "LEFTWARDS WAVE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0219D), "rel", "rightwavearrow", "RIGHTWARDS WAVE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0219E), "rel", "twoheadleftarrow", "LEFTWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0219F), "rel", "twoheaduparrow", "UPWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021A0), "rel", "twoheadrightarrow", "RIGHTWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021A1), "rel", "twoheaddownarrow", "DOWNWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021A2), "rel", "leftarrowtail", "LEFTWARDS ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021A3), "rel", "rightarrowtail", "RIGHTWARDS ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021A4), "rel", "mapsfrom", "LEFTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021A5), "rel", "mapsup", "UPWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021A6), "rel", "mapsto", "RIGHTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021A7), "rel", "mapsdown", "DOWNWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021A8), "rel", "updownarrowbar", "UP DOWN ARROW WITH BASE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021A9), "rel", "hookleftarrow", "LEFTWARDS ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021AA), "rel", "hookrightarrow", "RIGHTWARDS ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021AB), "rel", "looparrowleft", "LEFTWARDS ARROW WITH LOOP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021AC), "rel", "looparrowright", "RIGHTWARDS ARROW WITH LOOP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021AD), "rel", "leftrightsquigarrow", "LEFT RIGHT WAVE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021AE), "rel", "nleftrightarrow", "LEFT RIGHT ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021AF), "rel", "downzigzagarrow", "DOWNWARDS ZIGZAG ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021B0), "rel", "Lsh", "UPWARDS ARROW WITH TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021B1), "rel", "Rsh", "UPWARDS ARROW WITH TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021B2), "rel", "Ldsh", "DOWNWARDS ARROW WITH TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021B3), "rel", "Rdsh", "DOWNWARDS ARROW WITH TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021B4), "ord", "linefeed", "RIGHTWARDS ARROW WITH CORNER DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021B5), "ord", "carriagereturn", "DOWNWARDS ARROW WITH CORNER LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021B6), "rel", "curvearrowleft", "ANTICLOCKWISE TOP SEMICIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021B7), "rel", "curvearrowright", "CLOCKWISE TOP SEMICIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021B8), "ord", "barovernorthwestarrow", "NORTH WEST ARROW TO LONG BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021B9), "ord", "barleftarrowrightarrowbar", "LEFTWARDS ARROW TO BAR OVER RIGHTWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021BA), "rel", "acwopencirclearrow", "ANTICLOCKWISE OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021BB), "rel", "cwopencirclearrow", "CLOCKWISE OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021BC), "rel", "leftharpoonup", "LEFTWARDS HARPOON WITH BARB UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021BD), "rel", "leftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021BE), "rel", "upharpoonright", "UPWARDS HARPOON WITH BARB RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021BF), "rel", "upharpoonleft", "UPWARDS HARPOON WITH BARB LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021C0), "rel", "rightharpoonup", "RIGHTWARDS HARPOON WITH BARB UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021C1), "rel", "rightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021C2), "rel", "downharpoonright", "DOWNWARDS HARPOON WITH BARB RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021C3), "rel", "downharpoonleft", "DOWNWARDS HARPOON WITH BARB LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021C4), "rel", "rightleftarrows", "RIGHTWARDS ARROW OVER LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021C5), "rel", "updownarrows", "UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021C6), "rel", "leftrightarrows", "LEFTWARDS ARROW OVER RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021C7), "rel", "leftleftarrows", "LEFTWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021C8), "rel", "upuparrows", "UPWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021C9), "rel", "rightrightarrows", "RIGHTWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021CA), "rel", "downdownarrows", "DOWNWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021CB), "rel", "leftrightharpoons", "LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021CC), "rel", "rightleftharpoons", "RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021CD), "rel", "nLeftarrow", "LEFTWARDS DOUBLE ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021CE), "rel", "nLeftrightarrow", "LEFT RIGHT DOUBLE ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021CF), "rel", "nRightarrow", "RIGHTWARDS DOUBLE ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021D0), "rel", "Leftarrow", "LEFTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021D1), "rel", "Uparrow", "UPWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021D2), "rel", "Rightarrow", "RIGHTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021D3), "rel", "Downarrow", "DOWNWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021D4), "rel", "Leftrightarrow", "LEFT RIGHT DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021D5), "rel", "Updownarrow", "UP DOWN DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021D6), "rel", "Nwarrow", "NORTH WEST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021D7), "rel", "Nearrow", "NORTH EAST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021D8), "rel", "Searrow", "SOUTH EAST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021D9), "rel", "Swarrow", "SOUTH WEST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021DA), "rel", "Lleftarrow", "LEFTWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021DB), "rel", "Rrightarrow", "RIGHTWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021DC), "rel", "leftsquigarrow", "LEFTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021DD), "rel", "rightsquigarrow", "RIGHTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021DE), "rel", "nHuparrow", "UPWARDS ARROW WITH DOUBLE STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021DF), "rel", "nHdownarrow", "DOWNWARDS ARROW WITH DOUBLE STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021E0), "rel", "leftdasharrow", "LEFTWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021E1), "rel", "updasharrow", "UPWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021E2), "rel", "rightdasharrow", "RIGHTWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021E3), "rel", "downdasharrow", "DOWNWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021E4), "rel", "barleftarrow", "LEFTWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021E5), "rel", "rightarrowbar", "RIGHTWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021E6), "rel", "leftwhitearrow", "LEFTWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021E7), "rel", "upwhitearrow", "UPWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021E8), "rel", "rightwhitearrow", "RIGHTWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021E9), "rel", "downwhitearrow", "DOWNWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021EA), "rel", "whitearrowupfrombar", "UPWARDS WHITE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021EB), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021EC), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL WITH HORIZONTAL BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021ED), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL WITH VERTICAL BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021EE), "rel", nil, "UPWARDS WHITE DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021EF), "rel", nil, "UPWARDS WHITE DOUBLE ARROW ON PEDESTAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021F0), "rel", nil, "RIGHTWARDS WHITE ARROW FROM WALL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021F1), "rel", nil, "NORTH WEST ARROW TO CORNER", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021F2), "rel", nil, "SOUTH EAST ARROW TO CORNER", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x021F3), "rel", nil, "UP DOWN WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021F4), "rel", "circleonrightarrow", "RIGHT ARROW WITH SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021F5), "rel", "downuparrows", "DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021F6), "rel", "rightthreearrows", "THREE RIGHTWARDS ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021F7), "rel", "nvleftarrow", "LEFTWARDS ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021F8), "rel", "nvrightarrow", "RIGHTWARDS ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021F9), "rel", "nvleftrightarrow", "LEFT RIGHT ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021FA), "rel", "nVleftarrow", "LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021FB), "rel", "nVrightarrow", "RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021FC), "rel", "nVleftrightarrow", "LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021FD), "rel", "leftarrowtriangle", "LEFTWARDS OPEN-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021FE), "rel", "rightarrowtriangle", "RIGHTWARDS OPEN-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x021FF), "rel", "leftrightarrowtriangle", "LEFT RIGHT OPEN-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02200), "ord", "forall", "FOR ALL", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) addSymbol(U(0x02201), "ord", "complement", "COMPLEMENT", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, +}) addSymbol(U(0x02202), "ord", "partial", "PARTIAL DIFFERENTIAL", { - { form = "prefix", lspace = 3, priority = 780, rspace = 0 }}) + { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, +}) addSymbol(U(0x02203), "ord", "exists", "THERE EXISTS", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) addSymbol(U(0x02204), "ord", "nexists", "THERE DOES NOT EXIST", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) addSymbol(U(0x02205), "ord", "varnothing", "EMPTY SET", nil) addSymbol(U(0x02206), "ord", "increment", "INCREMENT", { - { form = "infix", lspace = 0, priority = 720, rspace = 0 }}) + { form = "infix", lspace = 0, priority = 720, rspace = 0 }, +}) addSymbol(U(0x02207), "ord", "nabla", "NABLA", { - { form = "prefix", lspace = 0, priority = 780, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 780, rspace = 0 }, +}) addSymbol(U(0x02208), "rel", "in", "ELEMENT OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02209), "rel", "notin", "NOT AN ELEMENT OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x0220A), "rel", "smallin", "SMALL ELEMENT OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x0220B), "rel", "ni", "CONTAINS AS MEMBER", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x0220C), "rel", "nni", "DOES NOT CONTAIN AS MEMBER", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x0220D), "rel", "smallni", "SMALL CONTAINS AS MEMBER", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x0220E), "ord", "QED", "END OF PROOF", nil) addSymbol(U(0x0220F), "op", "prod", "N-ARY PRODUCT", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02210), "op", "coprod", "N-ARY COPRODUCT", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02211), "op", "sum", "N-ARY SUMMATION", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02212), "bin", "minus", "MINUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02213), "bin", "mp", "MINUS-OR-PLUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02214), "bin", "dotplus", "DOT PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02215), "bin", "divslash", "DIVISION SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x02216), "bin", "setminus", "SET MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02217), "bin", "ast", "ASTERISK OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02218), "bin", "vysmwhtcircle", "RING OPERATOR", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 900, rspace = 3 }, +}) addSymbol(U(0x02219), "bin", "vysmblkcircle", "BULLET OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x0221A), "op", "sqrt", "SQUARE ROOT", { - { form = "prefix", lspace = 3, priority = 860, rspace = 0 }}) + { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, +}) addSymbol(U(0x0221B), "op", "cuberoot", "CUBE ROOT", { - { form = "prefix", lspace = 3, priority = 860, rspace = 0 }}) + { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, +}) addSymbol(U(0x0221C), "op", "fourthroot", "FOURTH ROOT", { - { form = "prefix", lspace = 3, priority = 860, rspace = 0 }}) + { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, +}) addSymbol(U(0x0221D), "rel", "propto", "PROPORTIONAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0221E), "ord", "infty", "INFINITY", nil) addSymbol(U(0x0221F), "ord", "rightangle", "RIGHT ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x02220), "ord", "angle", "ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x02221), "ord", "measuredangle", "MEASURED ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x02222), "ord", "sphericalangle", "SPHERICAL ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x02223), "rel", "mid", "DIVIDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02224), "rel", "nmid", "DOES NOT DIVIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02225), "rel", "parallel", "PARALLEL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02226), "rel", "nparallel", "NOT PARALLEL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02227), "bin", "wedge", "LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x02228), "bin", "vee", "LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02229), "bin", "cap", "INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x0222A), "bin", "cup", "UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x0222B), "ord", "int", "INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x0222C), "ord", "iint", "DOUBLE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x0222D), "ord", "iiint", "TRIPLE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x0222E), "ord", "oint", "CONTOUR INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x0222F), "ord", "oiint", "SURFACE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02230), "ord", "oiiint", "VOLUME INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02231), "ord", "intclockwise", "CLOCKWISE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02232), "ord", "varointclockwise", "CLOCKWISE CONTOUR INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02233), "ord", "ointctrclockwise", "ANTICLOCKWISE CONTOUR INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02234), "rel", "therefore", "THEREFORE", { - { form = "prefix", lspace = 0, priority = 200, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 200, rspace = 0 }, +}) addSymbol(U(0x02235), "rel", "because", "BECAUSE", { - { form = "prefix", lspace = 0, priority = 200, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 200, rspace = 0 }, +}) addSymbol(U(0x02236), "rel", "mathratio", "RATIO", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x02237), "rel", "Colon", "PROPORTION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02238), "bin", "dotminus", "DOT MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02239), "rel", "dashcolon", "EXCESS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0223A), "rel", "dotsminusdots", "GEOMETRIC PROPORTION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0223B), "rel", "kernelcontraction", "HOMOTHETIC", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0223C), "rel", "sim", "TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) addSymbol(U(0x0223D), "rel", "backsim", "REVERSED TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0223E), "bin", "invlazys", "INVERTED LAZY S", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0223F), "ord", "sinewave", "SINE WAVE", nil) addSymbol(U(0x02240), "bin", "wr", "WREATH PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02241), "rel", "nsim", "NOT TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02242), "rel", "eqsim", "MINUS TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02243), "rel", "simeq", "ASYMPTOTICALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02244), "rel", "nsime", "NOT ASYMPTOTICALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02245), "rel", "cong", "APPROXIMATELY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02246), "rel", "simneqq", "APPROXIMATELY BUT NOT ACTUALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02247), "rel", "ncong", "NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02248), "rel", "approx", "ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02249), "rel", "napprox", "NOT ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0224A), "rel", "approxeq", "ALMOST EQUAL OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0224B), "rel", "approxident", "TRIPLE TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0224C), "rel", "backcong", "ALL EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0224D), "rel", "asymp", "EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0224E), "rel", "Bumpeq", "GEOMETRICALLY EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0224F), "rel", "bumpeq", "DIFFERENCE BETWEEN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02250), "rel", "doteq", "APPROACHES THE LIMIT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02251), "rel", "Doteq", "GEOMETRICALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02252), "rel", "fallingdotseq", "APPROXIMATELY EQUAL TO OR THE IMAGE OF", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02253), "rel", "risingdotseq", "IMAGE OF OR APPROXIMATELY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02254), "rel", "coloneq", "COLON EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02255), "rel", "eqcolon", "EQUALS COLON", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02256), "rel", "eqcirc", "RING IN EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02257), "rel", "circeq", "RING EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02258), "rel", "arceq", "CORRESPONDS TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02259), "rel", "wedgeq", "ESTIMATES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0225A), "rel", "veeeq", "EQUIANGULAR TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0225B), "rel", "stareq", "STAR EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0225C), "rel", "triangleq", "DELTA EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0225D), "rel", "eqdef", "EQUAL TO BY DEFINITION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0225E), "rel", "measeq", "MEASURED BY", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0225F), "rel", "questeq", "QUESTIONED EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02260), "rel", "ne", "NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02261), "rel", "equiv", "IDENTICAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02262), "rel", "nequiv", "NOT IDENTICAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02263), "rel", "Equiv", "STRICTLY EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02264), "rel", "leq", "LESS-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02265), "rel", "geq", "GREATER-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02266), "rel", "leqq", "LESS-THAN OVER EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02267), "rel", "geqq", "GREATER-THAN OVER EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02268), "rel", "lneqq", "LESS-THAN BUT NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02269), "rel", "gneqq", "GREATER-THAN BUT NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0226A), "rel", "ll", "MUCH LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0226B), "rel", "gg", "MUCH GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0226C), "rel", "between", "BETWEEN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0226D), "rel", "nasymp", "NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0226E), "rel", "nless", "NOT LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0226F), "rel", "ngtr", "NOT GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02270), "rel", "nleq", "NEITHER LESS-THAN NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02271), "rel", "ngeq", "NEITHER GREATER-THAN NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02272), "rel", "lesssim", "LESS-THAN OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02273), "rel", "gtrsim", "GREATER-THAN OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02274), "rel", "nlesssim", "NEITHER LESS-THAN NOR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02275), "rel", "ngtrsim", "NEITHER GREATER-THAN NOR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02276), "rel", "lessgtr", "LESS-THAN OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02277), "rel", "gtrless", "GREATER-THAN OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02278), "rel", "nlessgtr", "NEITHER LESS-THAN NOR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02279), "rel", "ngtrless", "NEITHER GREATER-THAN NOR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0227A), "rel", "prec", "PRECEDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0227B), "rel", "succ", "SUCCEEDS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0227C), "rel", "preccurlyeq", "PRECEDES OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0227D), "rel", "succcurlyeq", "SUCCEEDS OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0227E), "rel", "precsim", "PRECEDES OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0227F), "rel", "succsim", "SUCCEEDS OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02280), "rel", "nprec", "DOES NOT PRECEDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02281), "rel", "nsucc", "DOES NOT SUCCEED", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02282), "rel", "subset", "SUBSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02283), "rel", "supset", "SUPERSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02284), "rel", "nsubset", "NOT A SUBSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02285), "rel", "nsupset", "NOT A SUPERSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02286), "rel", "subseteq", "SUBSET OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02287), "rel", "supseteq", "SUPERSET OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02288), "rel", "nsubseteq", "NEITHER A SUBSET OF NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02289), "rel", "nsupseteq", "NEITHER A SUPERSET OF NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x0228A), "rel", "subsetneq", "SUBSET OF WITH NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x0228B), "rel", "supsetneq", "SUPERSET OF WITH NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x0228C), "bin", "cupleftarrow", "MULTISET", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x0228D), "bin", "cupdot", "MULTISET MULTIPLICATION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x0228E), "bin", "uplus", "MULTISET UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x0228F), "rel", "sqsubset", "SQUARE IMAGE OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02290), "rel", "sqsupset", "SQUARE ORIGINAL OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02291), "rel", "sqsubseteq", "SQUARE IMAGE OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02292), "rel", "sqsupseteq", "SQUARE ORIGINAL OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02293), "bin", "sqcap", "SQUARE CAP", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02294), "bin", "sqcup", "SQUARE CUP", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x02295), "bin", "oplus", "CIRCLED PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02296), "bin", "ominus", "CIRCLED MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02297), "bin", "otimes", "CIRCLED TIMES", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02298), "bin", "oslash", "CIRCLED DIVISION SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x02299), "bin", "odot", "CIRCLED DOT OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x0229A), "bin", "circledcirc", "CIRCLED RING OPERATOR", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 900, rspace = 3 }, +}) addSymbol(U(0x0229B), "bin", "circledast", "CIRCLED ASTERISK OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x0229C), "bin", "circledequal", "CIRCLED EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x0229D), "bin", "circleddash", "CIRCLED DASH", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x0229E), "bin", "boxplus", "SQUARED PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x0229F), "bin", "boxminus", "SQUARED MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x022A0), "bin", "boxtimes", "SQUARED TIMES", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x022A1), "bin", "boxdot", "SQUARED DOT OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x022A2), "rel", "vdash", "RIGHT TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x022A3), "rel", "dashv", "LEFT TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x022A4), "ord", "top", "DOWN TACK", nil) addSymbol(U(0x022A5), "rel", "bot", "UP TACK", nil) addSymbol(U(0x022A6), "rel", "assert", "ASSERTION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022A7), "rel", "models", "MODELS", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x022A8), "rel", "vDash", "TRUE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x022A9), "rel", "Vdash", "FORCES", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x022AA), "rel", "Vvdash", "TRIPLE VERTICAL BAR RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x022AB), "rel", "VDash", "DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x022AC), "rel", "nvdash", "DOES NOT PROVE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x022AD), "rel", "nvDash", "NOT TRUE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x022AE), "rel", "nVdash", "DOES NOT FORCE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x022AF), "rel", "nVDash", "NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x022B0), "rel", "prurel", "PRECEDES UNDER RELATION", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022B1), "rel", "scurel", "SUCCEEDS UNDER RELATION", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022B2), "rel", "vartriangleleft", "NORMAL SUBGROUP OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022B3), "rel", "vartriangleright", "CONTAINS AS NORMAL SUBGROUP", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022B4), "rel", "trianglelefteq", "NORMAL SUBGROUP OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022B5), "rel", "trianglerighteq", "CONTAINS AS NORMAL SUBGROUP OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022B6), "rel", "origof", "ORIGINAL OF", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 220, rspace = 5 }, +}) addSymbol(U(0x022B7), "rel", "imageof", "IMAGE OF", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 220, rspace = 5 }, +}) addSymbol(U(0x022B8), "rel", "multimap", "MULTIMAP", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 220, rspace = 5 }, +}) addSymbol(U(0x022B9), "bin", "hermitmatrix", "HERMITIAN CONJUGATE MATRIX", nil) addSymbol(U(0x022BA), "bin", "intercal", "INTERCALATE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x022BB), "bin", "veebar", "XOR", { - { form = "infix", lspace = 4, priority = 420, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 420, rspace = 4 }, +}) addSymbol(U(0x022BC), "bin", "barwedge", "NAND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x022BD), "bin", "barvee", "NOR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x022BE), "ord", "measuredrightangle", "RIGHT ANGLE WITH ARC", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x022BF), "ord", "varlrtriangle", "RIGHT TRIANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x022C0), "op", "bigwedge", "N-ARY LOGICAL AND", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x022C1), "op", "bigvee", "N-ARY LOGICAL OR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x022C2), "op", "bigcap", "N-ARY INTERSECTION", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x022C3), "op", "bigcup", "N-ARY UNION", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, +}) addSymbol(U(0x022C4), "bin", "smwhtdiamond", "DIAMOND OPERATOR", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 900, rspace = 3 }, +}) addSymbol(U(0x022C5), "bin", "cdot", "DOT OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x022C6), "bin", "star", "STAR OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x022C7), "bin", "divideontimes", "DIVISION TIMES", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x022C8), "rel", "bowtie", "BOWTIE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022C9), "bin", "ltimes", "LEFT NORMAL FACTOR SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x022CA), "bin", "rtimes", "RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x022CB), "bin", "leftthreetimes", "LEFT SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x022CC), "bin", "rightthreetimes", "RIGHT SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x022CD), "rel", "backsimeq", "REVERSED TILDE EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022CE), "bin", "curlyvee", "CURLY LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x022CF), "bin", "curlywedge", "CURLY LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x022D0), "rel", "Subset", "DOUBLE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022D1), "rel", "Supset", "DOUBLE SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022D2), "bin", "Cap", "DOUBLE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x022D3), "bin", "Cup", "DOUBLE UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x022D4), "rel", "pitchfork", "PITCHFORK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022D5), "rel", "equalparallel", "EQUAL AND PARALLEL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022D6), "rel", "lessdot", "LESS-THAN WITH DOT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022D7), "rel", "gtrdot", "GREATER-THAN WITH DOT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022D8), "rel", "lll", "VERY MUCH LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022D9), "rel", "ggg", "VERY MUCH GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022DA), "rel", "lesseqgtr", "LESS-THAN EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022DB), "rel", "gtreqless", "GREATER-THAN EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022DC), "rel", "eqless", "EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022DD), "rel", "eqgtr", "EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022DE), "rel", "curlyeqprec", "EQUAL TO OR PRECEDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022DF), "rel", "curlyeqsucc", "EQUAL TO OR SUCCEEDS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022E0), "rel", "npreccurlyeq", "DOES NOT PRECEDE OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022E1), "rel", "nsucccurlyeq", "DOES NOT SUCCEED OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022E2), "rel", "nsqsubseteq", "NOT SQUARE IMAGE OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022E3), "rel", "nsqsupseteq", "NOT SQUARE ORIGINAL OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022E4), "rel", "sqsubsetneq", "SQUARE IMAGE OF OR NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022E5), "rel", "sqsupsetneq", "SQUARE ORIGINAL OF OR NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022E6), "rel", "lnsim", "LESS-THAN BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022E7), "rel", "gnsim", "GREATER-THAN BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022E8), "rel", "precnsim", "PRECEDES BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022E9), "rel", "succnsim", "SUCCEEDS BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x022EA), "rel", "nvartriangleleft", "NOT NORMAL SUBGROUP OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022EB), "rel", "nvartriangleright", "DOES NOT CONTAIN AS NORMAL SUBGROUP", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022EC), "rel", "ntrianglelefteq", "NOT NORMAL SUBGROUP OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022ED), "rel", "ntrianglerighteq", "DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022EE), "rel", "vdots", "VERTICAL ELLIPSIS", nil) addSymbol(U(0x022EF), "rel", "unicodecdots", "MIDLINE HORIZONTAL ELLIPSIS", nil) addSymbol(U(0x022F0), "rel", "adots", "UP RIGHT DIAGONAL ELLIPSIS", nil) addSymbol(U(0x022F1), "rel", "ddots", "DOWN RIGHT DIAGONAL ELLIPSIS", nil) addSymbol(U(0x022F2), "rel", "disin", "ELEMENT OF WITH LONG HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022F3), "rel", "varisins", "ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022F4), "rel", "isins", "SMALL ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022F5), "rel", "isindot", "ELEMENT OF WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022F6), "rel", "varisinobar", "ELEMENT OF WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022F7), "rel", "isinobar", "SMALL ELEMENT OF WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022F8), "rel", "isinvb", "ELEMENT OF WITH UNDERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022F9), "rel", "isinE", "ELEMENT OF WITH TWO HORIZONTAL STROKES", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022FA), "rel", "nisd", "CONTAINS WITH LONG HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022FB), "rel", "varnis", "CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022FC), "rel", "nis", "SMALL CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022FD), "rel", "varniobar", "CONTAINS WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022FE), "rel", "niobar", "SMALL CONTAINS WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x022FF), "rel", "bagmember", "Z NOTATION BAG MEMBERSHIP", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02300), "ord", "diameter", "DIAMETER SIGN", nil) addSymbol(U(0x02301), "ord", nil, "ELECTRIC ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02302), "ord", "house", "HOUSE", nil) addSymbol(U(0x02305), "bin", "varbarwedge", "PROJECTIVE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02306), "bin", "vardoublebarwedge", "PERSPECTIVE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02308), "open", "lceil", "LEFT CEILING", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02309), "close", "rceil", "RIGHT CEILING", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0230A), "open", "lfloor", "LEFT FLOOR", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0230B), "close", "rfloor", "RIGHT FLOOR", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02310), "ord", "invnot", "REVERSED NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) addSymbol(U(0x02311), "ord", "sqlozenge", "SQUARE LOZENGE", nil) addSymbol(U(0x02312), "ord", "profline", "ARC", nil) addSymbol(U(0x02313), "ord", "profsurf", "SEGMENT", nil) addSymbol(U(0x02317), "ord", "viewdata", "VIEWDATA SQUARE", nil) addSymbol(U(0x02319), "ord", "turnednot", "TURNED NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) addSymbol(U(0x0231C), "open", "ulcorner", "TOP LEFT CORNER", nil) addSymbol(U(0x0231D), "close", "urcorner", "TOP RIGHT CORNER", nil) addSymbol(U(0x0231E), "open", "llcorner", "BOTTOM LEFT CORNER", nil) @@ -1225,13 +1692,17 @@ addSymbol(U(0x0231F), "close", "lrcorner", "BOTTOM RIGHT CORNER", nil) addSymbol(U(0x02320), "ord", "inttop", "TOP HALF INTEGRAL", nil) addSymbol(U(0x02321), "ord", "intbottom", "BOTTOM HALF INTEGRAL", nil) addSymbol(U(0x02322), "rel", "frown", "FROWN", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x02323), "rel", "smile", "SMILE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x02329), "ord", nil, "LEFT-POINTING ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0232A), "ord", nil, "RIGHT-POINTING ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0232C), "ord", "varhexagonlrbonds", "BENZENE RING", nil) addSymbol(U(0x02332), "ord", "conictaper", "CONICAL TAPER", nil) addSymbol(U(0x02336), "ord", "topbot", "APL FUNCTIONAL SYMBOL I-BEAM", nil) @@ -1241,9 +1712,11 @@ addSymbol(U(0x02340), "ord", "APLnotbackslash", "APL FUNCTIONAL SYMBOL BACKSLASH addSymbol(U(0x02353), "ord", "APLboxupcaret", "APL FUNCTIONAL SYMBOL QUAD UP CARET", nil) addSymbol(U(0x02370), "ord", "APLboxquestion", "APL FUNCTIONAL SYMBOL QUAD QUESTION", nil) addSymbol(U(0x0237C), "rel", "rangledownzigzagarrow", "RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0238B), "ord", nil, "BROKEN CIRCLE WITH NORTHWEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02394), "ord", "hexagon", "SOFTWARE-FUNCTION SYMBOL", nil) addSymbol(U(0x0239B), "ord", "lparenuend", "LEFT PARENTHESIS UPPER HOOK", nil) addSymbol(U(0x0239C), "ord", "lparenextender", "LEFT PARENTHESIS EXTENSION", nil) @@ -1271,28 +1744,37 @@ addSymbol(U(0x023B1), "rel", "rmoustache", "UPPER RIGHT OR LOWER LEFT CURLY BRAC addSymbol(U(0x023B2), "ord", "sumtop", "SUMMATION TOP", nil) addSymbol(U(0x023B3), "ord", "sumbottom", "SUMMATION BOTTOM", nil) addSymbol(U(0x023B4), "ord", "overbracket", "TOP SQUARE BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x023B5), "ord", "underbracket", "BOTTOM SQUARE BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x023B6), "ord", "bbrktbrk", "BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET", nil) addSymbol(U(0x023B7), "ord", "sqrtbottom", "RADICAL SYMBOL BOTTOM", nil) addSymbol(U(0x023B8), "ord", "lvboxline", "LEFT VERTICAL BOX LINE", nil) addSymbol(U(0x023B9), "ord", "rvboxline", "RIGHT VERTICAL BOX LINE", nil) addSymbol(U(0x023CD), "ord", nil, "SQUARE FOOT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, +}) addSymbol(U(0x023CE), "ord", "varcarriagereturn", "RETURN SYMBOL", nil) addSymbol(U(0x023DC), "ord", "overparen", "TOP PARENTHESIS", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x023DD), "ord", "underparen", "BOTTOM PARENTHESIS", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x023DE), "ord", "overbrace", "TOP CURLY BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x023DF), "ord", "underbrace", "BOTTOM CURLY BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x023E0), "ord", "obrbrak", "TOP TORTOISE SHELL BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x023E1), "ord", "ubrbrak", "BOTTOM TORTOISE SHELL BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x023E2), "ord", "trapezium", "WHITE TRAPEZIUM", nil) addSymbol(U(0x023E3), "ord", "benzenr", "BENZENE RING WITH CIRCLE", nil) addSymbol(U(0x023E4), "ord", "strns", "STRAIGHTNESS", nil) @@ -1452,94 +1934,137 @@ addSymbol(U(0x0272A), "ord", "circledstar", "CIRCLED WHITE STAR", nil) addSymbol(U(0x02736), "ord", "varstar", "SIX POINTED BLACK STAR", nil) addSymbol(U(0x0273D), "ord", "dingasterisk", "HEAVY TEARDROP-SPOKED ASTERISK", nil) addSymbol(U(0x02772), "open", "lbrbrak", "LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02773), "close", "rbrbrak", "LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02794), "ord", nil, "HEAVY WIDE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02795), "ord", nil, "HEAVY PLUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02796), "ord", nil, "HEAVY MINUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02797), "ord", nil, "HEAVY DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x02798), "ord", nil, "HEAVY SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02799), "ord", nil, "HEAVY RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0279A), "ord", nil, "HEAVY NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0279B), "ord", "draftingarrow", "DRAFTING POINT RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0279C), "ord", nil, "HEAVY ROUND-TIPPED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0279D), "ord", nil, "TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0279E), "ord", nil, "HEAVY TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0279F), "ord", nil, "DASHED TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027A0), "ord", nil, "HEAVY DASHED TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027A1), "ord", nil, "BLACK RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027A5), "ord", nil, "HEAVY BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027A6), "ord", nil, "HEAVY BLACK CURVED UPWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027A7), "ord", nil, "SQUAT BLACK RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x027A8), "ord", nil, "HEAVY CONCAVE-POINTED BLACK RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027A9), "ord", nil, "RIGHT-SHADED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027AA), "ord", nil, "LEFT-SHADED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027AB), "ord", nil, "BACK-TILTED SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027AC), "ord", nil, "FRONT-TILTED SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027AD), "ord", nil, "HEAVY LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027AE), "ord", nil, "HEAVY UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027AF), "ord", nil, "NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027B1), "ord", nil, "NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027B2), "ord", nil, "CIRCLED HEAVY WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x027B3), "ord", nil, "WHITE-FEATHERED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027B4), "ord", nil, "BLACK-FEATHERED SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x027B5), "ord", nil, "BLACK-FEATHERED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027B6), "ord", nil, "BLACK-FEATHERED NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x027B7), "ord", nil, "HEAVY BLACK-FEATHERED SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x027B8), "ord", nil, "HEAVY BLACK-FEATHERED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027B9), "ord", nil, "HEAVY BLACK-FEATHERED NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x027BA), "ord", nil, "TEARDROP-BARBED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027BB), "ord", nil, "HEAVY TEARDROP-SHANKED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027BC), "ord", nil, "WEDGE-TAILED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027BD), "ord", nil, "HEAVY WEDGE-TAILED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027BE), "ord", nil, "OPEN-OUTLINED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027C0), "ord", "threedangle", "THREE DIMENSIONAL ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x027C1), "ord", "whiteinwhitetriangle", "WHITE TRIANGLE CONTAINING SMALL WHITE TRIANGLE", nil) addSymbol(U(0x027C2), "rel", "perp", "PERPENDICULAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x027C3), "rel", "subsetcirc", "OPEN SUBSET", nil) addSymbol(U(0x027C4), "rel", "supsetcirc", "OPEN SUPERSET", nil) addSymbol(U(0x027C5), "rel", "lbag", "LEFT S-SHAPED BAG DELIMITER", nil) @@ -1549,10 +2074,12 @@ addSymbol(U(0x027C8), "rel", "bsolhsub", "REVERSE SOLIDUS PRECEDING SUBSET", nil addSymbol(U(0x027C9), "rel", "suphsol", "SUPERSET PRECEDING SOLIDUS", nil) addSymbol(U(0x027CA), "rel", nil, "VERTICAL BAR WITH HORIZONTAL STROKE", nil) addSymbol(U(0x027CB), "rel", "diagup", "MATHEMATICAL RISING DIAGONAL", { - { form = "infix", lspace = 3, priority = 680, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 680, rspace = 3 }, +}) addSymbol(U(0x027CC), "op", "longdivision", "LONG DIVISION", nil) addSymbol(U(0x027CD), "rel", "diagdown", "MATHEMATICAL FALLING DIAGONAL", { - { form = "infix", lspace = 3, priority = 680, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 680, rspace = 3 }, +}) addSymbol(U(0x027CE), "bin", nil, "SQUARED LOGICAL AND", nil) addSymbol(U(0x027CF), "bin", nil, "SQUARED LOGICAL OR", nil) addSymbol(U(0x027D0), "ord", "diamondcdot", "WHITE DIAMOND WITH CENTRED DOT", nil) @@ -1578,410 +2105,689 @@ addSymbol(U(0x027E3), "bin", "concavediamondtickright", "WHITE CONCAVE-SIDED DIA addSymbol(U(0x027E4), "bin", "whitesquaretickleft", "WHITE SQUARE WITH LEFTWARDS TICK", nil) addSymbol(U(0x027E5), "bin", "whitesquaretickright", "WHITE SQUARE WITH RIGHTWARDS TICK", nil) addSymbol(U(0x027E6), "open", "lBrack", "MATHEMATICAL LEFT WHITE SQUARE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x027E7), "close", "rBrack", "MATHEMATICAL RIGHT WHITE SQUARE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x027E8), "open", "langle", "MATHEMATICAL LEFT ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x027E9), "close", "rangle", "MATHEMATICAL RIGHT ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x027EA), "open", "lAngle", "MATHEMATICAL LEFT DOUBLE ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x027EB), "close", "rAngle", "MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x027EC), "open", "Lbrbrak", "MATHEMATICAL LEFT WHITE TORTOISE SHELL BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x027ED), "close", "Rbrbrak", "MATHEMATICAL RIGHT WHITE TORTOISE SHELL BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x027EE), "open", "lgroup", "MATHEMATICAL LEFT FLATTENED PARENTHESIS", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x027EF), "close", "rgroup", "MATHEMATICAL RIGHT FLATTENED PARENTHESIS", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x027F0), "rel", "UUparrow", "UPWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027F1), "rel", "DDownarrow", "DOWNWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027F2), "rel", "acwgapcirclearrow", "ANTICLOCKWISE GAPPED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x027F3), "rel", "cwgapcirclearrow", "CLOCKWISE GAPPED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x027F4), "rel", "rightarrowonoplus", "RIGHT ARROW WITH CIRCLED PLUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027F5), "rel", "longleftarrow", "LONG LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027F6), "rel", "longrightarrow", "LONG RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027F7), "rel", "longleftrightarrow", "LONG LEFT RIGHT ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027F8), "rel", "Longleftarrow", "LONG LEFTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027F9), "rel", "Longrightarrow", "LONG RIGHTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027FA), "rel", "Longleftrightarrow", "LONG LEFT RIGHT DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027FB), "rel", "longmapsfrom", "LONG LEFTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027FC), "rel", "longmapsto", "LONG RIGHTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027FD), "rel", "Longmapsfrom", "LONG LEFTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027FE), "rel", "Longmapsto", "LONG RIGHTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x027FF), "rel", "longrightsquigarrow", "LONG RIGHTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02900), "rel", "nvtwoheadrightarrow", "RIGHTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02901), "rel", "nVtwoheadrightarrow", "RIGHTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02902), "rel", "nvLeftarrow", "LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02903), "rel", "nvRightarrow", "RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02904), "rel", "nvLeftrightarrow", "LEFT RIGHT DOUBLE ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02905), "rel", "twoheadmapsto", "RIGHTWARDS TWO-HEADED ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02906), "rel", "Mapsfrom", "LEFTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02907), "rel", "Mapsto", "RIGHTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02908), "rel", "downarrowbarred", "DOWNWARDS ARROW WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02909), "rel", "uparrowbarred", "UPWARDS ARROW WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0290A), "rel", "Uuparrow", "UPWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0290B), "rel", "Ddownarrow", "DOWNWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0290C), "rel", "leftbkarrow", "LEFTWARDS DOUBLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0290D), "rel", "rightbkarrow", "RIGHTWARDS DOUBLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0290E), "rel", "leftdbkarrow", "LEFTWARDS TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0290F), "rel", "dbkarrow", "RIGHTWARDS TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02910), "rel", "drbkarrow", "RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02911), "rel", "rightdotarrow", "RIGHTWARDS ARROW WITH DOTTED STEM", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02912), "rel", "baruparrow", "UPWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02913), "rel", "downarrowbar", "DOWNWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02914), "rel", "nvrightarrowtail", "RIGHTWARDS ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02915), "rel", "nVrightarrowtail", "RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02916), "rel", "twoheadrightarrowtail", "RIGHTWARDS TWO-HEADED ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02917), "rel", "nvtwoheadrightarrowtail", "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x02918), "rel", "nVtwoheadrightarrowtail", "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol( + U(0x02918), + "rel", + "nVtwoheadrightarrowtail", + "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) addSymbol(U(0x02919), "rel", "lefttail", "LEFTWARDS ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0291A), "rel", "righttail", "RIGHTWARDS ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0291B), "rel", "leftdbltail", "LEFTWARDS DOUBLE ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0291C), "rel", "rightdbltail", "RIGHTWARDS DOUBLE ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0291D), "rel", "diamondleftarrow", "LEFTWARDS ARROW TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0291E), "rel", "rightarrowdiamond", "RIGHTWARDS ARROW TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0291F), "rel", "diamondleftarrowbar", "LEFTWARDS ARROW FROM BAR TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02920), "rel", "barrightarrowdiamond", "RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02921), "rel", "nwsearrow", "NORTH WEST AND SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02922), "rel", "neswarrow", "NORTH EAST AND SOUTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02923), "rel", "hknwarrow", "NORTH WEST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02924), "rel", "hknearrow", "NORTH EAST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02925), "rel", "hksearrow", "SOUTH EAST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02926), "rel", "hkswarrow", "SOUTH WEST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02927), "rel", "tona", "NORTH WEST ARROW AND NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02928), "rel", "toea", "NORTH EAST ARROW AND SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02929), "rel", "tosa", "SOUTH EAST ARROW AND SOUTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0292A), "rel", "towa", "SOUTH WEST ARROW AND NORTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0292B), "rel", "rdiagovfdiag", "RISING DIAGONAL CROSSING FALLING DIAGONAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0292C), "rel", "fdiagovrdiag", "FALLING DIAGONAL CROSSING RISING DIAGONAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0292D), "rel", "seovnearrow", "SOUTH EAST ARROW CROSSING NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0292E), "rel", "neovsearrow", "NORTH EAST ARROW CROSSING SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0292F), "rel", "fdiagovnearrow", "FALLING DIAGONAL CROSSING NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02930), "rel", "rdiagovsearrow", "RISING DIAGONAL CROSSING SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02931), "rel", "neovnwarrow", "NORTH EAST ARROW CROSSING NORTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02932), "rel", "nwovnearrow", "NORTH WEST ARROW CROSSING NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02933), "rel", "rightcurvedarrow", "WAVE ARROW POINTING DIRECTLY RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02934), "rel", "uprightcurvearrow", "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02935), "rel", "downrightcurvedarrow", "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02936), "rel", "leftdowncurvedarrow", "ARROW POINTING DOWNWARDS THEN CURVING LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02937), "rel", "rightdowncurvedarrow", "ARROW POINTING DOWNWARDS THEN CURVING RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02938), "rel", "cwrightarcarrow", "RIGHT-SIDE ARC CLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02939), "rel", "acwleftarcarrow", "LEFT-SIDE ARC ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0293A), "rel", "acwoverarcarrow", "TOP ARC ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0293B), "rel", "acwunderarcarrow", "BOTTOM ARC ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0293C), "rel", "curvearrowrightminus", "TOP ARC CLOCKWISE ARROW WITH MINUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0293D), "rel", "curvearrowleftplus", "TOP ARC ANTICLOCKWISE ARROW WITH PLUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0293E), "rel", "cwundercurvearrow", "LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x0293F), "rel", "ccwundercurvearrow", "LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02940), "rel", "acwcirclearrow", "ANTICLOCKWISE CLOSED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02941), "rel", "cwcirclearrow", "CLOCKWISE CLOSED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02942), "rel", "rightarrowshortleftarrow", "RIGHTWARDS ARROW ABOVE SHORT LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02943), "rel", "leftarrowshortrightarrow", "LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02944), "rel", "shortrightarrowleftarrow", "SHORT RIGHTWARDS ARROW ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02945), "rel", "rightarrowplus", "RIGHTWARDS ARROW WITH PLUS BELOW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02946), "rel", "leftarrowplus", "LEFTWARDS ARROW WITH PLUS BELOW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02947), "rel", "rightarrowx", "RIGHTWARDS ARROW THROUGH X", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02948), "rel", "leftrightarrowcircle", "LEFT RIGHT ARROW THROUGH SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02949), "rel", "twoheaduparrowcircle", "UPWARDS TWO-HEADED ARROW FROM SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0294A), "rel", "leftrightharpoonupdown", "LEFT BARB UP RIGHT BARB DOWN HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0294B), "rel", "leftrightharpoondownup", "LEFT BARB DOWN RIGHT BARB UP HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0294C), "rel", "updownharpoonrightleft", "UP BARB RIGHT DOWN BARB LEFT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0294D), "rel", "updownharpoonleftright", "UP BARB LEFT DOWN BARB RIGHT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0294E), "rel", "leftrightharpoonupup", "LEFT BARB UP RIGHT BARB UP HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0294F), "rel", "updownharpoonrightright", "UP BARB RIGHT DOWN BARB RIGHT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02950), "rel", "leftrightharpoondowndown", "LEFT BARB DOWN RIGHT BARB DOWN HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02951), "rel", "updownharpoonleftleft", "UP BARB LEFT DOWN BARB LEFT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02952), "rel", "barleftharpoonup", "LEFTWARDS HARPOON WITH BARB UP TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02953), "rel", "rightharpoonupbar", "RIGHTWARDS HARPOON WITH BARB UP TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02954), "rel", "barupharpoonright", "UPWARDS HARPOON WITH BARB RIGHT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02955), "rel", "downharpoonrightbar", "DOWNWARDS HARPOON WITH BARB RIGHT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02956), "rel", "barleftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWN TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02957), "rel", "rightharpoondownbar", "RIGHTWARDS HARPOON WITH BARB DOWN TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02958), "rel", "barupharpoonleft", "UPWARDS HARPOON WITH BARB LEFT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02959), "rel", "downharpoonleftbar", "DOWNWARDS HARPOON WITH BARB LEFT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0295A), "rel", "leftharpoonupbar", "LEFTWARDS HARPOON WITH BARB UP FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0295B), "rel", "barrightharpoonup", "RIGHTWARDS HARPOON WITH BARB UP FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0295C), "rel", "upharpoonrightbar", "UPWARDS HARPOON WITH BARB RIGHT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0295D), "rel", "bardownharpoonright", "DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0295E), "rel", "leftharpoondownbar", "LEFTWARDS HARPOON WITH BARB DOWN FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0295F), "rel", "barrightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWN FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02960), "rel", "upharpoonleftbar", "UPWARDS HARPOON WITH BARB LEFT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02961), "rel", "bardownharpoonleft", "DOWNWARDS HARPOON WITH BARB LEFT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x02962), "rel", "leftharpoonsupdown", "LEFTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x02963), "rel", "upharpoonsleftright", "UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x02964), "rel", "rightharpoonsupdown", "RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x02965), "rel", "downharpoonsleftright", "DOWNWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x02966), "rel", "leftrightharpoonsup", "LEFTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB UP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x02967), "rel", "leftrightharpoonsdown", "LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x02968), "rel", "rightleftharpoonsup", "RIGHTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB UP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x02969), "rel", "rightleftharpoonsdown", "RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol( + U(0x02962), + "rel", + "leftharpoonsupdown", + "LEFTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB DOWN", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02963), + "rel", + "upharpoonsleftright", + "UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02964), + "rel", + "rightharpoonsupdown", + "RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02965), + "rel", + "downharpoonsleftright", + "DOWNWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02966), + "rel", + "leftrightharpoonsup", + "LEFTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB UP", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02967), + "rel", + "leftrightharpoonsdown", + "LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02968), + "rel", + "rightleftharpoonsup", + "RIGHTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB UP", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x02969), + "rel", + "rightleftharpoonsdown", + "RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) addSymbol(U(0x0296A), "rel", "leftharpoonupdash", "LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0296B), "rel", "dashleftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0296C), "rel", "rightharpoonupdash", "RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0296D), "rel", "dashrightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x0296E), "rel", "updownharpoonsleftright", "UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x0296F), "rel", "downupharpoonsleftright", "DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol( + U(0x0296E), + "rel", + "updownharpoonsleftright", + "UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) +addSymbol( + U(0x0296F), + "rel", + "downupharpoonsleftright", + "DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) addSymbol(U(0x02970), "rel", "rightimply", "RIGHT DOUBLE ARROW WITH ROUNDED HEAD", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02971), "rel", "equalrightarrow", "EQUALS SIGN ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02972), "rel", "similarrightarrow", "TILDE OPERATOR ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02973), "rel", "leftarrowsimilar", "LEFTWARDS ARROW ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02974), "rel", "rightarrowsimilar", "RIGHTWARDS ARROW ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02975), "rel", "rightarrowapprox", "RIGHTWARDS ARROW ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02976), "rel", "ltlarr", "LESS-THAN ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02977), "rel", "leftarrowless", "LEFTWARDS ARROW THROUGH LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02978), "rel", "gtrarr", "GREATER-THAN ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02979), "rel", "subrarr", "SUBSET ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x0297A), "rel", "leftarrowsubset", "LEFTWARDS ARROW THROUGH SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x0297B), "rel", "suplarr", "SUPERSET ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x0297C), "rel", "leftfishtail", "LEFT FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0297D), "rel", "rightfishtail", "RIGHT FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0297E), "rel", "upfishtail", "UP FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x0297F), "rel", "downfishtail", "DOWN FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02980), "ord", "Vvert", "TRIPLE VERTICAL BAR DELIMITER", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02981), "ord", "mdsmblkcircle", "Z NOTATION SPOT", { - { form = "infix", lspace = 5, priority = 140, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 140, rspace = 5 }, +}) addSymbol(U(0x02982), "ord", "typecolon", "Z NOTATION TYPE COLON", { - { form = "infix", lspace = 5, priority = 180, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 180, rspace = 5 }, +}) addSymbol(U(0x02983), "open", "lBrace", "LEFT WHITE CURLY BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02984), "close", "rBrace", "RIGHT WHITE CURLY BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02985), "open", "lParen", "LEFT WHITE PARENTHESIS", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02986), "close", "rParen", "RIGHT WHITE PARENTHESIS", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02987), "open", "llparenthesis", "Z NOTATION LEFT IMAGE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02988), "close", "rrparenthesis", "Z NOTATION RIGHT IMAGE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02989), "open", "llangle", "Z NOTATION LEFT BINDING BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0298A), "close", "rrangle", "Z NOTATION RIGHT BINDING BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0298B), "open", "lbrackubar", "LEFT SQUARE BRACKET WITH UNDERBAR", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0298C), "close", "rbrackubar", "RIGHT SQUARE BRACKET WITH UNDERBAR", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0298D), "open", "lbrackultick", "LEFT SQUARE BRACKET WITH TICK IN TOP CORNER", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0298E), "close", "rbracklrtick", "RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0298F), "open", "lbracklltick", "LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02990), "close", "rbrackurtick", "RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02991), "open", "langledot", "LEFT ANGLE BRACKET WITH DOT", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02992), "close", "rangledot", "RIGHT ANGLE BRACKET WITH DOT", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02993), "open", "lparenless", "LEFT ARC LESS-THAN BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02994), "close", "rparengtr", "RIGHT ARC GREATER-THAN BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02995), "open", "Lparengtr", "DOUBLE LEFT ARC GREATER-THAN BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02996), "close", "Rparenless", "DOUBLE RIGHT ARC LESS-THAN BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02997), "open", "lblkbrbrak", "LEFT BLACK TORTOISE SHELL BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02998), "close", "rblkbrbrak", "RIGHT BLACK TORTOISE SHELL BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x02999), "ord", "fourvdots", "DOTTED FENCE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x0299A), "ord", "vzigzag", "VERTICAL ZIGZAG LINE", nil) addSymbol(U(0x0299B), "ord", "measuredangleleft", "MEASURED ANGLE OPENING LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x0299C), "ord", "rightanglesqr", "RIGHT ANGLE VARIANT WITH SQUARE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x0299D), "ord", "rightanglemdot", "MEASURED RIGHT ANGLE WITH DOT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x0299E), "ord", "angles", "ANGLE WITH S INSIDE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x0299F), "ord", "angdnr", "ACUTE ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029A0), "ord", "gtlpar", "SPHERICAL ANGLE OPENING LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029A1), "ord", "sphericalangleup", "SPHERICAL ANGLE OPENING UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029A2), "ord", "turnangle", "TURNED ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029A3), "ord", "revangle", "REVERSED ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029A4), "ord", "angleubar", "ANGLE WITH UNDERBAR", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029A5), "ord", "revangleubar", "REVERSED ANGLE WITH UNDERBAR", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029A6), "ord", "wideangledown", "OBLIQUE ANGLE OPENING UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029A7), "ord", "wideangleup", "OBLIQUE ANGLE OPENING DOWN", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029A8), "ord", "measanglerutone", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND RIGHT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029A9), "ord", "measanglelutonw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) -addSymbol(U(0x029AA), "ord", "measanglerdtose", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND RIGHT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol( + U(0x029AA), + "ord", + "measanglerdtose", + "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND RIGHT", + { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + } +) addSymbol(U(0x029AB), "ord", "measangleldtosw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029AC), "ord", "measangleurtone", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029AD), "ord", "measangleultonw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) -addSymbol(U(0x029AE), "ord", "measangledrtose", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND DOWN", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) +addSymbol( + U(0x029AE), + "ord", + "measangledrtose", + "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND DOWN", + { + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + } +) addSymbol(U(0x029AF), "ord", "measangledltosw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND DOWN", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, +}) addSymbol(U(0x029B0), "ord", "revemptyset", "REVERSED EMPTY SET", nil) addSymbol(U(0x029B1), "ord", "emptysetobar", "EMPTY SET WITH OVERBAR", nil) addSymbol(U(0x029B2), "ord", "emptysetocirc", "EMPTY SET WITH SMALL CIRCLE ABOVE", nil) @@ -1989,87 +2795,120 @@ addSymbol(U(0x029B3), "ord", "emptysetoarr", "EMPTY SET WITH RIGHT ARROW ABOVE", addSymbol(U(0x029B4), "ord", "emptysetoarrl", "EMPTY SET WITH LEFT ARROW ABOVE", nil) addSymbol(U(0x029B5), "ord", "circlehbar", "CIRCLE WITH HORIZONTAL BAR", nil) addSymbol(U(0x029B6), "bin", "circledvert", "CIRCLED VERTICAL BAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029B7), "bin", "circledparallel", "CIRCLED PARALLEL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029B8), "bin", "obslash", "CIRCLED REVERSE SOLIDUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x029B9), "bin", "operp", "CIRCLED PERPENDICULAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029BA), "ord", "obot", "CIRCLE DIVIDED BY HORIZONTAL BAR AND TOP HALF DIVIDED BY VERTICAL BAR", nil) addSymbol(U(0x029BB), "ord", "olcross", "CIRCLE WITH SUPERIMPOSED X", nil) addSymbol(U(0x029BC), "ord", "odotslashdot", "CIRCLED ANTICLOCKWISE-ROTATED DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x029BD), "ord", "uparrowoncircle", "UP ARROW THROUGH CIRCLE", nil) addSymbol(U(0x029BE), "ord", "circledwhitebullet", "CIRCLED WHITE BULLET", nil) addSymbol(U(0x029BF), "ord", "circledbullet", "CIRCLED BULLET", nil) addSymbol(U(0x029C0), "bin", "olessthan", "CIRCLED LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029C1), "bin", "ogreaterthan", "CIRCLED GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029C2), "ord", "cirscir", "CIRCLE WITH SMALL CIRCLE TO THE RIGHT", nil) addSymbol(U(0x029C3), "ord", "cirE", "CIRCLE WITH TWO HORIZONTAL STROKES TO THE RIGHT", nil) addSymbol(U(0x029C4), "bin", "boxdiag", "SQUARED RISING DIAGONAL SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x029C5), "bin", "boxbslash", "SQUARED FALLING DIAGONAL SLASH", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x029C6), "bin", "boxast", "SQUARED ASTERISK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x029C7), "bin", "boxcircle", "SQUARED SMALL CIRCLE", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 900, rspace = 3 }, +}) addSymbol(U(0x029C8), "bin", "boxbox", "SQUARED SQUARE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x029C9), "ord", "boxonbox", "TWO JOINED SQUARES", nil) addSymbol(U(0x029CA), "ord", "triangleodot", "TRIANGLE WITH DOT ABOVE", nil) addSymbol(U(0x029CB), "ord", "triangleubar", "TRIANGLE WITH UNDERBAR", nil) addSymbol(U(0x029CC), "ord", "triangles", "S IN TRIANGLE", nil) addSymbol(U(0x029CD), "ord", "triangleserifs", "TRIANGLE WITH SERIFS AT BOTTOM", nil) addSymbol(U(0x029CE), "rel", "rtriltri", "RIGHT TRIANGLE ABOVE LEFT TRIANGLE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029CF), "rel", "ltrivb", "LEFT TRIANGLE BESIDE VERTICAL BAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029D0), "rel", "vbrtri", "VERTICAL BAR BESIDE RIGHT TRIANGLE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029D1), "rel", "lfbowtie", "BOWTIE WITH LEFT HALF BLACK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029D2), "rel", "rfbowtie", "BOWTIE WITH RIGHT HALF BLACK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029D3), "rel", "fbowtie", "BLACK BOWTIE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029D4), "rel", "lftimes", "TIMES WITH LEFT HALF BLACK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x029D5), "rel", "rftimes", "TIMES WITH RIGHT HALF BLACK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x029D6), "bin", "hourglass", "WHITE HOURGLASS", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x029D7), "bin", "blackhourglass", "BLACK HOURGLASS", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x029D8), "open", "lvzigzag", "LEFT WIGGLY FENCE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x029D9), "close", "rvzigzag", "RIGHT WIGGLY FENCE", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x029DA), "open", "Lvzigzag", "LEFT DOUBLE WIGGLY FENCE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x029DB), "close", "Rvzigzag", "RIGHT DOUBLE WIGGLY FENCE", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x029DC), "ord", "iinfin", "INCOMPLETE INFINITY", nil) addSymbol(U(0x029DD), "ord", "tieinfty", "TIE OVER INFINITY", nil) addSymbol(U(0x029DE), "ord", "nvinfty", "INFINITY NEGATED WITH VERTICAL BAR", nil) addSymbol(U(0x029DF), "rel", "dualmap", "DOUBLE-ENDED MULTIMAP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x029E0), "ord", "laplac", "SQUARE WITH CONTOURED OUTLINE", nil) addSymbol(U(0x029E1), "rel", "lrtriangleeq", "INCREASES AS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029E2), "bin", "shuffle", "SHUFFLE PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x029E3), "rel", "eparsl", "EQUALS SIGN AND SLANTED PARALLEL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029E4), "rel", "smeparsl", "EQUALS SIGN AND SLANTED PARALLEL WITH TILDE ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029E5), "rel", "eqvparsl", "IDENTICAL TO AND SLANTED PARALLEL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029E6), "rel", "gleichstark", "GLEICH STARK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x029E7), "ord", "thermod", "THERMODYNAMIC", nil) addSymbol(U(0x029E8), "ord", "downtriangleleftblack", "DOWN-POINTING TRIANGLE WITH LEFT HALF BLACK", nil) addSymbol(U(0x029E9), "ord", "downtrianglerightblack", "DOWN-POINTING TRIANGLE WITH RIGHT HALF BLACK", nil) @@ -2084,574 +2923,855 @@ addSymbol(U(0x029F1), "ord", "errbarblackdiamond", "ERROR-BARRED BLACK DIAMOND", addSymbol(U(0x029F2), "ord", "errbarcircle", "ERROR-BARRED WHITE CIRCLE", nil) addSymbol(U(0x029F3), "ord", "errbarblackcircle", "ERROR-BARRED BLACK CIRCLE", nil) addSymbol(U(0x029F4), "rel", "ruledelayed", "RULE-DELAYED", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 220, rspace = 5 }, +}) addSymbol(U(0x029F5), "bin", "reversesolidus", "REVERSE SOLIDUS OPERATOR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x029F6), "bin", "dsol", "SOLIDUS WITH OVERBAR", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x029F7), "bin", "rsolbar", "REVERSE SOLIDUS WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x029F8), "op", "xsol", "BIG SOLIDUS", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x029F9), "op", "xbsol", "BIG REVERSE SOLIDUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x029FA), "bin", "doubleplus", "DOUBLE PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x029FB), "bin", "tripleplus", "TRIPLE PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x029FC), "open", "lcurvyangle", "LEFT-POINTING CURVED ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x029FD), "close", "rcurvyangle", "RIGHT-POINTING CURVED ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }}) + { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, +}) addSymbol(U(0x029FE), "bin", "tplus", "TINY", nil) addSymbol(U(0x029FF), "bin", "tminus", "MINY", nil) addSymbol(U(0x02A00), "op", "bigodot", "N-ARY CIRCLED DOT OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A01), "op", "bigoplus", "N-ARY CIRCLED PLUS OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 460, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 460, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A02), "op", "bigotimes", "N-ARY CIRCLED TIMES OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A03), "op", "bigcupdot", "N-ARY UNION OPERATOR WITH DOT", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A04), "op", "biguplus", "N-ARY UNION OPERATOR WITH PLUS", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A05), "op", "bigsqcap", "N-ARY SQUARE INTERSECTION OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A06), "op", "bigsqcup", "N-ARY SQUARE UNION OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A07), "op", "conjquant", "TWO LOGICAL AND OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A08), "op", "disjquant", "TWO LOGICAL OR OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A09), "op", "bigtimes", "N-ARY TIMES OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A0A), "op", "modtwosum", "MODULO TWO SUM", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A0B), "ord", "sumint", "SUMMATION WITH INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 440, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 440, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A0C), "ord", "iiiint", "QUADRUPLE INTEGRAL OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A0D), "ord", "intbar", "FINITE PART INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A0E), "ord", "intBar", "INTEGRAL WITH DOUBLE STROKE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A0F), "ord", "fint", "INTEGRAL AVERAGE WITH SLASH", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A10), "op", "cirfnint", "CIRCULATION FUNCTION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) -addSymbol(U(0x02A11), "op", "awint", "ANTICLOCKWISE INTEGRATION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) -addSymbol(U(0x02A12), "op", "rppolint", "LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) -addSymbol(U(0x02A13), "op", "scpolint", "LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) -addSymbol(U(0x02A14), "op", "npolint", "LINE INTEGRATION NOT INCLUDING THE POLE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A11), "ord", "awint", "ANTICLOCKWISE INTEGRATION", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A12), "ord", "rppolint", "LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A13), "ord", "scpolint", "LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) +addSymbol(U(0x02A14), "ord", "npolint", "LINE INTEGRATION NOT INCLUDING THE POLE", { + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A15), "ord", "pointint", "INTEGRAL AROUND A POINT OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A16), "ord", "sqint", "QUATERNION INTEGRAL OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A17), "ord", "intlarhk", "INTEGRAL WITH LEFTWARDS ARROW WITH HOOK", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A18), "ord", "intx", "INTEGRAL WITH TIMES SIGN", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A19), "ord", "intcap", "INTEGRAL WITH INTERSECTION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A1A), "ord", "intcup", "INTEGRAL WITH UNION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A1B), "ord", "upint", "INTEGRAL WITH OVERBAR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A1C), "ord", "lowint", "INTEGRAL WITH UNDERBAR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A1D), "op", "Join", "JOIN", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A1E), "op", "bigtriangleleft", "LARGE LEFT TRIANGLE OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02A1F), "op", "zcmp", "Z NOTATION SCHEMA COMPOSITION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A20), "op", "zpipe", "Z NOTATION SCHEMA PIPING", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A21), "op", "zproject", "Z NOTATION SCHEMA PROJECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A22), "bin", "ringplus", "PLUS SIGN WITH SMALL CIRCLE ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A23), "bin", "plushat", "PLUS SIGN WITH CIRCUMFLEX ACCENT ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A24), "bin", "simplus", "PLUS SIGN WITH TILDE ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A25), "bin", "plusdot", "PLUS SIGN WITH DOT BELOW", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A26), "bin", "plussim", "PLUS SIGN WITH TILDE BELOW", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A27), "bin", "plussubtwo", "PLUS SIGN WITH SUBSCRIPT TWO", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A28), "bin", "plustrif", "PLUS SIGN WITH BLACK TRIANGLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A29), "bin", "commaminus", "MINUS SIGN WITH COMMA ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A2A), "bin", "minusdot", "MINUS SIGN WITH DOT BELOW", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A2B), "bin", "minusfdots", "MINUS SIGN WITH FALLING DOTS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A2C), "bin", "minusrdots", "MINUS SIGN WITH RISING DOTS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A2D), "bin", "opluslhrim", "PLUS SIGN IN LEFT HALF CIRCLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A2E), "bin", "oplusrhrim", "PLUS SIGN IN RIGHT HALF CIRCLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A2F), "bin", "vectimes", "VECTOR OR CROSS PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A30), "bin", "dottimes", "MULTIPLICATION SIGN WITH DOT ABOVE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A31), "bin", "timesbar", "MULTIPLICATION SIGN WITH UNDERBAR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A32), "bin", "btimes", "SEMIDIRECT PRODUCT WITH BOTTOM CLOSED", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A33), "bin", "smashtimes", "SMASH PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A34), "bin", "otimeslhrim", "MULTIPLICATION SIGN IN LEFT HALF CIRCLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A35), "bin", "otimesrhrim", "MULTIPLICATION SIGN IN RIGHT HALF CIRCLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A36), "bin", "otimeshat", "CIRCLED MULTIPLICATION SIGN WITH CIRCUMFLEX ACCENT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A37), "bin", "Otimes", "MULTIPLICATION SIGN IN DOUBLE CIRCLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A38), "bin", "odiv", "CIRCLED DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x02A39), "bin", "triangleplus", "PLUS SIGN IN TRIANGLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A3A), "bin", "triangleminus", "MINUS SIGN IN TRIANGLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A3B), "bin", "triangletimes", "MULTIPLICATION SIGN IN TRIANGLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A3C), "bin", "intprod", "INTERIOR PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A3D), "bin", "intprodr", "RIGHTHAND INTERIOR PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A3E), "bin", "fcmp", "Z NOTATION RELATIONAL COMPOSITION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A3F), "bin", "amalg", "AMALGAMATION OR COPRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A40), "bin", "capdot", "INTERSECTION WITH DOT", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A41), "bin", "uminus", "UNION WITH MINUS SIGN", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x02A42), "bin", "barcup", "UNION WITH OVERBAR", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x02A43), "bin", "barcap", "INTERSECTION WITH OVERBAR", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A44), "bin", "capwedge", "INTERSECTION WITH LOGICAL AND", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A45), "bin", "cupvee", "UNION WITH LOGICAL OR", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x02A46), "bin", "cupovercap", "UNION ABOVE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A47), "bin", "capovercup", "INTERSECTION ABOVE UNION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A48), "bin", "cupbarcap", "UNION ABOVE BAR ABOVE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A49), "bin", "capbarcup", "INTERSECTION ABOVE BAR ABOVE UNION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A4A), "bin", "twocups", "UNION BESIDE AND JOINED WITH UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x02A4B), "bin", "twocaps", "INTERSECTION BESIDE AND JOINED WITH INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A4C), "bin", "closedvarcup", "CLOSED UNION WITH SERIFS", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x02A4D), "bin", "closedvarcap", "CLOSED INTERSECTION WITH SERIFS", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A4E), "bin", "Sqcap", "DOUBLE SQUARE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02A4F), "bin", "Sqcup", "DOUBLE SQUARE UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 360, rspace = 4 }, +}) addSymbol(U(0x02A50), "bin", "closedvarcupsmashprod", "CLOSED UNION WITH SERIFS AND SMASH PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 620, rspace = 3 }, +}) addSymbol(U(0x02A51), "bin", "wedgeodot", "LOGICAL AND WITH DOT ABOVE", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x02A52), "bin", "veeodot", "LOGICAL OR WITH DOT ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A53), "bin", "Wedge", "DOUBLE LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x02A54), "bin", "Vee", "DOUBLE LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A55), "bin", "wedgeonwedge", "TWO INTERSECTING LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x02A56), "bin", "veeonvee", "TWO INTERSECTING LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A57), "bin", "bigslopedvee", "SLOPING LARGE OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A58), "bin", "bigslopedwedge", "SLOPING LARGE AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x02A59), "rel", "veeonwedge", "LOGICAL OR OVERLAPPING LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x02A5A), "bin", "wedgemidvert", "LOGICAL AND WITH MIDDLE STEM", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x02A5B), "bin", "veemidvert", "LOGICAL OR WITH MIDDLE STEM", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A5C), "bin", "midbarwedge", "LOGICAL AND WITH HORIZONTAL DASH", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x02A5D), "bin", "midbarvee", "LOGICAL OR WITH HORIZONTAL DASH", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A5E), "bin", "doublebarwedge", "LOGICAL AND WITH DOUBLE OVERBAR", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x02A5F), "bin", "wedgebar", "LOGICAL AND WITH UNDERBAR", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x02A60), "bin", "wedgedoublebar", "LOGICAL AND WITH DOUBLE UNDERBAR", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 600, rspace = 4 }, +}) addSymbol(U(0x02A61), "bin", "varveebar", "SMALL VEE WITH UNDERBAR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A62), "bin", "doublebarvee", "LOGICAL OR WITH DOUBLE OVERBAR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A63), "bin", "veedoublebar", "LOGICAL OR WITH DOUBLE UNDERBAR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 400, rspace = 4 }, +}) addSymbol(U(0x02A64), "bin", "dsub", "Z NOTATION DOMAIN ANTIRESTRICTION", { - { form = "infix", lspace = 3, priority = 700, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 700, rspace = 3 }, +}) addSymbol(U(0x02A65), "bin", "rsub", "Z NOTATION RANGE ANTIRESTRICTION", { - { form = "infix", lspace = 3, priority = 700, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 700, rspace = 3 }, +}) addSymbol(U(0x02A66), "rel", "eqdot", "EQUALS SIGN WITH DOT BELOW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A67), "rel", "dotequiv", "IDENTICAL WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A68), "rel", "equivVert", "TRIPLE HORIZONTAL BAR WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A69), "rel", "equivVvert", "TRIPLE HORIZONTAL BAR WITH TRIPLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A6A), "rel", "dotsim", "TILDE OPERATOR WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A6B), "rel", "simrdots", "TILDE OPERATOR WITH RISING DOTS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A6C), "rel", "simminussim", "SIMILAR MINUS SIMILAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A6D), "rel", "congdot", "CONGRUENT WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A6E), "rel", "asteq", "EQUALS WITH ASTERISK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A6F), "rel", "hatapprox", "ALMOST EQUAL TO WITH CIRCUMFLEX ACCENT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A70), "rel", "approxeqq", "APPROXIMATELY EQUAL OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A71), "bin", "eqqplus", "EQUALS SIGN ABOVE PLUS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A72), "bin", "pluseqq", "PLUS SIGN ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A73), "rel", "eqqsim", "EQUALS SIGN ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A74), "rel", "Coloneq", "DOUBLE COLON EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A75), "rel", "eqeq", "TWO CONSECUTIVE EQUALS SIGNS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A76), "rel", "eqeqeq", "THREE CONSECUTIVE EQUALS SIGNS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A77), "rel", "ddotseq", "EQUALS SIGN WITH TWO DOTS ABOVE AND TWO DOTS BELOW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A78), "rel", "equivDD", "EQUIVALENT WITH FOUR DOTS ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A79), "rel", "ltcir", "LESS-THAN WITH CIRCLE INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A7A), "rel", "gtcir", "GREATER-THAN WITH CIRCLE INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A7B), "rel", "ltquest", "LESS-THAN WITH QUESTION MARK ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A7C), "rel", "gtquest", "GREATER-THAN WITH QUESTION MARK ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A7D), "rel", "leqslant", "LESS-THAN OR SLANTED EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A7E), "rel", "geqslant", "GREATER-THAN OR SLANTED EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A7F), "rel", "lesdot", "LESS-THAN OR SLANTED EQUAL TO WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A80), "rel", "gesdot", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A81), "rel", "lesdoto", "LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A82), "rel", "gesdoto", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A83), "rel", "lesdotor", "LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE RIGHT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A84), "rel", "gesdotol", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE LEFT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A85), "rel", "lessapprox", "LESS-THAN OR APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A86), "rel", "gtrapprox", "GREATER-THAN OR APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A87), "rel", "lneq", "LESS-THAN AND SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A88), "rel", "gneq", "GREATER-THAN AND SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A89), "rel", "lnapprox", "LESS-THAN AND NOT APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A8A), "rel", "gnapprox", "GREATER-THAN AND NOT APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A8B), "rel", "lesseqqgtr", "LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A8C), "rel", "gtreqqless", "GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A8D), "rel", "lsime", "LESS-THAN ABOVE SIMILAR OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A8E), "rel", "gsime", "GREATER-THAN ABOVE SIMILAR OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A8F), "rel", "lsimg", "LESS-THAN ABOVE SIMILAR ABOVE GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A90), "rel", "gsiml", "GREATER-THAN ABOVE SIMILAR ABOVE LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A91), "rel", "lgE", "LESS-THAN ABOVE GREATER-THAN ABOVE DOUBLE-LINE EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A92), "rel", "glE", "GREATER-THAN ABOVE LESS-THAN ABOVE DOUBLE-LINE EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A93), "rel", "lesges", "LESS-THAN ABOVE SLANTED EQUAL ABOVE GREATER-THAN ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A94), "rel", "gesles", "GREATER-THAN ABOVE SLANTED EQUAL ABOVE LESS-THAN ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A95), "rel", "eqslantless", "SLANTED EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A96), "rel", "eqslantgtr", "SLANTED EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A97), "rel", "elsdot", "SLANTED EQUAL TO OR LESS-THAN WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A98), "rel", "egsdot", "SLANTED EQUAL TO OR GREATER-THAN WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A99), "rel", "eqqless", "DOUBLE-LINE EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A9A), "rel", "eqqgtr", "DOUBLE-LINE EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A9B), "rel", "eqqslantless", "DOUBLE-LINE SLANTED EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A9C), "rel", "eqqslantgtr", "DOUBLE-LINE SLANTED EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A9D), "rel", "simless", "SIMILAR OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A9E), "rel", "simgtr", "SIMILAR OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02A9F), "rel", "simlE", "SIMILAR ABOVE LESS-THAN ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AA0), "rel", "simgE", "SIMILAR ABOVE GREATER-THAN ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AA1), "rel", "Lt", "DOUBLE NESTED LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AA2), "rel", "Gt", "DOUBLE NESTED GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AA3), "rel", "partialmeetcontraction", "DOUBLE NESTED LESS-THAN WITH UNDERBAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AA4), "rel", "glj", "GREATER-THAN OVERLAPPING LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AA5), "rel", "gla", "GREATER-THAN BESIDE LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AA6), "rel", "ltcc", "LESS-THAN CLOSED BY CURVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AA7), "rel", "gtcc", "GREATER-THAN CLOSED BY CURVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AA8), "rel", "lescc", "LESS-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AA9), "rel", "gescc", "GREATER-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AAA), "rel", "smt", "SMALLER THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AAB), "rel", "lat", "LARGER THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AAC), "rel", "smte", "SMALLER THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AAD), "rel", "late", "LARGER THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AAE), "rel", "bumpeqq", "EQUALS SIGN WITH BUMPY ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AAF), "rel", "preceq", "PRECEDES ABOVE SINGLE-LINE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AB0), "rel", "succeq", "SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AB1), "rel", "precneq", "PRECEDES ABOVE SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AB2), "rel", "succneq", "SUCCEEDS ABOVE SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AB3), "rel", "preceqq", "PRECEDES ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AB4), "rel", "succeqq", "SUCCEEDS ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AB5), "rel", "precneqq", "PRECEDES ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AB6), "rel", "succneqq", "SUCCEEDS ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AB7), "rel", "precapprox", "PRECEDES ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AB8), "rel", "succapprox", "SUCCEEDS ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AB9), "rel", "precnapprox", "PRECEDES ABOVE NOT ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02ABA), "rel", "succnapprox", "SUCCEEDS ABOVE NOT ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02ABB), "rel", "Prec", "DOUBLE PRECEDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02ABC), "rel", "Succ", "DOUBLE SUCCEEDS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02ABD), "rel", "subsetdot", "SUBSET WITH DOT", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02ABE), "rel", "supsetdot", "SUPERSET WITH DOT", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02ABF), "rel", "subsetplus", "SUBSET WITH PLUS SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AC0), "rel", "supsetplus", "SUPERSET WITH PLUS SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AC1), "rel", "submult", "SUBSET WITH MULTIPLICATION SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AC2), "rel", "supmult", "SUPERSET WITH MULTIPLICATION SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AC3), "rel", "subedot", "SUBSET OF OR EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AC4), "rel", "supedot", "SUPERSET OF OR EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AC5), "rel", "subseteqq", "SUBSET OF ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AC6), "rel", "supseteqq", "SUPERSET OF ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AC7), "rel", "subsim", "SUBSET OF ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AC8), "rel", "supsim", "SUPERSET OF ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AC9), "rel", "subsetapprox", "SUBSET OF ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02ACA), "rel", "supsetapprox", "SUPERSET OF ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02ACB), "rel", "subsetneqq", "SUBSET OF ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02ACC), "rel", "supsetneqq", "SUPERSET OF ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02ACD), "rel", "lsqhook", "SQUARE LEFT OPEN BOX OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02ACE), "rel", "rsqhook", "SQUARE RIGHT OPEN BOX OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02ACF), "rel", "csub", "CLOSED SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AD0), "rel", "csup", "CLOSED SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AD1), "rel", "csube", "CLOSED SUBSET OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AD2), "rel", "csupe", "CLOSED SUPERSET OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AD3), "rel", "subsup", "SUBSET ABOVE SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AD4), "rel", "supsub", "SUPERSET ABOVE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AD5), "rel", "subsub", "SUBSET ABOVE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AD6), "rel", "supsup", "SUPERSET ABOVE SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AD7), "rel", "suphsub", "SUPERSET BESIDE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AD8), "rel", "supdsub", "SUPERSET BESIDE AND JOINED BY DASH WITH SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02AD9), "rel", "forkv", "ELEMENT OF OPENING DOWNWARDS", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 300, rspace = 5 }, +}) addSymbol(U(0x02ADA), "rel", "topfork", "PITCHFORK WITH TEE TOP", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02ADB), "rel", "mlcp", "TRANSVERSAL INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 380, rspace = 4 }, +}) addSymbol(U(0x02ADC), "rel", "forks", "FORKING", { - { form = "infix", lspace = 3, priority = 740, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 740, rspace = 3 }, +}) addSymbol(U(0x02ADD), "rel", "forksnot", "NONFORKING", { - { form = "infix", lspace = 3, priority = 740, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 740, rspace = 3 }, +}) addSymbol(U(0x02ADE), "rel", "shortlefttack", "SHORT LEFT TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02ADF), "rel", "shortdowntack", "SHORT DOWN TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AE0), "rel", "shortuptack", "SHORT UP TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AE1), "ord", "perps", "PERPENDICULAR WITH S", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AE2), "rel", "vDdash", "VERTICAL BAR TRIPLE RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AE3), "rel", "dashV", "DOUBLE VERTICAL BAR LEFT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AE4), "rel", "Dashv", "VERTICAL BAR DOUBLE LEFT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AE5), "rel", "DashV", "DOUBLE VERTICAL BAR DOUBLE LEFT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AE6), "rel", "varVdash", "LONG DASH FROM LEFT MEMBER OF DOUBLE VERTICAL", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AE7), "rel", "Barv", "SHORT DOWN TACK WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AE8), "rel", "vBar", "SHORT UP TACK WITH UNDERBAR", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AE9), "rel", "vBarv", "SHORT UP TACK ABOVE SHORT DOWN TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AEA), "rel", "barV", "DOUBLE DOWN TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AEB), "rel", "Vbar", "DOUBLE UP TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 260, rspace = 5 }, +}) addSymbol(U(0x02AEC), "rel", "Not", "DOUBLE STROKE NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) addSymbol(U(0x02AED), "rel", "bNot", "REVERSED DOUBLE STROKE NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }}) + { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, +}) addSymbol(U(0x02AEE), "rel", "revnmid", "DOES NOT DIVIDE WITH REVERSED NEGATION SLASH", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AEF), "rel", "cirmid", "VERTICAL LINE WITH CIRCLE ABOVE", nil) addSymbol(U(0x02AF0), "rel", "midcir", "VERTICAL LINE WITH CIRCLE BELOW", nil) addSymbol(U(0x02AF1), "ord", "topcir", "DOWN TACK WITH CIRCLE BELOW", nil) addSymbol(U(0x02AF2), "rel", "nhpar", "PARALLEL WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AF3), "rel", "parsim", "PARALLEL WITH TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AF4), "bin", "interleave", "TRIPLE VERTICAL BAR BINARY RELATION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AF5), "bin", "nhVvert", "TRIPLE VERTICAL BAR WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AF6), "bin", "threedotcolon", "TRIPLE COLON OPERATOR", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x02AF7), "rel", "lllnest", "TRIPLE NESTED LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AF8), "rel", "gggnest", "TRIPLE NESTED GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AF9), "rel", "leqqslant", "DOUBLE-LINE SLANTED LESS-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AFA), "rel", "geqqslant", "DOUBLE-LINE SLANTED GREATER-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x02AFB), "bin", "trslash", "TRIPLE SOLIDUS BINARY RELATION", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x02AFC), "op", "biginterleave", "LARGE TRIPLE VERTICAL BAR OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02AFD), "bin", "sslash", "DOUBLE SOLIDUS OPERATOR", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }}) + { form = "infix", lspace = 4, priority = 680, rspace = 4 }, +}) addSymbol(U(0x02AFE), "bin", "talloblong", "WHITE VERTICAL BAR", { - { form = "infix", lspace = 3, priority = 680, rspace = 3 }}) + { form = "infix", lspace = 3, priority = 680, rspace = 3 }, +}) addSymbol(U(0x02AFF), "op", "bigtalloblong", "N-ARY WHITE VERTICAL BAR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }}) + { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, +}) addSymbol(U(0x02B00), "rel", nil, "NORTH EAST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B01), "rel", nil, "NORTH WEST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B02), "rel", nil, "SOUTH EAST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B03), "rel", nil, "SOUTH WEST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B04), "rel", nil, "LEFT RIGHT WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B05), "rel", nil, "LEFTWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B06), "rel", nil, "UPWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B07), "rel", nil, "DOWNWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B08), "rel", nil, "NORTH EAST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B09), "rel", nil, "NORTH WEST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B0A), "rel", nil, "SOUTH EAST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B0B), "rel", nil, "SOUTH WEST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B0C), "rel", nil, "LEFT RIGHT BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B0D), "rel", nil, "UP DOWN BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B0E), "rel", nil, "RIGHTWARDS ARROW WITH TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B0F), "rel", nil, "RIGHTWARDS ARROW WITH TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B10), "rel", nil, "LEFTWARDS ARROW WITH TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B11), "rel", nil, "LEFTWARDS ARROW WITH TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B12), "ord", "squaretopblack", "SQUARE WITH TOP HALF BLACK", nil) addSymbol(U(0x02B13), "ord", "squarebotblack", "SQUARE WITH BOTTOM HALF BLACK", nil) addSymbol(U(0x02B14), "ord", "squareurblack", "SQUARE WITH UPPER RIGHT DIAGONAL HALF BLACK", nil) @@ -2683,230 +3803,346 @@ addSymbol(U(0x02B2D), "ord", "whthorzoval", "WHITE HORIZONTAL ELLIPSE", nil) addSymbol(U(0x02B2E), "ord", "blkvertoval", "BLACK VERTICAL ELLIPSE", nil) addSymbol(U(0x02B2F), "ord", "whtvertoval", "WHITE VERTICAL ELLIPSE", nil) addSymbol(U(0x02B30), "rel", "circleonleftarrow", "LEFT ARROW WITH SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B31), "rel", "leftthreearrows", "THREE LEFTWARDS ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B32), "rel", "leftarrowonoplus", "LEFT ARROW WITH CIRCLED PLUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B33), "rel", "longleftsquigarrow", "LONG LEFTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B34), "rel", "nvtwoheadleftarrow", "LEFTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B35), "rel", "nVtwoheadleftarrow", "LEFTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B36), "rel", "twoheadmapsfrom", "LEFTWARDS TWO-HEADED ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B37), "rel", "twoheadleftdbkarrow", "LEFTWARDS TWO-HEADED TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B38), "rel", "leftdotarrow", "LEFTWARDS ARROW WITH DOTTED STEM", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B39), "rel", "nvleftarrowtail", "LEFTWARDS ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B3A), "rel", "nVleftarrowtail", "LEFTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B3B), "rel", "twoheadleftarrowtail", "LEFTWARDS TWO-HEADED ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B3C), "rel", "nvtwoheadleftarrowtail", "LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) -addSymbol(U(0x02B3D), "rel", "nVtwoheadleftarrowtail", "LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) +addSymbol( + U(0x02B3D), + "rel", + "nVtwoheadleftarrowtail", + "LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", + { + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + } +) addSymbol(U(0x02B3E), "rel", "leftarrowx", "LEFTWARDS ARROW THROUGH X", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B3F), "rel", "leftcurvedarrow", "WAVE ARROW POINTING DIRECTLY LEFT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B40), "rel", "equalleftarrow", "EQUALS SIGN ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B41), "rel", "bsimilarleftarrow", "REVERSE TILDE OPERATOR ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B42), "rel", "leftarrowbackapprox", "LEFTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B43), "rel", "rightarrowgtr", "RIGHTWARDS ARROW THROUGH GREATER-THAN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B44), "rel", "rightarrowsupset", "RIGHTWARDS ARROW THROUGH SUPERSET", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B45), "ord", "LLeftarrow", "LEFTWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B46), "ord", "RRightarrow", "RIGHTWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B47), "rel", "bsimilarrightarrow", "REVERSE TILDE OPERATOR ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B48), "rel", "rightarrowbackapprox", "RIGHTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B49), "rel", "similarleftarrow", "TILDE OPERATOR ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B4A), "rel", "leftarrowapprox", "LEFTWARDS ARROW ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B4B), "rel", "leftarrowbsimilar", "LEFTWARDS ARROW ABOVE REVERSE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B4C), "rel", "rightarrowbsimilar", "RIGHTWARDS ARROW ABOVE REVERSE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B4D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ZIGZAG ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B4E), "ord", nil, "SHORT SLANTED NORTH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B4F), "ord", nil, "SHORT BACKSLANTED SOUTH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B50), "ord", "medwhitestar", "WHITE MEDIUM STAR", nil) addSymbol(U(0x02B51), "ord", "medblackstar", "BLACK SMALL STAR", nil) addSymbol(U(0x02B52), "ord", "smwhitestar", "WHITE SMALL STAR", nil) addSymbol(U(0x02B53), "ord", "rightpentagonblack", "BLACK RIGHT-POINTING PENTAGON", nil) addSymbol(U(0x02B54), "ord", "rightpentagon", "WHITE RIGHT-POINTING PENTAGON", nil) addSymbol(U(0x02B5A), "ord", nil, "SLANTED NORTH ARROW WITH HOOKED HEAD", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B5B), "ord", nil, "BACKSLANTED SOUTH ARROW WITH HOOKED TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B5C), "ord", nil, "SLANTED NORTH ARROW WITH HORIZONTAL TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B5D), "ord", nil, "BACKSLANTED SOUTH ARROW WITH HORIZONTAL TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B5E), "ord", nil, "BENT ARROW POINTING DOWNWARDS THEN NORTH EAST", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B5F), "ord", nil, "SHORT BENT ARROW POINTING DOWNWARDS THEN NORTH EAST", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B60), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B61), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B62), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B63), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B64), "ord", nil, "LEFT RIGHT TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B65), "ord", nil, "UP DOWN TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B66), "ord", nil, "NORTH WEST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B67), "ord", nil, "NORTH EAST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B68), "ord", nil, "SOUTH EAST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B69), "ord", nil, "SOUTH WEST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B6A), "ord", nil, "LEFTWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B6B), "ord", nil, "UPWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B6C), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B6D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B6E), "ord", nil, "CLOCKWISE TRIANGLE-HEADED OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B6F), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B70), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B71), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B72), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B73), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B76), "ord", nil, "NORTH WEST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B77), "ord", nil, "NORTH EAST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B78), "ord", nil, "SOUTH EAST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B79), "ord", nil, "SOUTH WEST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B7A), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B7B), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B7C), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B7D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B80), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW OVER RIGHTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B81), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW LEFTWARDS OF DOWNWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B82), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW OVER LEFTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B83), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW LEFTWARDS OF UPWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B84), "ord", nil, "LEFTWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B85), "ord", nil, "UPWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B86), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B87), "ord", nil, "DOWNWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02B88), "ord", nil, "LEFTWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B89), "ord", nil, "UPWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B8A), "ord", nil, "RIGHTWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B8B), "ord", nil, "DOWNWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B8C), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED RIGHT U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B8D), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED BOTTOM U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B8E), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED LEFT U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B8F), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED TOP U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B94), "ord", nil, "FOUR CORNER ARROWS CIRCLING ANTICLOCKWISE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02B95), "ord", nil, "RIGHTWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BA0), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH LONG TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BA1), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH LONG TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BA2), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH LONG TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BA3), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH LONG TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BA4), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BA5), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BA6), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BA7), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BA8), "ord", nil, "BLACK CURVED DOWNWARDS AND LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BA9), "ord", nil, "BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BAA), "ord", nil, "BLACK CURVED UPWARDS AND LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BAB), "ord", nil, "BLACK CURVED UPWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BAC), "ord", nil, "BLACK CURVED LEFTWARDS AND UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BAD), "ord", nil, "BLACK CURVED RIGHTWARDS AND UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BAE), "ord", nil, "BLACK CURVED LEFTWARDS AND DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BAF), "ord", nil, "BLACK CURVED RIGHTWARDS AND DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BB0), "ord", nil, "RIBBON ARROW DOWN LEFT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02BB1), "ord", nil, "RIBBON ARROW DOWN RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02BB2), "ord", nil, "RIBBON ARROW UP LEFT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02BB3), "ord", nil, "RIBBON ARROW UP RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02BB4), "ord", nil, "RIBBON ARROW LEFT UP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02BB5), "ord", nil, "RIBBON ARROW RIGHT UP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02BB6), "ord", nil, "RIBBON ARROW LEFT DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02BB7), "ord", nil, "RIBBON ARROW RIGHT DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5 }, +}) addSymbol(U(0x02BB8), "ord", nil, "UPWARDS WHITE ARROW FROM BAR WITH HORIZONTAL BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }}) + { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, +}) addSymbol(U(0x02BD1), "ord", nil, "UNCERTAINTY SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }}) + { form = "infix", lspace = 5, priority = 320, rspace = 5 }, +}) addSymbol(U(0x03012), "ord", "postalmark", "POSTAL MARK", nil) addSymbol(U(0x03030), "ord", "hzigzag", "WAVY DASH", nil) addSymbol(U(0x1D400), "ord", "mbfA", "MATHEMATICAL BOLD CAPITAL A", nil) @@ -3906,11 +5142,13 @@ addSymbol(U(0x1D7FD), "ord", "mttseven", "MATHEMATICAL MONOSPACE DIGIT SEVEN", n addSymbol(U(0x1D7FE), "ord", "mtteight", "MATHEMATICAL MONOSPACE DIGIT EIGHT", nil) addSymbol(U(0x1D7FF), "ord", "mttnine", "MATHEMATICAL MONOSPACE DIGIT NINE", nil) addSymbol(U(0x1EEF0), "ord", "arabicmaj", "ARABIC MATHEMATICAL OPERATOR MEEM WITH HAH WITH TATWEEL", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) addSymbol(U(0x1EEF1), "ord", "arabichad", "ARABIC MATHEMATICAL OPERATOR HAH WITH DAL", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }}) + { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, +}) return { - operatorDict = operatorDict, - symbols = symbols + operatorDict = operatorDict, + symbols = symbols, } From 8d83821adda90020ed6c7861b36010829a934e30 Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sun, 17 Nov 2024 17:56:51 +0100 Subject: [PATCH 09/14] feat(math): Add pre-defined TeX-like operator functions (cos, sin, etc.) --- packages/math/texlike.lua | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/packages/math/texlike.lua b/packages/math/texlike.lua index 8fa66c351..dcd6efdba 100644 --- a/packages/math/texlike.lua +++ b/packages/math/texlike.lua @@ -641,6 +641,35 @@ compileToMathML( \def{projlim}{\mo[atom=op, movablelimits=true]{proj lim}} \def{injlim}{\mo[atom=op, movablelimits=true]{inj lim}} + % Other pre-defined operators from the TeXbook, p. 162: + % TeX of course defines them with \mathop, so we use atom=op here. + % MathML would use a here. + % But we use a so the atom type is handled + \def{arccos}{\mo[atom=op]{arccos}} + \def{arcsin}{\mo[atom=op]{arcsin}} + \def{arctan}{\mo[atom=op]{arctan}} + \def{arg}{\mo[atom=op]{arg}} + \def{cos}{\mo[atom=op]{cos}} + \def{cosh}{\mo[atom=op]{cosh}} + \def{cot}{\mo[atom=op]{cot}} + \def{coth}{\mo[atom=op]{coth}} + \def{csc}{\mo[atom=op]{csc}} + \def{deg}{\mo[atom=op]{deg}} + \def{det}{\mo[atom=op]{det}} + \def{dim}{\mo[atom=op]{dim}} + \def{exp}{\mo[atom=op]{exp}} + \def{hom}{\mo[atom=op]{hom}} + \def{ker}{\mo[atom=op]{ker}} + \def{lg}{\mo[atom=op]{lg}} + \def{ln}{\mo[atom=op]{ln}} + \def{log}{\mo[atom=op]{log}} + \def{Pr}{\mo[atom=op]{Pr}} + \def{sec}{\mo[atom=op]{sec}} + \def{sin}{\mo[atom=op]{sin}} + \def{sinh}{\mo[atom=op]{sinh}} + \def{tan}{\mo[atom=op]{tan}} + \def{tanh}{\mo[atom=op]{tanh}} + % Standard spaces gleaned from plain TeX \def{thinspace}{\mspace[width=thin]} \def{negthinspace}{\mspace[width=-thin]} From 56503bb43fe258f16f0423ebccffe2cb54d07cfb Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sun, 17 Nov 2024 18:10:11 +0100 Subject: [PATCH 10/14] test(math): Add a test case for unary and binary use of both minus signs --- tests/math-unary-binary-minus.expected | 251 +++++++++++++++++++++++++ tests/math-unary-binary-minus.sil | 16 ++ 2 files changed, 267 insertions(+) create mode 100644 tests/math-unary-binary-minus.expected create mode 100644 tests/math-unary-binary-minus.sil diff --git a/tests/math-unary-binary-minus.expected b/tests/math-unary-binary-minus.expected new file mode 100644 index 000000000..6f56a3e19 --- /dev/null +++ b/tests/math-unary-binary-minus.expected @@ -0,0 +1,251 @@ +Set paper size 419.5275636 595.275597 +Begin page +Mx 111.7495 +My 45.1648 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 3421 w=5.9100 (nil) +Mx 120.4373 +T 30 w=6.4800 (nil) +Mx 132.8999 +My 33.2998 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 2100 w=6.2800 (nil) +Mx 129.8249 +My 45.0698 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +Mx 10.6300 +T 3985 a=12.4300 (nil) +Mx 129.6951 +My 56.4138 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 2755 w=3.7856 (nil) +Mx 133.4807 +T 30 w=5.1840 (nil) +Mx 138.6647 +T 17 w=3.7200 (nil) +Draw line 144.8013 42.2398 13.5156 0.6500 +Mx 149.2341 +My 39.3648 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 18 w=4.6500 (nil) +Mx 144.8013 +My 53.5538 +T 18 23 w=9.3000 (nil) +Mx 154.1013 +My 50.4538 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 2755 w=3.7856 (nil) +Mx 159.0669 +My 45.1648 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +Mx 3.5100 +T 3804 a=4.8400 (nil) +Draw line 164.6569 42.2398 25.0644 0.6500 +Mx 174.8642 +My 39.3648 +T 21 w=4.6500 (nil) +Mx 164.6569 +My 52.1648 +T 25 w=4.6500 (nil) +Mx 169.3069 +T 2755 w=4.8400 (nil) +Mx 176.3692 +T 12 w=6.4800 (nil) +Mx 185.0714 +T 18 w=4.6500 (nil) +Mx 192.6936 +My 45.1648 +T 2088 w=6.4800 (nil) +Draw line 202.1458 42.2398 25.0644 0.6500 +Mx 212.3530 +My 39.3648 +T 19 w=4.6500 (nil) +Mx 202.1458 +My 52.1648 +T 25 w=4.6500 (nil) +Mx 206.7958 +T 2755 w=4.8400 (nil) +Mx 213.8580 +T 12 w=6.4800 (nil) +Mx 222.5603 +T 21 w=4.6500 (nil) +Mx 230.1825 +My 45.1648 +T 2088 w=6.4800 (nil) +Draw line 239.6347 42.2398 25.0644 0.6500 +Mx 249.8419 +My 39.3648 +T 18 w=4.6500 (nil) +Mx 239.6347 +My 52.1648 +T 25 w=4.6500 (nil) +Mx 244.2847 +T 2755 w=4.8400 (nil) +Mx 251.3469 +T 12 w=6.4800 (nil) +Mx 260.0492 +T 22 w=4.6500 (nil) +Mx 267.6714 +My 45.1648 +T 2088 w=6.4800 (nil) +Draw line 277.1236 42.2398 25.0644 0.6500 +Mx 287.3308 +My 39.3648 +T 18 w=4.6500 (nil) +Mx 277.1236 +My 52.1648 +T 25 w=4.6500 (nil) +Mx 281.7736 +T 2755 w=4.8400 (nil) +Mx 288.8358 +T 12 w=6.4800 (nil) +Mx 297.5380 +T 23 w=4.6500 (nil) +Mx 302.9380 +My 45.1648 +Mx 3.5100 +T 3805 a=4.8400 (nil) +Mx 111.7495 +My 91.0588 +T 3421 w=5.9100 (nil) +Mx 120.4373 +T 30 w=6.4800 (nil) +Mx 132.8999 +My 79.1938 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 2100 w=6.2800 (nil) +Mx 129.8249 +My 90.9638 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +Mx 10.6300 +T 3985 a=12.4300 (nil) +Mx 129.6951 +My 102.3078 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 2755 w=3.7856 (nil) +Mx 133.4807 +T 30 w=5.1840 (nil) +Mx 138.6647 +T 17 w=3.7200 (nil) +Draw line 144.8013 88.1338 13.5156 0.6500 +Mx 149.2341 +My 85.2588 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 18 w=4.6500 (nil) +Mx 144.8013 +My 99.4478 +T 18 23 w=9.3000 (nil) +Mx 154.1013 +My 96.3478 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 2755 w=3.7856 (nil) +Mx 159.0669 +My 91.0588 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +Mx 3.5100 +T 3804 a=4.8400 (nil) +Draw line 164.6569 88.1338 25.0644 0.6500 +Mx 174.8642 +My 85.2588 +T 21 w=4.6500 (nil) +Mx 164.6569 +My 98.0588 +T 25 w=4.6500 (nil) +Mx 169.3069 +T 2755 w=4.8400 (nil) +Mx 176.3692 +T 12 w=6.4800 (nil) +Mx 185.0714 +T 18 w=4.6500 (nil) +Mx 192.6936 +My 91.0588 +T 2088 w=6.4800 (nil) +Draw line 202.1458 88.1338 25.0644 0.6500 +Mx 212.3530 +My 85.2588 +T 19 w=4.6500 (nil) +Mx 202.1458 +My 98.0588 +T 25 w=4.6500 (nil) +Mx 206.7958 +T 2755 w=4.8400 (nil) +Mx 213.8580 +T 12 w=6.4800 (nil) +Mx 222.5603 +T 21 w=4.6500 (nil) +Mx 230.1825 +My 91.0588 +T 2088 w=6.4800 (nil) +Draw line 239.6347 88.1338 25.0644 0.6500 +Mx 249.8419 +My 85.2588 +T 18 w=4.6500 (nil) +Mx 239.6347 +My 98.0588 +T 25 w=4.6500 (nil) +Mx 244.2847 +T 2755 w=4.8400 (nil) +Mx 251.3469 +T 12 w=6.4800 (nil) +Mx 260.0492 +T 22 w=4.6500 (nil) +Mx 267.6714 +My 91.0588 +T 2088 w=6.4800 (nil) +Draw line 277.1236 88.1338 25.0644 0.6500 +Mx 287.3308 +My 85.2588 +T 18 w=4.6500 (nil) +Mx 277.1236 +My 98.0588 +T 25 w=4.6500 (nil) +Mx 281.7736 +T 2755 w=4.8400 (nil) +Mx 288.8358 +T 12 w=6.4800 (nil) +Mx 297.5380 +T 23 w=4.6500 (nil) +Mx 302.9380 +My 91.0588 +Mx 3.5100 +T 3805 a=4.8400 (nil) +Mx 192.8562 +My 130.2459 +T 2750 w=3.8100 (nil) +Mx 196.6662 +My 126.4959 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 2753 w=1.8320 (nil) +Mx 198.4982 +T 3421 w=4.5776 (nil) +Mx 206.2836 +My 130.2459 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 30 w=6.4800 (nil) +Mx 215.5414 +T 2088 w=6.4800 (nil) +Mx 222.0214 +T 18 w=4.6500 (nil) +Mx 192.8562 +My 160.4100 +T 2750 w=3.8100 (nil) +Mx 196.6662 +My 156.6600 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 2753 w=1.8320 (nil) +Mx 198.4982 +T 3421 w=4.5776 (nil) +Mx 206.2836 +My 160.4100 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 30 w=6.4800 (nil) +Mx 215.5414 +T 2088 w=6.4800 (nil) +Mx 222.0214 +T 18 w=4.6500 (nil) +Mx 207.4176 +My 553.7327 +Set font Gentium Plus;10;400;;normal;;;LTR +T 20 w=4.6924 (1) +End page +Finish diff --git a/tests/math-unary-binary-minus.sil b/tests/math-unary-binary-minus.sil new file mode 100644 index 000000000..52ea87e90 --- /dev/null +++ b/tests/math-unary-binary-minus.sil @@ -0,0 +1,16 @@ +\begin[papersize=a5]{document} +\use[module=packages.math] + +% Unicode U+002D (hyphen-minus) in binary context +\math[mode=display]{\pi=\sum_{k=0}^\infty\frac{1}{16^k}(\frac{4}{8k+1} - \frac{2}{8k+4} - \frac{1}{8k+5} - \frac{1}{8k+6})} + +% Unicode U+2212 (minus sign) in binary context +\math[mode=display]{\pi=\sum_{k=0}^\infty\frac{1}{16^k}(\frac{4}{8k+1} − \frac{2}{8k+4} − \frac{1}{8k+5} − \frac{1}{8k+6})} + +% Unicode U+002D (hyphen-minus) in unary context +\math[mode=display]{e^{i\pi} = -1} + +% Unicode U+2212 (minus sign) in unary context +\math[mode=display]{e^{i\pi} = −1} + +\end{document} From 6fe97b8727ad011a2406b54e9977d72d06bfc7a3 Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sun, 17 Nov 2024 18:21:05 +0100 Subject: [PATCH 11/14] test(math): Add a test case for pre-defined TeX-like functors --- tests/math-predefined-tex-functions.expected | 194 +++++++++++++++++++ tests/math-predefined-tex-functions.sil | 17 ++ 2 files changed, 211 insertions(+) create mode 100644 tests/math-predefined-tex-functions.expected create mode 100644 tests/math-predefined-tex-functions.sil diff --git a/tests/math-predefined-tex-functions.expected b/tests/math-predefined-tex-functions.expected new file mode 100644 index 000000000..ed959f1e2 --- /dev/null +++ b/tests/math-predefined-tex-functions.expected @@ -0,0 +1,194 @@ +Set paper size 419.5275636 595.275597 +Begin page +Mx 169.4493 +My 36.7438 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 84 74 79 w=12.0300 (nil) +Mx 183.1460 +T 19 w=4.6500 (nil) +Mx 187.7960 +T 3413 w=4.5600 (nil) +Mx 195.1338 +T 30 w=6.4800 (nil) +Mx 204.3916 +T 19 w=4.6500 (nil) +Mx 210.7082 +T 84 74 79 w=12.0300 (nil) +Mx 224.4049 +T 3413 w=4.5600 (nil) +Mx 230.6316 +T 68 80 84 w=13.2200 (nil) +Mx 245.5182 +T 3413 w=4.5600 (nil) +Mx 172.6571 +My 66.9078 +T 2734 w=6.5900 (nil) +Mx 179.2471 +Mx 2.8200 +T 9 a=3.5600 (nil) +Mx 182.8071 +T 2758 w=4.7100 (nil) +Mx 189.1838 +T 77 80 72 w=12.6800 (nil) +Mx 203.5304 +T 2758 w=4.7100 (nil) +Mx 209.9071 +T 77 80 72 w=12.6800 (nil) +Mx 224.2538 +T 77 80 72 w=12.6800 (nil) +Mx 238.6004 +T 2758 w=4.7100 (nil) +Mx 243.3104 +Mx 2.8200 +T 10 a=3.5600 (nil) +Mx 158.7810 +My 97.0719 +T 49 83 w=9.1300 (nil) +Mx 167.9110 +T 9 w=3.5600 (nil) +Mx 171.4710 +T 2743 w=7.6900 (nil) +Mx 181.9388 +T 31 w=6.4800 (nil) +Mx 191.1966 +T 2768 w=5.4100 (nil) +Mx 196.6066 +T 10 w=3.5600 (nil) +Mx 202.9443 +T 30 w=6.4800 (nil) +Mx 212.2021 +Mx 4.4000 +Mx 4.9000 +Mx 5.1900 +T 70 a=4.4700 89 a=4.9000 81 a=5.1900 (nil) +Mx 226.7621 +Mx 2.8200 +T 9 a=3.5600 (nil) +Mx 230.3221 +T 2088 w=6.4800 (nil) +Mx 236.8021 +T 2768 w=5.4100 (nil) +Mx 244.4343 +T 16 w=5.2500 (nil) +Mx 251.9066 +T 3417 w=5.2800 (nil) +Mx 257.1866 +Mx 2.8200 +T 10 a=3.5600 (nil) +Mx 186.4007 +My 127.2360 +T 78 66 89 w=17.3700 (nil) +Mx 183.3377 +My 133.7080 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 18 w=3.7200 (nil) +Mx 187.0577 +T 2168 w=5.1840 (nil) +Mx 192.2417 +T 2758 w=3.7328 (nil) +Mx 195.9745 +T 2168 w=5.1840 (nil) +Mx 201.1585 +T 2757 w=5.6752 (nil) +Mx 208.5004 +My 127.2360 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 77 80 72 w=12.6800 (nil) +Mx 221.1804 +My 129.3360 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 19 w=3.7200 (nil) +Mx 226.9970 +My 127.2360 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 2735 w=5.9800 (nil) +Mx 232.0270 +My 129.3360 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 2758 w=3.7328 (nil) +Mx 183.6593 +My 165.8540 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 77 74 78 w=13.2500 (nil) +Mx 182.6771 +My 172.2540 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 2768 w=4.1984 (nil) +Mx 186.8755 +T 1960 w=7.2960 (nil) +Mx 194.1715 +T 17 w=3.7200 (nil) +Draw line 200.3082 162.9290 19.1067 0.6500 +Mx 200.3082 +My 160.0540 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 84 74 79 w=12.0300 (nil) +Mx 214.0049 +T 2768 w=5.4100 (nil) +Mx 207.1565 +My 172.8540 +T 2768 w=5.4100 (nil) +Mx 222.9426 +My 165.8540 +T 30 w=6.4800 (nil) +Mx 232.2004 +T 18 w=4.6500 (nil) +Mx 142.3354 +My 200.7481 +T 84 74 79 w=12.0300 (nil) +Mx 156.0321 +T 2768 w=5.4100 (nil) +Mx 163.1088 +T 84 74 79 w=12.0300 (nil) +Mx 175.1388 +T 9 w=3.5600 (nil) +Mx 178.6988 +T 2768 w=5.4100 (nil) +Mx 184.1088 +T 10 w=3.5600 (nil) +Mx 189.3354 +T 84 74 79 w=12.0300 (nil) +Mx 201.3654 +My 196.9981 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 19 w=3.7200 (nil) +Mx 207.1821 +My 200.7481 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 2768 w=5.4100 (nil) +Mx 214.2588 +T 84 74 79 w=12.0300 (nil) +Mx 226.2888 +My 196.9981 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 19 w=3.7200 (nil) +Mx 230.4388 +My 200.7481 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 9 w=3.5600 (nil) +Mx 233.9988 +T 2768 w=5.4100 (nil) +Mx 239.4088 +T 10 w=3.5600 (nil) +Mx 244.6354 +T 77 74 78 w=13.2500 (nil) +Mx 248.1204 +My 206.9681 +Set font Libertinus Math;8;400;Regular;normal;;;LTR +T 2100 w=6.2800 (nil) +Mx 259.5521 +My 200.7481 +Set font Libertinus Math;10;400;Regular;normal;;;LTR +T 2725 w=5.8100 (nil) +Mx 265.3621 +T 9 w=3.5600 (nil) +Mx 268.9221 +T 2758 w=4.7100 (nil) +Mx 273.6321 +T 10 w=3.5600 (nil) +Mx 207.4176 +My 553.7327 +Set font Gentium Plus;10;400;;normal;;;LTR +T 20 w=4.6924 (1) +End page +Finish diff --git a/tests/math-predefined-tex-functions.sil b/tests/math-predefined-tex-functions.sil new file mode 100644 index 000000000..a1b988b94 --- /dev/null +++ b/tests/math-predefined-tex-functions.sil @@ -0,0 +1,17 @@ +\begin[papersize=a5]{document} +\use[module=packages.math] + +% TeXbook p. 162 +\math[mode=display]{\sin2\theta=2\sin\theta\cos\theta} + +\math[mode=display]{O(n\log n\log\log n)} + +\math[mode=display]{\Pr(X>x)=\exp(-x/\mu)} + +\math[mode=display]{\max_{1\le n\le m}\log_2P_n} + +\math[mode=display]{\lim_{x\to0}\frac{\sin x}{x}=1} + +% Extra check for spacing +\math[mode=display]{\sin x \sin(x) \sin^2 x \sin^2(x) \lim_\infty F(n)} +\end{document} From d5b432d0f6beba511146183d9dbd978c70defa6d Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sun, 17 Nov 2024 19:36:27 +0100 Subject: [PATCH 12/14] docs(math): Update description of atoms and TeX-like pre-defined constructs --- packages/math/init.lua | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/packages/math/init.lua b/packages/math/init.lua index 79edba25e..c56a316bd 100644 --- a/packages/math/init.lua +++ b/packages/math/init.lua @@ -132,8 +132,7 @@ The \autodoc:package{math} package provides typesetting of formulas directly in As such, it lacks some features and may contain bugs. Feedback and contributions are always welcome.} -\noindent To typeset mathematics, you will need an OpenType math font installed on your system.% -%\footnote{A list of freely available math fonts can be found at \href[src=https://www.ctan.org/pkg/unicode-math]{https://www.ctan.org/pkg/unicode-math}} +\noindent To typeset mathematics, you will need an OpenType math font installed on your system. By default, this package uses Libertinus Math, so it will fail if Libertinus Math can’t be found. Another font may be specified via the setting \autodoc:setting{math.font.family}. If required, you can set the font style and weight via \autodoc:setting{math.font.style} and \autodoc:setting{math.font.weight}. @@ -212,28 +211,39 @@ Its main difference from the SILE syntax is that \code{\\mycommand\{arg1\}\{arg2 If it’s more convenient, you can use these Unicode characters directly. The symbol shorthands are the same as in the TeX package \href[src=https://www.ctan.org/pkg/unicode-math]{\code{unicode-math}}. +The TeX-like syntax also supports several familiar constructs, pre-defined with appropriate spacing, movable limits and other properties, such as \code{\\sin}, \code{\\cos}, \code{\\lim}, etc. +These are just macro-definitions (see further below); for instance, \code{\\lim} is a shorthand for \code{\\mo[atom=op, movablelimits=true]\{lim\}}. +\begin[mode=display]{math} + \sin 2\theta = 2\sin \theta \cos \theta +\end{math} +\begin[mode=display]{math} + \math{\lim_{n\to\infty} F(n) = 0} +\end{math} + \code{\{formula\}} is a shorthand for \code{\\mrow\{formula\}}. -Since parentheses—among other glyphs—stretch vertically to the size of their englobing \code{mrow}, this is useful to typeset parentheses of different sizes on the same line: +Delimiters—among other glyphs—stretch vertically to the size of their englobing \code{mrow}, which is useful for their size to adapt to the content. +SILE automatically wraps paired delimiters in such a construct, so these adapt to their inner content only. \begin[type=autodoc:codeblock]{raw} \Gamma (\frac{\zeta}{2}) + x^2(x+1) \end{raw} -\noindent renders as +\noindent directly renders as \begin[mode=display]{math} \Gamma (\frac{\zeta}{2}) + x^2(x+1) \end{math} -\noindent which is ugly. -To keep parentheses around \math{x+1} small, you should put braces around the expression: +\noindent which is neat. +But for cases when stretchy delimiters are not paired in an obvious way, these can end up too large. +To keep them small, you should put braces around the expression: \begin[type=autodoc:codeblock]{raw} -\Gamma (\frac{\zeta}{2}) + x^2{(x+1)} +\Vert v \Vert = \sqrt{x^2 + y^2} \text{ vs. } {\Vert v \Vert} = \sqrt{x^2 + y^2} \end{raw} \begin[mode=display]{math} - \Gamma (\frac{\zeta}{2}) + x^2{(x+1)} +\Vert v \Vert = \sqrt{x^2 + y^2} \text{ vs. } {\Vert v \Vert} = \sqrt{x^2 + y^2} \end{math} \noindent To print a brace in a formula, you need to escape it with a backslash. @@ -246,10 +256,11 @@ To avoid that, you can specify that \math{\mi{sin}} is an identifier by writing If you prefer it in “double struck” style, this is permitted by the \code{mathvariant} attribute: \code{\\mi[mathvariant=double-struck]\{sin\}(x)} renders as \math{\mi[mathvariant=double-struck]{sin}(x)}. \paragraph{Atom types and spacing} +The current implementation does not follow the MathML rules for spacing, but rather the rules defined in the TeXbook, based on atom types. Each token automatically gets assigned an atom type from the list below: \begin{itemize} \item{\code{ord}: \code{mi} and \code{mn} tokens, as well as unclassified operators} - \item{\code{big}: big operators like ‘\math{\sum}’ or ‘\math{\prod}’} + \item{\code{op}: large operators like ‘\math{\sum}’ or ‘\math{\prod}’} \item{\code{bin}: binary operators like ‘\math{+}’ or ‘\math{\%}’} \item{\code{rel}: relation operators like ‘\math{=}’ or ‘\math{<}’} \item{\code{open}: opening operators like ‘\math{(}’ or ‘\math{[}’} @@ -260,8 +271,7 @@ Each token automatically gets assigned an atom type from the list below: %\item{\code{over}} %\item{\code{under}} %\item{\code{accent}} - %\item{\code{radical}} - %\item{\code{vcenter}} + %\item{\code{bothaccent}} \end{itemize} \noindent The spacing between any two successive tokens is set automatically based on their atom types, and hence may not reflect the actual spacing used in the input. To make an operator behave like it has a certain atom type, you can use the \code{atom} attribute. For example, \code{a \\mo[atom=bin]\{div\} b} renders as \math[mode=display]{a \mo[atom=bin]{div} b.} From 84c065471a96dd58624d6f42bb25a29f64d9625e Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Sat, 23 Nov 2024 13:39:01 +0300 Subject: [PATCH 13/14] chore(build): Setup actual regeneration rules for Unicode XML to Lua conversion --- Makefile-fonts | 6 +- Makefile.am | 17 ++++ build-aux/pkg.nix | 2 + .../xml-entities-to-lua.xsl | 96 +++++++++---------- configure.ac | 3 +- ...bols-generated.lua => mathml-entities.lua} | 0 packages/math/unicode-symbols.lua | 6 +- 7 files changed, 74 insertions(+), 56 deletions(-) rename packages/math/tools/unicode-xml-to-sile.xsl => build-aux/xml-entities-to-lua.xsl (76%) rename packages/math/{unicode-symbols-generated.lua => mathml-entities.lua} (100%) diff --git a/Makefile-fonts b/Makefile-fonts index e8e94fe40..7294b8946 100644 --- a/Makefile-fonts +++ b/Makefile-fonts @@ -2,12 +2,12 @@ if FONT_DOWNLOAD_TOOLS +# Target defined in Makefile.am, just adding a dependency here +.sources: fonttooling + .fonts: fonttooling [ -h .fonts ] || mkdir -p $@ -.sources: fonttooling - [ -h .sources ] || mkdir -p $@ - fonttooling: $(if $(BSDTAR),,$(error Please set BSDTAR with path or `./configure --enable-developer-mode`)) $(if $(CURL),,$(error Please set CURL with path or `./configure --enable-developer-mode`)) diff --git a/Makefile.am b/Makefile.am index 911a56c57..a5fc43102 100644 --- a/Makefile.am +++ b/Makefile.am @@ -76,6 +76,7 @@ dist_license_DATA = LICENSE.md EXTRA_DIST = spec tests documentation sile-dev-1.rockspec fontconfig.conf EXTRA_DIST += build-aux/action-updater.js build-aux/cargo-updater.js build-aux/config.ld build-aux/decore-automake.sh build-aux/git-version-gen EXTRA_DIST += Dockerfile build-aux/docker-bootstrap.sh build-aux/docker-fontconfig.conf hooks/build +EXTRA_DIST += build-aux/xml-entities-to-lua.xsl EXTRA_DIST += default.nix flake.nix flake.lock shell.nix build-aux/pkg.nix EXTRA_DIST += package.json # imported by both Nix and Docker EXTRA_DIST += $(FIGURES) @@ -94,6 +95,10 @@ else !SHARED EXTRA_RUNTIME_DEPS = endif +MATHML_ENTITIES = packages/math/mathml-entities.lua +EXTRA_DIST += $(MATHML_ENTITIES) +BUILT_SOURCES += $(MATHML_ENTITIES) + CLEANFILES = $(MANUAL) DISTCLEANFILES = @AMINCLUDE@ @@ -312,6 +317,18 @@ patterndeps = $(_FORCED) $(_TEST_DEPS) $(_DOCS_DEPS) | $(bin_PROGRAMS) $(EXTRA_R $(DOT) -Tpdf $< -o $@.gs $(GS) -q -sDEVICE=pdfwrite -dCompatibilityLevel=1.5 -o $@ $@.gs +XML_ENTITIES = .sources/unicode.xml +XML_ENTITIES_COMMIT = 77acf14428202e4e1dba54ff1e5ed43fe5ab474f + +.sources: + [ -h .sources ] || mkdir -p $@ + +$(XML_ENTITIES): + $(CURL) https://raw.githubusercontent.com/w3c/xml-entities/$(XML_ENTITIES_COMMIT)/unicode.xml -o $@ + +$(MATHML_ENTITIES): build-aux/xml-entities-to-lua.xsl + $(XSLTPROC) $< $(XML_ENTITIES) | $(or $(STYLUA),cat) - > $@ + .PHONY: force force: ; diff --git a/build-aux/pkg.nix b/build-aux/pkg.nix index 6b9fd535e..c5009e063 100644 --- a/build-aux/pkg.nix +++ b/build-aux/pkg.nix @@ -24,6 +24,7 @@ icu, fontconfig, libiconv, + libxslt, stylua, taplo, typos, @@ -125,6 +126,7 @@ stdenv.mkDerivation (finalAttrs: { icu fontconfig libiconv + libxslt stylua taplo typos diff --git a/packages/math/tools/unicode-xml-to-sile.xsl b/build-aux/xml-entities-to-lua.xsl similarity index 76% rename from packages/math/tools/unicode-xml-to-sile.xsl rename to build-aux/xml-entities-to-lua.xsl index dc4dd4336..499d5a2bc 100644 --- a/packages/math/tools/unicode-xml-to-sile.xsl +++ b/build-aux/xml-entities-to-lua.xsl @@ -1,10 +1,4 @@ - @@ -96,16 +90,16 @@ -- Originally designed by Sebastian Rahtz in conjunction with Barbara Beeton for the STIX project -- -local atoms = require("packages/math/atoms") +local atoms = require("packages.math.atoms") --- Transform a list of codepoints into a string local function U (...) - local t = { ... } - local str = "" - for i = 1, #t do - str = str .. luautf8.char(t[i]) - end - return str + local t = { ... } + local str = "" + for i = 1, #t do + str = str .. luautf8.char(t[i]) + end + return str end local symbols = {} @@ -118,33 +112,33 @@ local operatorDict = {} -- @tparam string _ Unicode name of the symbol (informative) -- @tparam table ops List of operator forms and their properties local function addSymbol (str, shortatom, mathlatex, _, ops) - if mathlatex then - SU.debug("math.symbols", "Registering symbol", str, "as", mathlatex) - symbols[mathlatex] = str - end - local op = {} - op.atom = atoms.types[shortatom] - if ops then - op.forms = {} - for _, v in pairs(ops) do - if v.form then - -- NOTE: At this point the mu unit is not yet defined, so keep it as a string. - v.lspace = v.lspace and ("%smu"):format(v.lspace) or "0mu" - v.rspace = v.rspace and ("%smu"):format(v.rspace) or "0mu" - op.forms[v.form] = v - else - SU.warn("No form for operator " .. str .. " (operator dictionary is probably incomplete)") + if mathlatex then + SU.debug("math.symbols", "Registering symbol", str, "as", mathlatex) + symbols[mathlatex] = str + end + local op = {} + op.atom = atoms.types[shortatom] + if ops then + op.forms = {} + for _, v in pairs(ops) do + if v.form then + -- NOTE: At this point the mu unit is not yet defined, so keep it as a string. + v.lspace = v.lspace and ("%smu"):format(v.lspace) or "0mu" + v.rspace = v.rspace and ("%smu"):format(v.rspace) or "0mu" + op.forms[v.form] = v + else + SU.warn("No form for operator " .. str .. " (operator dictionary is probably incomplete)") + end end - end - end - operatorDict[str] = op + end + operatorDict[str] = op end return { - operatorDict = operatorDict, - symbols = symbols + operatorDict = operatorDict, + symbols = symbols, } @@ -160,42 +154,46 @@ return { - -addSymbol( - + addSymbol( + - , "", + ,"", - , "" + ,"" - , { - - - + ,{ + + + + } - , nil + ,nil ) - { + { + - = - - , - }, + + = + + + , + + }, diff --git a/configure.ac b/configure.ac index 0404287c7..098f34d58 100644 --- a/configure.ac +++ b/configure.ac @@ -175,8 +175,8 @@ AM_CONDITIONAL([ICU], [test "x$with_icu" = "xyes"]) # Required for downloading fonts for the manual and for tests # Since the source tarball includes a prebuilt manual we only need this for Git source builds AM_COND_IF([FONT_DOWNLOAD_TOOLS], [ - QUE_PROGVAR([curl]) QUE_PROGVAR([bsdtar]) + QUE_PROGVAR([curl]) ]) AM_COND_IF([DEVELOPER_MODE], [ @@ -197,6 +197,7 @@ AM_COND_IF([DEVELOPER_TOOLS], [ QUE_PROGVAR([taplo]) QUE_PROGVAR([tr]) QUE_PROGVAR([typos]) + QUE_PROGVAR([xsltproc]) ]) AX_PROG_LUA([5.1], [], [], [], [prefer]) diff --git a/packages/math/unicode-symbols-generated.lua b/packages/math/mathml-entities.lua similarity index 100% rename from packages/math/unicode-symbols-generated.lua rename to packages/math/mathml-entities.lua diff --git a/packages/math/unicode-symbols.lua b/packages/math/unicode-symbols.lua index 51c344335..b123be38e 100644 --- a/packages/math/unicode-symbols.lua +++ b/packages/math/unicode-symbols.lua @@ -1,7 +1,7 @@ --- Extend the unicode-symbols-generated symbols with additional aliases. -local gen = require("packages/math/unicode-symbols-generated") -local symbols = gen.symbols -local operatorDict = gen.operatorDict +local mathml_entities = require("packages.math.mathml-entities") +local symbols = mathml_entities.symbols +local operatorDict = mathml_entities.operatorDict --- Add aliases for symbols that have multiple names. -- We check that the alias is already defined in the generated dictionary, From 48c201152a83e5a91b9f4b35a3312d51a7bf3558 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Sat, 23 Nov 2024 13:47:40 +0300 Subject: [PATCH 14/14] style(packages): Update Lua code generation for style fixes --- packages/math/mathml-entities.lua | 8915 +++++++++++++++++++++++++---- 1 file changed, 7736 insertions(+), 1179 deletions(-) diff --git a/packages/math/mathml-entities.lua b/packages/math/mathml-entities.lua index e33acfc05..dfca50d29 100644 --- a/packages/math/mathml-entities.lua +++ b/packages/math/mathml-entities.lua @@ -14,7 +14,7 @@ -- Originally designed by Sebastian Rahtz in conjunction with Barbara Beeton for the STIX project -- -local atoms = require("packages/math/atoms") +local atoms = require("packages.math.atoms") --- Transform a list of codepoints into a string local function U (...) @@ -59,249 +59,728 @@ local function addSymbol (str, shortatom, mathlatex, _, ops) end addSymbol(U(0x00021), "ord", "mathexclam", "EXCLAMATION MARK", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 820, + rspace = 0, + }, + + { + form = "prefix", + lspace = 0, + priority = 280, + rspace = 0, + }, }) addSymbol(U(0x00021, 0x00021), "ord", nil, "MULTIPLE CHARACTER OPERATOR: !!", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 820, + rspace = 0, + }, }) addSymbol(U(0x00021, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: !=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x00022), "ord", nil, "QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x00023), "ord", "mathoctothorpe", "NUMBER SIGN", nil) addSymbol(U(0x00024), "ord", "mathdollar", "DOLLAR SIGN", nil) addSymbol(U(0x00025), "ord", "mathpercent", "PERCENT SIGN", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, - { form = "infix", lspace = 3, priority = 640, rspace = 3 }, + { + form = "postfix", + lspace = 0, + priority = 820, + rspace = 0, + }, + + { + form = "infix", + lspace = 3, + priority = 640, + rspace = 3, + }, }) addSymbol(U(0x00026), "ord", "mathampersand", "AMPERSAND", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x00026, 0x00026), "ord", nil, "MULTIPLE CHARACTER OPERATOR: &&", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x00027), "ord", nil, "APOSTROPHE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x00028), "open", "lparen", "LEFT PARENTHESIS", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x00029), "close", "rparen", "RIGHT PARENTHESIS", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0002A), "ord", nil, "ASTERISK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x0002A, 0x0002A), "ord", nil, "MULTIPLE CHARACTER OPERATOR: **", { - { form = "infix", lspace = 3, priority = 760, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 760, + rspace = 3, + }, }) addSymbol(U(0x0002A, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: *=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0002B), "bin", "mathplus", "PLUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "prefix", + lspace = 0, + priority = 720, + rspace = 0, + }, + + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x0002B, 0x0002B), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ++", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x0002B, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: +=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0002C), "punct", "mathcomma", "COMMA", { - { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 3, separator = true }, + { + form = "infix", + linebreakstyle = "after", + lspace = 0, + priority = 160, + rspace = 3, + separator = true, + }, }) addSymbol(U(0x0002D), "ord", nil, "HYPHEN-MINUS", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "prefix", + lspace = 0, + priority = 720, + rspace = 0, + }, + + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x0002D, 0x0002D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: --", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x0002D, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: -=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0002D, 0x0003E), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ->", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 220, + rspace = 5, + }, }) addSymbol(U(0x0002E), "punct", "mathperiod", "FULL STOP", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x0002F), "bin", "mathslash", "SOLIDUS", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x0002F, 0x0002F), "ord", nil, "MULTIPLE CHARACTER OPERATOR: //", { - { form = "infix", lspace = 5, priority = 240, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 240, + rspace = 5, + }, }) addSymbol(U(0x0002F, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: /=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0003A), "punct", "mathcolon", "COLON", { - { form = "infix", lspace = 0, priority = 180, rspace = 3 }, + { + form = "infix", + lspace = 0, + priority = 180, + rspace = 3, + }, }) addSymbol(U(0x0003A, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: :=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0003B), "punct", "mathsemicolon", "SEMICOLON", { - { form = "infix", linebreakstyle = "after", lspace = 0, priority = 140, rspace = 3, separator = true }, + { + form = "infix", + linebreakstyle = "after", + lspace = 0, + priority = 140, + rspace = 3, + separator = true, + }, }) addSymbol(U(0x0003C), "rel", "less", "LESS-THAN SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0003C, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: <=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0003C, 0x0003E), "ord", nil, "MULTIPLE CHARACTER OPERATOR: <>", { - { form = "infix", lspace = 3, priority = 800, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 800, + rspace = 3, + }, }) addSymbol(U(0x0003D), "rel", "equal", "EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0003D, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ==", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0003E), "rel", "greater", "GREATER-THAN SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0003E, 0x0003D), "ord", nil, "MULTIPLE CHARACTER OPERATOR: >=", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0003F), "punct", "mathquestion", "QUESTION MARK", { - { form = "infix", lspace = 3, priority = 840, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 840, + rspace = 3, + }, }) addSymbol(U(0x00040), "ord", "mathatsign", "COMMERCIAL AT", { - { form = "infix", lspace = 3, priority = 560, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 560, + rspace = 3, + }, }) addSymbol(U(0x0005B), "open", "lbrack", "LEFT SQUARE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0005C), "bin", "backslash", "REVERSE SOLIDUS", { - { form = "infix", lspace = 0, priority = 660, rspace = 0 }, + { + form = "infix", + lspace = 0, + priority = 660, + rspace = 0, + }, }) addSymbol(U(0x0005D), "close", "rbrack", "RIGHT SQUARE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0005E), "ord", nil, "CIRCUMFLEX ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, - { form = "infix", lspace = 3, priority = 800, rspace = 3 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, + + { + form = "infix", + lspace = 3, + priority = 800, + rspace = 3, + }, }) addSymbol(U(0x0005F), "ord", nil, "LOW LINE", { - { form = "infix", lspace = 0, priority = 940, rspace = 0 }, - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "infix", + lspace = 0, + priority = 940, + rspace = 0, + }, + + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x00060), "ord", nil, "GRAVE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x0007B), "open", "lbrace", "LEFT CURLY BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0007C), "ord", "vert", "VERTICAL LINE", { - { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, + + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, + + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0007C, 0x0007C), "ord", nil, "MULTIPLE CHARACTER OPERATOR: ||", { - { fence = true, form = "infix", lspace = 5, priority = 320, rspace = 5 }, - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0 }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0 }, + { + fence = true, + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, + + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + }, + + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + }, }) addSymbol(U(0x0007D), "close", "rbrace", "RIGHT CURLY BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0007E), "ord", nil, "TILDE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x000A1), "punct", nil, "INVERTED EXCLAMATION MARK", nil) addSymbol(U(0x000A3), "ord", "mathsterling", "POUND SIGN", nil) addSymbol(U(0x000A5), "ord", "mathyen", "YEN SIGN", nil) addSymbol(U(0x000A7), "ord", "mathsection", "SECTION SIGN", nil) addSymbol(U(0x000A8), "ord", nil, "DIAERESIS", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x000AC), "ord", "neg", "NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 280, + rspace = 0, + }, }) addSymbol(U(0x000AF), "ord", nil, "MACRON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x000B0), "ord", nil, "DEGREE SIGN", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x000B1), "bin", "pm", "PLUS-MINUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "prefix", + lspace = 0, + priority = 720, + rspace = 0, + }, + + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x000B2), "ord", nil, "SUPERSCRIPT TWO", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x000B3), "ord", nil, "SUPERSCRIPT THREE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x000B4), "ord", nil, "ACUTE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x000B6), "ord", "mathparagraph", "PILCROW SIGN", nil) addSymbol(U(0x000B7), "bin", "cdotp", "MIDDLE DOT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x000B8), "ord", nil, "CEDILLA", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x000B9), "ord", nil, "SUPERSCRIPT ONE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x000BF), "punct", nil, "INVERTED QUESTION MARK", nil) addSymbol(U(0x000D7), "bin", "times", "MULTIPLICATION SIGN", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x000F0), "ord", "matheth", "LATIN SMALL LETTER ETH", nil) addSymbol(U(0x000F7), "bin", "div", "DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x001B5), "ord", "Zbar", "LATIN CAPITAL LETTER Z WITH STROKE", nil) addSymbol(U(0x002C6), "ord", nil, "MODIFIER LETTER CIRCUMFLEX ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x002C7), "ord", nil, "CARON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x002C9), "ord", nil, "MODIFIER LETTER MACRON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x002CA), "ord", nil, "MODIFIER LETTER ACUTE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x002CB), "ord", nil, "MODIFIER LETTER GRAVE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x002CD), "ord", nil, "MODIFIER LETTER LOW MACRON", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x002D8), "ord", nil, "BREVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x002D9), "ord", nil, "DOT ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x002DA), "ord", nil, "RING ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x002DC), "ord", nil, "SMALL TILDE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x002DD), "ord", nil, "DOUBLE ACUTE ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x002F7), "ord", nil, "MODIFIER LETTER LOW TILDE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x00300), "accent", "grave", "COMBINING GRAVE ACCENT", nil) addSymbol(U(0x00301), "accent", "acute", "COMBINING ACUTE ACCENT", nil) addSymbol(U(0x00302), "accent", "hat", "COMBINING CIRCUMFLEX ACCENT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x00303), "accent", "tilde", "COMBINING TILDE", nil) addSymbol(U(0x00304), "accent", "bar", "COMBINING MACRON", nil) @@ -314,7 +793,12 @@ addSymbol(U(0x0030A), "accent", "ocirc", "COMBINING RING ABOVE", nil) addSymbol(U(0x0030C), "accent", "check", "COMBINING CARON", nil) addSymbol(U(0x00310), "ord", "candra", "COMBINING CANDRABINDU", nil) addSymbol(U(0x00311), "accent", nil, "COMBINING INVERTED BREVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x00312), "ord", "oturnedcomma", "COMBINING TURNED COMMA ABOVE", nil) addSymbol(U(0x00315), "ord", "ocommatopright", "COMBINING COMMA ABOVE RIGHT", nil) @@ -400,89 +884,228 @@ addSymbol(U(0x02013), "punct", nil, "EN DASH", nil) addSymbol(U(0x02014), "punct", nil, "EM DASH", nil) addSymbol(U(0x02015), "ord", "horizbar", "HORIZONTAL BAR", nil) addSymbol(U(0x02016), "ord", "Vert", "DOUBLE VERTICAL LINE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, + + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02017), "ord", "twolowline", "DOUBLE LOW LINE", nil) addSymbol(U(0x02018), "ord", nil, "LEFT SINGLE QUOTATION MARK", { - { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 100, + rspace = 0, + }, }) addSymbol(U(0x02019), "ord", nil, "RIGHT SINGLE QUOTATION MARK", { - { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 100, + rspace = 0, + }, }) addSymbol(U(0x0201A), "ord", nil, "SINGLE LOW-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x0201B), "ord", nil, "SINGLE HIGH-REVERSED-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x0201C), "ord", nil, "LEFT DOUBLE QUOTATION MARK", { - { fence = true, form = "prefix", lspace = 0, priority = 100, rspace = 0 }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 100, + rspace = 0, + }, }) addSymbol(U(0x0201D), "ord", nil, "RIGHT DOUBLE QUOTATION MARK", { - { fence = true, form = "postfix", lspace = 0, priority = 100, rspace = 0 }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 100, + rspace = 0, + }, }) addSymbol(U(0x0201E), "ord", nil, "DOUBLE LOW-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x0201F), "ord", nil, "DOUBLE HIGH-REVERSED-9 QUOTATION MARK", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x02020), "rel", "dagger", "DAGGER", nil) addSymbol(U(0x02021), "rel", "ddagger", "DOUBLE DAGGER", nil) addSymbol(U(0x02022), "bin", "smblkcircle", "BULLET", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02025), "ord", "enleadertwodots", "TWO DOT LEADER", nil) addSymbol(U(0x02026), "ord", "unicodeellipsis", "HORIZONTAL ELLIPSIS", nil) addSymbol(U(0x02032), "ord", "prime", "PRIME", { - { form = "postfix", lspace = 0, priority = 820, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 820, + rspace = 0, + }, }) addSymbol(U(0x02033), "ord", "dprime", "DOUBLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x02034), "ord", "trprime", "TRIPLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x02035), "ord", "backprime", "REVERSED PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x02036), "ord", "backdprime", "REVERSED DOUBLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x02037), "ord", "backtrprime", "REVERSED TRIPLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x02038), "ord", "caretinsert", "CARET", nil) addSymbol(U(0x0203C), "ord", "Exclam", "DOUBLE EXCLAMATION MARK", nil) addSymbol(U(0x0203E), "ord", nil, "OVERLINE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x02040), "bin", "tieconcat", "CHARACTER TIE", nil) addSymbol(U(0x02043), "ord", "hyphenbullet", "HYPHEN BULLET", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02044), "bin", "fracslash", "FRACTION SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x02047), "ord", "Question", "DOUBLE QUESTION MARK", nil) addSymbol(U(0x0204E), "bin", nil, "LOW ASTERISK", nil) addSymbol(U(0x0204F), "rel", nil, "REVERSED SEMICOLON", nil) addSymbol(U(0x02050), "rel", "closure", "CLOSE UP", nil) addSymbol(U(0x02057), "ord", "qprime", "QUADRUPLE PRIME", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x02061), "bin", nil, "FUNCTION APPLICATION", { - { form = "infix", lspace = 0, priority = 880, rspace = 0 }, + { + form = "infix", + lspace = 0, + priority = 880, + rspace = 0, + }, }) addSymbol(U(0x02062), "bin", nil, "INVISIBLE TIMES", { - { form = "infix", lspace = 0, priority = 620, rspace = 0 }, + { + form = "infix", + lspace = 0, + priority = 620, + rspace = 0, + }, }) addSymbol(U(0x02063), "punct", nil, "INVISIBLE SEPARATOR", { - { form = "infix", linebreakstyle = "after", lspace = 0, priority = 160, rspace = 0, separator = true }, + { + form = "infix", + linebreakstyle = "after", + lspace = 0, + priority = 160, + rspace = 0, + separator = true, + }, }) addSymbol(U(0x02064), "ord", nil, "INVISIBLE PLUS", { - { form = "infix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "infix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x020AC), "ord", "euro", "EURO SIGN", nil) addSymbol(U(0x020D0), "accent", "leftharpoonaccent", "COMBINING LEFT HARPOON ABOVE", nil) @@ -493,10 +1116,20 @@ addSymbol(U(0x020D5), "accent", nil, "COMBINING CLOCKWISE ARROW ABOVE", nil) addSymbol(U(0x020D6), "accent", "overleftarrow", "COMBINING LEFT ARROW ABOVE", nil) addSymbol(U(0x020D7), "accent", "overrightarrow", "COMBINING RIGHT ARROW ABOVE", nil) addSymbol(U(0x020DB), "accent", "dddot", "COMBINING THREE DOTS ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x020DC), "accent", "ddddot", "COMBINING FOUR DOTS ABOVE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x020DD), "ord", "enclosecircle", "COMBINING ENCLOSING CIRCLE", nil) addSymbol(U(0x020DE), "ord", "enclosesquare", "COMBINING ENCLOSING SQUARE", nil) @@ -557,10 +1190,20 @@ addSymbol(U(0x02142), "ord", "sansLturned", "TURNED SANS-SERIF CAPITAL L", nil) addSymbol(U(0x02143), "ord", "sansLmirrored", "REVERSED SANS-SERIF CAPITAL L", nil) addSymbol(U(0x02144), "ord", "Yup", "TURNED SANS-SERIF CAPITAL Y", nil) addSymbol(U(0x02145), "ord", "mitBbbD", "DOUBLE-STRUCK ITALIC CAPITAL D", { - { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, + { + form = "prefix", + lspace = 3, + priority = 780, + rspace = 0, + }, }) addSymbol(U(0x02146), "ord", "mitBbbd", "DOUBLE-STRUCK ITALIC SMALL D", { - { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, + { + form = "prefix", + lspace = 3, + priority = 780, + rspace = 0, + }, }) addSymbol(U(0x02147), "ord", "mitBbbe", "DOUBLE-STRUCK ITALIC SMALL E", nil) addSymbol(U(0x02148), "ord", "mitBbbi", "DOUBLE-STRUCK ITALIC SMALL I", nil) @@ -568,1122 +1211,3117 @@ addSymbol(U(0x02149), "ord", "mitBbbj", "DOUBLE-STRUCK ITALIC SMALL J", nil) addSymbol(U(0x0214A), "ord", "PropertyLine", "PROPERTY LINE", nil) addSymbol(U(0x0214B), "ord", "upand", "TURNED AMPERSAND", nil) addSymbol(U(0x02190), "rel", "leftarrow", "LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02191), "rel", "uparrow", "UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02192), "rel", "rightarrow", "RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02193), "rel", "downarrow", "DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02194), "rel", "leftrightarrow", "LEFT RIGHT ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02195), "rel", "updownarrow", "UP DOWN ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02196), "rel", "nwarrow", "NORTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02197), "rel", "nearrow", "NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02198), "rel", "searrow", "SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02199), "rel", "swarrow", "SOUTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0219A), "rel", "nleftarrow", "LEFTWARDS ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0219B), "rel", "nrightarrow", "RIGHTWARDS ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0219C), "rel", "leftwavearrow", "LEFTWARDS WAVE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0219D), "rel", "rightwavearrow", "RIGHTWARDS WAVE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0219E), "rel", "twoheadleftarrow", "LEFTWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0219F), "rel", "twoheaduparrow", "UPWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021A0), "rel", "twoheadrightarrow", "RIGHTWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021A1), "rel", "twoheaddownarrow", "DOWNWARDS TWO HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021A2), "rel", "leftarrowtail", "LEFTWARDS ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021A3), "rel", "rightarrowtail", "RIGHTWARDS ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021A4), "rel", "mapsfrom", "LEFTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021A5), "rel", "mapsup", "UPWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021A6), "rel", "mapsto", "RIGHTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021A7), "rel", "mapsdown", "DOWNWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021A8), "rel", "updownarrowbar", "UP DOWN ARROW WITH BASE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021A9), "rel", "hookleftarrow", "LEFTWARDS ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021AA), "rel", "hookrightarrow", "RIGHTWARDS ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021AB), "rel", "looparrowleft", "LEFTWARDS ARROW WITH LOOP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021AC), "rel", "looparrowright", "RIGHTWARDS ARROW WITH LOOP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021AD), "rel", "leftrightsquigarrow", "LEFT RIGHT WAVE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021AE), "rel", "nleftrightarrow", "LEFT RIGHT ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021AF), "rel", "downzigzagarrow", "DOWNWARDS ZIGZAG ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021B0), "rel", "Lsh", "UPWARDS ARROW WITH TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021B1), "rel", "Rsh", "UPWARDS ARROW WITH TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021B2), "rel", "Ldsh", "DOWNWARDS ARROW WITH TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021B3), "rel", "Rdsh", "DOWNWARDS ARROW WITH TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021B4), "ord", "linefeed", "RIGHTWARDS ARROW WITH CORNER DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021B5), "ord", "carriagereturn", "DOWNWARDS ARROW WITH CORNER LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021B6), "rel", "curvearrowleft", "ANTICLOCKWISE TOP SEMICIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021B7), "rel", "curvearrowright", "CLOCKWISE TOP SEMICIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021B8), "ord", "barovernorthwestarrow", "NORTH WEST ARROW TO LONG BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021B9), "ord", "barleftarrowrightarrowbar", "LEFTWARDS ARROW TO BAR OVER RIGHTWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021BA), "rel", "acwopencirclearrow", "ANTICLOCKWISE OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021BB), "rel", "cwopencirclearrow", "CLOCKWISE OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021BC), "rel", "leftharpoonup", "LEFTWARDS HARPOON WITH BARB UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021BD), "rel", "leftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021BE), "rel", "upharpoonright", "UPWARDS HARPOON WITH BARB RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021BF), "rel", "upharpoonleft", "UPWARDS HARPOON WITH BARB LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021C0), "rel", "rightharpoonup", "RIGHTWARDS HARPOON WITH BARB UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021C1), "rel", "rightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021C2), "rel", "downharpoonright", "DOWNWARDS HARPOON WITH BARB RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021C3), "rel", "downharpoonleft", "DOWNWARDS HARPOON WITH BARB LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021C4), "rel", "rightleftarrows", "RIGHTWARDS ARROW OVER LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021C5), "rel", "updownarrows", "UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021C6), "rel", "leftrightarrows", "LEFTWARDS ARROW OVER RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021C7), "rel", "leftleftarrows", "LEFTWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021C8), "rel", "upuparrows", "UPWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021C9), "rel", "rightrightarrows", "RIGHTWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021CA), "rel", "downdownarrows", "DOWNWARDS PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021CB), "rel", "leftrightharpoons", "LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021CC), "rel", "rightleftharpoons", "RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021CD), "rel", "nLeftarrow", "LEFTWARDS DOUBLE ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021CE), "rel", "nLeftrightarrow", "LEFT RIGHT DOUBLE ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021CF), "rel", "nRightarrow", "RIGHTWARDS DOUBLE ARROW WITH STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021D0), "rel", "Leftarrow", "LEFTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021D1), "rel", "Uparrow", "UPWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021D2), "rel", "Rightarrow", "RIGHTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021D3), "rel", "Downarrow", "DOWNWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021D4), "rel", "Leftrightarrow", "LEFT RIGHT DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021D5), "rel", "Updownarrow", "UP DOWN DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021D6), "rel", "Nwarrow", "NORTH WEST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021D7), "rel", "Nearrow", "NORTH EAST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021D8), "rel", "Searrow", "SOUTH EAST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021D9), "rel", "Swarrow", "SOUTH WEST DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021DA), "rel", "Lleftarrow", "LEFTWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021DB), "rel", "Rrightarrow", "RIGHTWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021DC), "rel", "leftsquigarrow", "LEFTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021DD), "rel", "rightsquigarrow", "RIGHTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021DE), "rel", "nHuparrow", "UPWARDS ARROW WITH DOUBLE STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021DF), "rel", "nHdownarrow", "DOWNWARDS ARROW WITH DOUBLE STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021E0), "rel", "leftdasharrow", "LEFTWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021E1), "rel", "updasharrow", "UPWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021E2), "rel", "rightdasharrow", "RIGHTWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021E3), "rel", "downdasharrow", "DOWNWARDS DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021E4), "rel", "barleftarrow", "LEFTWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021E5), "rel", "rightarrowbar", "RIGHTWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021E6), "rel", "leftwhitearrow", "LEFTWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021E7), "rel", "upwhitearrow", "UPWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021E8), "rel", "rightwhitearrow", "RIGHTWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021E9), "rel", "downwhitearrow", "DOWNWARDS WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021EA), "rel", "whitearrowupfrombar", "UPWARDS WHITE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021EB), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021EC), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL WITH HORIZONTAL BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021ED), "rel", nil, "UPWARDS WHITE ARROW ON PEDESTAL WITH VERTICAL BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021EE), "rel", nil, "UPWARDS WHITE DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021EF), "rel", nil, "UPWARDS WHITE DOUBLE ARROW ON PEDESTAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021F0), "rel", nil, "RIGHTWARDS WHITE ARROW FROM WALL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021F1), "rel", nil, "NORTH WEST ARROW TO CORNER", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021F2), "rel", nil, "SOUTH EAST ARROW TO CORNER", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x021F3), "rel", nil, "UP DOWN WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021F4), "rel", "circleonrightarrow", "RIGHT ARROW WITH SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021F5), "rel", "downuparrows", "DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021F6), "rel", "rightthreearrows", "THREE RIGHTWARDS ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021F7), "rel", "nvleftarrow", "LEFTWARDS ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021F8), "rel", "nvrightarrow", "RIGHTWARDS ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021F9), "rel", "nvleftrightarrow", "LEFT RIGHT ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021FA), "rel", "nVleftarrow", "LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021FB), "rel", "nVrightarrow", "RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021FC), "rel", "nVleftrightarrow", "LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021FD), "rel", "leftarrowtriangle", "LEFTWARDS OPEN-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021FE), "rel", "rightarrowtriangle", "RIGHTWARDS OPEN-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x021FF), "rel", "leftrightarrowtriangle", "LEFT RIGHT OPEN-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02200), "ord", "forall", "FOR ALL", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 280, + rspace = 0, + }, }) addSymbol(U(0x02201), "ord", "complement", "COMPLEMENT", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 720, + rspace = 0, + }, }) addSymbol(U(0x02202), "ord", "partial", "PARTIAL DIFFERENTIAL", { - { form = "prefix", lspace = 3, priority = 780, rspace = 0 }, + { + form = "prefix", + lspace = 3, + priority = 780, + rspace = 0, + }, }) addSymbol(U(0x02203), "ord", "exists", "THERE EXISTS", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 280, + rspace = 0, + }, }) addSymbol(U(0x02204), "ord", "nexists", "THERE DOES NOT EXIST", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 280, + rspace = 0, + }, }) addSymbol(U(0x02205), "ord", "varnothing", "EMPTY SET", nil) addSymbol(U(0x02206), "ord", "increment", "INCREMENT", { - { form = "infix", lspace = 0, priority = 720, rspace = 0 }, + { + form = "infix", + lspace = 0, + priority = 720, + rspace = 0, + }, }) addSymbol(U(0x02207), "ord", "nabla", "NABLA", { - { form = "prefix", lspace = 0, priority = 780, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 780, + rspace = 0, + }, }) addSymbol(U(0x02208), "rel", "in", "ELEMENT OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02209), "rel", "notin", "NOT AN ELEMENT OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x0220A), "rel", "smallin", "SMALL ELEMENT OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x0220B), "rel", "ni", "CONTAINS AS MEMBER", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x0220C), "rel", "nni", "DOES NOT CONTAIN AS MEMBER", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x0220D), "rel", "smallni", "SMALL CONTAINS AS MEMBER", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x0220E), "ord", "QED", "END OF PROOF", nil) addSymbol(U(0x0220F), "op", "prod", "N-ARY PRODUCT", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 540, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02210), "op", "coprod", "N-ARY COPRODUCT", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 540, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 540, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02211), "op", "sum", "N-ARY SUMMATION", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 440, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02212), "bin", "minus", "MINUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, -}) + { + form = "prefix", + lspace = 0, + priority = 720, + rspace = 0, + }, + + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, +}) addSymbol(U(0x02213), "bin", "mp", "MINUS-OR-PLUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "prefix", + lspace = 0, + priority = 720, + rspace = 0, + }, + + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02214), "bin", "dotplus", "DOT PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02215), "bin", "divslash", "DIVISION SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x02216), "bin", "setminus", "SET MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02217), "bin", "ast", "ASTERISK OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02218), "bin", "vysmwhtcircle", "RING OPERATOR", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 900, + rspace = 3, + }, }) addSymbol(U(0x02219), "bin", "vysmblkcircle", "BULLET OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x0221A), "op", "sqrt", "SQUARE ROOT", { - { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, + { + form = "prefix", + lspace = 3, + priority = 860, + rspace = 0, + }, }) addSymbol(U(0x0221B), "op", "cuberoot", "CUBE ROOT", { - { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, + { + form = "prefix", + lspace = 3, + priority = 860, + rspace = 0, + }, }) addSymbol(U(0x0221C), "op", "fourthroot", "FOURTH ROOT", { - { form = "prefix", lspace = 3, priority = 860, rspace = 0 }, + { + form = "prefix", + lspace = 3, + priority = 860, + rspace = 0, + }, }) addSymbol(U(0x0221D), "rel", "propto", "PROPORTIONAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0221E), "ord", "infty", "INFINITY", nil) addSymbol(U(0x0221F), "ord", "rightangle", "RIGHT ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x02220), "ord", "angle", "ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x02221), "ord", "measuredangle", "MEASURED ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x02222), "ord", "sphericalangle", "SPHERICAL ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x02223), "rel", "mid", "DIVIDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02224), "rel", "nmid", "DOES NOT DIVIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02225), "rel", "parallel", "PARALLEL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02226), "rel", "nparallel", "NOT PARALLEL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02227), "bin", "wedge", "LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x02228), "bin", "vee", "LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02229), "bin", "cap", "INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x0222A), "bin", "cup", "UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x0222B), "ord", "int", "INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x0222C), "ord", "iint", "DOUBLE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x0222D), "ord", "iiint", "TRIPLE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x0222E), "ord", "oint", "CONTOUR INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x0222F), "ord", "oiint", "SURFACE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02230), "ord", "oiiint", "VOLUME INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02231), "ord", "intclockwise", "CLOCKWISE INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02232), "ord", "varointclockwise", "CLOCKWISE CONTOUR INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02233), "ord", "ointctrclockwise", "ANTICLOCKWISE CONTOUR INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02234), "rel", "therefore", "THEREFORE", { - { form = "prefix", lspace = 0, priority = 200, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 200, + rspace = 0, + }, }) addSymbol(U(0x02235), "rel", "because", "BECAUSE", { - { form = "prefix", lspace = 0, priority = 200, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 200, + rspace = 0, + }, }) addSymbol(U(0x02236), "rel", "mathratio", "RATIO", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x02237), "rel", "Colon", "PROPORTION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02238), "bin", "dotminus", "DOT MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02239), "rel", "dashcolon", "EXCESS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0223A), "rel", "dotsminusdots", "GEOMETRIC PROPORTION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0223B), "rel", "kernelcontraction", "HOMOTHETIC", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0223C), "rel", "sim", "TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, + + { + form = "prefix", + lspace = 0, + priority = 280, + rspace = 0, + }, }) addSymbol(U(0x0223D), "rel", "backsim", "REVERSED TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0223E), "bin", "invlazys", "INVERTED LAZY S", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0223F), "ord", "sinewave", "SINE WAVE", nil) addSymbol(U(0x02240), "bin", "wr", "WREATH PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02241), "rel", "nsim", "NOT TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02242), "rel", "eqsim", "MINUS TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02243), "rel", "simeq", "ASYMPTOTICALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02244), "rel", "nsime", "NOT ASYMPTOTICALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02245), "rel", "cong", "APPROXIMATELY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02246), "rel", "simneqq", "APPROXIMATELY BUT NOT ACTUALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02247), "rel", "ncong", "NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02248), "rel", "approx", "ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02249), "rel", "napprox", "NOT ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0224A), "rel", "approxeq", "ALMOST EQUAL OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0224B), "rel", "approxident", "TRIPLE TILDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0224C), "rel", "backcong", "ALL EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0224D), "rel", "asymp", "EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0224E), "rel", "Bumpeq", "GEOMETRICALLY EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0224F), "rel", "bumpeq", "DIFFERENCE BETWEEN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02250), "rel", "doteq", "APPROACHES THE LIMIT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02251), "rel", "Doteq", "GEOMETRICALLY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02252), "rel", "fallingdotseq", "APPROXIMATELY EQUAL TO OR THE IMAGE OF", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02253), "rel", "risingdotseq", "IMAGE OF OR APPROXIMATELY EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02254), "rel", "coloneq", "COLON EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02255), "rel", "eqcolon", "EQUALS COLON", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02256), "rel", "eqcirc", "RING IN EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02257), "rel", "circeq", "RING EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02258), "rel", "arceq", "CORRESPONDS TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02259), "rel", "wedgeq", "ESTIMATES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0225A), "rel", "veeeq", "EQUIANGULAR TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0225B), "rel", "stareq", "STAR EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0225C), "rel", "triangleq", "DELTA EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0225D), "rel", "eqdef", "EQUAL TO BY DEFINITION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0225E), "rel", "measeq", "MEASURED BY", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0225F), "rel", "questeq", "QUESTIONED EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02260), "rel", "ne", "NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02261), "rel", "equiv", "IDENTICAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02262), "rel", "nequiv", "NOT IDENTICAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02263), "rel", "Equiv", "STRICTLY EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02264), "rel", "leq", "LESS-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02265), "rel", "geq", "GREATER-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02266), "rel", "leqq", "LESS-THAN OVER EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02267), "rel", "geqq", "GREATER-THAN OVER EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02268), "rel", "lneqq", "LESS-THAN BUT NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02269), "rel", "gneqq", "GREATER-THAN BUT NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0226A), "rel", "ll", "MUCH LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0226B), "rel", "gg", "MUCH GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0226C), "rel", "between", "BETWEEN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0226D), "rel", "nasymp", "NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0226E), "rel", "nless", "NOT LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0226F), "rel", "ngtr", "NOT GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02270), "rel", "nleq", "NEITHER LESS-THAN NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02271), "rel", "ngeq", "NEITHER GREATER-THAN NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02272), "rel", "lesssim", "LESS-THAN OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02273), "rel", "gtrsim", "GREATER-THAN OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02274), "rel", "nlesssim", "NEITHER LESS-THAN NOR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02275), "rel", "ngtrsim", "NEITHER GREATER-THAN NOR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02276), "rel", "lessgtr", "LESS-THAN OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02277), "rel", "gtrless", "GREATER-THAN OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02278), "rel", "nlessgtr", "NEITHER LESS-THAN NOR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02279), "rel", "ngtrless", "NEITHER GREATER-THAN NOR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0227A), "rel", "prec", "PRECEDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0227B), "rel", "succ", "SUCCEEDS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0227C), "rel", "preccurlyeq", "PRECEDES OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0227D), "rel", "succcurlyeq", "SUCCEEDS OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0227E), "rel", "precsim", "PRECEDES OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0227F), "rel", "succsim", "SUCCEEDS OR EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02280), "rel", "nprec", "DOES NOT PRECEDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02281), "rel", "nsucc", "DOES NOT SUCCEED", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02282), "rel", "subset", "SUBSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02283), "rel", "supset", "SUPERSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02284), "rel", "nsubset", "NOT A SUBSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02285), "rel", "nsupset", "NOT A SUPERSET OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02286), "rel", "subseteq", "SUBSET OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02287), "rel", "supseteq", "SUPERSET OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02288), "rel", "nsubseteq", "NEITHER A SUBSET OF NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02289), "rel", "nsupseteq", "NEITHER A SUPERSET OF NOR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x0228A), "rel", "subsetneq", "SUBSET OF WITH NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x0228B), "rel", "supsetneq", "SUPERSET OF WITH NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x0228C), "bin", "cupleftarrow", "MULTISET", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x0228D), "bin", "cupdot", "MULTISET MULTIPLICATION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x0228E), "bin", "uplus", "MULTISET UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x0228F), "rel", "sqsubset", "SQUARE IMAGE OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02290), "rel", "sqsupset", "SQUARE ORIGINAL OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02291), "rel", "sqsubseteq", "SQUARE IMAGE OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02292), "rel", "sqsupseteq", "SQUARE ORIGINAL OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02293), "bin", "sqcap", "SQUARE CAP", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02294), "bin", "sqcup", "SQUARE CUP", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x02295), "bin", "oplus", "CIRCLED PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02296), "bin", "ominus", "CIRCLED MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02297), "bin", "otimes", "CIRCLED TIMES", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02298), "bin", "oslash", "CIRCLED DIVISION SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x02299), "bin", "odot", "CIRCLED DOT OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x0229A), "bin", "circledcirc", "CIRCLED RING OPERATOR", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 900, + rspace = 3, + }, }) addSymbol(U(0x0229B), "bin", "circledast", "CIRCLED ASTERISK OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x0229C), "bin", "circledequal", "CIRCLED EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x0229D), "bin", "circleddash", "CIRCLED DASH", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x0229E), "bin", "boxplus", "SQUARED PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x0229F), "bin", "boxminus", "SQUARED MINUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x022A0), "bin", "boxtimes", "SQUARED TIMES", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x022A1), "bin", "boxdot", "SQUARED DOT OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x022A2), "rel", "vdash", "RIGHT TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x022A3), "rel", "dashv", "LEFT TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x022A4), "ord", "top", "DOWN TACK", nil) addSymbol(U(0x022A5), "rel", "bot", "UP TACK", nil) addSymbol(U(0x022A6), "rel", "assert", "ASSERTION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022A7), "rel", "models", "MODELS", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x022A8), "rel", "vDash", "TRUE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x022A9), "rel", "Vdash", "FORCES", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x022AA), "rel", "Vvdash", "TRIPLE VERTICAL BAR RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x022AB), "rel", "VDash", "DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x022AC), "rel", "nvdash", "DOES NOT PROVE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x022AD), "rel", "nvDash", "NOT TRUE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x022AE), "rel", "nVdash", "DOES NOT FORCE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x022AF), "rel", "nVDash", "NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x022B0), "rel", "prurel", "PRECEDES UNDER RELATION", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022B1), "rel", "scurel", "SUCCEEDS UNDER RELATION", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022B2), "rel", "vartriangleleft", "NORMAL SUBGROUP OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022B3), "rel", "vartriangleright", "CONTAINS AS NORMAL SUBGROUP", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022B4), "rel", "trianglelefteq", "NORMAL SUBGROUP OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022B5), "rel", "trianglerighteq", "CONTAINS AS NORMAL SUBGROUP OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022B6), "rel", "origof", "ORIGINAL OF", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 220, + rspace = 5, + }, }) addSymbol(U(0x022B7), "rel", "imageof", "IMAGE OF", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 220, + rspace = 5, + }, }) addSymbol(U(0x022B8), "rel", "multimap", "MULTIMAP", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 220, + rspace = 5, + }, }) addSymbol(U(0x022B9), "bin", "hermitmatrix", "HERMITIAN CONJUGATE MATRIX", nil) addSymbol(U(0x022BA), "bin", "intercal", "INTERCALATE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x022BB), "bin", "veebar", "XOR", { - { form = "infix", lspace = 4, priority = 420, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 420, + rspace = 4, + }, }) addSymbol(U(0x022BC), "bin", "barwedge", "NAND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x022BD), "bin", "barvee", "NOR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x022BE), "ord", "measuredrightangle", "RIGHT ANGLE WITH ARC", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x022BF), "ord", "varlrtriangle", "RIGHT TRIANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x022C0), "op", "bigwedge", "N-ARY LOGICAL AND", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x022C1), "op", "bigvee", "N-ARY LOGICAL OR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x022C2), "op", "bigcap", "N-ARY INTERSECTION", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x022C3), "op", "bigcup", "N-ARY UNION", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 500, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x022C4), "bin", "smwhtdiamond", "DIAMOND OPERATOR", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 900, + rspace = 3, + }, }) addSymbol(U(0x022C5), "bin", "cdot", "DOT OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x022C6), "bin", "star", "STAR OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x022C7), "bin", "divideontimes", "DIVISION TIMES", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x022C8), "rel", "bowtie", "BOWTIE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022C9), "bin", "ltimes", "LEFT NORMAL FACTOR SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x022CA), "bin", "rtimes", "RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x022CB), "bin", "leftthreetimes", "LEFT SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x022CC), "bin", "rightthreetimes", "RIGHT SEMIDIRECT PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x022CD), "rel", "backsimeq", "REVERSED TILDE EQUALS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022CE), "bin", "curlyvee", "CURLY LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x022CF), "bin", "curlywedge", "CURLY LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x022D0), "rel", "Subset", "DOUBLE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022D1), "rel", "Supset", "DOUBLE SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022D2), "bin", "Cap", "DOUBLE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x022D3), "bin", "Cup", "DOUBLE UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x022D4), "rel", "pitchfork", "PITCHFORK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022D5), "rel", "equalparallel", "EQUAL AND PARALLEL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022D6), "rel", "lessdot", "LESS-THAN WITH DOT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022D7), "rel", "gtrdot", "GREATER-THAN WITH DOT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022D8), "rel", "lll", "VERY MUCH LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022D9), "rel", "ggg", "VERY MUCH GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022DA), "rel", "lesseqgtr", "LESS-THAN EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022DB), "rel", "gtreqless", "GREATER-THAN EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022DC), "rel", "eqless", "EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022DD), "rel", "eqgtr", "EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022DE), "rel", "curlyeqprec", "EQUAL TO OR PRECEDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022DF), "rel", "curlyeqsucc", "EQUAL TO OR SUCCEEDS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022E0), "rel", "npreccurlyeq", "DOES NOT PRECEDE OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022E1), "rel", "nsucccurlyeq", "DOES NOT SUCCEED OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022E2), "rel", "nsqsubseteq", "NOT SQUARE IMAGE OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022E3), "rel", "nsqsupseteq", "NOT SQUARE ORIGINAL OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022E4), "rel", "sqsubsetneq", "SQUARE IMAGE OF OR NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022E5), "rel", "sqsupsetneq", "SQUARE ORIGINAL OF OR NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022E6), "rel", "lnsim", "LESS-THAN BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022E7), "rel", "gnsim", "GREATER-THAN BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022E8), "rel", "precnsim", "PRECEDES BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022E9), "rel", "succnsim", "SUCCEEDS BUT NOT EQUIVALENT TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x022EA), "rel", "nvartriangleleft", "NOT NORMAL SUBGROUP OF", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022EB), "rel", "nvartriangleright", "DOES NOT CONTAIN AS NORMAL SUBGROUP", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022EC), "rel", "ntrianglelefteq", "NOT NORMAL SUBGROUP OF OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022ED), "rel", "ntrianglerighteq", "DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022EE), "rel", "vdots", "VERTICAL ELLIPSIS", nil) addSymbol(U(0x022EF), "rel", "unicodecdots", "MIDLINE HORIZONTAL ELLIPSIS", nil) addSymbol(U(0x022F0), "rel", "adots", "UP RIGHT DIAGONAL ELLIPSIS", nil) addSymbol(U(0x022F1), "rel", "ddots", "DOWN RIGHT DIAGONAL ELLIPSIS", nil) addSymbol(U(0x022F2), "rel", "disin", "ELEMENT OF WITH LONG HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022F3), "rel", "varisins", "ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022F4), "rel", "isins", "SMALL ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022F5), "rel", "isindot", "ELEMENT OF WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022F6), "rel", "varisinobar", "ELEMENT OF WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022F7), "rel", "isinobar", "SMALL ELEMENT OF WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022F8), "rel", "isinvb", "ELEMENT OF WITH UNDERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022F9), "rel", "isinE", "ELEMENT OF WITH TWO HORIZONTAL STROKES", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022FA), "rel", "nisd", "CONTAINS WITH LONG HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022FB), "rel", "varnis", "CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022FC), "rel", "nis", "SMALL CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022FD), "rel", "varniobar", "CONTAINS WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022FE), "rel", "niobar", "SMALL CONTAINS WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x022FF), "rel", "bagmember", "Z NOTATION BAG MEMBERSHIP", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02300), "ord", "diameter", "DIAMETER SIGN", nil) addSymbol(U(0x02301), "ord", nil, "ELECTRIC ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02302), "ord", "house", "HOUSE", nil) addSymbol(U(0x02305), "bin", "varbarwedge", "PROJECTIVE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02306), "bin", "vardoublebarwedge", "PERSPECTIVE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02308), "open", "lceil", "LEFT CEILING", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02309), "close", "rceil", "RIGHT CEILING", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0230A), "open", "lfloor", "LEFT FLOOR", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0230B), "close", "rfloor", "RIGHT FLOOR", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02310), "ord", "invnot", "REVERSED NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 280, + rspace = 0, + }, }) addSymbol(U(0x02311), "ord", "sqlozenge", "SQUARE LOZENGE", nil) addSymbol(U(0x02312), "ord", "profline", "ARC", nil) addSymbol(U(0x02313), "ord", "profsurf", "SEGMENT", nil) addSymbol(U(0x02317), "ord", "viewdata", "VIEWDATA SQUARE", nil) addSymbol(U(0x02319), "ord", "turnednot", "TURNED NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 280, + rspace = 0, + }, }) addSymbol(U(0x0231C), "open", "ulcorner", "TOP LEFT CORNER", nil) addSymbol(U(0x0231D), "close", "urcorner", "TOP RIGHT CORNER", nil) @@ -1692,16 +4330,44 @@ addSymbol(U(0x0231F), "close", "lrcorner", "BOTTOM RIGHT CORNER", nil) addSymbol(U(0x02320), "ord", "inttop", "TOP HALF INTEGRAL", nil) addSymbol(U(0x02321), "ord", "intbottom", "BOTTOM HALF INTEGRAL", nil) addSymbol(U(0x02322), "rel", "frown", "FROWN", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x02323), "rel", "smile", "SMILE", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x02329), "ord", nil, "LEFT-POINTING ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0232A), "ord", nil, "RIGHT-POINTING ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0232C), "ord", "varhexagonlrbonds", "BENZENE RING", nil) addSymbol(U(0x02332), "ord", "conictaper", "CONICAL TAPER", nil) @@ -1712,10 +4378,20 @@ addSymbol(U(0x02340), "ord", "APLnotbackslash", "APL FUNCTIONAL SYMBOL BACKSLASH addSymbol(U(0x02353), "ord", "APLboxupcaret", "APL FUNCTIONAL SYMBOL QUAD UP CARET", nil) addSymbol(U(0x02370), "ord", "APLboxquestion", "APL FUNCTIONAL SYMBOL QUAD QUESTION", nil) addSymbol(U(0x0237C), "rel", "rangledownzigzagarrow", "RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0238B), "ord", nil, "BROKEN CIRCLE WITH NORTHWEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02394), "ord", "hexagon", "SOFTWARE-FUNCTION SYMBOL", nil) addSymbol(U(0x0239B), "ord", "lparenuend", "LEFT PARENTHESIS UPPER HOOK", nil) @@ -1744,36 +4420,89 @@ addSymbol(U(0x023B1), "rel", "rmoustache", "UPPER RIGHT OR LOWER LEFT CURLY BRAC addSymbol(U(0x023B2), "ord", "sumtop", "SUMMATION TOP", nil) addSymbol(U(0x023B3), "ord", "sumbottom", "SUMMATION BOTTOM", nil) addSymbol(U(0x023B4), "ord", "overbracket", "TOP SQUARE BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x023B5), "ord", "underbracket", "BOTTOM SQUARE BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x023B6), "ord", "bbrktbrk", "BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET", nil) addSymbol(U(0x023B7), "ord", "sqrtbottom", "RADICAL SYMBOL BOTTOM", nil) addSymbol(U(0x023B8), "ord", "lvboxline", "LEFT VERTICAL BOX LINE", nil) addSymbol(U(0x023B9), "ord", "rvboxline", "RIGHT VERTICAL BOX LINE", nil) addSymbol(U(0x023CD), "ord", nil, "SQUARE FOOT", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0 }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + }, }) addSymbol(U(0x023CE), "ord", "varcarriagereturn", "RETURN SYMBOL", nil) addSymbol(U(0x023DC), "ord", "overparen", "TOP PARENTHESIS", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x023DD), "ord", "underparen", "BOTTOM PARENTHESIS", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x023DE), "ord", "overbrace", "TOP CURLY BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x023DF), "ord", "underbrace", "BOTTOM CURLY BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x023E0), "ord", "obrbrak", "TOP TORTOISE SHELL BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x023E1), "ord", "ubrbrak", "BOTTOM TORTOISE SHELL BRACKET", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x023E2), "ord", "trapezium", "WHITE TRAPEZIUM", nil) addSymbol(U(0x023E3), "ord", "benzenr", "BENZENE RING WITH CIRCLE", nil) @@ -1934,136 +4663,397 @@ addSymbol(U(0x0272A), "ord", "circledstar", "CIRCLED WHITE STAR", nil) addSymbol(U(0x02736), "ord", "varstar", "SIX POINTED BLACK STAR", nil) addSymbol(U(0x0273D), "ord", "dingasterisk", "HEAVY TEARDROP-SPOKED ASTERISK", nil) addSymbol(U(0x02772), "open", "lbrbrak", "LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02773), "close", "rbrbrak", "LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02794), "ord", nil, "HEAVY WIDE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02795), "ord", nil, "HEAVY PLUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "prefix", + lspace = 0, + priority = 720, + rspace = 0, + }, + + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02796), "ord", nil, "HEAVY MINUS SIGN", { - { form = "prefix", lspace = 0, priority = 720, rspace = 0 }, - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "prefix", + lspace = 0, + priority = 720, + rspace = 0, + }, + + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02797), "ord", nil, "HEAVY DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x02798), "ord", nil, "HEAVY SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02799), "ord", nil, "HEAVY RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0279A), "ord", nil, "HEAVY NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0279B), "ord", "draftingarrow", "DRAFTING POINT RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0279C), "ord", nil, "HEAVY ROUND-TIPPED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0279D), "ord", nil, "TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0279E), "ord", nil, "HEAVY TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0279F), "ord", nil, "DASHED TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027A0), "ord", nil, "HEAVY DASHED TRIANGLE-HEADED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027A1), "ord", nil, "BLACK RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027A5), "ord", nil, "HEAVY BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027A6), "ord", nil, "HEAVY BLACK CURVED UPWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027A7), "ord", nil, "SQUAT BLACK RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x027A8), "ord", nil, "HEAVY CONCAVE-POINTED BLACK RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027A9), "ord", nil, "RIGHT-SHADED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027AA), "ord", nil, "LEFT-SHADED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027AB), "ord", nil, "BACK-TILTED SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027AC), "ord", nil, "FRONT-TILTED SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027AD), "ord", nil, "HEAVY LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027AE), "ord", nil, "HEAVY UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027AF), "ord", nil, "NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027B1), "ord", nil, "NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027B2), "ord", nil, "CIRCLED HEAVY WHITE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x027B3), "ord", nil, "WHITE-FEATHERED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027B4), "ord", nil, "BLACK-FEATHERED SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x027B5), "ord", nil, "BLACK-FEATHERED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027B6), "ord", nil, "BLACK-FEATHERED NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x027B7), "ord", nil, "HEAVY BLACK-FEATHERED SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x027B8), "ord", nil, "HEAVY BLACK-FEATHERED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027B9), "ord", nil, "HEAVY BLACK-FEATHERED NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x027BA), "ord", nil, "TEARDROP-BARBED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027BB), "ord", nil, "HEAVY TEARDROP-SHANKED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027BC), "ord", nil, "WEDGE-TAILED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027BD), "ord", nil, "HEAVY WEDGE-TAILED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027BE), "ord", nil, "OPEN-OUTLINED RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027C0), "ord", "threedangle", "THREE DIMENSIONAL ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x027C1), "ord", "whiteinwhitetriangle", "WHITE TRIANGLE CONTAINING SMALL WHITE TRIANGLE", nil) addSymbol(U(0x027C2), "rel", "perp", "PERPENDICULAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x027C3), "rel", "subsetcirc", "OPEN SUBSET", nil) addSymbol(U(0x027C4), "rel", "supsetcirc", "OPEN SUPERSET", nil) @@ -2074,11 +5064,21 @@ addSymbol(U(0x027C8), "rel", "bsolhsub", "REVERSE SOLIDUS PRECEDING SUBSET", nil addSymbol(U(0x027C9), "rel", "suphsol", "SUPERSET PRECEDING SOLIDUS", nil) addSymbol(U(0x027CA), "rel", nil, "VERTICAL BAR WITH HORIZONTAL STROKE", nil) addSymbol(U(0x027CB), "rel", "diagup", "MATHEMATICAL RISING DIAGONAL", { - { form = "infix", lspace = 3, priority = 680, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 680, + rspace = 3, + }, }) addSymbol(U(0x027CC), "op", "longdivision", "LONG DIVISION", nil) addSymbol(U(0x027CD), "rel", "diagdown", "MATHEMATICAL FALLING DIAGONAL", { - { form = "infix", lspace = 3, priority = 680, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 680, + rspace = 3, + }, }) addSymbol(U(0x027CE), "bin", nil, "SQUARED LOGICAL AND", nil) addSymbol(U(0x027CF), "bin", nil, "SQUARED LOGICAL OR", nil) @@ -2105,154 +5105,472 @@ addSymbol(U(0x027E3), "bin", "concavediamondtickright", "WHITE CONCAVE-SIDED DIA addSymbol(U(0x027E4), "bin", "whitesquaretickleft", "WHITE SQUARE WITH LEFTWARDS TICK", nil) addSymbol(U(0x027E5), "bin", "whitesquaretickright", "WHITE SQUARE WITH RIGHTWARDS TICK", nil) addSymbol(U(0x027E6), "open", "lBrack", "MATHEMATICAL LEFT WHITE SQUARE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x027E7), "close", "rBrack", "MATHEMATICAL RIGHT WHITE SQUARE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x027E8), "open", "langle", "MATHEMATICAL LEFT ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x027E9), "close", "rangle", "MATHEMATICAL RIGHT ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x027EA), "open", "lAngle", "MATHEMATICAL LEFT DOUBLE ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x027EB), "close", "rAngle", "MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x027EC), "open", "Lbrbrak", "MATHEMATICAL LEFT WHITE TORTOISE SHELL BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x027ED), "close", "Rbrbrak", "MATHEMATICAL RIGHT WHITE TORTOISE SHELL BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x027EE), "open", "lgroup", "MATHEMATICAL LEFT FLATTENED PARENTHESIS", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x027EF), "close", "rgroup", "MATHEMATICAL RIGHT FLATTENED PARENTHESIS", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x027F0), "rel", "UUparrow", "UPWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027F1), "rel", "DDownarrow", "DOWNWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027F2), "rel", "acwgapcirclearrow", "ANTICLOCKWISE GAPPED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x027F3), "rel", "cwgapcirclearrow", "CLOCKWISE GAPPED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x027F4), "rel", "rightarrowonoplus", "RIGHT ARROW WITH CIRCLED PLUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027F5), "rel", "longleftarrow", "LONG LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027F6), "rel", "longrightarrow", "LONG RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027F7), "rel", "longleftrightarrow", "LONG LEFT RIGHT ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027F8), "rel", "Longleftarrow", "LONG LEFTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027F9), "rel", "Longrightarrow", "LONG RIGHTWARDS DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027FA), "rel", "Longleftrightarrow", "LONG LEFT RIGHT DOUBLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027FB), "rel", "longmapsfrom", "LONG LEFTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027FC), "rel", "longmapsto", "LONG RIGHTWARDS ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027FD), "rel", "Longmapsfrom", "LONG LEFTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027FE), "rel", "Longmapsto", "LONG RIGHTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x027FF), "rel", "longrightsquigarrow", "LONG RIGHTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02900), "rel", "nvtwoheadrightarrow", "RIGHTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02901), "rel", "nVtwoheadrightarrow", "RIGHTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02902), "rel", "nvLeftarrow", "LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02903), "rel", "nvRightarrow", "RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02904), "rel", "nvLeftrightarrow", "LEFT RIGHT DOUBLE ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02905), "rel", "twoheadmapsto", "RIGHTWARDS TWO-HEADED ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02906), "rel", "Mapsfrom", "LEFTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02907), "rel", "Mapsto", "RIGHTWARDS DOUBLE ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02908), "rel", "downarrowbarred", "DOWNWARDS ARROW WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02909), "rel", "uparrowbarred", "UPWARDS ARROW WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0290A), "rel", "Uuparrow", "UPWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0290B), "rel", "Ddownarrow", "DOWNWARDS TRIPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0290C), "rel", "leftbkarrow", "LEFTWARDS DOUBLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0290D), "rel", "rightbkarrow", "RIGHTWARDS DOUBLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0290E), "rel", "leftdbkarrow", "LEFTWARDS TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0290F), "rel", "dbkarrow", "RIGHTWARDS TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02910), "rel", "drbkarrow", "RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02911), "rel", "rightdotarrow", "RIGHTWARDS ARROW WITH DOTTED STEM", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02912), "rel", "baruparrow", "UPWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02913), "rel", "downarrowbar", "DOWNWARDS ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02914), "rel", "nvrightarrowtail", "RIGHTWARDS ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02915), "rel", "nVrightarrowtail", "RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02916), "rel", "twoheadrightarrowtail", "RIGHTWARDS TWO-HEADED ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02917), "rel", "nvtwoheadrightarrowtail", "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol( U(0x02918), @@ -2260,227 +5578,642 @@ addSymbol( "nVtwoheadrightarrowtail", "RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol(U(0x02919), "rel", "lefttail", "LEFTWARDS ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0291A), "rel", "righttail", "RIGHTWARDS ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0291B), "rel", "leftdbltail", "LEFTWARDS DOUBLE ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0291C), "rel", "rightdbltail", "RIGHTWARDS DOUBLE ARROW-TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0291D), "rel", "diamondleftarrow", "LEFTWARDS ARROW TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0291E), "rel", "rightarrowdiamond", "RIGHTWARDS ARROW TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0291F), "rel", "diamondleftarrowbar", "LEFTWARDS ARROW FROM BAR TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02920), "rel", "barrightarrowdiamond", "RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02921), "rel", "nwsearrow", "NORTH WEST AND SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02922), "rel", "neswarrow", "NORTH EAST AND SOUTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02923), "rel", "hknwarrow", "NORTH WEST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02924), "rel", "hknearrow", "NORTH EAST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02925), "rel", "hksearrow", "SOUTH EAST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02926), "rel", "hkswarrow", "SOUTH WEST ARROW WITH HOOK", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02927), "rel", "tona", "NORTH WEST ARROW AND NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02928), "rel", "toea", "NORTH EAST ARROW AND SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02929), "rel", "tosa", "SOUTH EAST ARROW AND SOUTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0292A), "rel", "towa", "SOUTH WEST ARROW AND NORTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0292B), "rel", "rdiagovfdiag", "RISING DIAGONAL CROSSING FALLING DIAGONAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0292C), "rel", "fdiagovrdiag", "FALLING DIAGONAL CROSSING RISING DIAGONAL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0292D), "rel", "seovnearrow", "SOUTH EAST ARROW CROSSING NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0292E), "rel", "neovsearrow", "NORTH EAST ARROW CROSSING SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0292F), "rel", "fdiagovnearrow", "FALLING DIAGONAL CROSSING NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02930), "rel", "rdiagovsearrow", "RISING DIAGONAL CROSSING SOUTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02931), "rel", "neovnwarrow", "NORTH EAST ARROW CROSSING NORTH WEST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02932), "rel", "nwovnearrow", "NORTH WEST ARROW CROSSING NORTH EAST ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02933), "rel", "rightcurvedarrow", "WAVE ARROW POINTING DIRECTLY RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02934), "rel", "uprightcurvearrow", "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02935), "rel", "downrightcurvedarrow", "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02936), "rel", "leftdowncurvedarrow", "ARROW POINTING DOWNWARDS THEN CURVING LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02937), "rel", "rightdowncurvedarrow", "ARROW POINTING DOWNWARDS THEN CURVING RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02938), "rel", "cwrightarcarrow", "RIGHT-SIDE ARC CLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02939), "rel", "acwleftarcarrow", "LEFT-SIDE ARC ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0293A), "rel", "acwoverarcarrow", "TOP ARC ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0293B), "rel", "acwunderarcarrow", "BOTTOM ARC ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0293C), "rel", "curvearrowrightminus", "TOP ARC CLOCKWISE ARROW WITH MINUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0293D), "rel", "curvearrowleftplus", "TOP ARC ANTICLOCKWISE ARROW WITH PLUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0293E), "rel", "cwundercurvearrow", "LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x0293F), "rel", "ccwundercurvearrow", "LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02940), "rel", "acwcirclearrow", "ANTICLOCKWISE CLOSED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02941), "rel", "cwcirclearrow", "CLOCKWISE CLOSED CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02942), "rel", "rightarrowshortleftarrow", "RIGHTWARDS ARROW ABOVE SHORT LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02943), "rel", "leftarrowshortrightarrow", "LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02944), "rel", "shortrightarrowleftarrow", "SHORT RIGHTWARDS ARROW ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02945), "rel", "rightarrowplus", "RIGHTWARDS ARROW WITH PLUS BELOW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02946), "rel", "leftarrowplus", "LEFTWARDS ARROW WITH PLUS BELOW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02947), "rel", "rightarrowx", "RIGHTWARDS ARROW THROUGH X", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02948), "rel", "leftrightarrowcircle", "LEFT RIGHT ARROW THROUGH SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02949), "rel", "twoheaduparrowcircle", "UPWARDS TWO-HEADED ARROW FROM SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0294A), "rel", "leftrightharpoonupdown", "LEFT BARB UP RIGHT BARB DOWN HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0294B), "rel", "leftrightharpoondownup", "LEFT BARB DOWN RIGHT BARB UP HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0294C), "rel", "updownharpoonrightleft", "UP BARB RIGHT DOWN BARB LEFT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0294D), "rel", "updownharpoonleftright", "UP BARB LEFT DOWN BARB RIGHT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0294E), "rel", "leftrightharpoonupup", "LEFT BARB UP RIGHT BARB UP HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0294F), "rel", "updownharpoonrightright", "UP BARB RIGHT DOWN BARB RIGHT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02950), "rel", "leftrightharpoondowndown", "LEFT BARB DOWN RIGHT BARB DOWN HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02951), "rel", "updownharpoonleftleft", "UP BARB LEFT DOWN BARB LEFT HARPOON", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02952), "rel", "barleftharpoonup", "LEFTWARDS HARPOON WITH BARB UP TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02953), "rel", "rightharpoonupbar", "RIGHTWARDS HARPOON WITH BARB UP TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02954), "rel", "barupharpoonright", "UPWARDS HARPOON WITH BARB RIGHT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02955), "rel", "downharpoonrightbar", "DOWNWARDS HARPOON WITH BARB RIGHT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02956), "rel", "barleftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWN TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02957), "rel", "rightharpoondownbar", "RIGHTWARDS HARPOON WITH BARB DOWN TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02958), "rel", "barupharpoonleft", "UPWARDS HARPOON WITH BARB LEFT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02959), "rel", "downharpoonleftbar", "DOWNWARDS HARPOON WITH BARB LEFT TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0295A), "rel", "leftharpoonupbar", "LEFTWARDS HARPOON WITH BARB UP FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0295B), "rel", "barrightharpoonup", "RIGHTWARDS HARPOON WITH BARB UP FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0295C), "rel", "upharpoonrightbar", "UPWARDS HARPOON WITH BARB RIGHT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0295D), "rel", "bardownharpoonright", "DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0295E), "rel", "leftharpoondownbar", "LEFTWARDS HARPOON WITH BARB DOWN FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0295F), "rel", "barrightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWN FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02960), "rel", "upharpoonleftbar", "UPWARDS HARPOON WITH BARB LEFT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02961), "rel", "bardownharpoonleft", "DOWNWARDS HARPOON WITH BARB LEFT FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol( U(0x02962), @@ -2488,7 +6221,13 @@ addSymbol( "leftharpoonsupdown", "LEFTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol( @@ -2497,7 +6236,13 @@ addSymbol( "upharpoonsleftright", "UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol( @@ -2506,7 +6251,13 @@ addSymbol( "rightharpoonsupdown", "RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol( @@ -2515,7 +6266,13 @@ addSymbol( "downharpoonsleftright", "DOWNWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol( @@ -2524,7 +6281,13 @@ addSymbol( "leftrightharpoonsup", "LEFTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB UP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol( @@ -2533,7 +6296,13 @@ addSymbol( "leftrightharpoonsdown", "LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol( @@ -2542,7 +6311,13 @@ addSymbol( "rightleftharpoonsup", "RIGHTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB UP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol( @@ -2551,20 +6326,50 @@ addSymbol( "rightleftharpoonsdown", "RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol(U(0x0296A), "rel", "leftharpoonupdash", "LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0296B), "rel", "dashleftharpoondown", "LEFTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0296C), "rel", "rightharpoonupdash", "RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0296D), "rel", "dashrightharpoondown", "RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol( U(0x0296E), @@ -2572,7 +6377,13 @@ addSymbol( "updownharpoonsleftright", "UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol( @@ -2581,182 +6392,573 @@ addSymbol( "downupharpoonsleftright", "DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol(U(0x02970), "rel", "rightimply", "RIGHT DOUBLE ARROW WITH ROUNDED HEAD", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02971), "rel", "equalrightarrow", "EQUALS SIGN ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02972), "rel", "similarrightarrow", "TILDE OPERATOR ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02973), "rel", "leftarrowsimilar", "LEFTWARDS ARROW ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02974), "rel", "rightarrowsimilar", "RIGHTWARDS ARROW ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02975), "rel", "rightarrowapprox", "RIGHTWARDS ARROW ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02976), "rel", "ltlarr", "LESS-THAN ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02977), "rel", "leftarrowless", "LEFTWARDS ARROW THROUGH LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02978), "rel", "gtrarr", "GREATER-THAN ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02979), "rel", "subrarr", "SUBSET ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x0297A), "rel", "leftarrowsubset", "LEFTWARDS ARROW THROUGH SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x0297B), "rel", "suplarr", "SUPERSET ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x0297C), "rel", "leftfishtail", "LEFT FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0297D), "rel", "rightfishtail", "RIGHT FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0297E), "rel", "upfishtail", "UP FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x0297F), "rel", "downfishtail", "DOWN FISH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02980), "ord", "Vvert", "TRIPLE VERTICAL BAR DELIMITER", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, + + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02981), "ord", "mdsmblkcircle", "Z NOTATION SPOT", { - { form = "infix", lspace = 5, priority = 140, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 140, + rspace = 5, + }, }) addSymbol(U(0x02982), "ord", "typecolon", "Z NOTATION TYPE COLON", { - { form = "infix", lspace = 5, priority = 180, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 180, + rspace = 5, + }, }) addSymbol(U(0x02983), "open", "lBrace", "LEFT WHITE CURLY BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02984), "close", "rBrace", "RIGHT WHITE CURLY BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02985), "open", "lParen", "LEFT WHITE PARENTHESIS", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02986), "close", "rParen", "RIGHT WHITE PARENTHESIS", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02987), "open", "llparenthesis", "Z NOTATION LEFT IMAGE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02988), "close", "rrparenthesis", "Z NOTATION RIGHT IMAGE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02989), "open", "llangle", "Z NOTATION LEFT BINDING BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0298A), "close", "rrangle", "Z NOTATION RIGHT BINDING BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0298B), "open", "lbrackubar", "LEFT SQUARE BRACKET WITH UNDERBAR", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0298C), "close", "rbrackubar", "RIGHT SQUARE BRACKET WITH UNDERBAR", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0298D), "open", "lbrackultick", "LEFT SQUARE BRACKET WITH TICK IN TOP CORNER", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0298E), "close", "rbracklrtick", "RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0298F), "open", "lbracklltick", "LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02990), "close", "rbrackurtick", "RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02991), "open", "langledot", "LEFT ANGLE BRACKET WITH DOT", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02992), "close", "rangledot", "RIGHT ANGLE BRACKET WITH DOT", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02993), "open", "lparenless", "LEFT ARC LESS-THAN BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02994), "close", "rparengtr", "RIGHT ARC GREATER-THAN BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02995), "open", "Lparengtr", "DOUBLE LEFT ARC GREATER-THAN BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02996), "close", "Rparenless", "DOUBLE RIGHT ARC LESS-THAN BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02997), "open", "lblkbrbrak", "LEFT BLACK TORTOISE SHELL BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02998), "close", "rblkbrbrak", "RIGHT BLACK TORTOISE SHELL BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x02999), "ord", "fourvdots", "DOTTED FENCE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, + + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x0299A), "ord", "vzigzag", "VERTICAL ZIGZAG LINE", nil) addSymbol(U(0x0299B), "ord", "measuredangleleft", "MEASURED ANGLE OPENING LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x0299C), "ord", "rightanglesqr", "RIGHT ANGLE VARIANT WITH SQUARE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x0299D), "ord", "rightanglemdot", "MEASURED RIGHT ANGLE WITH DOT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x0299E), "ord", "angles", "ANGLE WITH S INSIDE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x0299F), "ord", "angdnr", "ACUTE ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029A0), "ord", "gtlpar", "SPHERICAL ANGLE OPENING LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029A1), "ord", "sphericalangleup", "SPHERICAL ANGLE OPENING UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029A2), "ord", "turnangle", "TURNED ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029A3), "ord", "revangle", "REVERSED ANGLE", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029A4), "ord", "angleubar", "ANGLE WITH UNDERBAR", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029A5), "ord", "revangleubar", "REVERSED ANGLE WITH UNDERBAR", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029A6), "ord", "wideangledown", "OBLIQUE ANGLE OPENING UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029A7), "ord", "wideangleup", "OBLIQUE ANGLE OPENING DOWN", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029A8), "ord", "measanglerutone", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND RIGHT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029A9), "ord", "measanglelutonw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol( U(0x029AA), @@ -2764,17 +6966,37 @@ addSymbol( "measanglerdtose", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND RIGHT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, } ) addSymbol(U(0x029AB), "ord", "measangleldtosw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND LEFT", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029AC), "ord", "measangleurtone", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029AD), "ord", "measangleultonw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND UP", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol( U(0x029AE), @@ -2782,11 +7004,21 @@ addSymbol( "measangledrtose", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND DOWN", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, } ) addSymbol(U(0x029AF), "ord", "measangledltosw", "MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND DOWN", { - { form = "prefix", lspace = 0, priority = 580, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 580, + rspace = 0, + }, }) addSymbol(U(0x029B0), "ord", "revemptyset", "REVERSED EMPTY SET", nil) addSymbol(U(0x029B1), "ord", "emptysetobar", "EMPTY SET WITH OVERBAR", nil) @@ -2795,47 +7027,107 @@ addSymbol(U(0x029B3), "ord", "emptysetoarr", "EMPTY SET WITH RIGHT ARROW ABOVE", addSymbol(U(0x029B4), "ord", "emptysetoarrl", "EMPTY SET WITH LEFT ARROW ABOVE", nil) addSymbol(U(0x029B5), "ord", "circlehbar", "CIRCLE WITH HORIZONTAL BAR", nil) addSymbol(U(0x029B6), "bin", "circledvert", "CIRCLED VERTICAL BAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029B7), "bin", "circledparallel", "CIRCLED PARALLEL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029B8), "bin", "obslash", "CIRCLED REVERSE SOLIDUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x029B9), "bin", "operp", "CIRCLED PERPENDICULAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029BA), "ord", "obot", "CIRCLE DIVIDED BY HORIZONTAL BAR AND TOP HALF DIVIDED BY VERTICAL BAR", nil) addSymbol(U(0x029BB), "ord", "olcross", "CIRCLE WITH SUPERIMPOSED X", nil) addSymbol(U(0x029BC), "ord", "odotslashdot", "CIRCLED ANTICLOCKWISE-ROTATED DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x029BD), "ord", "uparrowoncircle", "UP ARROW THROUGH CIRCLE", nil) addSymbol(U(0x029BE), "ord", "circledwhitebullet", "CIRCLED WHITE BULLET", nil) addSymbol(U(0x029BF), "ord", "circledbullet", "CIRCLED BULLET", nil) addSymbol(U(0x029C0), "bin", "olessthan", "CIRCLED LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029C1), "bin", "ogreaterthan", "CIRCLED GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029C2), "ord", "cirscir", "CIRCLE WITH SMALL CIRCLE TO THE RIGHT", nil) addSymbol(U(0x029C3), "ord", "cirE", "CIRCLE WITH TWO HORIZONTAL STROKES TO THE RIGHT", nil) addSymbol(U(0x029C4), "bin", "boxdiag", "SQUARED RISING DIAGONAL SLASH", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x029C5), "bin", "boxbslash", "SQUARED FALLING DIAGONAL SLASH", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x029C6), "bin", "boxast", "SQUARED ASTERISK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x029C7), "bin", "boxcircle", "SQUARED SMALL CIRCLE", { - { form = "infix", lspace = 3, priority = 900, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 900, + rspace = 3, + }, }) addSymbol(U(0x029C8), "bin", "boxbox", "SQUARED SQUARE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x029C9), "ord", "boxonbox", "TWO JOINED SQUARES", nil) addSymbol(U(0x029CA), "ord", "triangleodot", "TRIANGLE WITH DOT ABOVE", nil) @@ -2843,71 +7135,188 @@ addSymbol(U(0x029CB), "ord", "triangleubar", "TRIANGLE WITH UNDERBAR", nil) addSymbol(U(0x029CC), "ord", "triangles", "S IN TRIANGLE", nil) addSymbol(U(0x029CD), "ord", "triangleserifs", "TRIANGLE WITH SERIFS AT BOTTOM", nil) addSymbol(U(0x029CE), "rel", "rtriltri", "RIGHT TRIANGLE ABOVE LEFT TRIANGLE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029CF), "rel", "ltrivb", "LEFT TRIANGLE BESIDE VERTICAL BAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029D0), "rel", "vbrtri", "VERTICAL BAR BESIDE RIGHT TRIANGLE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029D1), "rel", "lfbowtie", "BOWTIE WITH LEFT HALF BLACK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029D2), "rel", "rfbowtie", "BOWTIE WITH RIGHT HALF BLACK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029D3), "rel", "fbowtie", "BLACK BOWTIE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029D4), "rel", "lftimes", "TIMES WITH LEFT HALF BLACK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x029D5), "rel", "rftimes", "TIMES WITH RIGHT HALF BLACK", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x029D6), "bin", "hourglass", "WHITE HOURGLASS", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x029D7), "bin", "blackhourglass", "BLACK HOURGLASS", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x029D8), "open", "lvzigzag", "LEFT WIGGLY FENCE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x029D9), "close", "rvzigzag", "RIGHT WIGGLY FENCE", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x029DA), "open", "Lvzigzag", "LEFT DOUBLE WIGGLY FENCE", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x029DB), "close", "Rvzigzag", "RIGHT DOUBLE WIGGLY FENCE", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x029DC), "ord", "iinfin", "INCOMPLETE INFINITY", nil) addSymbol(U(0x029DD), "ord", "tieinfty", "TIE OVER INFINITY", nil) addSymbol(U(0x029DE), "ord", "nvinfty", "INFINITY NEGATED WITH VERTICAL BAR", nil) addSymbol(U(0x029DF), "rel", "dualmap", "DOUBLE-ENDED MULTIMAP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x029E0), "ord", "laplac", "SQUARE WITH CONTOURED OUTLINE", nil) addSymbol(U(0x029E1), "rel", "lrtriangleeq", "INCREASES AS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029E2), "bin", "shuffle", "SHUFFLE PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x029E3), "rel", "eparsl", "EQUALS SIGN AND SLANTED PARALLEL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029E4), "rel", "smeparsl", "EQUALS SIGN AND SLANTED PARALLEL WITH TILDE ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029E5), "rel", "eqvparsl", "IDENTICAL TO AND SLANTED PARALLEL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029E6), "rel", "gleichstark", "GLEICH STARK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x029E7), "ord", "thermod", "THERMODYNAMIC", nil) addSymbol(U(0x029E8), "ord", "downtriangleleftblack", "DOWN-POINTING TRIANGLE WITH LEFT HALF BLACK", nil) @@ -2923,854 +7332,2368 @@ addSymbol(U(0x029F1), "ord", "errbarblackdiamond", "ERROR-BARRED BLACK DIAMOND", addSymbol(U(0x029F2), "ord", "errbarcircle", "ERROR-BARRED WHITE CIRCLE", nil) addSymbol(U(0x029F3), "ord", "errbarblackcircle", "ERROR-BARRED BLACK CIRCLE", nil) addSymbol(U(0x029F4), "rel", "ruledelayed", "RULE-DELAYED", { - { form = "infix", lspace = 5, priority = 220, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 220, + rspace = 5, + }, }) addSymbol(U(0x029F5), "bin", "reversesolidus", "REVERSE SOLIDUS OPERATOR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x029F6), "bin", "dsol", "SOLIDUS WITH OVERBAR", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x029F7), "bin", "rsolbar", "REVERSE SOLIDUS WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x029F8), "op", "xsol", "BIG SOLIDUS", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x029F9), "op", "xbsol", "BIG REVERSE SOLIDUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x029FA), "bin", "doubleplus", "DOUBLE PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x029FB), "bin", "tripleplus", "TRIPLE PLUS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x029FC), "open", "lcurvyangle", "LEFT-POINTING CURVED ANGLE BRACKET", { - { fence = true, form = "prefix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "prefix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x029FD), "close", "rcurvyangle", "RIGHT-POINTING CURVED ANGLE BRACKET", { - { fence = true, form = "postfix", lspace = 0, priority = 120, rspace = 0, stretchy = true, symmetric = true }, + { + fence = true, + form = "postfix", + lspace = 0, + priority = 120, + rspace = 0, + stretchy = true, + symmetric = true, + }, }) addSymbol(U(0x029FE), "bin", "tplus", "TINY", nil) addSymbol(U(0x029FF), "bin", "tminus", "MINY", nil) addSymbol(U(0x02A00), "op", "bigodot", "N-ARY CIRCLED DOT OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A01), "op", "bigoplus", "N-ARY CIRCLED PLUS OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 460, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 460, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A02), "op", "bigotimes", "N-ARY CIRCLED TIMES OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A03), "op", "bigcupdot", "N-ARY UNION OPERATOR WITH DOT", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 500, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A04), "op", "biguplus", "N-ARY UNION OPERATOR WITH PLUS", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 500, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 500, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A05), "op", "bigsqcap", "N-ARY SQUARE INTERSECTION OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A06), "op", "bigsqcup", "N-ARY SQUARE UNION OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A07), "op", "conjquant", "TWO LOGICAL AND OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A08), "op", "disjquant", "TWO LOGICAL OR OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A09), "op", "bigtimes", "N-ARY TIMES OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A0A), "op", "modtwosum", "MODULO TWO SUM", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 440, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A0B), "ord", "sumint", "SUMMATION WITH INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 440, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 440, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A0C), "ord", "iiiint", "QUADRUPLE INTEGRAL OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A0D), "ord", "intbar", "FINITE PART INTEGRAL", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A0E), "ord", "intBar", "INTEGRAL WITH DOUBLE STROKE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A0F), "ord", "fint", "INTEGRAL AVERAGE WITH SLASH", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A10), "op", "cirfnint", "CIRCULATION FUNCTION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A11), "ord", "awint", "ANTICLOCKWISE INTEGRATION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A12), "ord", "rppolint", "LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A13), "ord", "scpolint", "LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A14), "ord", "npolint", "LINE INTEGRATION NOT INCLUDING THE POLE", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A15), "ord", "pointint", "INTEGRAL AROUND A POINT OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A16), "ord", "sqint", "QUATERNION INTEGRAL OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A17), "ord", "intlarhk", "INTEGRAL WITH LEFTWARDS ARROW WITH HOOK", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A18), "ord", "intx", "INTEGRAL WITH TIMES SIGN", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A19), "ord", "intcap", "INTEGRAL WITH INTERSECTION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A1A), "ord", "intcup", "INTEGRAL WITH UNION", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A1B), "ord", "upint", "INTEGRAL WITH OVERBAR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A1C), "ord", "lowint", "INTEGRAL WITH UNDERBAR", { - { form = "prefix", largeop = true, lspace = 3, priority = 480, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + priority = 480, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A1D), "op", "Join", "JOIN", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, + + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 440, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A1E), "op", "bigtriangleleft", "LARGE LEFT TRIANGLE OPERATOR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 440, rspace = 3, symmetric = true }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, + + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 440, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02A1F), "op", "zcmp", "Z NOTATION SCHEMA COMPOSITION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A20), "op", "zpipe", "Z NOTATION SCHEMA PIPING", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A21), "op", "zproject", "Z NOTATION SCHEMA PROJECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A22), "bin", "ringplus", "PLUS SIGN WITH SMALL CIRCLE ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A23), "bin", "plushat", "PLUS SIGN WITH CIRCUMFLEX ACCENT ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A24), "bin", "simplus", "PLUS SIGN WITH TILDE ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A25), "bin", "plusdot", "PLUS SIGN WITH DOT BELOW", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A26), "bin", "plussim", "PLUS SIGN WITH TILDE BELOW", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A27), "bin", "plussubtwo", "PLUS SIGN WITH SUBSCRIPT TWO", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A28), "bin", "plustrif", "PLUS SIGN WITH BLACK TRIANGLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A29), "bin", "commaminus", "MINUS SIGN WITH COMMA ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A2A), "bin", "minusdot", "MINUS SIGN WITH DOT BELOW", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A2B), "bin", "minusfdots", "MINUS SIGN WITH FALLING DOTS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A2C), "bin", "minusrdots", "MINUS SIGN WITH RISING DOTS", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A2D), "bin", "opluslhrim", "PLUS SIGN IN LEFT HALF CIRCLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A2E), "bin", "oplusrhrim", "PLUS SIGN IN RIGHT HALF CIRCLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A2F), "bin", "vectimes", "VECTOR OR CROSS PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A30), "bin", "dottimes", "MULTIPLICATION SIGN WITH DOT ABOVE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A31), "bin", "timesbar", "MULTIPLICATION SIGN WITH UNDERBAR", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A32), "bin", "btimes", "SEMIDIRECT PRODUCT WITH BOTTOM CLOSED", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A33), "bin", "smashtimes", "SMASH PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A34), "bin", "otimeslhrim", "MULTIPLICATION SIGN IN LEFT HALF CIRCLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A35), "bin", "otimesrhrim", "MULTIPLICATION SIGN IN RIGHT HALF CIRCLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A36), "bin", "otimeshat", "CIRCLED MULTIPLICATION SIGN WITH CIRCUMFLEX ACCENT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A37), "bin", "Otimes", "MULTIPLICATION SIGN IN DOUBLE CIRCLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A38), "bin", "odiv", "CIRCLED DIVISION SIGN", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x02A39), "bin", "triangleplus", "PLUS SIGN IN TRIANGLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A3A), "bin", "triangleminus", "MINUS SIGN IN TRIANGLE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A3B), "bin", "triangletimes", "MULTIPLICATION SIGN IN TRIANGLE", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A3C), "bin", "intprod", "INTERIOR PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A3D), "bin", "intprodr", "RIGHTHAND INTERIOR PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A3E), "bin", "fcmp", "Z NOTATION RELATIONAL COMPOSITION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A3F), "bin", "amalg", "AMALGAMATION OR COPRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A40), "bin", "capdot", "INTERSECTION WITH DOT", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A41), "bin", "uminus", "UNION WITH MINUS SIGN", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x02A42), "bin", "barcup", "UNION WITH OVERBAR", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x02A43), "bin", "barcap", "INTERSECTION WITH OVERBAR", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A44), "bin", "capwedge", "INTERSECTION WITH LOGICAL AND", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A45), "bin", "cupvee", "UNION WITH LOGICAL OR", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x02A46), "bin", "cupovercap", "UNION ABOVE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A47), "bin", "capovercup", "INTERSECTION ABOVE UNION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A48), "bin", "cupbarcap", "UNION ABOVE BAR ABOVE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A49), "bin", "capbarcup", "INTERSECTION ABOVE BAR ABOVE UNION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A4A), "bin", "twocups", "UNION BESIDE AND JOINED WITH UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x02A4B), "bin", "twocaps", "INTERSECTION BESIDE AND JOINED WITH INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A4C), "bin", "closedvarcup", "CLOSED UNION WITH SERIFS", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x02A4D), "bin", "closedvarcap", "CLOSED INTERSECTION WITH SERIFS", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A4E), "bin", "Sqcap", "DOUBLE SQUARE INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02A4F), "bin", "Sqcup", "DOUBLE SQUARE UNION", { - { form = "infix", lspace = 4, priority = 360, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 360, + rspace = 4, + }, }) addSymbol(U(0x02A50), "bin", "closedvarcupsmashprod", "CLOSED UNION WITH SERIFS AND SMASH PRODUCT", { - { form = "infix", lspace = 3, priority = 620, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 620, + rspace = 3, + }, }) addSymbol(U(0x02A51), "bin", "wedgeodot", "LOGICAL AND WITH DOT ABOVE", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x02A52), "bin", "veeodot", "LOGICAL OR WITH DOT ABOVE", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A53), "bin", "Wedge", "DOUBLE LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x02A54), "bin", "Vee", "DOUBLE LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A55), "bin", "wedgeonwedge", "TWO INTERSECTING LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x02A56), "bin", "veeonvee", "TWO INTERSECTING LOGICAL OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A57), "bin", "bigslopedvee", "SLOPING LARGE OR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A58), "bin", "bigslopedwedge", "SLOPING LARGE AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x02A59), "rel", "veeonwedge", "LOGICAL OR OVERLAPPING LOGICAL AND", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x02A5A), "bin", "wedgemidvert", "LOGICAL AND WITH MIDDLE STEM", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x02A5B), "bin", "veemidvert", "LOGICAL OR WITH MIDDLE STEM", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A5C), "bin", "midbarwedge", "LOGICAL AND WITH HORIZONTAL DASH", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x02A5D), "bin", "midbarvee", "LOGICAL OR WITH HORIZONTAL DASH", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A5E), "bin", "doublebarwedge", "LOGICAL AND WITH DOUBLE OVERBAR", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x02A5F), "bin", "wedgebar", "LOGICAL AND WITH UNDERBAR", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x02A60), "bin", "wedgedoublebar", "LOGICAL AND WITH DOUBLE UNDERBAR", { - { form = "infix", lspace = 4, priority = 600, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 600, + rspace = 4, + }, }) addSymbol(U(0x02A61), "bin", "varveebar", "SMALL VEE WITH UNDERBAR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A62), "bin", "doublebarvee", "LOGICAL OR WITH DOUBLE OVERBAR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A63), "bin", "veedoublebar", "LOGICAL OR WITH DOUBLE UNDERBAR", { - { form = "infix", lspace = 4, priority = 400, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 400, + rspace = 4, + }, }) addSymbol(U(0x02A64), "bin", "dsub", "Z NOTATION DOMAIN ANTIRESTRICTION", { - { form = "infix", lspace = 3, priority = 700, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 700, + rspace = 3, + }, }) addSymbol(U(0x02A65), "bin", "rsub", "Z NOTATION RANGE ANTIRESTRICTION", { - { form = "infix", lspace = 3, priority = 700, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 700, + rspace = 3, + }, }) addSymbol(U(0x02A66), "rel", "eqdot", "EQUALS SIGN WITH DOT BELOW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A67), "rel", "dotequiv", "IDENTICAL WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A68), "rel", "equivVert", "TRIPLE HORIZONTAL BAR WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A69), "rel", "equivVvert", "TRIPLE HORIZONTAL BAR WITH TRIPLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A6A), "rel", "dotsim", "TILDE OPERATOR WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A6B), "rel", "simrdots", "TILDE OPERATOR WITH RISING DOTS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A6C), "rel", "simminussim", "SIMILAR MINUS SIMILAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A6D), "rel", "congdot", "CONGRUENT WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A6E), "rel", "asteq", "EQUALS WITH ASTERISK", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A6F), "rel", "hatapprox", "ALMOST EQUAL TO WITH CIRCUMFLEX ACCENT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A70), "rel", "approxeqq", "APPROXIMATELY EQUAL OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A71), "bin", "eqqplus", "EQUALS SIGN ABOVE PLUS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A72), "bin", "pluseqq", "PLUS SIGN ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A73), "rel", "eqqsim", "EQUALS SIGN ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A74), "rel", "Coloneq", "DOUBLE COLON EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A75), "rel", "eqeq", "TWO CONSECUTIVE EQUALS SIGNS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A76), "rel", "eqeqeq", "THREE CONSECUTIVE EQUALS SIGNS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A77), "rel", "ddotseq", "EQUALS SIGN WITH TWO DOTS ABOVE AND TWO DOTS BELOW", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A78), "rel", "equivDD", "EQUIVALENT WITH FOUR DOTS ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A79), "rel", "ltcir", "LESS-THAN WITH CIRCLE INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A7A), "rel", "gtcir", "GREATER-THAN WITH CIRCLE INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A7B), "rel", "ltquest", "LESS-THAN WITH QUESTION MARK ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A7C), "rel", "gtquest", "GREATER-THAN WITH QUESTION MARK ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A7D), "rel", "leqslant", "LESS-THAN OR SLANTED EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A7E), "rel", "geqslant", "GREATER-THAN OR SLANTED EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A7F), "rel", "lesdot", "LESS-THAN OR SLANTED EQUAL TO WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A80), "rel", "gesdot", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A81), "rel", "lesdoto", "LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A82), "rel", "gesdoto", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A83), "rel", "lesdotor", "LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE RIGHT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A84), "rel", "gesdotol", "GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE LEFT", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A85), "rel", "lessapprox", "LESS-THAN OR APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A86), "rel", "gtrapprox", "GREATER-THAN OR APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A87), "rel", "lneq", "LESS-THAN AND SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A88), "rel", "gneq", "GREATER-THAN AND SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A89), "rel", "lnapprox", "LESS-THAN AND NOT APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A8A), "rel", "gnapprox", "GREATER-THAN AND NOT APPROXIMATE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A8B), "rel", "lesseqqgtr", "LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A8C), "rel", "gtreqqless", "GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A8D), "rel", "lsime", "LESS-THAN ABOVE SIMILAR OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A8E), "rel", "gsime", "GREATER-THAN ABOVE SIMILAR OR EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A8F), "rel", "lsimg", "LESS-THAN ABOVE SIMILAR ABOVE GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A90), "rel", "gsiml", "GREATER-THAN ABOVE SIMILAR ABOVE LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A91), "rel", "lgE", "LESS-THAN ABOVE GREATER-THAN ABOVE DOUBLE-LINE EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A92), "rel", "glE", "GREATER-THAN ABOVE LESS-THAN ABOVE DOUBLE-LINE EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A93), "rel", "lesges", "LESS-THAN ABOVE SLANTED EQUAL ABOVE GREATER-THAN ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A94), "rel", "gesles", "GREATER-THAN ABOVE SLANTED EQUAL ABOVE LESS-THAN ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A95), "rel", "eqslantless", "SLANTED EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A96), "rel", "eqslantgtr", "SLANTED EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A97), "rel", "elsdot", "SLANTED EQUAL TO OR LESS-THAN WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A98), "rel", "egsdot", "SLANTED EQUAL TO OR GREATER-THAN WITH DOT INSIDE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A99), "rel", "eqqless", "DOUBLE-LINE EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A9A), "rel", "eqqgtr", "DOUBLE-LINE EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A9B), "rel", "eqqslantless", "DOUBLE-LINE SLANTED EQUAL TO OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A9C), "rel", "eqqslantgtr", "DOUBLE-LINE SLANTED EQUAL TO OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A9D), "rel", "simless", "SIMILAR OR LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A9E), "rel", "simgtr", "SIMILAR OR GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02A9F), "rel", "simlE", "SIMILAR ABOVE LESS-THAN ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AA0), "rel", "simgE", "SIMILAR ABOVE GREATER-THAN ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AA1), "rel", "Lt", "DOUBLE NESTED LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AA2), "rel", "Gt", "DOUBLE NESTED GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AA3), "rel", "partialmeetcontraction", "DOUBLE NESTED LESS-THAN WITH UNDERBAR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AA4), "rel", "glj", "GREATER-THAN OVERLAPPING LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AA5), "rel", "gla", "GREATER-THAN BESIDE LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AA6), "rel", "ltcc", "LESS-THAN CLOSED BY CURVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AA7), "rel", "gtcc", "GREATER-THAN CLOSED BY CURVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AA8), "rel", "lescc", "LESS-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AA9), "rel", "gescc", "GREATER-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AAA), "rel", "smt", "SMALLER THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AAB), "rel", "lat", "LARGER THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AAC), "rel", "smte", "SMALLER THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AAD), "rel", "late", "LARGER THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AAE), "rel", "bumpeqq", "EQUALS SIGN WITH BUMPY ABOVE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AAF), "rel", "preceq", "PRECEDES ABOVE SINGLE-LINE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AB0), "rel", "succeq", "SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AB1), "rel", "precneq", "PRECEDES ABOVE SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AB2), "rel", "succneq", "SUCCEEDS ABOVE SINGLE-LINE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AB3), "rel", "preceqq", "PRECEDES ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AB4), "rel", "succeqq", "SUCCEEDS ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AB5), "rel", "precneqq", "PRECEDES ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AB6), "rel", "succneqq", "SUCCEEDS ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AB7), "rel", "precapprox", "PRECEDES ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AB8), "rel", "succapprox", "SUCCEEDS ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AB9), "rel", "precnapprox", "PRECEDES ABOVE NOT ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02ABA), "rel", "succnapprox", "SUCCEEDS ABOVE NOT ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02ABB), "rel", "Prec", "DOUBLE PRECEDES", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02ABC), "rel", "Succ", "DOUBLE SUCCEEDS", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02ABD), "rel", "subsetdot", "SUBSET WITH DOT", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02ABE), "rel", "supsetdot", "SUPERSET WITH DOT", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02ABF), "rel", "subsetplus", "SUBSET WITH PLUS SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AC0), "rel", "supsetplus", "SUPERSET WITH PLUS SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AC1), "rel", "submult", "SUBSET WITH MULTIPLICATION SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AC2), "rel", "supmult", "SUPERSET WITH MULTIPLICATION SIGN BELOW", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AC3), "rel", "subedot", "SUBSET OF OR EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AC4), "rel", "supedot", "SUPERSET OF OR EQUAL TO WITH DOT ABOVE", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AC5), "rel", "subseteqq", "SUBSET OF ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AC6), "rel", "supseteqq", "SUPERSET OF ABOVE EQUALS SIGN", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AC7), "rel", "subsim", "SUBSET OF ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AC8), "rel", "supsim", "SUPERSET OF ABOVE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AC9), "rel", "subsetapprox", "SUBSET OF ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02ACA), "rel", "supsetapprox", "SUPERSET OF ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02ACB), "rel", "subsetneqq", "SUBSET OF ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02ACC), "rel", "supsetneqq", "SUPERSET OF ABOVE NOT EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02ACD), "rel", "lsqhook", "SQUARE LEFT OPEN BOX OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02ACE), "rel", "rsqhook", "SQUARE RIGHT OPEN BOX OPERATOR", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02ACF), "rel", "csub", "CLOSED SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AD0), "rel", "csup", "CLOSED SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AD1), "rel", "csube", "CLOSED SUBSET OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AD2), "rel", "csupe", "CLOSED SUPERSET OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AD3), "rel", "subsup", "SUBSET ABOVE SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AD4), "rel", "supsub", "SUPERSET ABOVE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AD5), "rel", "subsub", "SUBSET ABOVE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AD6), "rel", "supsup", "SUPERSET ABOVE SUPERSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AD7), "rel", "suphsub", "SUPERSET BESIDE SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AD8), "rel", "supdsub", "SUPERSET BESIDE AND JOINED BY DASH WITH SUBSET", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02AD9), "rel", "forkv", "ELEMENT OF OPENING DOWNWARDS", { - { form = "infix", lspace = 5, priority = 300, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 300, + rspace = 5, + }, }) addSymbol(U(0x02ADA), "rel", "topfork", "PITCHFORK WITH TEE TOP", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02ADB), "rel", "mlcp", "TRANSVERSAL INTERSECTION", { - { form = "infix", lspace = 4, priority = 380, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 380, + rspace = 4, + }, }) addSymbol(U(0x02ADC), "rel", "forks", "FORKING", { - { form = "infix", lspace = 3, priority = 740, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 740, + rspace = 3, + }, }) addSymbol(U(0x02ADD), "rel", "forksnot", "NONFORKING", { - { form = "infix", lspace = 3, priority = 740, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 740, + rspace = 3, + }, }) addSymbol(U(0x02ADE), "rel", "shortlefttack", "SHORT LEFT TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02ADF), "rel", "shortdowntack", "SHORT DOWN TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AE0), "rel", "shortuptack", "SHORT UP TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AE1), "ord", "perps", "PERPENDICULAR WITH S", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AE2), "rel", "vDdash", "VERTICAL BAR TRIPLE RIGHT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AE3), "rel", "dashV", "DOUBLE VERTICAL BAR LEFT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AE4), "rel", "Dashv", "VERTICAL BAR DOUBLE LEFT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AE5), "rel", "DashV", "DOUBLE VERTICAL BAR DOUBLE LEFT TURNSTILE", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AE6), "rel", "varVdash", "LONG DASH FROM LEFT MEMBER OF DOUBLE VERTICAL", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AE7), "rel", "Barv", "SHORT DOWN TACK WITH OVERBAR", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AE8), "rel", "vBar", "SHORT UP TACK WITH UNDERBAR", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AE9), "rel", "vBarv", "SHORT UP TACK ABOVE SHORT DOWN TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AEA), "rel", "barV", "DOUBLE DOWN TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AEB), "rel", "Vbar", "DOUBLE UP TACK", { - { form = "infix", lspace = 5, priority = 260, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 260, + rspace = 5, + }, }) addSymbol(U(0x02AEC), "rel", "Not", "DOUBLE STROKE NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 280, + rspace = 0, + }, }) addSymbol(U(0x02AED), "rel", "bNot", "REVERSED DOUBLE STROKE NOT SIGN", { - { form = "prefix", lspace = 0, priority = 280, rspace = 0 }, + { + form = "prefix", + lspace = 0, + priority = 280, + rspace = 0, + }, }) addSymbol(U(0x02AEE), "rel", "revnmid", "DOES NOT DIVIDE WITH REVERSED NEGATION SLASH", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AEF), "rel", "cirmid", "VERTICAL LINE WITH CIRCLE ABOVE", nil) addSymbol(U(0x02AF0), "rel", "midcir", "VERTICAL LINE WITH CIRCLE BELOW", nil) addSymbol(U(0x02AF1), "ord", "topcir", "DOWN TACK WITH CIRCLE BELOW", nil) addSymbol(U(0x02AF2), "rel", "nhpar", "PARALLEL WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AF3), "rel", "parsim", "PARALLEL WITH TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AF4), "bin", "interleave", "TRIPLE VERTICAL BAR BINARY RELATION", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AF5), "bin", "nhVvert", "TRIPLE VERTICAL BAR WITH HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AF6), "bin", "threedotcolon", "TRIPLE COLON OPERATOR", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x02AF7), "rel", "lllnest", "TRIPLE NESTED LESS-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AF8), "rel", "gggnest", "TRIPLE NESTED GREATER-THAN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AF9), "rel", "leqqslant", "DOUBLE-LINE SLANTED LESS-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AFA), "rel", "geqqslant", "DOUBLE-LINE SLANTED GREATER-THAN OR EQUAL TO", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x02AFB), "bin", "trslash", "TRIPLE SOLIDUS BINARY RELATION", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x02AFC), "op", "biginterleave", "LARGE TRIPLE VERTICAL BAR OPERATOR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02AFD), "bin", "sslash", "DOUBLE SOLIDUS OPERATOR", { - { form = "infix", lspace = 4, priority = 680, rspace = 4 }, + { + form = "infix", + lspace = 4, + priority = 680, + rspace = 4, + }, }) addSymbol(U(0x02AFE), "bin", "talloblong", "WHITE VERTICAL BAR", { - { form = "infix", lspace = 3, priority = 680, rspace = 3 }, + { + form = "infix", + lspace = 3, + priority = 680, + rspace = 3, + }, }) addSymbol(U(0x02AFF), "op", "bigtalloblong", "N-ARY WHITE VERTICAL BAR", { - { form = "prefix", largeop = true, lspace = 3, movablelimits = true, priority = 520, rspace = 3, symmetric = true }, + { + form = "prefix", + largeop = true, + lspace = 3, + movablelimits = true, + priority = 520, + rspace = 3, + symmetric = true, + }, }) addSymbol(U(0x02B00), "rel", nil, "NORTH EAST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B01), "rel", nil, "NORTH WEST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B02), "rel", nil, "SOUTH EAST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B03), "rel", nil, "SOUTH WEST WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B04), "rel", nil, "LEFT RIGHT WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B05), "rel", nil, "LEFTWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B06), "rel", nil, "UPWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B07), "rel", nil, "DOWNWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B08), "rel", nil, "NORTH EAST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B09), "rel", nil, "NORTH WEST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B0A), "rel", nil, "SOUTH EAST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B0B), "rel", nil, "SOUTH WEST BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B0C), "rel", nil, "LEFT RIGHT BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B0D), "rel", nil, "UP DOWN BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B0E), "rel", nil, "RIGHTWARDS ARROW WITH TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B0F), "rel", nil, "RIGHTWARDS ARROW WITH TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B10), "rel", nil, "LEFTWARDS ARROW WITH TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B11), "rel", nil, "LEFTWARDS ARROW WITH TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B12), "ord", "squaretopblack", "SQUARE WITH TOP HALF BLACK", nil) addSymbol(U(0x02B13), "ord", "squarebotblack", "SQUARE WITH BOTTOM HALF BLACK", nil) @@ -3803,43 +9726,121 @@ addSymbol(U(0x02B2D), "ord", "whthorzoval", "WHITE HORIZONTAL ELLIPSE", nil) addSymbol(U(0x02B2E), "ord", "blkvertoval", "BLACK VERTICAL ELLIPSE", nil) addSymbol(U(0x02B2F), "ord", "whtvertoval", "WHITE VERTICAL ELLIPSE", nil) addSymbol(U(0x02B30), "rel", "circleonleftarrow", "LEFT ARROW WITH SMALL CIRCLE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B31), "rel", "leftthreearrows", "THREE LEFTWARDS ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B32), "rel", "leftarrowonoplus", "LEFT ARROW WITH CIRCLED PLUS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B33), "rel", "longleftsquigarrow", "LONG LEFTWARDS SQUIGGLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B34), "rel", "nvtwoheadleftarrow", "LEFTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B35), "rel", "nVtwoheadleftarrow", "LEFTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B36), "rel", "twoheadmapsfrom", "LEFTWARDS TWO-HEADED ARROW FROM BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B37), "rel", "twoheadleftdbkarrow", "LEFTWARDS TWO-HEADED TRIPLE DASH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B38), "rel", "leftdotarrow", "LEFTWARDS ARROW WITH DOTTED STEM", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B39), "rel", "nvleftarrowtail", "LEFTWARDS ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B3A), "rel", "nVleftarrowtail", "LEFTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B3B), "rel", "twoheadleftarrowtail", "LEFTWARDS TWO-HEADED ARROW WITH TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B3C), "rel", "nvtwoheadleftarrowtail", "LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol( U(0x02B3D), @@ -3847,62 +9848,172 @@ addSymbol( "nVtwoheadleftarrowtail", "LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, } ) addSymbol(U(0x02B3E), "rel", "leftarrowx", "LEFTWARDS ARROW THROUGH X", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B3F), "rel", "leftcurvedarrow", "WAVE ARROW POINTING DIRECTLY LEFT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B40), "rel", "equalleftarrow", "EQUALS SIGN ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B41), "rel", "bsimilarleftarrow", "REVERSE TILDE OPERATOR ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B42), "rel", "leftarrowbackapprox", "LEFTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B43), "rel", "rightarrowgtr", "RIGHTWARDS ARROW THROUGH GREATER-THAN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B44), "rel", "rightarrowsupset", "RIGHTWARDS ARROW THROUGH SUPERSET", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B45), "ord", "LLeftarrow", "LEFTWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B46), "ord", "RRightarrow", "RIGHTWARDS QUADRUPLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B47), "rel", "bsimilarrightarrow", "REVERSE TILDE OPERATOR ABOVE RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B48), "rel", "rightarrowbackapprox", "RIGHTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B49), "rel", "similarleftarrow", "TILDE OPERATOR ABOVE LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B4A), "rel", "leftarrowapprox", "LEFTWARDS ARROW ABOVE ALMOST EQUAL TO", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B4B), "rel", "leftarrowbsimilar", "LEFTWARDS ARROW ABOVE REVERSE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B4C), "rel", "rightarrowbsimilar", "RIGHTWARDS ARROW ABOVE REVERSE TILDE OPERATOR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B4D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ZIGZAG ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B4E), "ord", nil, "SHORT SLANTED NORTH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B4F), "ord", nil, "SHORT BACKSLANTED SOUTH ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B50), "ord", "medwhitestar", "WHITE MEDIUM STAR", nil) addSymbol(U(0x02B51), "ord", "medblackstar", "BLACK SMALL STAR", nil) @@ -3910,238 +10021,672 @@ addSymbol(U(0x02B52), "ord", "smwhitestar", "WHITE SMALL STAR", nil) addSymbol(U(0x02B53), "ord", "rightpentagonblack", "BLACK RIGHT-POINTING PENTAGON", nil) addSymbol(U(0x02B54), "ord", "rightpentagon", "WHITE RIGHT-POINTING PENTAGON", nil) addSymbol(U(0x02B5A), "ord", nil, "SLANTED NORTH ARROW WITH HOOKED HEAD", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B5B), "ord", nil, "BACKSLANTED SOUTH ARROW WITH HOOKED TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B5C), "ord", nil, "SLANTED NORTH ARROW WITH HORIZONTAL TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B5D), "ord", nil, "BACKSLANTED SOUTH ARROW WITH HORIZONTAL TAIL", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B5E), "ord", nil, "BENT ARROW POINTING DOWNWARDS THEN NORTH EAST", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B5F), "ord", nil, "SHORT BENT ARROW POINTING DOWNWARDS THEN NORTH EAST", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B60), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B61), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B62), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B63), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B64), "ord", nil, "LEFT RIGHT TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B65), "ord", nil, "UP DOWN TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B66), "ord", nil, "NORTH WEST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B67), "ord", nil, "NORTH EAST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B68), "ord", nil, "SOUTH EAST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B69), "ord", nil, "SOUTH WEST TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B6A), "ord", nil, "LEFTWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B6B), "ord", nil, "UPWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B6C), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B6D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED DASHED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B6E), "ord", nil, "CLOCKWISE TRIANGLE-HEADED OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B6F), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED OPEN CIRCLE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B70), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B71), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B72), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B73), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B76), "ord", nil, "NORTH WEST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B77), "ord", nil, "NORTH EAST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B78), "ord", nil, "SOUTH EAST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B79), "ord", nil, "SOUTH WEST TRIANGLE-HEADED ARROW TO BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B7A), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B7B), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B7C), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B7D), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B80), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW OVER RIGHTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B81), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW LEFTWARDS OF DOWNWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B82), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW OVER LEFTWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B83), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW LEFTWARDS OF UPWARDS TRIANGLE-HEADED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B84), "ord", nil, "LEFTWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B85), "ord", nil, "UPWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B86), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B87), "ord", nil, "DOWNWARDS TRIANGLE-HEADED PAIRED ARROWS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02B88), "ord", nil, "LEFTWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B89), "ord", nil, "UPWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B8A), "ord", nil, "RIGHTWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B8B), "ord", nil, "DOWNWARDS BLACK CIRCLED WHITE ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B8C), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED RIGHT U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B8D), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED BOTTOM U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B8E), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED LEFT U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B8F), "ord", nil, "ANTICLOCKWISE TRIANGLE-HEADED TOP U-SHAPED ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B94), "ord", nil, "FOUR CORNER ARROWS CIRCLING ANTICLOCKWISE", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02B95), "ord", nil, "RIGHTWARDS BLACK ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BA0), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH LONG TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BA1), "ord", nil, "DOWNWARDS TRIANGLE-HEADED ARROW WITH LONG TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BA2), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH LONG TIP LEFTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BA3), "ord", nil, "UPWARDS TRIANGLE-HEADED ARROW WITH LONG TIP RIGHTWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BA4), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BA5), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP UPWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BA6), "ord", nil, "LEFTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BA7), "ord", nil, "RIGHTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP DOWNWARDS", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BA8), "ord", nil, "BLACK CURVED DOWNWARDS AND LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BA9), "ord", nil, "BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BAA), "ord", nil, "BLACK CURVED UPWARDS AND LEFTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BAB), "ord", nil, "BLACK CURVED UPWARDS AND RIGHTWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BAC), "ord", nil, "BLACK CURVED LEFTWARDS AND UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BAD), "ord", nil, "BLACK CURVED RIGHTWARDS AND UPWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BAE), "ord", nil, "BLACK CURVED LEFTWARDS AND DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BAF), "ord", nil, "BLACK CURVED RIGHTWARDS AND DOWNWARDS ARROW", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BB0), "ord", nil, "RIBBON ARROW DOWN LEFT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02BB1), "ord", nil, "RIBBON ARROW DOWN RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02BB2), "ord", nil, "RIBBON ARROW UP LEFT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02BB3), "ord", nil, "RIBBON ARROW UP RIGHT", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02BB4), "ord", nil, "RIBBON ARROW LEFT UP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02BB5), "ord", nil, "RIBBON ARROW RIGHT UP", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02BB6), "ord", nil, "RIBBON ARROW LEFT DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02BB7), "ord", nil, "RIBBON ARROW RIGHT DOWN", { - { form = "infix", lspace = 5, priority = 340, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + }, }) addSymbol(U(0x02BB8), "ord", nil, "UPWARDS WHITE ARROW FROM BAR WITH HORIZONTAL BAR", { - { form = "infix", lspace = 5, priority = 340, rspace = 5, stretchy = true }, + { + form = "infix", + lspace = 5, + priority = 340, + rspace = 5, + stretchy = true, + }, }) addSymbol(U(0x02BD1), "ord", nil, "UNCERTAINTY SIGN", { - { form = "infix", lspace = 5, priority = 320, rspace = 5 }, + { + form = "infix", + lspace = 5, + priority = 320, + rspace = 5, + }, }) addSymbol(U(0x03012), "ord", "postalmark", "POSTAL MARK", nil) addSymbol(U(0x03030), "ord", "hzigzag", "WAVY DASH", nil) @@ -5142,10 +11687,22 @@ addSymbol(U(0x1D7FD), "ord", "mttseven", "MATHEMATICAL MONOSPACE DIGIT SEVEN", n addSymbol(U(0x1D7FE), "ord", "mtteight", "MATHEMATICAL MONOSPACE DIGIT EIGHT", nil) addSymbol(U(0x1D7FF), "ord", "mttnine", "MATHEMATICAL MONOSPACE DIGIT NINE", nil) addSymbol(U(0x1EEF0), "ord", "arabicmaj", "ARABIC MATHEMATICAL OPERATOR MEEM WITH HAH WITH TATWEEL", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) addSymbol(U(0x1EEF1), "ord", "arabichad", "ARABIC MATHEMATICAL OPERATOR HAH WITH DAL", { - { form = "postfix", lspace = 0, priority = 920, rspace = 0, stretchy = true }, + { + form = "postfix", + lspace = 0, + priority = 920, + rspace = 0, + stretchy = true, + }, }) return {