From 89bfa73cdacfd7f72fd7acb59f570662054a243b Mon Sep 17 00:00:00 2001 From: Nathan Carter Date: Mon, 9 Jan 2012 17:10:23 -0500 Subject: [PATCH 001/115] Several changes from patches online --- flask_version/base.py | 25 ++-- sagenb/data/sage/html/notebook/base.html | 16 ++- .../sage/html/notebook/print_worksheet.html | 8 +- .../sage/html/notebook/specific_revision.html | 6 +- sagenb/data/sage/js/mathjax.js | 15 +++ sagenb/data/sage/js/notebook_lib.js | 97 ++++++++------ sagenb/misc/misc.py | 7 +- sagenb/misc/sphinxify.py | 2 +- sagenb/notebook/cell.py | 15 ++- sagenb/notebook/mathjax.py | 122 ++++++++++++++++++ sagenb/notebook/tutorial.py | 2 +- 11 files changed, 244 insertions(+), 71 deletions(-) create mode 100644 sagenb/data/sage/js/mathjax.js create mode 100644 sagenb/notebook/mathjax.py diff --git a/flask_version/base.py b/flask_version/base.py index 3b9253ad9..fb9d9e3fa 100755 --- a/flask_version/base.py +++ b/flask_version/base.py @@ -86,8 +86,12 @@ def message(self, msg, cont='/', username=None, **kwds): #XXX: This should probably be made able to put in a "central" place #with all of the jsmath stuff rather than just a global variable here. -from sagenb.misc.misc import is_package_installed -jsmath_image_fonts = is_package_installed("jsmath-image-fonts") +# Image fonts are not needed with MathJax +# they should be in the same spkg as MathJax routines +# Commented out as part of conversion to Flask notebook +# +# from sagenb.misc.misc import is_package_installed +# jsmath_image_fonts = is_package_installed("jsmath-image-fonts") base = Module('flask_version.base') @@ -155,15 +159,14 @@ def localization_js(): return response _jsmath_js_cache = None -@base.route('/javascript/dynamic/jsmath.js') -def jsmath_js(): - global _jsmath_js_cache - if _jsmath_js_cache is None: - from sagenb.misc.misc import jsmath_macros - data = render_template('js/jsmath.js', jsmath_macros=jsmath_macros, - jsmath_image_fonts=jsmath_image_fonts) - _jsmath_js_cache = (data, sha1(repr(data)).hexdigest()) - data,datahash = _jsmath_js_cache +@base.route('/javascript/dynamic/mathjax.js') +def mathjax_js(): + global _mathjax_js_cache + if _mathjax_js_cache is None: + from sagenb.misc.misc import mathjax_macros + data = render_template('js/mathjax.js', theme_mathjax_macros=mathjax_macros) + _mathjax_js_cache = (data, sha1(repr(data)).hexdigest()) + data,datahash = _mathjax_js_cache if request.environ.get('HTTP_IF_NONE_MATCH', None) == datahash: response = make_response('',304) diff --git a/sagenb/data/sage/html/notebook/base.html b/sagenb/data/sage/html/notebook/base.html index 08d74970d..65de021b9 100644 --- a/sagenb/data/sage/html/notebook/base.html +++ b/sagenb/data/sage/html/notebook/base.html @@ -35,8 +35,20 @@ {% endif %} {% if JSMATH %} - - + + + + + {% endif %} diff --git a/sagenb/data/sage/html/notebook/print_worksheet.html b/sagenb/data/sage/html/notebook/print_worksheet.html index ff70d8e58..67014e80e 100644 --- a/sagenb/data/sage/html/notebook/print_worksheet.html +++ b/sagenb/data/sage/html/notebook/print_worksheet.html @@ -5,9 +5,9 @@ {% block body %}

{{ worksheet.name() }}

{{ worksheet.html(do_print=true) }} - + {% endblock %} - \ No newline at end of file + diff --git a/sagenb/data/sage/html/notebook/specific_revision.html b/sagenb/data/sage/html/notebook/specific_revision.html index 06611cbe0..29ce20daf 100644 --- a/sagenb/data/sage/html/notebook/specific_revision.html +++ b/sagenb/data/sage/html/notebook/specific_revision.html @@ -30,9 +30,9 @@ {{ worksheet.html(do_print=true, publish=true, username=username) }} {{ actions() }} ---> {% endblock %} diff --git a/sagenb/data/sage/js/mathjax.js b/sagenb/data/sage/js/mathjax.js new file mode 100644 index 000000000..9d6ae48e2 --- /dev/null +++ b/sagenb/data/sage/js/mathjax.js @@ -0,0 +1,15 @@ +MathJax.Hub.Config({ + tex2jax: { + inlineMath: [['$','$'],['\\(','\\)']], + processEscapes: true + }, + extensions: ["jsMath2jax.js"], + TeX: { + Macros: { + {{ theme_mathjax_macros }} + } + } +}); + +// Remove http when standalone mathJax +MathJax.Ajax.loadComplete("http://localhost:8000/javascript/sage/mathjax.js"); diff --git a/sagenb/data/sage/js/notebook_lib.js b/sagenb/data/sage/js/notebook_lib.js index 23590a4b2..3296f8a5f 100644 --- a/sagenb/data/sage/js/notebook_lib.js +++ b/sagenb/data/sage/js/notebook_lib.js @@ -269,9 +269,6 @@ function initialize_the_notebook() { // Get the keyboard codes for our browser/os combination. get_keyboard(); - // Attempt to render any jsmath in this page. - jsmath_init(); - // Parse the cell IDs. cell_id_list = $.map(cell_id_list, function (id) { // Reset each cell's introspection variables. @@ -406,16 +403,6 @@ function get_keyboard() { } -function jsmath_init() { - /* - Process all the jsmath in this page. - */ - try { - jsMath.Process(); - } catch (e) {} -} - - function get_element(id) { /* Return the DOM element with the given id. If no element has the @@ -1250,7 +1237,7 @@ function update_introspection_text(id, text) { introspect_div.html(text); if (contains_jsmath(text)) { try { - jsMath.ProcessBeforeShowing(introspect_div.get(0)); + MathJax.Hub.Queue(["Typeset",MathJax.Hub,introspect_div.get(0)]); } catch (e) { introspect_div.html(jsmath_font_msg + introspect_div.html()); } @@ -2142,7 +2129,7 @@ function evaluate_text_cell_callback(status, response) { if (contains_jsmath(X.cell_html)) { try { - jsMath.ProcessBeforeShowing(text_cell); + MathJax.Hub.Queue(["Typeset",MathJax.Hub,text_cell]); } catch (e) { text_cell.innerHTML = jsmath_font_msg + text_cell.innerHTML; } @@ -3565,8 +3552,11 @@ function contains_jsmath(text) { */ // TODO: Use a RegExp. text = text.toLowerCase(); + // Mathjax - match math/tex and math/tex; mode=display return (text.indexOf('class="math"') !== -1 || - text.indexOf("class='math'") !== -1); + text.indexOf("class='math'") !== -1 || + text.indexOf('type="math/tex') !== -1 || + text.indexOf("type='math/tex") !== -1); } @@ -3629,12 +3619,11 @@ function set_output_text(id, status, output_text, output_text_wrapped, cell_interact = get_element('cell-interact-' + id); cell_interact.innerHTML = new_interact_output; if (contains_jsmath(new_interact_output)) { - jsMath.ProcessBeforeShowing(cell_interact); + MathJax.Hub.Queue(["Typeset",MathJax.Hub,cell_interact]); } return false; } - // Fill in output text got so far. cell_output = get_element('cell_output_' + id); if (!cell_output) { @@ -3652,10 +3641,10 @@ function set_output_text(id, status, output_text, output_text_wrapped, cell_output_nowrap.innerHTML = output_text; cell_output_html.innerHTML = output_html; - // Call jsMath on the final output. - if (status === 'd' && contains_jsmath(output_text)) { + // Call MathJax on the final output. + if (status === 'd' && (contains_jsmath(output_text)||contains_jsmath(output_text_wrapped))) { try { - jsMath.ProcessBeforeShowing(cell_output); + MathJax.Hub.Queue(["Typeset",MathJax.Hub,cell_output]); } catch (e) { cell_output.innerHTML = jsmath_font_msg + cell_output.innerHTML; cell_output_nowrap.innerHTML = jsmath_font_msg + @@ -3679,7 +3668,7 @@ function set_output_text(id, status, output_text, output_text_wrapped, // function (i.e., interact.recompute) is actually called! if (contains_jsmath(output_text_wrapped)) { try { - jsMath.ProcessBeforeShowing(cell_output); + MathJax.Hub.Queue(["Typeset",MathJax.Hub,cell_output]); } catch (e2) { // Do nothing. } @@ -3744,32 +3733,44 @@ function eval_script_tags(text) { OUTPUT string with all script tags removed */ - var code, i, j, k, left_tag, right_tag, s, script; - left_tag = new RegExp(/<(\s)*script.*?>/i); + var i, j, k, left_tag, right_tag, s, script, new_text, script_end, left_match; + + left_tag = new RegExp(/<(\s)*script(.*)?>/i); right_tag = new RegExp(/<(\s*)\/(\s*)script(\s)*>/i); script = ''; + new_text=''; s = text; i = s.search(left_tag); while (i !== -1) { + left_match = s.match(left_tag); j = s.search(right_tag); - k = i + (s.match(left_tag)[0] + '').length; + k = i + (left_match[0] + '').length; + script_end=j + (s.match(right_tag)[0] + '').length; if (j === -1 || j < k) { break; } - code = s.slice(k, j); - try { - cell_writer = new CellWriter(); - eval(code); - } catch (e) { - alert(e); - } - s = s.slice(0, i) + cell_writer.buffer + - s.slice(j + (s.match(right_tag)[0] + '').length); + // MathJax uses the script tag with a type='math/tex(display|inline)' + // to encode characters (as a sort of CDATA thing). We *don't* want + // to execute these script tags since they need to appear inline. + if (!left_match[2] || left_match[2].indexOf('math/tex')===-1) { + code = s.slice(k, j); + try { + cell_writer = new CellWriter(); + eval(code); + } catch (e) { + alert(e); + } + new_text += s.slice(0, i) + cell_writer.buffer; + } else { + new_text += s.slice(0, script_end); + } + s = s.slice(script_end); i = s.search(left_tag); } - return s; + new_text+=s; + return new_text; } @@ -3783,27 +3784,39 @@ function separate_script_tags(text) { text -- string OUTPUT list of two strings: - [text w/o script tags, content of script tags] + [text w/o script tags (but includes math/tex script tags), content of script tags] */ - var i, j, k, left_tag, right_tag, s, script; + var i, j, k, left_tag, right_tag, s, script, new_text, script_end, left_match; - left_tag = new RegExp(/<(\s)*script.*?>/i); + left_tag = new RegExp(/<(\s)*script(.*)?>/i); right_tag = new RegExp(/<(\s*)\/(\s*)script(\s)*>/i); script = ''; + new_text=''; s = text; i = s.search(left_tag); while (i !== -1) { + left_match = s.match(left_tag); j = s.search(right_tag); - k = i + (s.match(left_tag)[0] + '').length; + k = i + (left_match[0] + '').length; + script_end=j + (s.match(right_tag)[0] + '').length; if (j === -1 || j < k) { break; } - script += s.slice(k, j); - s = s.slice(0, i) + s.slice(j + (s.match(right_tag)[0] + '').length); + // MathJax uses the script tag with a type='math/tex(display|inline)' + // to encode characters (as a sort of CDATA thing). We *don't* want + // to extract these script tags since they need to appear inline. + if (!left_match[2] || left_match[2].indexOf('math/tex') === -1) { + script += s.slice(k, j); + new_text += s.slice(0, i); + } else { + new_text += s.slice(0, script_end); + } + s = s.slice(script_end); i = s.search(left_tag); } - return [s, script]; + new_text+=s; + return [new_text, script]; } diff --git a/sagenb/misc/misc.py b/sagenb/misc/misc.py index 08e631edf..6bfcb6a20 100644 --- a/sagenb/misc/misc.py +++ b/sagenb/misc/misc.py @@ -183,10 +183,9 @@ def pad_zeros(s, size=3): # TODO: Get macros from server and user settings. try: import sage.all - from sage.misc.latex_macros import sage_jsmath_macros_easy + from sage.misc.latex_macros import sage_mathjax_macros except ImportError: -# sage_jsmath_macros = [] - sage_jsmath_macros_easy = [ + sage_mathjax_macros = [ "ZZ : '{\\\\Bold{Z}}'", "RR : '{\\\\Bold{R}}'", "CC : '{\\\\Bold{C}}'", @@ -208,7 +207,7 @@ def pad_zeros(s, size=3): sage_jsmath_macros_easy = [] raise finally: - jsmath_macros = ',\n'.join(sage_jsmath_macros_easy) + mathjax_macros = ',\n'.join(sage_mathjax_macros) try: from sage.misc.session import init as session_init diff --git a/sagenb/misc/sphinxify.py b/sagenb/misc/sphinxify.py index 6539c32be..baf06c45a 100644 --- a/sagenb/misc/sphinxify.py +++ b/sagenb/misc/sphinxify.py @@ -91,7 +91,7 @@ def sphinxify(docstring, format='html'): suffix = '.txt' output_name = base_name + suffix - # This is needed for jsMath to work. + # This is needed for MathJax to work. docstring = docstring.replace('\\\\', '\\') filed = open(rst_name, 'w') diff --git a/sagenb/notebook/cell.py b/sagenb/notebook/cell.py index cd88a194f..c6a9872f3 100644 --- a/sagenb/notebook/cell.py +++ b/sagenb/notebook/cell.py @@ -18,7 +18,7 @@ import shutil from cgi import escape -from jsmath import math_parse +from mathjax import math_parse from sagenb.misc.misc import (word_wrap, strip_string_literals, set_restrictive_permissions, unicode_str, encoded_str) @@ -541,8 +541,8 @@ def html(self, wrap=None, div_wrap=True, do_print=False, cell for printing - ``do_math_parse`` - a boolean (default: True); whether to - process the contents for JSMath (see - :func:`sagenb.notebook.jsmath.math_parse`) + process the contents for MathJax (see + :func:`sagenb.notebook.mathjax.math_parse`) - ``editing`` - a boolean (default: False); whether to open an editor for this cell @@ -1864,6 +1864,15 @@ def format_html(x): # version of the output. if ncols == 0: t = re_script.sub('', t) + # This is a temporary hack + #re_inline = re.compile('') + #re_display = re.compile('') + #t = re_inline.sub('\1', t) + #t = re_display.sub('
\1
', t) + #t = t.replace('', '\1') + #t = t.replace('', '
\1
') + ####t = t.replace('', '') return t def has_output(self): diff --git a/sagenb/notebook/mathjax.py b/sagenb/notebook/mathjax.py new file mode 100644 index 000000000..d63714437 --- /dev/null +++ b/sagenb/notebook/mathjax.py @@ -0,0 +1,122 @@ +# -*- coding: utf-8 -* +""" +jsMath support for the notebook + +Provides code to parse HTML, changing \$'s and \$\$'s to + tags to allow jsMath to process them. + +AUTHORS: + +- William Stein (?) -- initial revision + +- Tim Dumol (Oct 6, 2009) -- Added HTMLMathParser. Made `math_parser` skip + * Replace all $$ text $$'s by + + * Replace all \$'s by $'s. Note that in + the above two cases nothing is done if the $ + is preceeded by a backslash. + * Replace all \[ text \]'s by + + \end{verbatim} + + EXAMPLES: + sage: sage.misc.html.math_parse('This is $2+2$.') + 'This is .' + sage: sage.misc.html.math_parse('This is $$2+2$$.') + 'This is .' + sage: sage.misc.html.math_parse('This is \\[2+2\\].') + 'This is .' + sage: sage.misc.html.math_parse(r'This is \[2+2\].') + 'This is .' + + TESTS: + sage: sage.misc.html.math_parse(r'This \$\$is $2+2$.') + 'This $$is .' + """ + # first replace \\[ and \\] by
and
, respectively. + while True: + i = s.find('\\[') + if i == -1: + break + else: + s = s[:i] + '' + else: + s = s[:j] + '' + s[j+2:] + + # Below t always has the "parsed so far" version of s, and s is + # just the part of the original input s that hasn't been parsed. + t = '' + while True: + i = s.find('$') + if i == -1: + # No dollar signs -- definitely done. + return t + s + elif i > 0 and s[i-1] == '\\': + # A dollar sign with a backslash right before it, so + # we ignore it by sticking it in the parsed string t + # and skip to the next iteration. + t += s[:i-1] + '$' + s = s[i+1:] + continue + elif i+1 < len(s) and s[i+1] == '$': + # Found a math environment. Double dollar sign so display mode. + disp = '; mode=display' + else: + # Found math environment. Single dollar sign so default mode. + disp = '' + + # Now find the matching $ sign and form the html string. + + if len(disp) > 0: + j = s[i+2:].find('$$') + if j == -1: + j = len(s) + s += '$$' + else: + j += i + 2 + txt = s[i+2:j] + else: + j = s[i+2:].find('$') + if j == -1: + j = len(s) + s += '$' + else: + j += i + 2 + txt = s[i+1:j] + + t += s[:i] + ''%(disp, + ' '.join(txt.splitlines())) + s = s[j+1:] + if len(disp) > 0: + s = s[1:] + return t diff --git a/sagenb/notebook/tutorial.py b/sagenb/notebook/tutorial.py index 1bb3e0db9..dfbc00952 100644 --- a/sagenb/notebook/tutorial.py +++ b/sagenb/notebook/tutorial.py @@ -139,7 +139,7 @@ def f(n): "sage(...)" inside the input block. This is planned.) \subsubsection{Typesetting Mathematics} -SAGE \emph{includes} jsMath, which is an implementation of the TeX +SAGE \emph{includes} MathJax, which is an implementation of the TeX math layout engine in javascript. If you use the show or view commands, they display a given Sage object typeset using jsmath. Moreover, if you put \code{\%jsmath} at the beginning of an input From 9ef6ead5148c5994f50590481d654b8bcb8f0d4a Mon Sep 17 00:00:00 2001 From: Jason Grout Date: Wed, 11 Jan 2012 14:14:22 -0500 Subject: [PATCH 002/115] Remove jsmath --- sagenb/data/jsmath/COPYING.txt | 202 - sagenb/data/jsmath/blank.gif | Bin 43 -> 0 bytes sagenb/data/jsmath/easy/load.js | 164 - sagenb/data/jsmath/extensions/AMSmath.js | 293 - sagenb/data/jsmath/extensions/AMSsymbols.js | 290 - sagenb/data/jsmath/extensions/HTML.js | 122 - sagenb/data/jsmath/extensions/autobold.js | 51 - sagenb/data/jsmath/extensions/bbox.js | 113 - sagenb/data/jsmath/extensions/boldsymbol.js | 63 - sagenb/data/jsmath/extensions/double-click.js | 250 - sagenb/data/jsmath/extensions/eqn-number.js | 234 - sagenb/data/jsmath/extensions/fbox.js | 71 - sagenb/data/jsmath/extensions/font.js | 38 - sagenb/data/jsmath/extensions/leaders.js | 124 - sagenb/data/jsmath/extensions/mathchoice.js | 70 - sagenb/data/jsmath/extensions/mimeTeX.js | 36 - sagenb/data/jsmath/extensions/moreArrows.js | 68 - sagenb/data/jsmath/extensions/newcommand.js | 205 - .../jsmath/extensions/underset-overset.js | 53 - sagenb/data/jsmath/extensions/verb.js | 58 - .../jsmath/fonts/msbm10/alpha/100/char.data | 130 - .../jsmath/fonts/msbm10/alpha/100/char00.png | Bin 200 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char01.png | Bin 198 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char02.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char03.png | Bin 203 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char04.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char05.png | Bin 198 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char06.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char07.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char08.png | Bin 209 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char09.png | Bin 206 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char0A.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char0B.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char0C.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char0D.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char0E.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char0F.png | Bin 221 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char10.png | Bin 232 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char11.png | Bin 231 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char12.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char13.png | Bin 221 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char14.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char15.png | Bin 249 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char16.png | Bin 204 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char17.png | Bin 206 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char18.png | Bin 224 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char19.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char1A.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char1B.png | Bin 224 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char1C.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char1D.png | Bin 225 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char1E.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char1F.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char20.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char21.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char22.png | Bin 221 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char23.png | Bin 231 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char24.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char25.png | Bin 221 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char26.png | Bin 216 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char27.png | Bin 216 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char28.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char29.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char2A.png | Bin 235 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char2B.png | Bin 226 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char2C.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char2D.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char2E.png | Bin 135 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char2F.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char30.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char31.png | Bin 199 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char32.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char33.png | Bin 204 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char34.png | Bin 245 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char35.png | Bin 226 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char36.png | Bin 205 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char37.png | Bin 209 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char38.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char39.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char3A.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char3B.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char3C.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char3D.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char3E.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char3F.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char40.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char41.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char42.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char43.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char44.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char45.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char46.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char47.png | Bin 226 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char48.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char49.png | Bin 125 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char4A.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char4B.png | Bin 204 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char4C.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char4D.png | Bin 231 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char4E.png | Bin 210 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char4F.png | Bin 224 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char50.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char51.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char52.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char53.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char54.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char55.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char56.png | Bin 206 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char57.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char58.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char59.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char5A.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char5B.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char5C.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char5D.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char5E.png | Bin 200 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char60.png | Bin 127 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char61.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char66.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char67.png | Bin 212 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char68.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char69.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char6A.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char6B.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char6C.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char6D.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char6E.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char6F.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char70.png | Bin 100 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char71.png | Bin 109 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char72.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char73.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char74.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char75.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char76.png | Bin 215 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char77.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char78.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char79.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char7A.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char7B.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char7C.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char7D.png | Bin 182 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char7E.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/100/char7F.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char.data | 130 - .../jsmath/fonts/msbm10/alpha/120/char00.png | Bin 221 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char01.png | Bin 203 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char02.png | Bin 257 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char03.png | Bin 253 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char04.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char05.png | Bin 225 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char06.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char07.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char08.png | Bin 239 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char09.png | Bin 222 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char0A.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char0B.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char0C.png | Bin 226 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char0D.png | Bin 212 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char0E.png | Bin 249 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char0F.png | Bin 259 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char10.png | Bin 228 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char11.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char12.png | Bin 234 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char13.png | Bin 222 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char14.png | Bin 264 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char15.png | Bin 268 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char16.png | Bin 238 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char17.png | Bin 231 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char18.png | Bin 276 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char19.png | Bin 270 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char1A.png | Bin 276 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char1B.png | Bin 279 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char1C.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char1D.png | Bin 245 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char1E.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char1F.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char20.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char21.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char22.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char23.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char24.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char25.png | Bin 253 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char26.png | Bin 239 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char27.png | Bin 236 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char28.png | Bin 216 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char29.png | Bin 206 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char2A.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char2B.png | Bin 232 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char2C.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char2D.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char2E.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char2F.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char30.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char31.png | Bin 213 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char32.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char33.png | Bin 220 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char34.png | Bin 255 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char35.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char36.png | Bin 228 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char37.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char38.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char39.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char3A.png | Bin 228 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char3B.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char3C.png | Bin 239 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char3D.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char3E.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char3F.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char40.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char41.png | Bin 215 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char42.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char43.png | Bin 231 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char44.png | Bin 216 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char45.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char46.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char47.png | Bin 253 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char48.png | Bin 199 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char49.png | Bin 135 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char4A.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char4B.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char4C.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char4D.png | Bin 281 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char4E.png | Bin 232 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char4F.png | Bin 262 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char50.png | Bin 199 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char51.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char52.png | Bin 245 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char53.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char54.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char55.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char56.png | Bin 232 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char57.png | Bin 286 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char58.png | Bin 212 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char59.png | Bin 212 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char5A.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char5B.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char5C.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char5D.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char5E.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char60.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char61.png | Bin 209 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char66.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char67.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char68.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char69.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char6A.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char6B.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char6C.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char6D.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char6E.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char6F.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char70.png | Bin 109 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char71.png | Bin 113 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char72.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char73.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char74.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char75.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char76.png | Bin 244 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char77.png | Bin 249 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char78.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char79.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char7A.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char7B.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char7C.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char7D.png | Bin 215 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char7E.png | Bin 210 -> 0 bytes .../jsmath/fonts/msbm10/alpha/120/char7F.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char.data | 130 - .../jsmath/fonts/msbm10/alpha/144/char00.png | Bin 267 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char01.png | Bin 269 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char02.png | Bin 290 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char03.png | Bin 284 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char04.png | Bin 241 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char05.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char06.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char07.png | Bin 239 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char08.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char09.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char0A.png | Bin 289 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char0B.png | Bin 281 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char0C.png | Bin 239 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char0D.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char0E.png | Bin 284 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char0F.png | Bin 292 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char10.png | Bin 290 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char11.png | Bin 293 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char12.png | Bin 274 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char13.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char14.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char15.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char16.png | Bin 278 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char17.png | Bin 287 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char18.png | Bin 308 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char19.png | Bin 327 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char1A.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char1B.png | Bin 311 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char1C.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char1D.png | Bin 264 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char1E.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char1F.png | Bin 182 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char20.png | Bin 255 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char21.png | Bin 240 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char22.png | Bin 324 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char23.png | Bin 319 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char24.png | Bin 276 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char25.png | Bin 265 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char26.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char27.png | Bin 295 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char28.png | Bin 242 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char29.png | Bin 228 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char2A.png | Bin 292 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char2B.png | Bin 277 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char2C.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char2D.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char2E.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char2F.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char30.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char31.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char32.png | Bin 232 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char33.png | Bin 239 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char34.png | Bin 325 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char35.png | Bin 297 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char36.png | Bin 257 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char37.png | Bin 290 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char38.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char39.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char3A.png | Bin 233 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char3B.png | Bin 242 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char3C.png | Bin 255 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char3D.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char3E.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char3F.png | Bin 223 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char40.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char41.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char42.png | Bin 258 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char43.png | Bin 257 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char44.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char45.png | Bin 236 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char46.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char47.png | Bin 293 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char48.png | Bin 198 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char49.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char4A.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char4B.png | Bin 274 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char4C.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char4D.png | Bin 310 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char4E.png | Bin 279 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char4F.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char50.png | Bin 209 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char51.png | Bin 326 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char52.png | Bin 277 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char53.png | Bin 275 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char54.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char55.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char56.png | Bin 244 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char57.png | Bin 325 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char58.png | Bin 241 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char59.png | Bin 231 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char5A.png | Bin 238 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char5B.png | Bin 241 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char5C.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char5D.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char5E.png | Bin 246 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char60.png | Bin 123 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char61.png | Bin 241 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char66.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char67.png | Bin 271 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char68.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char69.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char6A.png | Bin 199 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char6B.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char6C.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char6D.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char6E.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char6F.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char70.png | Bin 107 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char71.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char72.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char73.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char74.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char75.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char76.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char77.png | Bin 298 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char78.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char79.png | Bin 206 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char7A.png | Bin 203 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char7B.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char7C.png | Bin 216 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char7D.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char7E.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/alpha/144/char7F.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char.data | 130 - .../jsmath/fonts/msbm10/alpha/173/char00.png | Bin 295 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char01.png | Bin 299 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char02.png | Bin 334 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char03.png | Bin 319 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char04.png | Bin 273 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char05.png | Bin 272 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char06.png | Bin 273 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char07.png | Bin 278 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char08.png | Bin 318 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char09.png | Bin 323 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char0A.png | Bin 325 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char0B.png | Bin 314 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char0C.png | Bin 257 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char0D.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char0E.png | Bin 335 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char0F.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char10.png | Bin 321 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char11.png | Bin 329 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char12.png | Bin 295 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char13.png | Bin 301 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char14.png | Bin 384 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char15.png | Bin 371 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char16.png | Bin 329 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char17.png | Bin 326 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char18.png | Bin 371 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char19.png | Bin 364 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char1A.png | Bin 359 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char1B.png | Bin 358 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char1C.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char1D.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char1E.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char1F.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char20.png | Bin 296 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char21.png | Bin 295 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char22.png | Bin 338 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char23.png | Bin 350 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char24.png | Bin 326 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char25.png | Bin 322 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char26.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char27.png | Bin 313 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char28.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char29.png | Bin 283 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char2A.png | Bin 341 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char2B.png | Bin 354 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char2C.png | Bin 244 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char2D.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char2E.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char2F.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char30.png | Bin 271 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char31.png | Bin 262 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char32.png | Bin 274 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char33.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char34.png | Bin 329 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char35.png | Bin 384 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char36.png | Bin 297 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char37.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char38.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char39.png | Bin 200 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char3A.png | Bin 257 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char3B.png | Bin 257 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char3C.png | Bin 278 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char3D.png | Bin 213 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char3E.png | Bin 210 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char3F.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char40.png | Bin 284 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char41.png | Bin 266 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char42.png | Bin 296 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char43.png | Bin 298 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char44.png | Bin 301 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char45.png | Bin 289 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char46.png | Bin 265 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char47.png | Bin 329 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char48.png | Bin 239 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char49.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char4A.png | Bin 199 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char4B.png | Bin 342 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char4C.png | Bin 204 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char4D.png | Bin 366 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char4E.png | Bin 305 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char4F.png | Bin 335 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char50.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char51.png | Bin 387 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char52.png | Bin 343 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char53.png | Bin 297 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char54.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char55.png | Bin 255 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char56.png | Bin 288 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char57.png | Bin 387 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char58.png | Bin 280 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char59.png | Bin 271 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char5A.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char5B.png | Bin 263 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char5C.png | Bin 242 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char5D.png | Bin 268 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char5E.png | Bin 297 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char60.png | Bin 124 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char61.png | Bin 267 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char66.png | Bin 319 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char67.png | Bin 298 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char68.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char69.png | Bin 198 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char6A.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char6B.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char6C.png | Bin 198 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char6D.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char6E.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char6F.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char70.png | Bin 113 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char71.png | Bin 116 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char72.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char73.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char74.png | Bin 226 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char75.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char76.png | Bin 343 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char77.png | Bin 353 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char78.png | Bin 243 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char79.png | Bin 236 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char7A.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char7B.png | Bin 223 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char7C.png | Bin 266 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char7D.png | Bin 291 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char7E.png | Bin 290 -> 0 bytes .../jsmath/fonts/msbm10/alpha/173/char7F.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char.data | 130 - .../jsmath/fonts/msbm10/alpha/207/char00.png | Bin 312 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char01.png | Bin 319 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char02.png | Bin 339 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char03.png | Bin 364 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char04.png | Bin 292 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char05.png | Bin 302 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char06.png | Bin 305 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char07.png | Bin 301 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char08.png | Bin 328 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char09.png | Bin 330 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char0A.png | Bin 350 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char0B.png | Bin 373 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char0C.png | Bin 287 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char0D.png | Bin 292 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char0E.png | Bin 349 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char0F.png | Bin 373 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char10.png | Bin 388 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char11.png | Bin 403 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char12.png | Bin 374 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char13.png | Bin 374 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char14.png | Bin 394 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char15.png | Bin 395 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char16.png | Bin 354 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char17.png | Bin 370 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char18.png | Bin 436 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char19.png | Bin 432 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char1A.png | Bin 398 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char1B.png | Bin 400 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char1C.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char1D.png | Bin 342 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char1E.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char1F.png | Bin 251 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char20.png | Bin 339 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char21.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char22.png | Bin 424 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char23.png | Bin 382 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char24.png | Bin 366 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char25.png | Bin 363 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char26.png | Bin 387 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char27.png | Bin 359 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char28.png | Bin 315 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char29.png | Bin 304 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char2A.png | Bin 388 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char2B.png | Bin 372 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char2C.png | Bin 251 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char2D.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char2E.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char2F.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char30.png | Bin 304 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char31.png | Bin 317 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char32.png | Bin 318 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char33.png | Bin 345 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char34.png | Bin 391 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char35.png | Bin 358 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char36.png | Bin 295 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char37.png | Bin 344 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char38.png | Bin 236 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char39.png | Bin 228 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char3A.png | Bin 297 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char3B.png | Bin 300 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char3C.png | Bin 352 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char3D.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char3E.png | Bin 264 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char3F.png | Bin 321 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char40.png | Bin 317 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char41.png | Bin 324 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char42.png | Bin 346 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char43.png | Bin 356 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char44.png | Bin 328 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char45.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char46.png | Bin 268 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char47.png | Bin 414 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char48.png | Bin 251 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char49.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char4A.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char4B.png | Bin 309 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char4C.png | Bin 198 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char4D.png | Bin 432 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char4E.png | Bin 335 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char4F.png | Bin 412 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char50.png | Bin 270 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char51.png | Bin 467 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char52.png | Bin 335 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char53.png | Bin 373 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char54.png | Bin 222 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char55.png | Bin 286 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char56.png | Bin 311 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char57.png | Bin 419 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char58.png | Bin 317 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char59.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char5A.png | Bin 308 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char5B.png | Bin 295 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char5C.png | Bin 266 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char5D.png | Bin 293 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char5E.png | Bin 319 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char60.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char61.png | Bin 310 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char66.png | Bin 344 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char67.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char68.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char69.png | Bin 212 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char6A.png | Bin 242 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char6B.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char6C.png | Bin 235 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char6D.png | Bin 245 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char6E.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char6F.png | Bin 225 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char70.png | Bin 112 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char71.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char72.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char73.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char74.png | Bin 267 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char75.png | Bin 295 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char76.png | Bin 410 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char77.png | Bin 406 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char78.png | Bin 269 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char79.png | Bin 268 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char7A.png | Bin 221 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char7B.png | Bin 254 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char7C.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char7D.png | Bin 305 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char7E.png | Bin 302 -> 0 bytes .../jsmath/fonts/msbm10/alpha/207/char7F.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char.data | 130 - .../jsmath/fonts/msbm10/alpha/249/char00.png | Bin 347 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char01.png | Bin 339 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char02.png | Bin 413 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char03.png | Bin 428 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char04.png | Bin 318 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char05.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char06.png | Bin 329 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char07.png | Bin 330 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char08.png | Bin 381 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char09.png | Bin 373 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char0A.png | Bin 398 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char0B.png | Bin 416 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char0C.png | Bin 340 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char0D.png | Bin 324 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char0E.png | Bin 432 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char0F.png | Bin 432 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char10.png | Bin 435 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char11.png | Bin 427 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char12.png | Bin 425 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char13.png | Bin 417 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char14.png | Bin 471 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char15.png | Bin 469 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char16.png | Bin 400 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char17.png | Bin 417 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char18.png | Bin 480 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char19.png | Bin 475 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char1A.png | Bin 470 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char1B.png | Bin 461 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char1C.png | Bin 263 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char1D.png | Bin 373 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char1E.png | Bin 270 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char1F.png | Bin 264 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char20.png | Bin 376 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char21.png | Bin 378 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char22.png | Bin 466 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char23.png | Bin 455 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char24.png | Bin 407 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char25.png | Bin 409 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char26.png | Bin 425 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char27.png | Bin 434 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char28.png | Bin 354 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char29.png | Bin 358 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char2A.png | Bin 457 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char2B.png | Bin 446 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char2C.png | Bin 273 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char2D.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char2E.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char2F.png | Bin 234 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char30.png | Bin 311 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char31.png | Bin 362 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char32.png | Bin 329 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char33.png | Bin 372 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char34.png | Bin 442 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char35.png | Bin 409 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char36.png | Bin 341 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char37.png | Bin 368 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char38.png | Bin 253 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char39.png | Bin 249 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char3A.png | Bin 315 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char3B.png | Bin 335 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char3C.png | Bin 351 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char3D.png | Bin 284 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char3E.png | Bin 272 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char3F.png | Bin 355 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char40.png | Bin 368 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char41.png | Bin 345 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char42.png | Bin 413 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char43.png | Bin 387 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char44.png | Bin 401 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char45.png | Bin 356 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char46.png | Bin 309 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char47.png | Bin 450 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char48.png | Bin 279 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char49.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char4A.png | Bin 253 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char4B.png | Bin 397 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char4C.png | Bin 251 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char4D.png | Bin 485 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char4E.png | Bin 388 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char4F.png | Bin 491 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char50.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char51.png | Bin 539 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char52.png | Bin 401 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char53.png | Bin 412 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char54.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char55.png | Bin 321 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char56.png | Bin 369 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char57.png | Bin 484 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char58.png | Bin 364 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char59.png | Bin 336 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char5A.png | Bin 351 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char5B.png | Bin 328 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char5C.png | Bin 298 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char5D.png | Bin 322 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char5E.png | Bin 365 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char60.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char61.png | Bin 347 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char66.png | Bin 401 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char67.png | Bin 406 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char68.png | Bin 242 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char69.png | Bin 232 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char6A.png | Bin 262 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char6B.png | Bin 233 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char6C.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char6D.png | Bin 238 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char6E.png | Bin 222 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char6F.png | Bin 222 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char70.png | Bin 109 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char71.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char72.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char73.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char74.png | Bin 321 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char75.png | Bin 327 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char76.png | Bin 450 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char77.png | Bin 451 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char78.png | Bin 300 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char79.png | Bin 298 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char7A.png | Bin 260 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char7B.png | Bin 273 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char7C.png | Bin 351 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char7D.png | Bin 347 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char7E.png | Bin 344 -> 0 bytes .../jsmath/fonts/msbm10/alpha/249/char7F.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char.data | 130 - .../jsmath/fonts/msbm10/alpha/298/char00.png | Bin 389 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char01.png | Bin 404 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char02.png | Bin 510 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char03.png | Bin 506 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char04.png | Bin 430 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char05.png | Bin 415 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char06.png | Bin 442 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char07.png | Bin 447 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char08.png | Bin 428 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char09.png | Bin 446 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char0A.png | Bin 520 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char0B.png | Bin 519 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char0C.png | Bin 372 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char0D.png | Bin 368 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char0E.png | Bin 540 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char0F.png | Bin 552 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char10.png | Bin 542 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char11.png | Bin 545 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char12.png | Bin 511 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char13.png | Bin 490 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char14.png | Bin 597 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char15.png | Bin 594 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char16.png | Bin 451 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char17.png | Bin 452 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char18.png | Bin 584 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char19.png | Bin 600 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char1A.png | Bin 605 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char1B.png | Bin 603 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char1C.png | Bin 313 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char1D.png | Bin 438 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char1E.png | Bin 298 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char1F.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char20.png | Bin 423 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char21.png | Bin 403 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char22.png | Bin 526 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char23.png | Bin 508 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char24.png | Bin 506 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char25.png | Bin 495 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char26.png | Bin 465 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char27.png | Bin 464 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char28.png | Bin 389 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char29.png | Bin 396 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char2A.png | Bin 547 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char2B.png | Bin 536 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char2C.png | Bin 274 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char2D.png | Bin 257 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char2E.png | Bin 225 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char2F.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char30.png | Bin 319 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char31.png | Bin 354 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char32.png | Bin 344 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char33.png | Bin 366 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char34.png | Bin 544 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char35.png | Bin 571 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char36.png | Bin 495 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char37.png | Bin 435 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char38.png | Bin 287 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char39.png | Bin 281 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char3A.png | Bin 389 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char3B.png | Bin 402 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char3C.png | Bin 445 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char3D.png | Bin 330 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char3E.png | Bin 364 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char3F.png | Bin 404 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char40.png | Bin 450 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char41.png | Bin 408 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char42.png | Bin 473 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char43.png | Bin 464 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char44.png | Bin 456 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char45.png | Bin 448 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char46.png | Bin 383 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char47.png | Bin 540 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char48.png | Bin 334 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char49.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char4A.png | Bin 296 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char4B.png | Bin 513 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char4C.png | Bin 293 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char4D.png | Bin 608 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char4E.png | Bin 465 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char4F.png | Bin 564 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char50.png | Bin 377 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char51.png | Bin 638 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char52.png | Bin 490 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char53.png | Bin 492 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char54.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char55.png | Bin 387 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char56.png | Bin 447 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char57.png | Bin 588 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char58.png | Bin 484 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char59.png | Bin 371 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char5A.png | Bin 444 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char5B.png | Bin 369 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char5C.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char5D.png | Bin 344 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char5E.png | Bin 403 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char60.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char61.png | Bin 377 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char66.png | Bin 459 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char67.png | Bin 463 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char68.png | Bin 289 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char69.png | Bin 260 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char6A.png | Bin 302 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char6B.png | Bin 273 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char6C.png | Bin 318 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char6D.png | Bin 325 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char6E.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char6F.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char70.png | Bin 116 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char71.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char72.png | Bin 220 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char73.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char74.png | Bin 352 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char75.png | Bin 391 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char76.png | Bin 570 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char77.png | Bin 546 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char78.png | Bin 344 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char79.png | Bin 347 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char7A.png | Bin 288 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char7B.png | Bin 312 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char7C.png | Bin 400 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char7D.png | Bin 442 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char7E.png | Bin 441 -> 0 bytes .../jsmath/fonts/msbm10/alpha/298/char7F.png | Bin 268 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char.data | 130 - .../jsmath/fonts/msbm10/alpha/358/char00.png | Bin 423 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char01.png | Bin 423 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char02.png | Bin 559 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char03.png | Bin 573 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char04.png | Bin 446 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char05.png | Bin 450 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char06.png | Bin 470 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char07.png | Bin 486 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char08.png | Bin 495 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char09.png | Bin 492 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char0A.png | Bin 567 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char0B.png | Bin 575 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char0C.png | Bin 429 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char0D.png | Bin 428 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char0E.png | Bin 551 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char0F.png | Bin 583 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char10.png | Bin 628 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char11.png | Bin 648 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char12.png | Bin 573 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char13.png | Bin 583 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char14.png | Bin 647 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char15.png | Bin 669 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char16.png | Bin 539 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char17.png | Bin 549 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char18.png | Bin 736 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char19.png | Bin 747 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char1A.png | Bin 699 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char1B.png | Bin 698 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char1C.png | Bin 378 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char1D.png | Bin 515 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char1E.png | Bin 352 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char1F.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char20.png | Bin 506 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char21.png | Bin 477 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char22.png | Bin 605 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char23.png | Bin 581 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char24.png | Bin 547 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char25.png | Bin 556 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char26.png | Bin 559 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char27.png | Bin 542 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char28.png | Bin 460 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char29.png | Bin 455 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char2A.png | Bin 590 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char2B.png | Bin 593 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char2C.png | Bin 314 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char2D.png | Bin 262 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char2E.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char2F.png | Bin 323 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char30.png | Bin 400 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char31.png | Bin 441 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char32.png | Bin 435 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char33.png | Bin 493 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char34.png | Bin 567 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char35.png | Bin 550 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char36.png | Bin 474 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char37.png | Bin 461 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char38.png | Bin 322 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char39.png | Bin 322 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char3A.png | Bin 449 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char3B.png | Bin 439 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char3C.png | Bin 532 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char3D.png | Bin 394 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char3E.png | Bin 383 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char3F.png | Bin 560 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char40.png | Bin 454 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char41.png | Bin 514 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char42.png | Bin 532 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char43.png | Bin 597 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char44.png | Bin 535 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char45.png | Bin 501 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char46.png | Bin 406 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char47.png | Bin 653 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char48.png | Bin 339 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char49.png | Bin 235 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char4A.png | Bin 326 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char4B.png | Bin 602 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char4C.png | Bin 333 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char4D.png | Bin 599 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char4E.png | Bin 515 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char4F.png | Bin 684 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char50.png | Bin 431 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char51.png | Bin 788 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char52.png | Bin 554 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char53.png | Bin 586 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char54.png | Bin 365 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char55.png | Bin 429 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char56.png | Bin 536 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char57.png | Bin 727 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char58.png | Bin 513 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char59.png | Bin 439 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char5A.png | Bin 470 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char5B.png | Bin 434 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char5C.png | Bin 385 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char5D.png | Bin 434 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char5E.png | Bin 489 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char60.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char61.png | Bin 458 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char66.png | Bin 563 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char67.png | Bin 545 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char68.png | Bin 329 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char69.png | Bin 269 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char6A.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char6B.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char6C.png | Bin 334 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char6D.png | Bin 341 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char6E.png | Bin 289 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char6F.png | Bin 275 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char70.png | Bin 123 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char71.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char72.png | Bin 263 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char73.png | Bin 297 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char74.png | Bin 405 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char75.png | Bin 466 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char76.png | Bin 688 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char77.png | Bin 678 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char78.png | Bin 442 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char79.png | Bin 432 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char7A.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char7B.png | Bin 350 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char7C.png | Bin 433 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char7D.png | Bin 482 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char7E.png | Bin 467 -> 0 bytes .../jsmath/fonts/msbm10/alpha/358/char7F.png | Bin 298 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char.data | 130 - .../jsmath/fonts/msbm10/alpha/430/char00.png | Bin 539 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char01.png | Bin 532 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char02.png | Bin 683 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char03.png | Bin 686 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char04.png | Bin 576 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char05.png | Bin 614 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char06.png | Bin 602 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char07.png | Bin 628 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char08.png | Bin 613 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char09.png | Bin 606 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char0A.png | Bin 681 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char0B.png | Bin 699 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char0C.png | Bin 483 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char0D.png | Bin 480 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char0E.png | Bin 723 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char0F.png | Bin 723 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char10.png | Bin 799 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char11.png | Bin 799 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char12.png | Bin 756 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char13.png | Bin 743 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char14.png | Bin 810 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char15.png | Bin 809 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char16.png | Bin 666 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char17.png | Bin 696 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char18.png | Bin 896 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char19.png | Bin 899 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char1A.png | Bin 862 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char1B.png | Bin 881 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char1C.png | Bin 438 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char1D.png | Bin 637 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char1E.png | Bin 373 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char1F.png | Bin 369 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char20.png | Bin 576 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char21.png | Bin 562 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char22.png | Bin 750 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char23.png | Bin 757 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char24.png | Bin 672 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char25.png | Bin 665 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char26.png | Bin 672 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char27.png | Bin 685 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char28.png | Bin 540 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char29.png | Bin 553 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char2A.png | Bin 746 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char2B.png | Bin 732 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char2C.png | Bin 395 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char2D.png | Bin 321 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char2E.png | Bin 266 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char2F.png | Bin 371 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char30.png | Bin 453 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char31.png | Bin 516 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char32.png | Bin 462 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char33.png | Bin 559 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char34.png | Bin 722 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char35.png | Bin 747 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char36.png | Bin 616 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char37.png | Bin 648 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char38.png | Bin 376 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char39.png | Bin 366 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char3A.png | Bin 550 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char3B.png | Bin 548 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char3C.png | Bin 646 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char3D.png | Bin 428 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char3E.png | Bin 430 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char3F.png | Bin 631 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char40.png | Bin 565 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char41.png | Bin 599 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char42.png | Bin 700 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char43.png | Bin 680 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char44.png | Bin 645 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char45.png | Bin 584 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char46.png | Bin 490 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char47.png | Bin 809 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char48.png | Bin 367 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char49.png | Bin 243 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char4A.png | Bin 404 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char4B.png | Bin 689 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char4C.png | Bin 366 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char4D.png | Bin 717 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char4E.png | Bin 619 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char4F.png | Bin 821 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char50.png | Bin 509 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char51.png | Bin 947 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char52.png | Bin 720 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char53.png | Bin 722 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char54.png | Bin 388 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char55.png | Bin 542 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char56.png | Bin 630 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char57.png | Bin 858 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char58.png | Bin 654 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char59.png | Bin 544 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char5A.png | Bin 601 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char5B.png | Bin 468 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char5C.png | Bin 410 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char5D.png | Bin 469 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char5E.png | Bin 542 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char60.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char61.png | Bin 548 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char66.png | Bin 652 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char67.png | Bin 673 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char68.png | Bin 370 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char69.png | Bin 317 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char6A.png | Bin 371 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char6B.png | Bin 340 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char6C.png | Bin 401 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char6D.png | Bin 387 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char6E.png | Bin 333 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char6F.png | Bin 349 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char70.png | Bin 135 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char71.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char72.png | Bin 294 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char73.png | Bin 342 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char74.png | Bin 472 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char75.png | Bin 534 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char76.png | Bin 817 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char77.png | Bin 815 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char78.png | Bin 497 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char79.png | Bin 518 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char7A.png | Bin 356 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char7B.png | Bin 406 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char7C.png | Bin 486 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char7D.png | Bin 584 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char7E.png | Bin 578 -> 0 bytes .../jsmath/fonts/msbm10/alpha/430/char7F.png | Bin 323 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char.data | 130 - .../jsmath/fonts/msbm10/alpha/50/char00.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char01.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char02.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char03.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char04.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char05.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char06.png | Bin 125 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char07.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char08.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char09.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char0A.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char0B.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char0C.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char0D.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char0E.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char0F.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char10.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char11.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char12.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char13.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char14.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char15.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char16.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char17.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char18.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char19.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char1A.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char1B.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char1C.png | Bin 119 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char1D.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char1E.png | Bin 118 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char1F.png | Bin 116 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char20.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char21.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char22.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char23.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char24.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char25.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char26.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char27.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char28.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char29.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char2A.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char2B.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char2C.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char2D.png | Bin 118 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char2E.png | Bin 108 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char2F.png | Bin 113 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char30.png | Bin 124 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char31.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char32.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char33.png | Bin 135 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char34.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char35.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char36.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char37.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char38.png | Bin 118 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char39.png | Bin 121 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char3A.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char3B.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char3C.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char3D.png | Bin 121 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char3E.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char3F.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char40.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char41.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char42.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char43.png | Bin 125 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char44.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char45.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char46.png | Bin 125 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char47.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char48.png | Bin 135 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char49.png | Bin 109 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char4A.png | Bin 116 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char4B.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char4C.png | Bin 120 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char4D.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char4E.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char4F.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char50.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char51.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char52.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char53.png | Bin 127 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char54.png | Bin 120 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char55.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char56.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char57.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char58.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char59.png | Bin 123 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char5A.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char5B.png | Bin 121 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char5C.png | Bin 127 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char5D.png | Bin 125 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char5E.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char60.png | Bin 114 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char61.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char66.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char67.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char68.png | Bin 112 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char69.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char6A.png | Bin 126 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char6B.png | Bin 120 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char6C.png | Bin 125 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char6D.png | Bin 115 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char6E.png | Bin 114 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char6F.png | Bin 117 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char70.png | Bin 94 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char71.png | Bin 96 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char72.png | Bin 111 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char73.png | Bin 109 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char74.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char75.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char76.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char77.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char78.png | Bin 120 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char79.png | Bin 117 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char7A.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char7B.png | Bin 120 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char7C.png | Bin 117 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char7D.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char7E.png | Bin 125 -> 0 bytes .../jsmath/fonts/msbm10/alpha/50/char7F.png | Bin 110 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char.data | 130 - .../jsmath/fonts/msbm10/alpha/60/char00.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char01.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char02.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char03.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char04.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char05.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char06.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char07.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char08.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char09.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char0A.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char0B.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char0C.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char0D.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char0E.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char0F.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char10.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char11.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char12.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char13.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char14.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char15.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char16.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char17.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char18.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char19.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char1A.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char1B.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char1C.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char1D.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char1E.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char1F.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char20.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char21.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char22.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char23.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char24.png | Bin 156 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char25.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char26.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char27.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char28.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char29.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char2A.png | Bin 164 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char2B.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char2C.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char2D.png | Bin 118 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char2E.png | Bin 107 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char2F.png | Bin 121 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char30.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char31.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char32.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char33.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char34.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char35.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char36.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char37.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char38.png | Bin 121 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char39.png | Bin 119 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char3A.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char3B.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char3C.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char3D.png | Bin 119 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char3E.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char3F.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char40.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char41.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char42.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char43.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char44.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char45.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char46.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char47.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char48.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char49.png | Bin 109 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char4A.png | Bin 121 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char4B.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char4C.png | Bin 126 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char4D.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char4E.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char4F.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char50.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char51.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char52.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char53.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char54.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char55.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char56.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char57.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char58.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char59.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char5A.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char5B.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char5C.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char5D.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char5E.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char60.png | Bin 117 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char61.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char66.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char67.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char68.png | Bin 119 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char69.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char6A.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char6B.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char6C.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char6D.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char6E.png | Bin 112 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char6F.png | Bin 110 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char70.png | Bin 99 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char71.png | Bin 103 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char72.png | Bin 118 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char73.png | Bin 105 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char74.png | Bin 125 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char75.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char76.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char77.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char78.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char79.png | Bin 126 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char7A.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char7B.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char7C.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char7D.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char7E.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/alpha/60/char7F.png | Bin 111 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char.data | 130 - .../jsmath/fonts/msbm10/alpha/70/char00.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char01.png | Bin 164 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char02.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char03.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char04.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char05.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char06.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char07.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char08.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char09.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char0A.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char0B.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char0C.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char0D.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char0E.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char0F.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char10.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char11.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char12.png | Bin 182 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char13.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char14.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char15.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char16.png | Bin 164 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char17.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char18.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char19.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char1A.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char1B.png | Bin 199 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char1C.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char1D.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char1E.png | Bin 125 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char1F.png | Bin 127 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char20.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char21.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char22.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char23.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char24.png | Bin 162 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char25.png | Bin 164 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char26.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char27.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char28.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char29.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char2A.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char2B.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char2C.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char2D.png | Bin 127 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char2E.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char2F.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char30.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char31.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char32.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char33.png | Bin 162 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char34.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char35.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char36.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char37.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char38.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char39.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char3A.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char3B.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char3C.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char3D.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char3E.png | Bin 156 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char3F.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char40.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char41.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char42.png | Bin 162 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char43.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char44.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char45.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char46.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char47.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char48.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char49.png | Bin 112 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char4A.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char4B.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char4C.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char4D.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char4E.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char4F.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char50.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char51.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char52.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char53.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char54.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char55.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char56.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char57.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char58.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char59.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char5A.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char5B.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char5C.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char5D.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char5E.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char60.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char61.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char66.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char67.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char68.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char69.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char6A.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char6B.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char6C.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char6D.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char6E.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char6F.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char70.png | Bin 101 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char71.png | Bin 105 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char72.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char73.png | Bin 117 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char74.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char75.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char76.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char77.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char78.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char79.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char7A.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char7B.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char7C.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char7D.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char7E.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/alpha/70/char7F.png | Bin 126 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char.data | 130 - .../jsmath/fonts/msbm10/alpha/85/char00.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char01.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char02.png | Bin 213 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char03.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char04.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char05.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char06.png | Bin 182 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char07.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char08.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char09.png | Bin 203 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char0A.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char0B.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char0C.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char0D.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char0E.png | Bin 204 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char0F.png | Bin 203 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char10.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char11.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char12.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char13.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char14.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char15.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char16.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char17.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char18.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char19.png | Bin 210 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char1A.png | Bin 225 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char1B.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char1C.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char1D.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char1E.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char1F.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char20.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char21.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char22.png | Bin 204 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char23.png | Bin 210 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char24.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char25.png | Bin 198 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char26.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char27.png | Bin 203 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char28.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char29.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char2A.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char2B.png | Bin 206 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char2C.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char2D.png | Bin 125 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char2E.png | Bin 127 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char2F.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char30.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char31.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char32.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char33.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char34.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char35.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char36.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char37.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char38.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char39.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char3A.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char3B.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char3C.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char3D.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char3E.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char3F.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char40.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char41.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char42.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char43.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char44.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char45.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char46.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char47.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char48.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char49.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char4A.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char4B.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char4C.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char4D.png | Bin 212 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char4E.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char4F.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char50.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char51.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char52.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char53.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char54.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char55.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char56.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char57.png | Bin 224 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char58.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char59.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char5A.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char5B.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char5C.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char5D.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char5E.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char60.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char61.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char66.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char67.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char68.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char69.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char6A.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char6B.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char6C.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char6D.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char6E.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char6F.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char70.png | Bin 100 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char71.png | Bin 105 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char72.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char73.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char74.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char75.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char76.png | Bin 200 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char77.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char78.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char79.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char7A.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char7B.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char7C.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char7D.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char7E.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/alpha/85/char7F.png | Bin 134 -> 0 bytes sagenb/data/jsmath/fonts/msbm10/alpha/def.js | 273 - sagenb/data/jsmath/fonts/msbm10/def.js | 265 - .../jsmath/fonts/msbm10/plain/100/char.data | 130 - .../jsmath/fonts/msbm10/plain/100/char00.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char01.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char02.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char03.png | Bin 200 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char04.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char05.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char06.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char07.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char08.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char09.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char0A.png | Bin 203 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char0B.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char0C.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char0D.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char0E.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char0F.png | Bin 205 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char10.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char11.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char12.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char13.png | Bin 198 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char14.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char15.png | Bin 221 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char16.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char17.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char18.png | Bin 213 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char19.png | Bin 209 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char1A.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char1B.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char1C.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char1D.png | Bin 203 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char1E.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char1F.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char20.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char21.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char22.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char23.png | Bin 205 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char24.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char25.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char26.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char27.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char28.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char29.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char2A.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char2B.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char2C.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char2D.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char2E.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char2F.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char30.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char31.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char32.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char33.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char34.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char35.png | Bin 204 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char36.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char37.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char38.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char39.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char3A.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char3B.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char3C.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char3D.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char3E.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char3F.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char40.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char41.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char42.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char43.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char44.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char45.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char46.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char47.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char48.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char49.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char4A.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char4B.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char4C.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char4D.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char4E.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char4F.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char50.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char51.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char52.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char53.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char54.png | Bin 156 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char55.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char56.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char57.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char58.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char59.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char5A.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char5B.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char5C.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char5D.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char5E.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char60.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char61.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char66.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char67.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char68.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char69.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char6A.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char6B.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char6C.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char6D.png | Bin 162 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char6E.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char6F.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char70.png | Bin 108 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char71.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char72.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char73.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char74.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char75.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char76.png | Bin 203 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char77.png | Bin 209 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char78.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char79.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char7A.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char7B.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char7C.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char7D.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char7E.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/plain/100/char7F.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char.data | 130 - .../jsmath/fonts/msbm10/plain/120/char00.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char01.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char02.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char03.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char04.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char05.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char06.png | Bin 215 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char07.png | Bin 216 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char08.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char09.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char0A.png | Bin 223 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char0B.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char0C.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char0D.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char0E.png | Bin 222 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char0F.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char10.png | Bin 228 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char11.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char12.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char13.png | Bin 224 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char14.png | Bin 235 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char15.png | Bin 231 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char16.png | Bin 215 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char17.png | Bin 209 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char18.png | Bin 240 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char19.png | Bin 245 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char1A.png | Bin 249 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char1B.png | Bin 242 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char1C.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char1D.png | Bin 225 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char1E.png | Bin 164 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char1F.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char20.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char21.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char22.png | Bin 244 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char23.png | Bin 223 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char24.png | Bin 226 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char25.png | Bin 220 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char26.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char27.png | Bin 209 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char28.png | Bin 199 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char29.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char2A.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char2B.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char2C.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char2D.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char2E.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char2F.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char30.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char31.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char32.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char33.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char34.png | Bin 222 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char35.png | Bin 228 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char36.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char37.png | Bin 213 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char38.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char39.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char3A.png | Bin 210 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char3B.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char3C.png | Bin 212 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char3D.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char3E.png | Bin 205 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char3F.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char40.png | Bin 213 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char41.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char42.png | Bin 203 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char43.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char44.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char45.png | Bin 198 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char46.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char47.png | Bin 222 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char48.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char49.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char4A.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char4B.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char4C.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char4D.png | Bin 236 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char4E.png | Bin 205 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char4F.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char50.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char51.png | Bin 242 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char52.png | Bin 203 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char53.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char54.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char55.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char56.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char57.png | Bin 244 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char58.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char59.png | Bin 199 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char5A.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char5B.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char5C.png | Bin 204 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char5D.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char5E.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char60.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char61.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char66.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char67.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char68.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char69.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char6A.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char6B.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char6C.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char6D.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char6E.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char6F.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char70.png | Bin 117 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char71.png | Bin 115 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char72.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char73.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char74.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char75.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char76.png | Bin 234 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char77.png | Bin 231 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char78.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char79.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char7A.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char7B.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char7C.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char7D.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char7E.png | Bin 204 -> 0 bytes .../jsmath/fonts/msbm10/plain/120/char7F.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char.data | 130 - .../jsmath/fonts/msbm10/plain/144/char00.png | Bin 238 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char01.png | Bin 233 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char02.png | Bin 244 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char03.png | Bin 246 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char04.png | Bin 212 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char05.png | Bin 216 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char06.png | Bin 215 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char07.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char08.png | Bin 241 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char09.png | Bin 240 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char0A.png | Bin 254 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char0B.png | Bin 244 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char0C.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char0D.png | Bin 210 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char0E.png | Bin 246 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char0F.png | Bin 248 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char10.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char11.png | Bin 255 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char12.png | Bin 254 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char13.png | Bin 254 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char14.png | Bin 274 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char15.png | Bin 272 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char16.png | Bin 244 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char17.png | Bin 240 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char18.png | Bin 270 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char19.png | Bin 272 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char1A.png | Bin 275 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char1B.png | Bin 274 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char1C.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char1D.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char1E.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char1F.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char20.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char21.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char22.png | Bin 266 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char23.png | Bin 259 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char24.png | Bin 236 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char25.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char26.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char27.png | Bin 249 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char28.png | Bin 220 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char29.png | Bin 213 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char2A.png | Bin 248 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char2B.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char2C.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char2D.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char2E.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char2F.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char30.png | Bin 206 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char31.png | Bin 210 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char32.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char33.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char34.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char35.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char36.png | Bin 220 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char37.png | Bin 223 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char38.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char39.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char3A.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char3B.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char3C.png | Bin 234 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char3D.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char3E.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char3F.png | Bin 236 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char40.png | Bin 228 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char41.png | Bin 233 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char42.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char43.png | Bin 235 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char44.png | Bin 205 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char45.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char46.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char47.png | Bin 249 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char48.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char49.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char4A.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char4B.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char4C.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char4D.png | Bin 255 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char4E.png | Bin 232 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char4F.png | Bin 248 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char50.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char51.png | Bin 263 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char52.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char53.png | Bin 240 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char54.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char55.png | Bin 207 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char56.png | Bin 234 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char57.png | Bin 275 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char58.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char59.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char5A.png | Bin 231 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char5B.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char5C.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char5D.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char5E.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char60.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char61.png | Bin 210 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char66.png | Bin 244 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char67.png | Bin 239 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char68.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char69.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char6A.png | Bin 213 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char6B.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char6C.png | Bin 185 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char6D.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char6E.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char6F.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char70.png | Bin 117 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char71.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char72.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char73.png | Bin 182 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char74.png | Bin 215 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char75.png | Bin 225 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char76.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char77.png | Bin 258 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char78.png | Bin 205 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char79.png | Bin 206 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char7A.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char7B.png | Bin 209 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char7C.png | Bin 206 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char7D.png | Bin 224 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char7E.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/plain/144/char7F.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char.data | 130 - .../jsmath/fonts/msbm10/plain/173/char00.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char01.png | Bin 251 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char02.png | Bin 276 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char03.png | Bin 273 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char04.png | Bin 246 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char05.png | Bin 242 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char06.png | Bin 239 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char07.png | Bin 240 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char08.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char09.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char0A.png | Bin 284 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char0B.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char0C.png | Bin 238 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char0D.png | Bin 236 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char0E.png | Bin 274 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char0F.png | Bin 277 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char10.png | Bin 280 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char11.png | Bin 277 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char12.png | Bin 281 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char13.png | Bin 277 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char14.png | Bin 292 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char15.png | Bin 292 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char16.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char17.png | Bin 259 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char18.png | Bin 305 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char19.png | Bin 304 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char1A.png | Bin 310 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char1B.png | Bin 307 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char1C.png | Bin 231 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char1D.png | Bin 262 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char1E.png | Bin 215 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char1F.png | Bin 210 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char20.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char21.png | Bin 246 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char22.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char23.png | Bin 280 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char24.png | Bin 264 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char25.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char26.png | Bin 269 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char27.png | Bin 258 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char28.png | Bin 240 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char29.png | Bin 239 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char2A.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char2B.png | Bin 277 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char2C.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char2D.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char2E.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char2F.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char30.png | Bin 225 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char31.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char32.png | Bin 230 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char33.png | Bin 240 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char34.png | Bin 287 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char35.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char36.png | Bin 253 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char37.png | Bin 251 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char38.png | Bin 202 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char39.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char3A.png | Bin 241 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char3B.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char3C.png | Bin 253 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char3D.png | Bin 222 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char3E.png | Bin 212 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char3F.png | Bin 253 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char40.png | Bin 245 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char41.png | Bin 258 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char42.png | Bin 246 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char43.png | Bin 265 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char44.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char45.png | Bin 244 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char46.png | Bin 220 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char47.png | Bin 272 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char48.png | Bin 216 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char49.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char4A.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char4B.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char4C.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char4D.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char4E.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char4F.png | Bin 280 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char50.png | Bin 223 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char51.png | Bin 303 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char52.png | Bin 257 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char53.png | Bin 263 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char54.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char55.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char56.png | Bin 266 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char57.png | Bin 326 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char58.png | Bin 266 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char59.png | Bin 245 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char5A.png | Bin 263 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char5B.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char5C.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char5D.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char5E.png | Bin 245 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char60.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char61.png | Bin 235 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char66.png | Bin 270 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char67.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char68.png | Bin 212 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char69.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char6A.png | Bin 220 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char6B.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char6C.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char6D.png | Bin 211 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char6E.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char6F.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char70.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char71.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char72.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char73.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char74.png | Bin 238 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char75.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char76.png | Bin 288 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char77.png | Bin 288 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char78.png | Bin 234 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char79.png | Bin 232 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char7A.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char7B.png | Bin 232 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char7C.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char7D.png | Bin 249 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char7E.png | Bin 240 -> 0 bytes .../jsmath/fonts/msbm10/plain/173/char7F.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char.data | 130 - .../jsmath/fonts/msbm10/plain/207/char00.png | Bin 268 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char01.png | Bin 268 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char02.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char03.png | Bin 310 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char04.png | Bin 275 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char05.png | Bin 274 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char06.png | Bin 272 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char07.png | Bin 270 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char08.png | Bin 274 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char09.png | Bin 277 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char0A.png | Bin 321 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char0B.png | Bin 322 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char0C.png | Bin 258 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char0D.png | Bin 254 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char0E.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char0F.png | Bin 320 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char10.png | Bin 321 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char11.png | Bin 319 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char12.png | Bin 321 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char13.png | Bin 319 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char14.png | Bin 326 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char15.png | Bin 330 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char16.png | Bin 279 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char17.png | Bin 276 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char18.png | Bin 346 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char19.png | Bin 346 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char1A.png | Bin 358 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char1B.png | Bin 348 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char1C.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char1D.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char1E.png | Bin 201 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char1F.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char20.png | Bin 269 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char21.png | Bin 266 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char22.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char23.png | Bin 309 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char24.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char25.png | Bin 286 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char26.png | Bin 293 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char27.png | Bin 289 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char28.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char29.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char2A.png | Bin 311 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char2B.png | Bin 308 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char2C.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char2D.png | Bin 200 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char2E.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char2F.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char30.png | Bin 248 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char31.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char32.png | Bin 253 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char33.png | Bin 267 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char34.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char35.png | Bin 317 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char36.png | Bin 297 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char37.png | Bin 295 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char38.png | Bin 226 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char39.png | Bin 222 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char3A.png | Bin 267 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char3B.png | Bin 265 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char3C.png | Bin 293 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char3D.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char3E.png | Bin 262 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char3F.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char40.png | Bin 262 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char41.png | Bin 284 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char42.png | Bin 272 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char43.png | Bin 300 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char44.png | Bin 264 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char45.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char46.png | Bin 236 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char47.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char48.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char49.png | Bin 162 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char4A.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char4B.png | Bin 280 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char4C.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char4D.png | Bin 317 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char4E.png | Bin 278 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char4F.png | Bin 321 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char50.png | Bin 225 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char51.png | Bin 352 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char52.png | Bin 281 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char53.png | Bin 300 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char54.png | Bin 205 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char55.png | Bin 254 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char56.png | Bin 291 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char57.png | Bin 367 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char58.png | Bin 295 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char59.png | Bin 263 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char5A.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char5B.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char5C.png | Bin 238 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char5D.png | Bin 249 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char5E.png | Bin 274 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char60.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char61.png | Bin 254 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char66.png | Bin 291 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char67.png | Bin 288 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char68.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char69.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char6A.png | Bin 225 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char6B.png | Bin 216 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char6C.png | Bin 242 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char6D.png | Bin 242 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char6E.png | Bin 223 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char6F.png | Bin 227 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char70.png | Bin 120 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char71.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char72.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char73.png | Bin 216 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char74.png | Bin 259 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char75.png | Bin 272 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char76.png | Bin 328 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char77.png | Bin 327 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char78.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char79.png | Bin 259 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char7A.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char7B.png | Bin 248 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char7C.png | Bin 244 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char7D.png | Bin 265 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char7E.png | Bin 273 -> 0 bytes .../jsmath/fonts/msbm10/plain/207/char7F.png | Bin 196 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char.data | 130 - .../jsmath/fonts/msbm10/plain/249/char00.png | Bin 297 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char01.png | Bin 283 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char02.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char03.png | Bin 338 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char04.png | Bin 304 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char05.png | Bin 296 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char06.png | Bin 297 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char07.png | Bin 288 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char08.png | Bin 318 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char09.png | Bin 304 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char0A.png | Bin 353 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char0B.png | Bin 357 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char0C.png | Bin 276 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char0D.png | Bin 271 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char0E.png | Bin 341 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char0F.png | Bin 346 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char10.png | Bin 356 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char11.png | Bin 359 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char12.png | Bin 356 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char13.png | Bin 345 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char14.png | Bin 365 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char15.png | Bin 362 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char16.png | Bin 309 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char17.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char18.png | Bin 388 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char19.png | Bin 394 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char1A.png | Bin 399 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char1B.png | Bin 391 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char1C.png | Bin 269 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char1D.png | Bin 311 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char1E.png | Bin 219 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char1F.png | Bin 213 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char20.png | Bin 297 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char21.png | Bin 291 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char22.png | Bin 358 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char23.png | Bin 347 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char24.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char25.png | Bin 307 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char26.png | Bin 328 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char27.png | Bin 314 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char28.png | Bin 281 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char29.png | Bin 277 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char2A.png | Bin 348 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char2B.png | Bin 347 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char2C.png | Bin 223 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char2D.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char2E.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char2F.png | Bin 215 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char30.png | Bin 260 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char31.png | Bin 273 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char32.png | Bin 264 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char33.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char34.png | Bin 360 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char35.png | Bin 352 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char36.png | Bin 312 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char37.png | Bin 314 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char38.png | Bin 220 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char39.png | Bin 216 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char3A.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char3B.png | Bin 286 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char3C.png | Bin 311 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char3D.png | Bin 249 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char3E.png | Bin 232 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char3F.png | Bin 319 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char40.png | Bin 290 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char41.png | Bin 317 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char42.png | Bin 308 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char43.png | Bin 326 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char44.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char45.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char46.png | Bin 259 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char47.png | Bin 344 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char48.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char49.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char4A.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char4B.png | Bin 312 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char4C.png | Bin 215 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char4D.png | Bin 366 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char4E.png | Bin 302 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char4F.png | Bin 369 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char50.png | Bin 264 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char51.png | Bin 410 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char52.png | Bin 315 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char53.png | Bin 335 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char54.png | Bin 238 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char55.png | Bin 279 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char56.png | Bin 328 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char57.png | Bin 426 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char58.png | Bin 335 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char59.png | Bin 292 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char5A.png | Bin 318 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char5B.png | Bin 262 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char5C.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char5D.png | Bin 270 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char5E.png | Bin 298 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char60.png | Bin 164 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char61.png | Bin 277 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char66.png | Bin 327 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char67.png | Bin 326 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char68.png | Bin 238 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char69.png | Bin 214 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char6A.png | Bin 239 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char6B.png | Bin 232 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char6C.png | Bin 257 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char6D.png | Bin 243 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char6E.png | Bin 223 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char6F.png | Bin 209 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char70.png | Bin 120 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char71.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char72.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char73.png | Bin 234 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char74.png | Bin 284 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char75.png | Bin 296 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char76.png | Bin 364 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char77.png | Bin 363 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char78.png | Bin 278 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char79.png | Bin 279 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char7A.png | Bin 225 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char7B.png | Bin 262 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char7C.png | Bin 272 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char7D.png | Bin 297 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char7E.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/plain/249/char7F.png | Bin 213 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char.data | 130 - .../jsmath/fonts/msbm10/plain/298/char00.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char01.png | Bin 314 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char02.png | Bin 373 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char03.png | Bin 376 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char04.png | Bin 343 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char05.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char06.png | Bin 330 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char07.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char08.png | Bin 339 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char09.png | Bin 339 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char0A.png | Bin 404 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char0B.png | Bin 401 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char0C.png | Bin 307 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char0D.png | Bin 293 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char0E.png | Bin 375 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char0F.png | Bin 387 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char10.png | Bin 408 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char11.png | Bin 408 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char12.png | Bin 418 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char13.png | Bin 398 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char14.png | Bin 415 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char15.png | Bin 413 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char16.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char17.png | Bin 328 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char18.png | Bin 455 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char19.png | Bin 456 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char1A.png | Bin 473 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char1B.png | Bin 463 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char1C.png | Bin 300 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char1D.png | Bin 346 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char1E.png | Bin 229 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char1F.png | Bin 228 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char20.png | Bin 327 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char21.png | Bin 310 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char22.png | Bin 400 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char23.png | Bin 393 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char24.png | Bin 357 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char25.png | Bin 353 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char26.png | Bin 354 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char27.png | Bin 337 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char28.png | Bin 304 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char29.png | Bin 301 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char2A.png | Bin 381 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char2B.png | Bin 384 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char2C.png | Bin 235 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char2D.png | Bin 226 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char2E.png | Bin 204 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char2F.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char30.png | Bin 289 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char31.png | Bin 300 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char32.png | Bin 296 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char33.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char34.png | Bin 399 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char35.png | Bin 404 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char36.png | Bin 368 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char37.png | Bin 368 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char38.png | Bin 255 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char39.png | Bin 263 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char3A.png | Bin 322 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char3B.png | Bin 326 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char3C.png | Bin 369 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char3D.png | Bin 290 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char3E.png | Bin 291 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char3F.png | Bin 364 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char40.png | Bin 324 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char41.png | Bin 362 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char42.png | Bin 352 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char43.png | Bin 371 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char44.png | Bin 350 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char45.png | Bin 322 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char46.png | Bin 282 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char47.png | Bin 408 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char48.png | Bin 251 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char49.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char4A.png | Bin 262 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char4B.png | Bin 363 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char4C.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char4D.png | Bin 430 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char4E.png | Bin 341 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char4F.png | Bin 404 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char50.png | Bin 298 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char51.png | Bin 454 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char52.png | Bin 367 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char53.png | Bin 382 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char54.png | Bin 261 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char55.png | Bin 314 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char56.png | Bin 373 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char57.png | Bin 496 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char58.png | Bin 390 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char59.png | Bin 324 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char5A.png | Bin 370 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char5B.png | Bin 285 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char5C.png | Bin 267 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char5D.png | Bin 298 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char5E.png | Bin 329 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char60.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char61.png | Bin 299 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char66.png | Bin 368 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char67.png | Bin 369 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char68.png | Bin 267 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char69.png | Bin 233 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char6A.png | Bin 273 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char6B.png | Bin 254 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char6C.png | Bin 286 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char6D.png | Bin 279 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char6E.png | Bin 266 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char6F.png | Bin 263 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char70.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char71.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char72.png | Bin 205 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char73.png | Bin 254 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char74.png | Bin 318 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char75.png | Bin 336 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char76.png | Bin 424 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char77.png | Bin 423 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char78.png | Bin 316 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char79.png | Bin 317 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char7A.png | Bin 218 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char7B.png | Bin 293 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char7C.png | Bin 304 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char7D.png | Bin 347 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char7E.png | Bin 325 -> 0 bytes .../jsmath/fonts/msbm10/plain/298/char7F.png | Bin 240 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char.data | 130 - .../jsmath/fonts/msbm10/plain/358/char00.png | Bin 349 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char01.png | Bin 336 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char02.png | Bin 424 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char03.png | Bin 444 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char04.png | Bin 382 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char05.png | Bin 379 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char06.png | Bin 378 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char07.png | Bin 380 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char08.png | Bin 385 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char09.png | Bin 374 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char0A.png | Bin 461 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char0B.png | Bin 466 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char0C.png | Bin 337 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char0D.png | Bin 325 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char0E.png | Bin 424 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char0F.png | Bin 444 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char10.png | Bin 472 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char11.png | Bin 470 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char12.png | Bin 454 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char13.png | Bin 449 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char14.png | Bin 451 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char15.png | Bin 467 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char16.png | Bin 397 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char17.png | Bin 387 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char18.png | Bin 531 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char19.png | Bin 531 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char1A.png | Bin 541 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char1B.png | Bin 529 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char1C.png | Bin 327 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char1D.png | Bin 390 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char1E.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char1F.png | Bin 247 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char20.png | Bin 389 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char21.png | Bin 357 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char22.png | Bin 460 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char23.png | Bin 453 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char24.png | Bin 385 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char25.png | Bin 380 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char26.png | Bin 396 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char27.png | Bin 385 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char28.png | Bin 358 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char29.png | Bin 339 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char2A.png | Bin 439 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char2B.png | Bin 439 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char2C.png | Bin 287 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char2D.png | Bin 222 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char2E.png | Bin 217 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char2F.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char30.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char31.png | Bin 324 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char32.png | Bin 324 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char33.png | Bin 338 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char34.png | Bin 443 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char35.png | Bin 455 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char36.png | Bin 432 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char37.png | Bin 417 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char38.png | Bin 288 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char39.png | Bin 283 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char3A.png | Bin 361 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char3B.png | Bin 365 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char3C.png | Bin 427 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char3D.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char3E.png | Bin 326 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char3F.png | Bin 428 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char40.png | Bin 335 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char41.png | Bin 420 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char42.png | Bin 408 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char43.png | Bin 444 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char44.png | Bin 401 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char45.png | Bin 355 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char46.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char47.png | Bin 470 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char48.png | Bin 287 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char49.png | Bin 208 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char4A.png | Bin 271 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char4B.png | Bin 405 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char4C.png | Bin 277 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char4D.png | Bin 496 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char4E.png | Bin 390 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char4F.png | Bin 503 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char50.png | Bin 330 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char51.png | Bin 565 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char52.png | Bin 427 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char53.png | Bin 443 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char54.png | Bin 288 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char55.png | Bin 350 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char56.png | Bin 432 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char57.png | Bin 596 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char58.png | Bin 443 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char59.png | Bin 367 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char5A.png | Bin 393 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char5B.png | Bin 308 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char5C.png | Bin 301 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char5D.png | Bin 332 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char5E.png | Bin 368 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char60.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char61.png | Bin 347 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char66.png | Bin 443 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char67.png | Bin 425 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char68.png | Bin 294 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char69.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char6A.png | Bin 289 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char6B.png | Bin 270 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char6C.png | Bin 315 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char6D.png | Bin 303 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char6E.png | Bin 300 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char6F.png | Bin 280 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char70.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char71.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char72.png | Bin 223 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char73.png | Bin 273 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char74.png | Bin 354 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char75.png | Bin 375 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char76.png | Bin 485 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char77.png | Bin 490 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char78.png | Bin 358 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char79.png | Bin 356 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char7A.png | Bin 234 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char7B.png | Bin 339 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char7C.png | Bin 344 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char7D.png | Bin 383 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char7E.png | Bin 355 -> 0 bytes .../jsmath/fonts/msbm10/plain/358/char7F.png | Bin 250 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char.data | 130 - .../jsmath/fonts/msbm10/plain/430/char00.png | Bin 382 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char01.png | Bin 383 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char02.png | Bin 504 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char03.png | Bin 500 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char04.png | Bin 425 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char05.png | Bin 445 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char06.png | Bin 428 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char07.png | Bin 434 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char08.png | Bin 419 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char09.png | Bin 423 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char0A.png | Bin 544 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char0B.png | Bin 546 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char0C.png | Bin 374 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char0D.png | Bin 357 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char0E.png | Bin 506 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char0F.png | Bin 511 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char10.png | Bin 552 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char11.png | Bin 545 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char12.png | Bin 536 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char13.png | Bin 517 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char14.png | Bin 549 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char15.png | Bin 553 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char16.png | Bin 445 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char17.png | Bin 451 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char18.png | Bin 623 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char19.png | Bin 608 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char1A.png | Bin 633 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char1B.png | Bin 629 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char1C.png | Bin 377 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char1D.png | Bin 449 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char1E.png | Bin 271 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char1F.png | Bin 252 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char20.png | Bin 430 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char21.png | Bin 404 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char22.png | Bin 531 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char23.png | Bin 539 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char24.png | Bin 449 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char25.png | Bin 446 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char26.png | Bin 462 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char27.png | Bin 462 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char28.png | Bin 389 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char29.png | Bin 383 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char2A.png | Bin 499 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char2B.png | Bin 495 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char2C.png | Bin 317 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char2D.png | Bin 256 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char2E.png | Bin 240 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char2F.png | Bin 276 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char30.png | Bin 363 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char31.png | Bin 370 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char32.png | Bin 358 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char33.png | Bin 390 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char34.png | Bin 532 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char35.png | Bin 543 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char36.png | Bin 499 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char37.png | Bin 481 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char38.png | Bin 319 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char39.png | Bin 321 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char3A.png | Bin 424 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char3B.png | Bin 421 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char3C.png | Bin 494 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char3D.png | Bin 374 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char3E.png | Bin 356 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char3F.png | Bin 495 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char40.png | Bin 403 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char41.png | Bin 480 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char42.png | Bin 466 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char43.png | Bin 522 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char44.png | Bin 458 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char45.png | Bin 402 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char46.png | Bin 352 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char47.png | Bin 571 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char48.png | Bin 307 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char49.png | Bin 212 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char4A.png | Bin 317 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char4B.png | Bin 473 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char4C.png | Bin 300 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char4D.png | Bin 575 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char4E.png | Bin 437 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char4F.png | Bin 599 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char50.png | Bin 368 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char51.png | Bin 684 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char52.png | Bin 492 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char53.png | Bin 533 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char54.png | Bin 308 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char55.png | Bin 412 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char56.png | Bin 511 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char57.png | Bin 703 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char58.png | Bin 519 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char59.png | Bin 432 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char5A.png | Bin 476 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char5B.png | Bin 340 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char5C.png | Bin 323 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char5D.png | Bin 367 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char5E.png | Bin 410 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char60.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char61.png | Bin 399 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char66.png | Bin 493 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char67.png | Bin 498 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char68.png | Bin 325 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char69.png | Bin 255 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char6A.png | Bin 326 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char6B.png | Bin 312 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char6C.png | Bin 351 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char6D.png | Bin 335 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char6E.png | Bin 335 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char6F.png | Bin 331 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char70.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char71.png | Bin 162 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char72.png | Bin 237 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char73.png | Bin 306 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char74.png | Bin 399 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char75.png | Bin 436 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char76.png | Bin 567 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char77.png | Bin 569 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char78.png | Bin 419 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char79.png | Bin 413 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char7A.png | Bin 246 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char7B.png | Bin 376 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char7C.png | Bin 391 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char7D.png | Bin 442 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char7E.png | Bin 408 -> 0 bytes .../jsmath/fonts/msbm10/plain/430/char7F.png | Bin 283 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char.data | 130 - .../jsmath/fonts/msbm10/plain/50/char00.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char01.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char02.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char03.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char04.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char05.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char06.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char07.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char08.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char09.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char0A.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char0B.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char0C.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char0D.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char0E.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char0F.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char10.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char11.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char12.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char13.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char14.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char15.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char16.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char17.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char18.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char19.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char1A.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char1B.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char1C.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char1D.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char1E.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char1F.png | Bin 127 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char20.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char21.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char22.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char23.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char24.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char25.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char26.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char27.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char28.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char29.png | Bin 135 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char2A.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char2B.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char2C.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char2D.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char2E.png | Bin 121 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char2F.png | Bin 121 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char30.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char31.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char32.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char33.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char34.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char35.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char36.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char37.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char38.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char39.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char3A.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char3B.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char3C.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char3D.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char3E.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char3F.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char40.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char41.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char42.png | Bin 135 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char43.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char44.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char45.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char46.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char47.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char48.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char49.png | Bin 123 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char4A.png | Bin 123 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char4B.png | Bin 135 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char4C.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char4D.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char4E.png | Bin 135 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char4F.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char50.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char51.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char52.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char53.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char54.png | Bin 127 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char55.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char56.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char57.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char58.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char59.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char5A.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char5B.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char5C.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char5D.png | Bin 127 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char5E.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char60.png | Bin 120 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char61.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char66.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char67.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char68.png | Bin 124 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char69.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char6A.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char6B.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char6C.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char6D.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char6E.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char6F.png | Bin 127 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char70.png | Bin 105 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char71.png | Bin 105 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char72.png | Bin 120 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char73.png | Bin 124 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char74.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char75.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char76.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char77.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char78.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char79.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char7A.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char7B.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char7C.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char7D.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char7E.png | Bin 135 -> 0 bytes .../jsmath/fonts/msbm10/plain/50/char7F.png | Bin 126 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char.data | 130 - .../jsmath/fonts/msbm10/plain/60/char00.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char01.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char02.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char03.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char04.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char05.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char06.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char07.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char08.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char09.png | Bin 156 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char0A.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char0B.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char0C.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char0D.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char0E.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char0F.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char10.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char11.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char12.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char13.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char14.png | Bin 162 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char15.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char16.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char17.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char18.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char19.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char1A.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char1B.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char1C.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char1D.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char1E.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char1F.png | Bin 124 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char20.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char21.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char22.png | Bin 162 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char23.png | Bin 162 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char24.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char25.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char26.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char27.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char28.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char29.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char2A.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char2B.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char2C.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char2D.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char2E.png | Bin 120 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char2F.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char30.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char31.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char32.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char33.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char34.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char35.png | Bin 156 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char36.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char37.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char38.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char39.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char3A.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char3B.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char3C.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char3D.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char3E.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char3F.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char40.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char41.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char42.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char43.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char44.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char45.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char46.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char47.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char48.png | Bin 126 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char49.png | Bin 123 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char4A.png | Bin 126 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char4B.png | Bin 146 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char4C.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char4D.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char4E.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char4F.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char50.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char51.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char52.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char53.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char54.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char55.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char56.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char57.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char58.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char59.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char5A.png | Bin 142 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char5B.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char5C.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char5D.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char5E.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char60.png | Bin 121 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char61.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char66.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char67.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char68.png | Bin 124 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char69.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char6A.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char6B.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char6C.png | Bin 126 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char6D.png | Bin 128 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char6E.png | Bin 117 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char6F.png | Bin 116 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char70.png | Bin 108 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char71.png | Bin 108 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char72.png | Bin 122 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char73.png | Bin 119 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char74.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char75.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char76.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char77.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char78.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char79.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char7A.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char7B.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char7C.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char7D.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char7E.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/plain/60/char7F.png | Bin 126 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char.data | 130 - .../jsmath/fonts/msbm10/plain/70/char00.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char01.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char02.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char03.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char04.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char05.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char06.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char07.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char08.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char09.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char0A.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char0B.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char0C.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char0D.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char0E.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char0F.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char10.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char11.png | Bin 172 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char12.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char13.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char14.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char15.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char16.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char17.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char18.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char19.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char1A.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char1B.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char1C.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char1D.png | Bin 164 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char1E.png | Bin 135 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char1F.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char20.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char21.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char22.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char23.png | Bin 182 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char24.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char25.png | Bin 156 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char26.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char27.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char28.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char29.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char2A.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char2B.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char2C.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char2D.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char2E.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char2F.png | Bin 134 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char30.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char31.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char32.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char33.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char34.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char35.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char36.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char37.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char38.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char39.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char3A.png | Bin 153 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char3B.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char3C.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char3D.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char3E.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char3F.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char40.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char41.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char42.png | Bin 154 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char43.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char44.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char45.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char46.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char47.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char48.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char49.png | Bin 120 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char4A.png | Bin 130 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char4B.png | Bin 156 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char4C.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char4D.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char4E.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char4F.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char50.png | Bin 133 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char51.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char52.png | Bin 156 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char53.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char54.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char55.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char56.png | Bin 156 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char57.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char58.png | Bin 162 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char59.png | Bin 150 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char5A.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char5B.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char5C.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char5D.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char5E.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char60.png | Bin 124 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char61.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char66.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char67.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char68.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char69.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char6A.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char6B.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char6C.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char6D.png | Bin 137 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char6E.png | Bin 129 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char6F.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char70.png | Bin 108 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char71.png | Bin 114 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char72.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char73.png | Bin 138 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char74.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char75.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char76.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char77.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char78.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char79.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char7A.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char7B.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char7C.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char7D.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char7E.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/plain/70/char7F.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char.data | 130 - .../jsmath/fonts/msbm10/plain/85/char00.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char01.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char02.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char03.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char04.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char05.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char06.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char07.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char08.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char09.png | Bin 182 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char0A.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char0B.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char0C.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char0D.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char0E.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char0F.png | Bin 193 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char10.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char11.png | Bin 181 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char12.png | Bin 177 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char13.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char14.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char15.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char16.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char17.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char18.png | Bin 188 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char19.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char1A.png | Bin 195 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char1B.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char1C.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char1D.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char1E.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char1F.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char20.png | Bin 170 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char21.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char22.png | Bin 194 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char23.png | Bin 190 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char24.png | Bin 184 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char25.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char26.png | Bin 183 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char27.png | Bin 180 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char28.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char29.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char2A.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char2B.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char2C.png | Bin 147 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char2D.png | Bin 139 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char2E.png | Bin 132 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char2F.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char30.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char31.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char32.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char33.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char34.png | Bin 189 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char35.png | Bin 192 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char36.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char37.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char38.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char39.png | Bin 148 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char3A.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char3B.png | Bin 166 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char3C.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char3D.png | Bin 151 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char3E.png | Bin 156 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char3F.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char40.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char41.png | Bin 176 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char42.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char43.png | Bin 182 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char44.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char45.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char46.png | Bin 168 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char47.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char48.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char49.png | Bin 143 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char4A.png | Bin 144 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char4B.png | Bin 174 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char4C.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char4D.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char4E.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char4F.png | Bin 182 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char50.png | Bin 155 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char51.png | Bin 191 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char52.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char53.png | Bin 178 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char54.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char55.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char56.png | Bin 179 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char57.png | Bin 200 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char58.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char59.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char5A.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char5B.png | Bin 159 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char5C.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char5D.png | Bin 157 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char5E.png | Bin 158 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char60.png | Bin 140 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char61.png | Bin 160 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char66.png | Bin 197 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char67.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char68.png | Bin 149 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char69.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char6A.png | Bin 173 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char6B.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char6C.png | Bin 145 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char6D.png | Bin 136 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char6E.png | Bin 127 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char6F.png | Bin 131 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char70.png | Bin 108 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char71.png | Bin 117 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char72.png | Bin 141 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char73.png | Bin 152 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char74.png | Bin 175 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char75.png | Bin 171 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char76.png | Bin 186 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char77.png | Bin 187 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char78.png | Bin 163 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char79.png | Bin 156 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char7A.png | Bin 161 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char7B.png | Bin 167 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char7C.png | Bin 165 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char7D.png | Bin 164 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char7E.png | Bin 169 -> 0 bytes .../jsmath/fonts/msbm10/plain/85/char7F.png | Bin 150 -> 0 bytes sagenb/data/jsmath/fonts/msbm10/plain/def.js | 273 - sagenb/data/jsmath/jsMath-BaKoMa-fonts.js | 428 -- sagenb/data/jsmath/jsMath-autoload.html | 53 - sagenb/data/jsmath/jsMath-controls.html | 467 -- sagenb/data/jsmath/jsMath-easy-load.js | 157 - .../jsmath/jsMath-fallback-mac-mozilla.js | 107 - .../data/jsmath/jsMath-fallback-mac-msie.js | 200 - sagenb/data/jsmath/jsMath-fallback-mac.js | 29 - sagenb/data/jsmath/jsMath-fallback-pc.js | 29 - sagenb/data/jsmath/jsMath-fallback-symbols.js | 28 - sagenb/data/jsmath/jsMath-fallback-unix.js | 29 - .../data/jsmath/jsMath-global-controls.html | 106 - sagenb/data/jsmath/jsMath-global.html | 414 -- sagenb/data/jsmath/jsMath-loader-omniweb4.js | 39 - sagenb/data/jsmath/jsMath-loader-post.html | 78 - sagenb/data/jsmath/jsMath-loader.html | 92 - sagenb/data/jsmath/jsMath-msie-mac.js | 53 - sagenb/data/jsmath/jsMath-old-browsers.js | 58 - sagenb/data/jsmath/jsMath.js | 51 - sagenb/data/jsmath/local/macros.js | 17 - sagenb/data/jsmath/plugins/CHMmode.js | 85 - sagenb/data/jsmath/plugins/autoload.js | 474 -- sagenb/data/jsmath/plugins/global.js | 52 - sagenb/data/jsmath/plugins/mimeTeX.js | 221 - sagenb/data/jsmath/plugins/noCache.js | 71 - sagenb/data/jsmath/plugins/noGlobal.js | 33 - sagenb/data/jsmath/plugins/noImageFonts.js | 35 - sagenb/data/jsmath/plugins/smallFonts.js | 70 - .../data/jsmath/plugins/spriteImageFonts.js | 372 - sagenb/data/jsmath/plugins/tex2math.js | 406 - sagenb/data/jsmath/test/index-images.html | 111 - sagenb/data/jsmath/test/index.html | 114 - sagenb/data/jsmath/test/jsMath40.jpg | Bin 1953 -> 0 bytes sagenb/data/jsmath/test/sample.html | 165 - sagenb/data/jsmath/uncompressed/def.js | 1442 ---- sagenb/data/jsmath/uncompressed/font.js | 1677 ----- .../uncompressed/jsMath-fallback-mac.js | 1016 --- .../jsmath/uncompressed/jsMath-fallback-pc.js | 977 --- .../uncompressed/jsMath-fallback-symbols.js | 415 -- .../uncompressed/jsMath-fallback-unix.js | 935 --- sagenb/data/jsmath/uncompressed/jsMath.js | 6569 ----------------- 3287 files changed, 24371 deletions(-) delete mode 100644 sagenb/data/jsmath/COPYING.txt delete mode 100644 sagenb/data/jsmath/blank.gif delete mode 100644 sagenb/data/jsmath/easy/load.js delete mode 100644 sagenb/data/jsmath/extensions/AMSmath.js delete mode 100644 sagenb/data/jsmath/extensions/AMSsymbols.js delete mode 100644 sagenb/data/jsmath/extensions/HTML.js delete mode 100644 sagenb/data/jsmath/extensions/autobold.js delete mode 100644 sagenb/data/jsmath/extensions/bbox.js delete mode 100644 sagenb/data/jsmath/extensions/boldsymbol.js delete mode 100644 sagenb/data/jsmath/extensions/double-click.js delete mode 100644 sagenb/data/jsmath/extensions/eqn-number.js delete mode 100644 sagenb/data/jsmath/extensions/fbox.js delete mode 100644 sagenb/data/jsmath/extensions/font.js delete mode 100644 sagenb/data/jsmath/extensions/leaders.js delete mode 100644 sagenb/data/jsmath/extensions/mathchoice.js delete mode 100644 sagenb/data/jsmath/extensions/mimeTeX.js delete mode 100644 sagenb/data/jsmath/extensions/moreArrows.js delete mode 100644 sagenb/data/jsmath/extensions/newcommand.js delete mode 100644 sagenb/data/jsmath/extensions/underset-overset.js delete mode 100644 sagenb/data/jsmath/extensions/verb.js delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/100/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/120/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/144/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/173/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/207/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/249/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/298/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/358/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/430/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/50/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/60/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/70/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/85/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/alpha/def.js delete mode 100644 sagenb/data/jsmath/fonts/msbm10/def.js delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/100/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/120/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/144/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/173/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/207/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/249/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/298/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/358/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/430/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/50/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/60/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/70/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char.data delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char00.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char01.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char02.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char03.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char04.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char05.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char06.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char07.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char08.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char09.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char0A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char0B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char0C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char0D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char0E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char0F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char10.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char11.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char12.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char13.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char14.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char15.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char16.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char17.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char18.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char19.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char1A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char1B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char1C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char1D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char1E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char1F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char20.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char21.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char22.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char23.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char24.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char25.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char26.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char27.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char28.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char29.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char2A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char2B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char2C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char2D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char2E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char2F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char30.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char31.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char32.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char33.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char34.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char35.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char36.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char37.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char38.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char39.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char3A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char3B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char3C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char3D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char3E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char3F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char40.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char41.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char42.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char43.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char44.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char45.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char46.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char47.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char48.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char49.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char4A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char4B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char4C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char4D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char4E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char4F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char50.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char51.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char52.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char53.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char54.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char55.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char56.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char57.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char58.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char59.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char5A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char5B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char5C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char5D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char5E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char60.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char61.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char66.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char67.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char68.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char69.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char6A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char6B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char6C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char6D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char6E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char6F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char70.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char71.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char72.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char73.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char74.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char75.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char76.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char77.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char78.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char79.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char7A.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char7B.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char7C.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char7D.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char7E.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/85/char7F.png delete mode 100644 sagenb/data/jsmath/fonts/msbm10/plain/def.js delete mode 100644 sagenb/data/jsmath/jsMath-BaKoMa-fonts.js delete mode 100644 sagenb/data/jsmath/jsMath-autoload.html delete mode 100644 sagenb/data/jsmath/jsMath-controls.html delete mode 100644 sagenb/data/jsmath/jsMath-easy-load.js delete mode 100644 sagenb/data/jsmath/jsMath-fallback-mac-mozilla.js delete mode 100644 sagenb/data/jsmath/jsMath-fallback-mac-msie.js delete mode 100644 sagenb/data/jsmath/jsMath-fallback-mac.js delete mode 100644 sagenb/data/jsmath/jsMath-fallback-pc.js delete mode 100644 sagenb/data/jsmath/jsMath-fallback-symbols.js delete mode 100644 sagenb/data/jsmath/jsMath-fallback-unix.js delete mode 100644 sagenb/data/jsmath/jsMath-global-controls.html delete mode 100644 sagenb/data/jsmath/jsMath-global.html delete mode 100644 sagenb/data/jsmath/jsMath-loader-omniweb4.js delete mode 100644 sagenb/data/jsmath/jsMath-loader-post.html delete mode 100644 sagenb/data/jsmath/jsMath-loader.html delete mode 100644 sagenb/data/jsmath/jsMath-msie-mac.js delete mode 100644 sagenb/data/jsmath/jsMath-old-browsers.js delete mode 100644 sagenb/data/jsmath/jsMath.js delete mode 100644 sagenb/data/jsmath/local/macros.js delete mode 100644 sagenb/data/jsmath/plugins/CHMmode.js delete mode 100644 sagenb/data/jsmath/plugins/autoload.js delete mode 100644 sagenb/data/jsmath/plugins/global.js delete mode 100644 sagenb/data/jsmath/plugins/mimeTeX.js delete mode 100644 sagenb/data/jsmath/plugins/noCache.js delete mode 100644 sagenb/data/jsmath/plugins/noGlobal.js delete mode 100644 sagenb/data/jsmath/plugins/noImageFonts.js delete mode 100644 sagenb/data/jsmath/plugins/smallFonts.js delete mode 100644 sagenb/data/jsmath/plugins/spriteImageFonts.js delete mode 100644 sagenb/data/jsmath/plugins/tex2math.js delete mode 100644 sagenb/data/jsmath/test/index-images.html delete mode 100644 sagenb/data/jsmath/test/index.html delete mode 100644 sagenb/data/jsmath/test/jsMath40.jpg delete mode 100644 sagenb/data/jsmath/test/sample.html delete mode 100644 sagenb/data/jsmath/uncompressed/def.js delete mode 100644 sagenb/data/jsmath/uncompressed/font.js delete mode 100644 sagenb/data/jsmath/uncompressed/jsMath-fallback-mac.js delete mode 100644 sagenb/data/jsmath/uncompressed/jsMath-fallback-pc.js delete mode 100644 sagenb/data/jsmath/uncompressed/jsMath-fallback-symbols.js delete mode 100644 sagenb/data/jsmath/uncompressed/jsMath-fallback-unix.js delete mode 100644 sagenb/data/jsmath/uncompressed/jsMath.js diff --git a/sagenb/data/jsmath/COPYING.txt b/sagenb/data/jsmath/COPYING.txt deleted file mode 100644 index d64569567..000000000 --- a/sagenb/data/jsmath/COPYING.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/sagenb/data/jsmath/blank.gif b/sagenb/data/jsmath/blank.gif deleted file mode 100644 index 8b27096e0ededd2581cf70db01b4d269b906c767..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43 scmZ?wbhEHbWMp7u_`qQJ|Nnmm1_s5SEQ~;kK?g*DWEhy3To@Uw0o@4)ng9R* diff --git a/sagenb/data/jsmath/easy/load.js b/sagenb/data/jsmath/easy/load.js deleted file mode 100644 index 773403b29..000000000 --- a/sagenb/data/jsmath/easy/load.js +++ /dev/null @@ -1,164 +0,0 @@ -/********************************************************************** - * - * Customize the values given below to suit your needs. - * You can make additional copies of this file with - * different customizated settings if you need to load - * jsMath with different parameters. - * - * Load this page via: - * - * - * - * (If you are including this file into your page via Server-Side - * Includes, you should remove line above.) - * - * You can make copies of this file with different settings - * if you need to have several different configurations. - * - **********************************************************************/ - -if (!window.jsMath) {window.jsMath = {}} - -jsMath.Easy = { - // - // The URL of the root jsMath directory on your server - // (it must be in the same domain as the HTML page). - // It should include "http://yoursite.com/", or should - // be relative to the root of your server. It is possible - // to be a relative URL, but it will be relative to the - // HTML page loading this file. - // - // If you leave this blank, jsMath will try to look it up from - // the URL where it loaded this file, but that may not work. - // - root: "", - - // - // The default scaling factor for mathematics compared to the - // surrounding text. - // - scale: 120, - - // - // 1 means use the autoload plug-in to decide if jsMath should be loaded - // 0 means always load jsMath - // - autoload: 1, - - // - // Setting any of these will cause the tex2math plugin to be used - // to add the
and tags that jsMath needs. See the - // documentation for the tex2math plugin for more information. - // - processSlashParens: 1, // process \(...\) in text? - processSlashBrackets: 1, // process \[...\] in text? - processDoubleDollars: 1, // process $$...$$ in text? - processSingleDollars: 0, // process $...$ in text? - processLaTeXenvironments: 0, // process \begin{xxx}...\end{xxx} outside math mode? - fixEscapedDollars: 0, // convert \$ to $ outside of math mode? - doubleDollarsAreInLine: 0, // make $$...$$ be in-line math? - allowDisableTag: 1, // allow ID="tex2math_off" to disable tex2math? - // - // If you want to use your own custom delimiters for math instead - // of the usual ones, then uncomment the following four lines and - // insert your own delimiters within the quotes. You may want to - // turn off processing of the dollars and other delimiters above - // as well, though you can use them in combination with the - // custom delimiters if you wish. See the tex2math documentation - // for more details. - // - //customDelimiters: [ - // '[math]','[/math]', // to begin and end in-line math - // '[display]','[/display]' // to begin and end display math - //], - - // - // Disallow the use of the @(...) mechanism for including raw HTML - // in the contents of \hbox{}? (If used in a content-management system - // where users are allowed to enter mathematics, setting this to 0 - // would allow them to enter arbitrary HTML code within their - // math formulas, and that poses a security risk.) - // - safeHBoxes: 1, - - // - // Show TeX source when mathematics is double-clicked? - // - allowDoubleClicks: 1, - - // - // Show jsMath font warning messages? (Disabling this prevents yours - // users from finding out that they can have a better experience on your - // site by installing some fonts, so don't disable this). - // - showFontWarnings: 1, - - // - // Use "Process" or "ProcessBeforeShowing". See the jsMath - // author's documentation for the difference between these - // two routines. - // - method: "Process", - - // - // List of plug-ins and extensions that you want to be - // loaded automatically. E.g. - // ["plugins/mimeTeX.js","extensions/AMSsymbols.js"] - // - loadFiles: [], - - // - // List of fonts to load automatically. E.g. - // ["cmmib10"] - // - loadFonts: [], - - // - // List of macros to define. These are of the form - // name: value - // where 'value' is the replacement text for the macro \name. - // The 'value' can also be [value,n] where 'value' is the replacement - // text and 'n' is the number of parameters for the macro. - // Note that backslashes must be doubled in the replacement string. - // E.g., - // { - // RR: '{\\bf R}', - // bold: ['{\\bf #1}', 1] - // } - // - macros: {}, - - // - // Allow jsMath to enter global mode? - // (Uses frames, so may not always work with complex web sites) - // - allowGlobal: 1, - - // - // Disable image fonts? (In case you don't load them on your server.) - // - noImageFonts: 0 - -}; - -/****************************************************************/ -/****************************************************************/ -// -// DO NOT MAKE CHANGES BELOW THIS -// -/****************************************************************/ -/****************************************************************/ - -if (jsMath.Easy.root == "") { - jsMath.Easy.root = document.getElementsByTagName("script"); - jsMath.Easy.root = jsMath.Easy.root[jsMath.Easy.root.length-1].src - if (jsMath.Easy.root.match(/\/easy\/[^\/]*$/)) { - jsMath.Easy.root = jsMath.Easy.root.replace(/\/easy\/[^\/]*$/,""); - } else { - jsMath.Easy.root = jsMath.Easy.root.replace(/\/(jsMath\/(easy\/)?)?[^\/]*$/,"/jsMath"); - } -} -jsMath.Easy.root = jsMath.Easy.root.replace(/\/$/,""); // trim trailing "/" if any - -document.write(' - * - * after loading jsMath.js itself. The user will need to have - * the msbm10.ttf font installed, otherwise corresponding unicode - * characters will be used, but the mapping is not perfect, and it is not - * customized on a per-browser basis as it probably should be. - * - * If the font isn't installed, the user will receive a message indicating - * that fact, and pointing to the jsMath web site where the font can be - * downloaded. - * - * Once this file is loaded, you can use \char{msbm10}{nn} to access - * any character in the font. In addition, the \msbm10 macro will switch to - * the eufm font - * - * --------------------------------------------------------------------- - * - * jsMath is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * jsMath is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with jsMath; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -jsMath.Add(jsMath.TeX,{ - - msbm10: [ - // 00 - 0F - [0.778,0.757,0.251], - [0.778,0.757,0.251], - [0.778,0.794,0.303], - [0.778,0.794,0.303], - [0.778,0.706,0.206], - [0.778,0.706,0.206], - [0.778,0.706,0.206], - [0.778,0.706,0.206], - [0.778,0.757,0.251], - [0.778,0.757,0.251], - [0.778,0.794,0.303], - [0.778,0.794,0.303], - [0.778,0.636,0.136], - [0.778,0.636,0.136], - [0.778,0.794,0.303], - [0.778,0.794,0.303], - // 10 - 1F - [0.778,0.741,0.232], - [0.778,0.741,0.232], - [0.778,0.741,0.232], - [0.778,0.741,0.232], - [0.778,0.92,0.42], - [0.778,0.92,0.42], - [0.778,0.757,0.251], - [0.778,0.757,0.251], - [0.778,0.757,0.262], - [0.778,0.757,0.262], - [0.778,0.757,0.262], - [0.778,0.757,0.262], - [0.778,0.367,-0.133], - [0.778,0.794,0.303], - [0.889,0.689,0.194], - [0.889,0.741,0.194], - // 20 - 2F - [0.778,0.636,0.136], - [0.778,0.636,0.136], - [0.778,0.757,0.251], - [0.778,0.757,0.251], - [0.778,0.794,0.285], - [0.778,0.794,0.285], - [0.778,0.757,0.251], - [0.778,0.757,0.251], - [0.778,0.636,0.136], - [0.778,0.636,0.136], - [0.778,0.794,0.303], - [0.778,0.794,0.303], - [0.5,0.741,0.251], - [0.278,0.741,0.251], - [0.222,0.582,0.0817], - [0.389,0.582,0.0817], - // 30 - 3F - [0.611,0.689], - [0.722,0.689], - [0.611,0.689], - [0.722,0.689], - [0.778,0.794,0.303], - [0.778,0.794,0.303], - [0.778,0.706,0.206], - [0.778,0.706,0.206], - [1,0.367,-0.133], - [1,0.367,-0.133], - [1,0.367,-0.133], - [1,0.367,-0.133], - [1,0.367,-0.133], - [1,0.367,-0.133], - [0.778,0.582,0.0817], - [0.778,0.582,0.0817], - // 40 - 4F - [0.556,0.689], - [0.722,0.689], - [0.667,0.689], - [0.722,0.689], - [0.722,0.689], - [0.667,0.689], - [0.611,0.689], - [0.778,0.689], - [0.778,0.689], - [0.389,0.689], - [0.5,0.689,0.167], - [0.778,0.689], - [0.667,0.689], - [0.944,0.689], - [0.722,0.689], - [0.778,0.689,0.167], - // 50 - 5F - [0.611,0.689], - [0.778,0.689,0.167], - [0.722,0.689], - [0.556,0.689], - [0.667,0.689], - [0.722,0.689], - [0.722,0.689], - [1,0.689], - [0.722,0.689], - [0.722,0.689], - [0.667,0.689], - [1.89,0.825,0,{n: 92}], - [2.33,0.825], - [1.89,0.825,0,{n: 94}], - [2.33,0.9], - [0,0,0], - // 60 - 6F - [0.556,0.689], - [0.639,0.689], - [0,0,0], - [0,0,0], - [0,0,0], - [0,0,0], - [0.722,0.689], - [0.556,0.689], - [0.778,0.464,-0.0363], - [0.667,0.689], - [0.444,0.689], - [0.667,0.689], - [0.778,0.539,0.0391], - [0.778,0.539,0.0391], - [0.778,0.582,0.0817], - [0.778,0.582,0.0817], - // 70 - 7F - [0.222,0.582,0.0817], - [0.389,0.582,0.0817], - [0.778,0.582,0.0817], - [0.778,0.367,-0.133], - [0.778,0.483,-0.0169], - [0.778,0.582,0.0817], - [0.778,0.757,0.262], - [0.778,0.757,0.262], - [1,0.431], - [1,0.431], - [0.778,0.582,0.0817], - [0.667,0.431,0,{ic: 0.0403}], - [0.556,0.689], - [0.54,0.689], - [0.54,0.689], - [0.429,0.431] - ] - -}); -jsMath.Setup.EncodeFont('msbm10'); - -jsMath.Font.Register({ - name: 'msbm10', - prefix: 'jsMath-', - styles: { - '.typeset .bbold': 'font-family: serif; font-weight: bold' - }, - // The test used to see if font is available - test: jsMath.Font.Test1, testChar: 0x5C, testFactor: 2, - macros: {'mathbb': ['Macro','{\\msbm #1}',1]}, - // Can add style, styles here - tex: function (font,fam) { - // do browser-specific adjustments here - }, - fallback: function (font,fam) { - jsMath.Update.TeXfontCodes({ - msbm10: [ - '≨', '≩', '≰', '≱', - '≮', '≯', '⊀', '⊁', - '≨', '≩', '≰', '≱', - '⪇', '⪈', '⋠', '⋡', - - '⋨', '⋩', '≴', '≵', - '≨', '≩', '⋠', '⋡', - '⪹', '⪺', '⪉', '⪊', - '≁', '≇', '⧸', '⧹', - - '⊊', '⊋', '⊈', '⊉', - '⫋', '⫌', '⫋', '⫌', - '⊊', '⊋', '⊈', '⊉', - '∦', '∤', '∤', '∦', - - '⊬', '⊮', '⊭', '⊯', - '⋭', '⋬', '⋪', '⋫', - '↚', '↛', '⇍', '⇏', - '⇎', '↮', '⋇', '∅', - - '∄', 'A', 'B', 'ℂ', - 'D', 'E', 'F', 'G', - 'ℍ', 'I', 'J', 'K', - 'L', 'M', 'ℕ', 'O', - - 'ℙ', 'ℚ', 'ℝ', 'S', - 'T', 'U', 'V', 'W', - 'X', 'Y', 'ℤ', '', - '', '', '', '', - - 'Ⅎ', '⅁', '', '', - '', '', '℧', 'ð', - '≂', 'ב', 'נ', 'ד', - '⋖', '⋗', '⋉', '⋊', - - '|', '||', '⧵', '∼', - '≈', '≊', '⪸', '⪷', - '↶', '↷', 'F', 'κ', - 'k', 'ℏ', 'ħ', '϶' - ] - }); - jsMath.Update.TeXfonts({ - msbm10: { - '65': {tclass: 'bbold'}, // A - '66': {tclass: 'bbold'}, // B - '68': {tclass: 'bbold'}, // D - '69': {tclass: 'bbold'}, // E - '70': {tclass: 'bbold'}, // F - '71': {tclass: 'bbold'}, // G - '73': {tclass: 'bbold'}, // I - '74': {tclass: 'bbold'}, // J - '75': {tclass: 'bbold'}, // K - '76': {tclass: 'bbold'}, // L - '77': {tclass: 'bbold'}, // M - '79': {tclass: 'bbold'}, // O - '83': {tclass: 'bbold'}, // S - '84': {tclass: 'bbold'}, // T - '85': {tclass: 'bbold'}, // U - '86': {tclass: 'bbold'}, // V - '87': {tclass: 'bbold'}, // W - '88': {tclass: 'bbold'}, // X - '89': {tclass: 'bbold'}, // Y - '124': {tclass: 'bbold'} - } - }); - jsMath.Setup.Styles({'.typeset .msbm10': 'font-family: "Arial unicode MS"'}); - } -}); diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char.data b/sagenb/data/jsmath/fonts/msbm10/plain/100/char.data deleted file mode 100644 index a492ec83f..000000000 --- a/sagenb/data/jsmath/fonts/msbm10/plain/100/char.data +++ /dev/null @@ -1,130 +0,0 @@ - msbm10: [ - [10,15,4], - [10,15,4], - [10,17,5], - [10,17,5], - [10,13,3], - [10,13,3], - [10,13,3], - [10,13,3], - [10,15,4], - [10,15,4], - [10,17,5], - [10,17,5], - [10,13,4], - [10,13,4], - [10,17,5], - [10,17,5], - [11,16,5], - [11,16,5], - [11,16,5], - [11,16,5], - [10,19,6], - [10,19,6], - [10,15,4], - [10,15,4], - [11,16,5], - [11,16,5], - [11,17,6], - [11,17,6], - [11,7,0], - [11,13,3], - [13,13,3], - [13,13,3], - [10,13,4], - [10,13,4], - [10,17,5], - [10,17,5], - [10,17,6], - [10,17,6], - [10,16,5], - [10,16,5], - [10,13,4], - [10,13,4], - [10,17,5], - [10,17,5], - [9,15,4], - [6,15,4], - [5,8,1], - [7,8,1], - [9,10,0], - [11,10,0], - [9,10,0], - [11,10,0], - [10,17,5], - [10,17,5], - [10,13,3], - [10,13,3], - [14,7,0], - [14,7,0], - [14,9,1], - [14,9,1], - [14,9,1], - [14,7,0], - [11,9,1], - [11,10,1], - [7,16,3], - [10,10,0], - [9,10,0], - [10,11,1], - [10,10,0], - [9,10,0], - [9,10,0], - [11,11,1], - [11,10,0], - [6,10,0], - [7,12,2], - [11,10,0], - [9,10,0], - [13,10,0], - [10,11,1], - [11,11,1], - [9,10,0], - [11,13,3], - [10,10,0], - [8,11,1], - [9,10,0], - [10,11,1], - [11,11,1], - [14,11,1], - [10,10,0], - [10,10,0], - [9,10,0], - [28,4,-8], - [34,4,-8], - [27,4,-8], - [33,4,-9], - [1,1,-1], - [7,10,0], - [9,11,1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [10,11,1], - [8,12,1], - [11,7,0], - [11,12,1], - [7,12,1], - [9,12,1], - [10,9,1], - [10,9,1], - [9,7,0], - [9,7,0], - [2,8,1], - [5,8,1], - [10,8,1], - [11,5,-1], - [11,7,0], - [11,10,1], - [11,16,5], - [11,16,5], - [14,7,0], - [14,7,0], - [11,11,2], - [11,8,1], - [8,10,0], - [8,11,1], - [8,11,1], - [7,7,0] - ] diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char00.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char00.png deleted file mode 100644 index 8d3b9b35ec4b88dabd40a429a9cfed84b1b438c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^AT~b>GmzB3=xht5)B}7%T>t<7udJ*rCMFgb7+6+T zwqU`6r%#_ICnq~NIBeUtt*fi+?AfzGHCv)qxB#^Adb&788yc?~GaFXB2fK?;IlHa;_`6)5n5V5z fmpaICGcz;zH}XxHcD-5-Xc&X1tDnm{r-UW|W8gmh diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char01.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char01.png deleted file mode 100644 index 296ae8212a66a1bd09b26b2030815750d5d367e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^AT~b>GmzB3=xht5)B}7%T>t<7FD53oV8H@qW#w(# zww0BYIXE~ZCnujhdp0mI@afa1U0q#3HM~aRMnEl$B|(0{3=Yq3qyafjo-U3d6?2jw z#2sK@i7}Qw5F$AviKCby_*ud>CJz~n1E#zxCwDb)>m27i@+Px0^JaiqxO=p_ICFVr fVWpslC^Ity6FX15D|>)C&@={5S3j3^P6t<7&%?vBV8Md3XU_%( z29}kTB_}5v8X9ifwymqH%fZ3n>C>k`H7#mut$|t?OM?7@862M7NCR>LJY5_^D&{07 zFf{QhG$k^2Jjh{~_-3U;)9t$rjg2>#0*U0CdF*U#+eC957}>5pO}HA>eW1#sQKXoO t*_@e~`-I4~*41HaQxax08VKZAFwA|;S0i<7;Ul2g44$rjF6*2UngBfSNG<>X diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char03.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char03.png deleted file mode 100644 index 1fc709e630723be1f6e33788dbf0bfb6d4ff3baf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^AhsY2GmsSHRk#MEv;urWT>t<7&%?uGXlS@#!2&Tc zvB1EEYf&~k@y1J5+lYz<}O!SHb>S8Pj@(X5gcy=QV$g%ZwaSW-L zlbpcN#H`R%&Dine4co-q{fwPcSsjwnH3DW7GpT!&oYoOInIOra5+Q2RxU1oi!&k?I dL`DTRhVy5*4(^&PWdSsZ!PC{xWt~$(698UxKA`{r diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char05.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char05.png deleted file mode 100644 index cde7eaebc8a7ae28a377d3cfcf2a4aa6c599a594..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^U^WXgkd-9)$P7qn1^9%x{{R1f+qP{yJUq(E%7%u9 zXV0Du3=DK|aCrLkX<1p>f&~k@y1J5+lYz?4Ea$5S>S8Pj@(X5gcy=QV$Z_y=aSW-L zlbpcN#H`R%&B&b2%xulf>|S+1PhtM!9n2mxHrFstNJ-zoIBD}T=9@CFm>iTiRZhwB h1syb)$e6~#u< zH8eCVD=P~O41D_Zse^;Vf&~k@y1J5+lYz>lR$a;g>S8Pj@(X5gcy=QV$g%fyaSW-L zlbpcN#H`R%&Dine3Dd;gw;Z3eNIEp>UTSPi-*ky>fZNMh){#<_Lo&Z>PtqZmA0{an^LB{Ts5Ts}hH diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char07.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char07.png deleted file mode 100644 index 0647c9905beff2d06d66572c5b663218096df469..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^U^WXgkd-9)$P7rS1o(uw{{R19Sy`Edg#{>3R#p}m z7`ScQHU|fX1q&8*b#)~tCj%91v0JYTlx8dm@(X5gcy=QV$g%ZwaSW-LlbpcN#H!G= zxv{aiu~D`s&A?y-tAPlE>*ZJ}he_wUraEk6VfK(wIdg6jgNo%1$0DA*1S5tHMvbj( Uzs=qlgPg_S>FVdQ&MBb@0NvC#!vFvP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char08.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char08.png deleted file mode 100644 index 4782311bb1281e5eb46bff6ff8f4efd1de882ca5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^AT~b>GmzB3=xht5R04cLT>t<7&%?uGXlPhgR<>Zl zf~QZPCMPF5I5=$EwymqH>+IRHKm~0@8(D$s8B2ovf*Bm1-ADs++&oY~EHSGmzB3=xht5v;urWT>t<7&%?uGXlS@#!2)Gv zC>lOU0pzBOwPi(KwXR_L4Lsu4$p3+0XgoTE{-7; zbCMt2Jix$mXSG_x$})qa6XY0{*&N7Wo?sEsP;KckiFbwEn$}EaX7|dS0lX7V@=bX# oFVeW!jM+cg-QAeE*)TwWp^BM*hh|mDL7zopr0EmJ?Q2+n{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char0A.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char0A.png deleted file mode 100644 index 61513fd58c99f722bad5e5d413764fba501b855f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^AhsY2GmsSHRk#ME)B}7%T>t<7FD53oV8Md3XU_%( z29}kTB_}5v8X9ifwymqH%fZ3n>C>k`HQP!wn}J#wOM?7@862M7NCR?$JY5_^D&{07 zFf{QhG$k^2Jjh{~_-3U;)9t$rjg2>#0*U0CdF*U#+eC957}>5pb!h5z%og;hVN{=x wBy{t@*#ieQ-DcG|d-MSB6>H{1g&PG7OKW+bUb&QY2xvNkr>mdKI;Vst09fHnP5=M^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char0B.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char0B.png deleted file mode 100644 index 9834e58ddf94328d3955223f645dc76a64b2b9e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^AhsY2GmsSHRk#MEv;urWT>t<7udJ+WXlS@#!2&Tc zvB1Ex|e09%!)!&rwb2l5{F;=3rfrQn|3oaKcJnG1ga1 Z3t<7&%?tbCMI_F>{&xY z!vzZ#1O^6{m6atYCvV%ft*fic!NK9_)2BdX7fW0p0(CK#1o;IsI6S+N2ITm9x;TbZ z%t=mQXku1qN@VVMFpEKHr=`P_FE160t~NFvH*%8IxVo{>IO3BFbP0l+XkK^c6@9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char0F.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char0F.png deleted file mode 100644 index 1ad2b743c43f67bfadd2efbda965ed807102a818..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^AhsY2GmsSHRk#MEv;urWT>t<7zhJ=v9v&WLWo1J{ z!?LonvuDo+1_mZ4CvV%ft*fic!NK9_)2BdX5l`G60d+B!1o;IsI6S+N2IK^Kx;TbZ z%t=mQXku1qN@VVMFzdj9g9i?rJ#b*&0Rzz!<;>j0Z#JAsOn9JkOYp>j0LCdP38E8{ z7&MtZKW#8=DB0BP^YF%&>hF4NZBsdz54JHgY|!94q|Ku831~Qjr>mdKI;Vst01|Rc Ac>n+a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char10.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char10.png deleted file mode 100644 index ac33fade557797ef7cdc93249d10e15f51d32dce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^+(0bA!VDyhCeQE%Qn~>?A+G=b{|7R~#KgL~x)v;0 zaQ5t3Wo2bUL&N0cBn56_*sse2V(u9j0*2#R49sA6q-#4vfag3JVw&9@Sn wpK?A+G=b{|7R~#Kg93+qPiA z0z*SXWo6~Sz`(O-&n71)cXf4@m6bU-I6Qs&6sU5=>0Jwesu@dy{DK)Ap4~_Ta=blV z978JRBtJ-HV3y-Jx|hM}{2qp77N-uSGisi@EazaC&l1rit90}v1M@KfEryPrSNwDz w>^gAZTtY>otjb31P*#;vh8)gt<_Qc8+ZcHl-up4j8)z(pr>mdKI;Vst0MqtHBLDyZ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char12.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char12.png deleted file mode 100644 index 391daa6ba74e846cc9277f65b35cc351acd7c3db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^+(0bA!VDyhCeQE%Qn~>?A+G=b{|7Ram6gTB!~z2Y z4Gj&qZQGWdoc#3Z)3UO%1q&89I5>25b)7wX7N~OBe)qLN)r=)Ue!&b5&u*jvIo_Tw zjv*Cuk`ox1;sg#J*v#!x)O7M&uEHc+F`a|EmooYk?}%x*a8+Q|LLr}Jjuwmx%01s? w9%LpYBzoi|FnXQ|+{)yc`+#9K|0Pz2D?WVIY`ed;0F7nvboFyt=akR{0LAS_@&Et; diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char13.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char13.png deleted file mode 100644 index 01d18c07d266c469c72deaeced2d2f021e35ed1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^+(0bA!VDyhCeQE%Qn~>?A+G=b{|7Ram6gTB#FCSf zpFVvW7#O&1+qSZ@vIPqkI5;>M8X9(Wb)7wX7N~Ng=F;^*)r=)Ue!&b5&u*jvIqse= zjv*Cuk{_fpFwe6MsN!vT7Q?vkW_iQP?3D_ePKo+hHF!*8W7E)R50G}))q73m0cS!& rvIb8Av*(wL=%yuN8=89eF{m(fr|?Q7{XBaTXe5KDtDnm{r-UW|hzUg0 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char14.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char14.png deleted file mode 100644 index ba40fb4400981fe3f8ba89ec60b44bb038d2afe2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^Ahs|IGmwlv+ISa8sR#Ikxc>kDKQJ(mhli)Etjxi| z;px+-Vq#+3wr%U`>RPa1!P&EClarHyYUXU55((78SQ6wH%;50sMjDV4?&;zfQZXkv zfuV_4p^4k4=sd&3)aXW+PU8tPE-|ERvM{hkDpNEHM!GZ;1Vq(h5 z%GgsZEa0m6$ PXcL2{tDnm{r-UW|1|m!t diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char16.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char16.png deleted file mode 100644 index e5cd8f926c4f6bb7b239a5481cf1fa5c8ae16345..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^AT~b>GmzB3=xht5v;urWT>t<7Z)j-P)z!tr!^6VD zqO7c(oSa-%R(AI6SqBG)z`($#PoFMWumGs6l%uf(sEe^A$S;_|;n|HeAjiei#WAE} zPI3YRlbpc84ctEG7?S!MRJThL~97lXWngxQvt3xp<|^i%J|+MF diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char17.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char17.png deleted file mode 100644 index 5d168840282ee248413caff743787ca82d5ce799..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^AT~b>GmzB3=xht5bOU@sT>t<7&%?u$oSbZEXn6MQ zS!HEq78aJWva+X7pLTV11qKFg+qTWY!C}FI1wfUaP72e38W~H1{DK)Ap4~_Ta$G!J z978JRBtJ-HV3adBxtGD`?M%jHr-J;MZmK$non~s0n(&KFpm}Fw_wuC6YivcL1%6@a=JOM?7@862M7NCR>rJzX3_ zD&{07Ffhrn8Qfr1+o^6~P%uZco5?8Bs?XJN$qaSp3}cR?jB0Bgqoy`Zw&aoUk(5z? zpOSFn?15bd5*aQjqRiaP%*(ewVhdwq6MuKrNlL+&&4G#GlrZn<{JSCxfR-?Ly85}S Ib4q9e02m`hf&c&j diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char19.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char19.png deleted file mode 100644 index a0d1e5f5f5bba14e1a7a21eefe742d76684c1fbe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^+(0bA!VDyhCeQE%Qd$8%A+G=b|5sL4784UQG&DSW z_UwWM3$|_BR#sLP7#NtGoc#3ZQwIl!uC6YiGWS_*B|u$_B|(0{3=Yq3qyagho-U3d z6?2jwBr-7PaU9*s?X><*U@?!!+8dQ7Esc#wxgt43m<4ngKTatt-Kdukadtw+(=!Ji z96Detn89@VnHQTG8{0DxSM~+VOr~i%t#VlEkjlfu;KnGxpId7l0I diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char1B.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char1B.png deleted file mode 100644 index e14f0db925200884890688e88e9c0f0d3ba2b6db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^+(0bI!VDyTp7(wMq_hHjLR|m<|F5j9Y-ngGCMLFE z!GfnxpPoH?HZU--tgOtz!J(_GYumPM$;rt;Wn25>765fImIV0)GdMiEkp|?%dAc}; zRLn_!aPt5Io3^yVmv2TKvc{}FOV6`SoagSC@|;QF}#tiFN8z{MzM z-mD`BCLB9ZS)j$te0#}Lo;y4|KDSwfEhHt%jD3R57`2`jF}zM<7G!X}BBU_C%1sey O6N9I#pUXO@geCw~TutHt diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char1C.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char1C.png deleted file mode 100644 index a38e7538144ee6fd7303851750008bf0563e245b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^+(69E!VDyJ99HE4Dct~{5ZC|z|DQd3mW72yOiaws z(6Fqm%)!B7+qP}W%E~|`U0q$t$;nTjK3%Y20Z`>LUom^2C}T;GUoeBivm0qZj-jWE zV@SoEtnVSpOcWVBDG-q71pjzoF5vd%wZK|IQNFb U%~eq+1E`t7)78&qol`;+01`Vnc>n+a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char1D.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char1D.png deleted file mode 100644 index 9b94f343bcd1e249a3baad15d30350a042dcc877..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^+#og!Gmz}P-N^x@v;urWT>t<7zhJ?FZQHh$m6bU- zI2allc6D`~J$qJJSy@a>EIBzjFfj1x)2BdX*1mIqniv>Mg8YIR9G=}s19JR5T^vIy z<|HRDG%-7zIecJqV`F2soAvjN%sk5_`gScdFqo5=@FI>O=)g1v6+Y=`so91G2AY;y wE1OMn7*5K3FVdQ&MBb@0Dt~Pu>b%7 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char1E.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char1E.png deleted file mode 100644 index cf786df3766f13187d2317a0bfae11c8c76c8ee5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 153 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4xHBpZ(Y^aoO+0X`wF|Ns9lD=X{j>RPa1L118D za&j_Iq+I;cGN1y+k|4ie28U-i(tsQzPZ!6KiaE&%42)rH90hFwYuE&=IGhZ%95Ng= v!Wo>joivs)aO83=oFS{Qh4YHX3LS>hTTD%C&$?~^bu)On`njxgN@xNARJks% diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char1F.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char1F.png deleted file mode 100644 index da3f975d0af04135a926c767ca91afca59bbca82..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4xHBpZ(Y^aoNB0X`wF|Ns9lD=X{j>RPa1L119u zwr$&zlaqmhMXm4DfNB^^g8YIR9G=}s19J2{T^vIy<|KP0G&BfkoPEQPI>RwjZ3dUC u##s%9RE|R|A`5y{G|r|mq*@$ikziP@%XGE3TJ8@}CxfS}pUXO@geCwojxs6$ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char20.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char20.png deleted file mode 100644 index d44ceb6921b21e768b966c72cb341c798bc57534..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^U^WXgkd-9)$P7rS1o(uw{{R1PDh)J-!PC{xWt~$(698;oI$8h# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char21.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char21.png deleted file mode 100644 index 4a1a9096dbcd45e1fa8f60dc05e50687cb71462d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^U^WXgkd-9)$P7rS2l#}z{{R1f+qP|ifq`OTVupr> zPoF+Ld-iNsSJ#3C3(CsM92^{ylaqmJ7SDU}5vYZ+B*-tA!Qt7BG$6;y)5S5QVovgd zxUE^L%p3(e48czmCUJM3VSD5g#?IDPt<7FD53YtgLKkXqcRw z?BL+AV8Md3XU}$Zb@A}<1O^6{m6bhx`gGg2Z9tXvQBB1_jf^Ehe!&b5&u*jvIU$}d zjv*Cuk`ox3ta*5Bc88r!NVpMtV0U9Gsj$}$=L@|7?=a*{ALRHIBl_l?wex^ z1$hz@+3vmBu%(3U-jXd_Vm8RJv57qlnDB;a!yzUGMuv;Ug12sFFA4#g&*16m=d#Wz Gp$P!k0!rKf diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char23.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char23.png deleted file mode 100644 index 09b74ed9308d1d94c81663d75f3ec4b787caca86..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^AhsY2GmsSHRk#MEv;urWT>t<7udJ-RV8H@0F|p+2 zKC&l#qg zD~&&BXlcG=_}btSdB(~rN>W0t;l>+Q2PTHdXZ)Y+HEeeR4QKFl^>bP0l+XkKYn(?= diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char24.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char24.png deleted file mode 100644 index f3f7844e3d8dd5c40a2f48cca8284f8ad1e9f5d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^AhsY2GmsSHRk#MER04cLT>t<7FD53oZQHg53l=t<7FD52-_Uu_hL&K*} zpLTV1Em*K%+qP}V$;l254uOGzWo2bRH9S2sc0etRB|(0{3=Yq3qyafTo-U3d6?2jw z#BI%DW9Hc4&k(#aVUlp?8a6>4Hl8)IvYTZjB4T0=EaLHDRk$>>u`&6X&&ibvSGgQg q^}HKDt?AXax+NiDbl{atg9JlmEw8`w>R2(LxeT7JelF{r5}E)c1wv2& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char26.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char26.png deleted file mode 100644 index 16f75314fcfc66db51c89ef84178e63e058e9028..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^AhrMtGmyL+__-KJX$AO%xc>kDUs+k1hleLQIoZ(A zaND+R4h{|r7A!b>_H0*IS72aZSy|cBr%!>(;x5*%2kK%h3GxeOaCmkj4ao8Eba4!+ zn3J6F;O5pWRp!I%*nr?0uR~K~FXLR6&f^VNEes3_B2-hGSehjzB2J$^s@;%s@>|dX o2XO)8zopr07;Za8UO$Q diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char27.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char27.png deleted file mode 100644 index 93c505ef9b185f6474b36b69cd3b226d97a9c350..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^AhrMtGmyL+__-KJX$AO%xc>kDUrbC)Sy`EfhbK8X zdBK7OXV0GP>gsZEaM-qO+ta5{0|Nug%F2MsX6a{51L|Td3GxeOaCmkj4ajl#ba4!+ zn3MeA=HA~T%p7Ml7=mvfP%)qJq+xU9!AF`mS$TA1uO)nyZkS8bg=d#Wzp$Py?C`d^F diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char28.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char28.png deleted file mode 100644 index bd025b300b7317b251e289e312e5507226085235..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^U^WXgkd-9)$P7rS2l#}z{{R19Sy@?3Ol-k|1!vEm zefsoiU|`_3ZQBeD4ZFI!92^{ylaqmJn6)1*25Mm}3GxeOaCmkj4al+aba4!+n3J6F zAZ}}xDzmdSvp|7(gNGg)%SkZ?rAYAx%Q)+FKlY%9PgND}1+lR`3+-OgP!$<{u&cp~ Zaltcg)%n>k9DwF9c)I$ztaD0e0sz^>JSG4D diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char29.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char29.png deleted file mode 100644 index b676977dc0bc1430daa03bc2457452928d0f2166..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^U^WXgkd-9)$P7rS2l#}z{{R19OiXOswrzodfrf^L zPoF+Ld-iNsSJ#3C3(CsM92^{ylaqmJ&R5UU18QL`3GxeOaCmkj4al+dba4!+n3Mb< zZflk*Ge?0AL-5mtN!*=h*aX+`@yI-#8pgt<7FD53oV8Md3XU_%( z1{xX~c6D{}@bDxjCvV%ft*orf!NK9_)2BdX=M@hg0P12a3GxeOaCmkj4af=hba4!+ zn3J5q(8R3Jl*ruiVAg>H2R2s!He+k^Xp3}s#=^$V#+Jt>XK*qRC{ffPy`m?*S;}MU z){rPQX6DV$&zw}?T)=So+uhxbRmOsBO}y+3GQS1#mzM@D2O7`d>FVdQ&MBb@0IM%a A)&Kwi diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char2B.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char2B.png deleted file mode 100644 index ff9d17621f9c2e670db801f173a8b4b69162718c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^AhsY2GmsSHRk#MEv;urWT>t<7&%?u0R#s+cXt-d( zg0pAO1_lNyD=Q}_CvV%ft*fic!NK9_)2AS1o*l(NU5q6`e!&b5&u*jvIewlljv*Cu zk`ox3m=&55nL8fLI&ffP_4l$32XZ!e9MV!aIQamtiY1eSin%k(gfEW_6A~grr_?qy vmR|Flz?h@Zl>GSJU292+FeM%qX+DO+)j~~S_P4(SO=j?P^>bP0l+XkK0iH)! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char2C.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char2C.png deleted file mode 100644 index 9bd061d5daead261bae40a96ea74324d685e33e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRa!VDyjJo{k>q!a^uLR|m<|1TycmYkf-!^5Mj ztZZm#SXNfHZQHi9XU{%;`V=T@nYUXIsF<-N$S;_|;n|HeAjizp#WAE}PIAJGgXb7n za&ve+Qq*VY%wdVH_5;hUKphO8u6{1-oD!M_E)H!VDyjYyB_7Y*|^^)2B}j z4GkR}9Fmihd3bmhELad27}(X-wQburpc?z&QX`-i#*!evU}gVm-kl_T+&BuMV6%kg%meSch?nSwac}L%%#*9>3lzKcE%{Pgg&ebxsLQ E01w1AegFUf diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char30.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char30.png deleted file mode 100644 index b118902700d832afed6ee3402f0374a204454efe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRQ!VDy*XlM2UDXjpX5ZC|z|0^pii;0OD8X7)* z`gFm91?=pWDPWe!PC{xWt~$(696B&Jt6=A diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char31.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char31.png deleted file mode 100644 index a07a39bb0a8b4e8e99b4389aa0aa9aa3ed146df4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^+(695!VDxQ+}pVUNT~<-gt-3y|KGvEVZnk0Vq#*3 zhK6NjWy#6OPoF*w3=Hh*>e{w#+u5^cfoep~-@OXd!dMdI7tG-B>_!@pW9{kU7*a7O z`9YjPV`DKh^YxapwoD#{E>i}dR-=X$eedonoKiN~($JXQX36YvVTG)VAzQ=BYn+@8 aLJS^(d{1?4gR6kXFnGH9xvXtE;Q5tZdu1ZD-G(1uAgoG1vuE&sY-V7tG-B>_!@pW8vxI7*a7O`N6CM z2QC~q5P9IhHU<|rBZGonZ8OCT3d~A17;jExV7a3m>g?Ru)Me~obB)Eo fG}n=F0t>^20KrvFR^4nsgBUzr{an^LB{Ts5kJmkk diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char34.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char34.png deleted file mode 100644 index 6e27df903b6fdcb67e2345bfb070a11a49f92f8e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^AhsY2GmsSHRk#MEbOU@sT>t<7udJ*rCMMR^)y2cZ zbN1}nva+&m+qMM;1|}yb8yXrqI5;d=u;A&_r$Chqr5db2jf^Ehe!&b5&u*jvIRTz7 zjv*Cuk`ox3xD}e7Gju#jOL#ErKmqfK74v5EJ#zcet<7&%?u0R#w*4)wONg zw!px^vuDp58X6`iCp$PeELgDM>C>k`H3zD8PX%gWED7=pW^j0RBMrz2_H=O!shE?T zz|h32(3H*C@q|T?$J)A)r94%QnK?RxQJwj8PcH8q9vM{`>4r-(mk)N`NpC#C@a&~S y5figHGqbUW{pBMwjn$0}a#&|CI>ulu!|?t!zs%z;7bAhjGkCiCxvXHhwr$&h3V!FffwVD}1o;IsI6S+N2ISa#x;TbZ%t=m2NO&-d zK}EvCfyFtJqr>MKgV1E&1}8Z`ZVQPS(iRSv8dpbupF%`2{mLJiCzw1kaDbQNMI9SW|(2XRV$S+xesU{gQu&X%Q~loCIBlVKnVZ< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char38.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char38.png deleted file mode 100644 index 28d78af6cb03666c48701e52b4cb191077aa677f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^d_c_3!VDx&WhQC?DY*cj5ZC|z|0^pi^YHLEI5;FH zCkF-wK7IPMtE=nm*|R{Yt@V%jfhrkGg8YIR9G=}s19CJxT^vIy<|HRHG?uY#V^BEy w?7)FJ3`=JA^s@H$o^5E#VH2p_V8Fw`P~yoV#8opP9H@uE)78&qol`;+0Fcx%tN;K2 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char39.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char39.png deleted file mode 100644 index 787cf8bd1ff6c2034d08f098a712c0a717ae70a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^d_c_3!VDx&WhQC?DY*cj5ZC|z|MT$hC@U)`Cnq~N zIGjCuwyUcvFfj1x)2BeG589?GK$VOoL4Lsu4$p3+0XZ6;E{-7;bCMGr82Xw*49;FU xaOc2`(DG~NIJ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char3A.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char3A.png deleted file mode 100644 index e8f9c23830a1665137e13c6fa48382962c0bf110..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^d_c^}!VDxoBr`+-DU|@95ZC|z|0^pii;0Pqm6a`6 zuwdJ^ZH9)14h{~<$;nTjK0SN(EKot8#-kpfdd89FS$q5M$ zk{--Dz`&v{al=t0{o1Mzq1+M@cY1qGdvqlwfJ`ojNAHe3JL+H;PN cUIrnCl`1@nz1^?$fQB)6y85}Sb4q9e03ty?@&Et; diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char3B.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char3B.png deleted file mode 100644 index 80a844480c6325ddc832591dafce26ca6860244e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^d_c^}!VDxoBr`+-DU|@95ZC|z|0^piCnqN_Sg^ps z!QtuCr-p`xfq{W#Wo2j2p53->8&JW^JlB0d^^7G!e!&b5&u*jvIgXw#jv*Cuk`odV z9?Uwxz&3ZPLsRjyGiNdxd3Xe6bLC{uDI|(1crknuwRWgEH#5%I@e>aZACJOUo;AV} dVg?2b3{R)?Zhc;`U@_1z22WQ%mvv4FO#nFZK1~1s diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char3C.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char3C.png deleted file mode 100644 index 4e97d33f414f560af79b99fd72d7c44f8b024579..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^d_c^}!VDxoBr`+-DfIxK5ZC|z|1VgufQN_Y>C>mm z%F1PBWeyGwhK7dQwr%U`>Pk*dK6~~oP|Y5}f^|SGj3q&S!3+-1ZlnP@&YmugAr*6y z6B2G5*f5)sV~2P_SuVq+H@mmL*JCIOcAnnSCTUJ?=4_^bd6ta}nbt`$%u{9ES{A)S8mO1S)78&qol`;+ E0BIhTr>mdKI;Vst E01rnq=Kufz diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char3F.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char3F.png deleted file mode 100644 index f9b3496875523aafd3440a8a98c13ad802251b13..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^+(695!VDxQ+}pVUNNEN5gt-3y{~yR)uwX$~S66a! zG7k@rp`qcnZQIJq$^rue9UL6ao;~~Y=~JLGmV?i?1C=tC1o;IsI6S+N2IRPSx;TbZ z%t=m2usD0*@PPvbS;x+3DNH?lK=8nU1AzxFBpo?$;OK#*1DuP*3}q4%63lKNxNz>k o0o@}9>=;-4dvZ#Z$AE!h!#eI?clQT>1DeO+>FVdQ&MBb@0P_9BQ!VDxe)>j+`QYryHA+G=b{}&SzD=RDO>gqBy zG*nhrc5rZb`t)gXa`M@;X9EKRfeIcxe)|fjp0OmzFPOpM*^M+H$I8>iF{ENnazX=x zo`7L<<3b%>6~+@$3`#-^bk3ce#mD2b%9oLcCx?eKAW3L~2Dhhh0z=_~BP?ue3|pJH V?SHI0OIy diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char41.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char41.png deleted file mode 100644 index f02c3d6b17738c41c51cc751777231cbdb3dc9be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^AT}2ZGmxy8xzq=w)B}7%T>t<7FD53YtgPJC)wN*3 zf~QZPCMPFv+qNw*Fwnul;q2M7Wo2bRHKEqdlYv?oOM?7@862M7NCR>#JzX3_D&{07 zB-}X4z+~*eQXR!G;mMp?3`((54NExP4JU+r>`6#?Af)f9nUIj3kdcvKFeOPWn3>`2 XBaRby8MJbNhA?=#`njxgN@xNA+eAEu diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char42.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char42.png deleted file mode 100644 index 82e2def8debe78974f0a5a92031f1142b7a592fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRQ!VDy*XlM2UDXjpX5ZC|z|0^piKYjYt(9lp! zOl-k|1zlZTXV0EZPEOvoZChYqpo4=$Sy>rSSx;zaDo__=NswPKgTu2MX+VyJr;B4q z#hhe|y;WBk+1T{-*4^ack%@U@$?7o4nCrwdzKtvs19v+-;^~%hc*10`)1>jC$LT}4 aJPbwQJkR$f70(2k!QkoY=d#Wzp$Pyj*ghKo diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char43.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char43.png deleted file mode 100644 index dcc89035ac364e21fa49df40eb9ebaa0061e45a3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^AT~D(GmzZkz^DzR)B}7%T>t<7zhJ?FZQHgfD=VKp zd$z2stgEZb!NDOgFwoG@FgZE->C>k`HAkl`?*wXLED7=pW^j0RBMr!L^mK6yshE?T zaKm)5PD|s`TIO~^=H1%NhgH}Pimt<7Z)j*JCMH%^R`&Gi z(*+9_Y}>X?Sy}n)*|W*X$$^1^4h{}oU0pzB{AK!{KwXR_L4Lsu4$p3+0Xe#!E{-7; zbCNCgR$XOeWAoGNd&Qz~QeYR0OOa)>r(emYn@lcxW(gK1nF}?T8O)z@7C(8VzZR&G N!PC{xWt~$(698MwH}wDj diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char45.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char45.png deleted file mode 100644 index 1f71c24d0d4f1f5108ed52577420ea1a8b4729e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRQ!VDy*XlM2UDXjpX5ZC|z|BH!rSneCy^Y(QO%B|(0{3=Yq3qyahRo-U3d z6?2j;_Eue8$H@~D!}AtMuHm`tpfa18nOS_h^$Z(6rAW&ID$R}z9Vvkc1w1`MF$@eP Xj9hv`{>dUhBN#kg{an^LB{Ts5hAKE& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char46.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char46.png deleted file mode 100644 index e61e7531671a651175c9b1ab6628252dc734863f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRQ!VDy*XlM2UDfIxK5ZC|z|0^picXf4b+qNw^ zIr;3_vtnXm3l=PR`t)gFV4#D8Ls?lFP)%%9!9$=H#*!evU~Pgg&ebxsLQ0FZz?PXGV_ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char47.png deleted file mode 100644 index 5ce6291e4464c6d5feafe69d97f8825842b60e9b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^+#t-t3?!qQvP6NDR)9~4>;M1%#l*xGELc!hR<>>1 zHf3eyvuDqCb#*y7I0Oa;8X6iVCnrCB`V^?lu32?DP#0rKkY6x^!?PP{K#rfMi(^Q| zoa6+Hy_;&KnVD~|VV!)~ wwTBMOJ$K;18qQ@BT-!y?F=~1hB_uE~2rvsR6XDTI2Aa&^>FVdQ&MBb@0E~n~@&Et; diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char48.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char48.png deleted file mode 100644 index 27d85ab9806e27fc3642603428929b25c1311c66..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^+(695!VDxQ+}pVUNGS&Rgt-3y|6fc@Y}>YNWo2bg zpFUl%U_o+na$sPfgM&j?R~Jxr@}qr5K*fwDL4Lsu4$p3+0Xe#!E{-7;bCPESP7H_> zJaFLLxdX?JF&xS{$I%t*DeF?WWT|!X3C9(kot&Mmj0`$kIp%$p;z|Z;WbkzLb6Mw< G&;$SlCOSm` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char49.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char49.png deleted file mode 100644 index f038cbb9835abb4d71e750a4cadd15dc66028760..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gLHsTi0l9V|HZ__%F4=;larr5 zeHs`T=-}Yc)zt+Q|9<_p4p13mNswPKgTu2MX+Vycr;B4q#hhdfZr;R%vb2PRL(SaG Z%nT7VEYYQP9`zt&Jzf1=);T3K0RSB?CglJC diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char4A.png deleted file mode 100644 index dc0417b3a7857b22a7176c70edbb76ecb2d9f855..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)J!VDy1cJERKQYryHA+G=b|5sL4784WOwryKk zSy@+CS8{Ulf&~j492^1z1D`&93RLhy>%c^ydd89FS$q!~( zE^cUSoZQ>k*qAFRw`fW(C-Y&GZ3%2`3p)9D5*Qf7%Q?OX=$I7&^)Pt4`njxgN@xNA DO|>-9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char4B.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char4B.png deleted file mode 100644 index 2abafdee5114c7049f05b4396f250c12893d53d8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^+(695!VDxQ+}pVUNNEN5gt-3y|6fc@Y}>YNXV0Eh zR#q-6D>F1SOioUI`t)g6S65(Qpo4?Mf&~kJ$|{>0jDflsOM?7@862M7NCR?gJzX3_ zD&{0x?9Dp3<|;4Gn;4!PZ3&4RwbP0l+XkKJ2OCm diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char4C.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char4C.png deleted file mode 100644 index e88d51272868f02d3fb7835d9aace5d4bf3c56cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRQ!VDy*XlM2UDY*cj5ZC|z|MT$hBqt|}iHUV} zbr~8O1_lN?I5?D*l>w!^kM#2ZRWgkDUrbC)Sy|c8&~U+m z1y7$oWnp1Cd-m+MZQIJq%94|l0|Nsc92~m3x_~MLlome#YGf=4@(X5gcy=QV$Z_*@ zaSW-Lle}YdcVlDrcNVsHdwF?M@9^;4i8eQQ^N{J%RBuVY=8Sh9=kf&3UOIb*cadb- so0bc~q6#Hfm;`El=PrNn=nyNzi=%>@<(zJ90Gi0)>FVdQ&MBb@04v=~0{{R3 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char4E.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char4E.png deleted file mode 100644 index 97cbf2ac6ad070bb81a07c42e43f8bc87ebf4707..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^AT~D(GmzZkz^DzRv;urWT>t<7FD53oV8Md3XU`fM z8Y(L*KYjYNtE($HIk~K?EHE(8!NFnMwrxOVH#(U?#xRxy`2{mLJiCzw;M1%#l*zAy1L5B$`&kG zaQ5t32M333+qNYqCmR|X1_lN`efkurW|4elF;EL*NswPKgTu2MX+TbZr;B4q#hm1X z8>ZQ8%*@Qcz1rrkH* zwryo)Wy#6Ofq{Vz4h~&iT|n8BcABC<#f&9Ee!&b5&u*jvIU1fWjv*Cul4k@4+BG&d z_RckCaxq%s(=hprg5a_)h7A_XT9$@_8axbKrtF&X?;O4Y^)Pt4`njxgN@xNAXk{+x diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char51.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char51.png deleted file mode 100644 index ad9bb228267a9e8a81893e968b59b37cbccb9d7b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^+#og!Gmz}P-N^x@v;urWT>t<7udJ*rCMMR^)m2tj zwqU`6vuDpbI5=$EwkWJ`^$p7t2W0s2O~yU@@3u zlAQ21Eg_*Z<$)PnR>`c5CmB2pJFYc&w0(J@$?mY_DGwXNJ^^8u|1B2_fwnMsy85}S Ib4q9e084sG+yDRo diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char52.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char52.png deleted file mode 100644 index 91a763bb7c25b7d78912d95731fcd45c63aa7ec4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^AT}2ZGmxy8xzq=w)B}7%T>t<7FD52-_Uu_@W#t76 z7Hr$LEjc;)>C>lWWo3bZfesE1U0q#3HM{Fe&45}MOM?7@862M7NCR>#JY5_^D&{2L zFfC5AW@eUF|9y&q&CINgQ}}_(ZzFa#Gd=C%1v=3#RvjsqnI`fCOG}ukskwAAG8F1_ V$2V;I;|4T?!PC{xWt~$(698JbIXVCU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char53.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char53.png deleted file mode 100644 index 760667b8a7782b67ed1db28be086b7bfcd1d85e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^96-#?!VDxgY`rK3q|^g^LR|m<|1TyccJ}Pqr%#`j zm6dgMb#2?WEjc;a!NDOgFwoG@aKVBFKsA1QpRWXJVJr#q3ubV5b|VeQvG;Uw45^rt z{2=b8U8ACQkYH6#q egv1OU35G^>p8G*Jr(6LV#o+1c=d#Wzp$Py=s6bQz diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char54.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char54.png deleted file mode 100644 index 823f2b30adeef1655a8c4fca1f4175bbc66f9a9d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRQ!VDy*XlM2UDa8Pv5ZC|z|BH!`n^ BG!6g& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char55.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char55.png deleted file mode 100644 index 964290654ce73a98e7e23f200e3d97d8b09cadc8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^AT~D(GmzZkz^DzR)B}7%T>t<7zir#Lr%#_QSg^p* z&`?ZF?CjaI$;ruOWo3bZfesE1U0q#3HA^oX^Z;sMED7=pW^j0RBMrzg@N{tushE>| z!*q3Hu@$qmHFGpWM@j+1WbT3q!V)udC3o;jNJNEAH#RUZ;M6i;V6eZyan^LJlOj+r NgQu&X%Q~loCIEG^HIV=S diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char56.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char56.png deleted file mode 100644 index 0439342a5ef8543151ba418861d5dcc9157a9702..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^+#t-t3?!qQvP6NDVt`MG>;M1%&z?P7R#s+cXxP=& zm7JXX^y$+D3l=yyI0Oa;0%a|C{CWsf%vciS7tG-B>_!@pGf;}8OY%2>gTe~DWM4ftS&mH diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char57.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char57.png deleted file mode 100644 index 67b732784ba9165f3db042a422e01866335b4c80..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^d_c_2!VDz$u3i`jq|^g^LR|m<|8Hn$c=qgBWo6|B z3l?nKwymtJ?CH~|4h{}oU0s2Jfyv3qKsEO3>aGK|FqQ=Q1v5B2yO9RuM0vV6hE&W+ zzOl8dI8^<5R@)|lHdgM4UWpw$BxB4sNEvL%G^}XZplV={6C82$=)nUAHq-=Pdc&pg zc2`&8M2-p1W*wc7$FOL!#42%y%rHi_V+;ys0}dQGcYuLmL$2VOCHXoRfVMDry85}S Ib4q9e092$=SpWb4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char58.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char58.png deleted file mode 100644 index a8bd4362f026fd605659ef0217e30f60d47a4be2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^AT}2ZGmxy8xzq=wbOU@sT>t<7udJ-h!^0ycCbnR~ zf^FNjojrTj(9keBIr-_+r)6bj4h{~1fq`9JT|kvS)|}6P8W~H1{DK)Ap4~_Ta_l@^ z978JRB=0D$IyiGLkBzZfjDJFcMdgB?#zw_&yO<|DnQ@kZ$(o;m^WNU@#uT38GHh&S i%nP*Iyw&!I88M{I5S*|_@lYtxBnD4cKbLh*2~7Yh3_ra9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char59.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char59.png deleted file mode 100644 index 1e41670146d7de61976eb064fa8b621d6f355a86..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^AT}2ZGmxy8xzq=w)B}7%T>t<7Z)j+^V8Md2va+*h z&nhb`Z`-ylIXT(E!QtuCr-6ZiU0q#3HKND*d4O6NOM?7@862M7NCR?AJzX3_D&{2L z*qU{y=P6H23{TEPo}Ale1?mO{IuQoljg1FyR;o@&nZJ+Gqex11!9+QsBp!yd#ym3r Tg;sO`4Pfwe^>bP0l+XkKg19`d diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char5A.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char5A.png deleted file mode 100644 index f2eccc1a805f8a07a2b2067675a6aebefdc0fbed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRQ!VDy*XlM2UDXjpX5ZC|z|0^pi8yXreSg_#i z*|S|;T~D7rEh{S%6BFCEZChYqpo4=$a&j_InVqup4WKT@k|4ie28U-i(tsR$PZ!6K ziaE&-Ztl&x%EH#iv~CScn@-!xV9ADr!%PYX-@Ri{DK2tg;ubToFfd@3HpoeM@F*!E gJi%gZ?W&Iq4BK=0OrrK402#&L>FVdQ&MBb@05@(x(*OVf diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char5B.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char5B.png deleted file mode 100644 index 71a2bde9e9affdfd2cf04929a3ccae7a4d3da438..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^GC<72!VDzympKIjDXjpX5ZC|z|95qDojrTDtgOtz z!9iJB`RUWA3l=O03=9+#6Eie4OioVTwrv|wSzp<#2|!(pB|(0{3=Yq3qyahlo-U3d z6?2jk7#Qcp8lRF#Xh?r8viQq20YiiKy+?mCbfiuCV33sXU|Zwrq<}lj49sHeKVpx3 Rj|FOF@O1TaS?83{1OULlJ;eY3 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char5C.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char5C.png deleted file mode 100644 index 3ae49ca525535fe69e774d73d2b07c927c51b029..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^NC>k`WuJ~ORRHQ@ED7=pW^j0RBMrzg^>lFz zshE?Tz`#5&*7y{YgusEy)Za<-4bHy2#C{+~Ond23K7rOmudZqdi5o4l6GA?>a56JY X>fn6!(jrV9XaIw!tDnm{r-UW|X&FA! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char5D.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char5D.png deleted file mode 100644 index db894ac76590cdf07f4a0d394395cfb3c888d810..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^(m>3@!VDyPt0FakluCe4i0l9V|CN=M7c5xd;NVbJ zR<>>1wx>^@1_lNuCntAxb)7wX7O3FNs|h(k^^7G!e!&b5&u*jvIR>6Cjv*Cuk`odV zB5uabJix#-hmnWJyKD9|)lLS>HD_IUc+SQp6h16VULnNc!91D4Q;y>c_X1UGpk4+~ LS3j3^P6;UgUSzopr0AS)i_5c6? diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char60.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char60.png deleted file mode 100644 index 0f98a201ad88ef3ea349b083b016830d0cb91517..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)L!VDz49!1&#Da8Pv5ZC|z|BH!<1qKE_efm^c zS-GsN%+S#A?Afyp4h~&iT|imiFo8cn#f&9Ee!&b5&u*jvISQUGjv*Cuk`odVW-uJ# q;XT1pUCG4EoV|j1S4*IKI|D<93R^Ujry~bYErX}4pUXO@geCwPb1UZn diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char61.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char61.png deleted file mode 100644 index 227b5bfd7e96373e777d1f81be4ba57509a57176..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRY!VDzi%Xeu2DU|@95ZC|z|1VgupscLS(9m$( zwrzodfoIR2efsoiS67#VgF|w1GEjk~B5xj0J!46bUoeBivm0qZj=86cV@SoEt<7Z)j-v^yyQe01FF? zn3&kMZQIJq$`&kGker-+_UzfNt}X`$hrqxP{v7i$`V;MYM{an^LB{Ts5tHDB_ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char67.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char67.png deleted file mode 100644 index 94743b7b91518399a7d86efc41430239e6ba0ad6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^96-#&!VDzWZg{v3NErn9gt-3y|DT101;~5)^eGPy z&$eyb3=Itf0|Ol#9L}CSD<&qkV8MdqEaktF()}g9|)2Y9=v$* zA|s)p`3nPE7#o|IvOAj@TU!E~+w&5(Ha@mC17FVdQ&MBb@ E07zUmWB>pF diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char69.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char69.png deleted file mode 100644 index 30dc817c057e0241b72d3301defa608b399a8526..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^+(693!VDzc+N0J2DU|@95ZC|z|37{DR7^}PIXStk ztV~&1+0f81Ffb4(zhJ?FvuDo&70mXss0Z>HOM?7@862M7NCR>VJY5_^D&{0Vn00`G zDMnUScCN!N9bH`+odXB_WS-{aYl9kl}LW$<+M Kb6Mw<&;$T3pf?Tx diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char6A.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char6A.png deleted file mode 100644 index e0443c7852cf430f047767cd6d991414e585b7de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)J!VDy1cJERKQn~>?A+G=b{}&SzD=RDO>gsy> z^r?e`0}l_6p`l@5U|@1`GEmjFZQB+sSaA02S)j_(%O4a1g&0eM{DK)Ap4~_Tax6Su z978JRBtNh{00eupuClPTecQzAV5Ti#yrG$sU4T(2nO!r`(9Fj=6G)j*R$joU#*dB&4F3=A!L9Ccv|u@XSd N44$rjF6*2UngC0tH6#E4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char6C.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char6C.png deleted file mode 100644 index 156baff399545a8ba2cf94b20e4d6eef700dba26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^AT}opGm!k*u|NSxDF*n2xc>kDAIK~#D_gK&!PBQt zlarGj92~Z7+t$_9b@uF8psc%e(@dZW#*!evUzopr06J(eMF0Q* diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char6D.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char6D.png deleted file mode 100644 index 1e812aa4435e92f569cd0af34e5b3afcbc41e436..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^AT}opGm!k*u|NSxsR#Ikxc>kDUs+ih$Xl>rL04DT zwr$&zlatS$J?r4$5EvNv^y$;GvNE6=)o?Bopd!YSAirP+hi5m^fE-Ov7srr_Imr*= z4luC97;_y6abuW}l6WKWz<~`X8ytC#v2{CN+0bx>nc;FW`-#g8YIR9G=}s19H?nT^vIy<|HR*BqVSrBxt02_$MS3 oXzL{d$pDjthK=3_9x0eIOfY8q>NmAD0jPt))78&qol`;+0Cd1F8UO$Q diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char6F.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char6F.png deleted file mode 100644 index 1ea08468fbd5e92f8e3caca5094eb6f6f4940e5d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRZ!VDxewpIlLDd_;85ZC|z{{xxZwrx9m_N<|y zp@W0N)2B}Z0|SBLQ@*rs1IjU$1o;IsI6S+N2IQ!Cx;TbZ%t=nrNJ!vLNbpGXV4Re5 nE{~Omho_5;)xgX}W(gZZvnyLoOva!6K=llsu6{1-oD!M<3Fj=` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char70.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char70.png deleted file mode 100644 index e808a623b0954929bd58b9555e1f364ad96e0a27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^OhC-R#0(_YIUl7?9-=D0|NuQ zy1KS)+XfWLop+WSsDQB~$S;_|;n|HeAV=8K#WAE}PI3Z6lK>m@ni-vr3=Bqn%-Sv1 Rf2x7f44$rjF6*2UngH7CCrbbT diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char72.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char72.png deleted file mode 100644 index bf2255a29c9cafaf8731f34b3ec1ea057eb13e07..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^AT|dJGmtd8Qrrrp6a#!hT>t<7zir#Lr%#_QSg;^4 zFwoG@@a);M4h{}oU0r2mWk6Z?v*Efx#f&9Ee!&b5&u*jvIr5$^jv*Cuk`ox1&v7QK qlJ(it+NdekF~f333RjBEaktF(*0U zK^g<&x|w%*-bhPWm`!1QlaNr5ns7~owVOGWF(!d!$C@)4aX|G9p00i_>zopr0NZyl A?*IS* diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char74.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char74.png deleted file mode 100644 index 9c4b00a0d0e193ed660d4e6c0e3fec7a8d61cb00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^+(69E!VDyJ99HE4DT4r?5ZC|z{|5#JIyg8aCnvM8 zu$(=6mWPL@tE)>)Ozi2?rwbM=C@U*dR#rANG~Bjr8&I*zDY;glUdECjzhDN3XE)M- z91Bku$B>FS$q#mKZfxvsOg#22JNmwX!4bm^aVL`!9^8>RaNyK|1BEBe8>Tltv}E2q hTbY^TgKq)@L-b9c&2F7)gZ+UX0CCUtQO8rt3Zk#=^U`In^<*U@?!!+8dQ7Esc#wxgt43m_XMI{l1+&5Vuh*_1T)1#FRs4R55U7^0A4tWb^@zX7F_Nb6Mw<&;$T~Ek+6e diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char77.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char77.png deleted file mode 100644 index 73ea136962b4c06229dd856d55fd8b0e700b04d8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^+(0bA!VDyhCeQE%Qd$8%A+G=b|5sL4784VD`t<3x zZQC3i90CIa%gV|YELdP@XqcRweD>_wuC6YivcL1%6@a=JOM?7@862M7NCR?0JzX3_ zD&{07Ffhrn8Qfr1+o^6~P%uZco5?8Bs?XJN$qaSp3}cR?2N{@cybkinu<zSD@#sJUa(*RP|eKRm5e|wj3q&S!3+-1ZlnP@rk*a2Ar*6y z6A}_`m^L%AoKmuy+bFV|iMd&FLK}-C5%nGvS4lo2A4&Y@t6Uw$j U=j6NZKm!;&UHx3vIVCg!0LQ^PUjP6A diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char79.png deleted file mode 100644 index f7ec3847acb7aff72acf90b4cf89a0dcbb4e41f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^d_c_3!VDx&WhQC?DfIxK5ZC|z|0^pi2L=Wj8X9(W zb)7wX*1^Hy>C>kR7A#0kPA)4e+qP{RP|f_i?Oi}Ej3q&S!3+-1ZlnP@#-1*YAr*6y z6B2HiHZ!uEn${N4oKeiiwv5+7h9O1Wz+eO8O09l@HZg^>^L8{GlwLE9k>T|}4n`{< RjR2r_22WQ%mvv4FO#ra2I-LLj diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char7A.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char7A.png deleted file mode 100644 index 79cc8420b795dfdff2c535a8df7b2fbe74529bb5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^+#t-t3?!qQvP6NDdVo)e>;M1%0|Nua#Kg{?J)4}I z%)`Uu;NSq1eERh1f&~k@y1L5B%7AK=wpi@}iZYf2`2{mLJiCzwcPrgDTDvGoEP7%w$-yL+gNz8LPojErw;c)EhL@3^*BP)^hOJ TBuzO3G=jm?)z4*}Q$iB}@$NVh diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char7B.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char7B.png deleted file mode 100644 index e7adf208eef4d95e29f7bba8a4882d5af6851523..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^+(691!VDzuib?DSQn~>?A+G=b|37>7?6z&&czAdW z4GjYW1G~Dq7A#mGCMM?K;PCY6)8yo278aJWvNE8`HD_Z^05vj}1o;IsI6S+N2IS~_ zx;TbZ%t=mYXtI{xk;bsHsbv;}!qIJ;L{&~Ct>sYJX~UwYVqli_@% diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char7C.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char7C.png deleted file mode 100644 index a1cd6a20614c2aef0037954617b73bbe6843dde2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^96-#)!VDySZhm@(X5gcy=QV z$g%NsaSW-Llbld-nt^5cPBjCAJu}W7IB+?X@5!=xvkx42d?53{fiDe~4UNf+-i*xB mhdKS>RP6YNhK7cLfq_7kecdgcK#hzgL4Lsu4$p3+0XbHl zE{-7;bCMHw9A;qI-7w>`&v7=kHsPlZX|Lkg+5DKrSlO;|`!MqK@Sb7i$>EWXlt?qo e;Yv?ncVh5f%dNTOpqUEL6b4UMKbLh*2~7ZYE;;)E diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/100/char7F.png b/sagenb/data/jsmath/fonts/msbm10/plain/100/char7F.png deleted file mode 100644 index 12655e6224fae01fda684e04b1a354e719393603..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^>>$j-3?$8JydD54l>na**Z=?j1DSz=fyv3q+qP|E zVPWCn;VCOC>+0%y`t<49vuA+{f{h=p11e%H3GxeOaCmkj4aiaTba4!+n3J6FVAg>H y2QGy2sYu*#@CjpQYfEz#2=8ocJiVfUk-@8q`Q^U9;oE>37(8A5T-G@yGywof?KKtv diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char.data b/sagenb/data/jsmath/fonts/msbm10/plain/120/char.data deleted file mode 100644 index 53d6c1cd7..000000000 --- a/sagenb/data/jsmath/fonts/msbm10/plain/120/char.data +++ /dev/null @@ -1,130 +0,0 @@ - msbm10: [ - [12,18,5], - [12,18,5], - [12,20,6], - [12,20,6], - [12,16,4], - [12,16,4], - [12,16,4], - [12,16,4], - [12,18,5], - [12,18,5], - [12,20,6], - [12,20,6], - [12,15,4], - [12,15,4], - [12,20,6], - [12,20,6], - [13,19,6], - [13,19,6], - [13,19,6], - [13,19,6], - [12,24,8], - [12,24,8], - [12,18,5], - [12,18,5], - [13,19,6], - [13,19,6], - [13,20,7], - [13,20,7], - [13,8,0], - [13,15,3], - [15,16,4], - [15,16,4], - [12,16,5], - [12,16,5], - [12,21,6], - [12,21,6], - [12,21,7], - [12,21,7], - [12,19,6], - [12,19,6], - [12,15,4], - [12,15,4], - [12,20,6], - [12,20,6], - [10,18,5], - [7,18,5], - [6,9,1], - [8,9,1], - [11,12,0], - [13,12,0], - [11,12,0], - [13,12,0], - [12,20,6], - [12,20,6], - [12,16,4], - [12,16,4], - [17,7,-1], - [17,7,-1], - [17,11,1], - [17,11,1], - [17,11,1], - [17,7,-1], - [13,10,1], - [13,11,1], - [9,18,3], - [12,12,0], - [11,12,0], - [12,13,1], - [12,12,0], - [11,12,0], - [10,12,0], - [13,13,1], - [13,12,0], - [7,12,0], - [9,14,2], - [14,12,0], - [11,12,0], - [16,12,0], - [12,13,1], - [13,13,1], - [11,12,0], - [13,16,4], - [12,12,0], - [10,13,1], - [11,12,0], - [13,13,1], - [13,13,1], - [17,13,1], - [12,12,0], - [12,12,0], - [11,12,0], - [34,5,-10], - [41,5,-10], - [33,5,-10], - [40,5,-11], - [1,1,-1], - [9,12,0], - [10,13,1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [12,13,1], - [9,14,1], - [13,8,0], - [13,14,1], - [8,14,1], - [11,14,1], - [12,11,1], - [12,11,1], - [11,9,0], - [11,9,0], - [3,9,1], - [6,9,1], - [12,9,1], - [13,5,-2], - [13,9,0], - [13,11,1], - [13,18,5], - [13,18,5], - [17,8,0], - [17,8,0], - [13,13,2], - [13,9,1], - [10,12,0], - [10,13,1], - [10,13,1], - [8,8,0] - ] diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char00.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char00.png deleted file mode 100644 index 50214ff3624f53f19fd36be865925281f9e59d3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eO!VDzmwkz2KDct~{5ZC|z|Ff{Lh>3}9+qTWn z(D3ZpvkMk1aBy&V`t)g6SC_J~a&mHVU|?WbSs74ehTqY>K#hzgL4Lsu4$p3+0Xc4- zE{-7;bCMGn8m$wGuCpi{EadVDQ)TeHCd53!Vzyqytj6L}<{4?98!w!B$Cxl{E1OGR sgGLlX(2GY(j~?+pekio(zySt^W9RuUY%I&31T>Ms)78&qol`;+0DO~2Bme*a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char01.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char01.png deleted file mode 100644 index e7c1a33e67d93c2ef81b73c5d7998a6573931a7e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eO!VDzmwkz2KDct~{5ZC|z|Ff{Ll$Di45da&mH4R~Jxa%=s4?$_rXLKy%6 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char02.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char02.png deleted file mode 100644 index 39e8b5d0d2a8d5893e4fb4d558523db78a70c0a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eM!VDz6?;TVEQn~>?A+G=b|7T%gNls2)uwcQq zZQGtceJUmWFtww9c zG!BM9AHAvE2hs}8G6bb7x`{S$tlMmveoiLsfmPY_Gc%P7qTd-PFfeS~EH>|hy?Y1H O9tKZWKbLh*2~7a8d`!Op diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char03.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char03.png deleted file mode 100644 index 10a9b0839046aa7812a6b61ead990c22d3065d02..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eM!VDz6?;TVEQn~>?A+G=b|L5W1Nls1{6BFCE zZJVK?;erJV92^|Zo;~~Y>C?c#KxJj+uCA`KvNE7bssE>T05vj}1o;IsI6S+N2IRze zx;TbZ%t=mQXyi_q#O_qc9H}iSajWsnm8m?U3X0b!@g}TH6Yl7WR8-LFOxN$=Vw&t@ zq)>D%k9~rp;+=$2o^-_!hK>go*~QP!7_#*pEg$;pO>hG);7b#QP93=Dkw^eIrKYmkKxUQWB8qVP9>gTe~DWM4f D%pXPN diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char05.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char05.png deleted file mode 100644 index daf56a41251aaa56e410be71c713935335f8a57d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eK!VDxY_&1vXDct~{5ZC|z|Ff{LY}>X?OiZk+ zt1CGASy_3(f(3?#hG);7b#QP93=Dkw^eIr~Cmz+^K#hzgL4Lsu4$p3+0XZR_ zE{-7;bCMGnnC>wvOlquVWY(V$b@IT0z+(qCaGyxgetL^xQle%U!|I5*Vn&y%&$e$k3B(m?N&wgg1 z$8{f~7(M2uCfs0L^3Bj-Pg=qQ2B{M)lbB{-;ZT$O<-o$Qw?K57`m_@gKnoZ=UHx3v IIVCg!0I9x8YXATM diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char07.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char07.png deleted file mode 100644 index 0ceedab8d4536d73b474d396d051184f317b3a62..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eK!VDxY_&1vXDct~{5ZC|z|MT$hBqt{;D=V|G zu#}aRZQHi3tE+3lf(3zrfrf^LXV0E>aBz6~^eIrKU)U`Uphm`$AirP+hi5m^fSgEA z7srr_ImrnOO!t@-CN-urGwV;db@af2osEqTO_-UFv#`Bmb(r{AL36>2E}0FxR_lee zH_TF-l^&mv;BjsjgVDhRevh`5iMkz0>CF-+N*R4pn>^cM1Q;3gg@xpISAXpUTEgJz L>gTe~DWM4fwwghQ{p)pT00D9ITY~DHCV#+!n?@!D6>;#H_~b^DG8u<+v9{DhVAhiPoR- zsIlW7qZSV@?=7ijgBj}?mspo1XJ`aWuw_^z<-)*_>M6+Up|8mfG@QZH)z4*}Q$iB} DJZwZ= diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char09.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char09.png deleted file mode 100644 index d46494335d470322e3e2c7b4d6eedd1e0af27604..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eO!VDzmwkz2KDT4r?5ZC|z{{xvUEG%VZWnyAt zXV0E>aBwg*G~BjrTVPW^_hX<2#*!evU?A+G=b|7T%gNls2)uwcQq zZQGtceJUmWFtww9c zG!6!#%`;-O#2LPZ85f*o;JSB@XWDInE$mBbnV5wqJYzYv*}!0fbI#7g4GawDcZeMC T?ako?+Qs1M>gTe~DWM4f^?Xif diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char0B.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char0B.png deleted file mode 100644 index d84173b78812813472229cbcc42a25a910c5fe44..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eM!VDz6?;TVEQn~>?A+G=b|L5W1Nls1{6BFCE zZJVK?;erJV92^|Zo;~~Y>C?c#KxJj+uCA`KvNE7bssE>T05vj}1o;IsI6S+N2IRze zx;TbZ%t=mQXyi_q#O_qc9H}iSajWsnm8m?U3X0b!@g}TH6Yl7WR8-LFOxN$=Vw&t@ zq)>D%js09GkB#CTnWcOV?>=5)Q#hH#r&ccB5K`ci-*A(Osa!&UfgxE@=>G=oQ!|0~ OFnGH9xvXZY(9rPg z*|Q54EO2mec>45dS67#^vT|~Aa$sO!Sy>rSS;2~z7C>E$B|(0{3=Yq3qyahZo-U3d z6?2jk7#c4p6s0mxNVw0bX3X56;=PHX2Q7g9FM}$0}I%WFic;?`>*iM)@Y!S44$rjF6*2UngI1ALc0I} diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char0D.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char0D.png deleted file mode 100644 index 05669139ada67bbe38384d749d79e5be84d9e17b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CP!VDyp&Kp+&Dct~{5ZC|z|MT$hC@U+Mm6eH! ziJd)r*1^GH+qP|ifq{mGh6@%fc>45da&mH4R~Jy_Z0~0uff^Z0g8YIR9G=}s19F@^ zT^vIy<|IF`JHrK*(ANJrq=M*MIO1gY{(WJWNz$1Z7mISkegoM4- o-yht4?eHo{Z$eUn26Ga_oHhZTqs#^sK+_mJUHx3vIVCg!0Ix?A+G=b{}&Szpdr@G&UaH5v{?fv-M~V zya~!)B6kxWcM&Ha?o;kz{kwQz)SCZ(44$rjF6*2UngEyBOsD_= diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char0F.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char0F.png deleted file mode 100644 index df53ae9432aaf3661cd33625a848aeffedf9d63e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eM!VDz6?;TVEQn~>?A+G=b{}&Sz3k(e0wr$&j z1q*n1cnl2<9UL6ao;~~Y>C@!oWMyULuCA`KvNE7brfIkOff^Z0g8YIR9G=}s19H+l zT^vIy<|HRDG;$|QVs|PuHYo5-NXSS}cwl?rKmeo2&65W3qfoGJBX8Ni5KMXQ05q Y;PXR5$XBw7A7~?kr>mdKI;Vst0DMwRnE(I) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char10.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char10.png deleted file mode 100644 index 358df12d8b9d80bfa6e5a5020a1a4d331e41c260..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 228 zcmeAS@N?(olHy`uVBq!ia0vp@KrGC`3?yq_mM;ZT#sNMduK)l4=i%Wwd-m*t1q*;; zEG#TyVq(h5%7KA_PoF+@aBwIqE9>g&N={BTG&J0{Z5vSi%Dfd5fJzxlg8YIR9G=}s z19IX$T^vIy=A`;L@*Pm%NY2w(apHfywSn>B8{8LyxDN2Qb_lY+Ow1@PT@!NaP1VUC z3tak7EuXvZ^RsEkZ|kdGQ23rC*clrXz4jQ_E|+aCVZrBY&pP-^&N;UA($u6i(rR&v X3z>48l31;PRxxr^kvF={4R6Rl>}NXhcf)ygO~w2r+petHeaS7uc}Hx=s~t<7&%?vh)zu{?CYGF> z92gkL!opHkR;H}1eD>_wZQHgP8X7t{I4oGO;OWz+K*bu{y%qrVGL{7S1v5B2yO9Ru zBzn3yhE&W+PGD%<&cBi#=oXhg&FbBVxDPU@lxM0&<9*tWP67#+}y9nH`Xc>d2tDnm{r-UW|p{G>L diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char13.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char13.png deleted file mode 100644 index 152ed5b1b7eb1721dad44875e7d0946cbd5f68b9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 224 zcmeAS@N?(olHy`uVBq!ia0vp@KrGC{3?z3-&RPPb3<7*YT>t<7&%?u0R#wKs!XhRn z*45ROoSeL1!2)Gv<-ower%#_68X7t{IGjCucH6dXK*f^hElh!W8B2ovf*Bm1-ADs+ z;yhg(Ln`JZKiGYMfo;!nc?XG@f@3{Q9Lk=MRA2<+vAnn|NoehnX8?UQ|wKq0SZLEHKj9GzIf8nmQMh=E8tHf4K TiL>nn+Qi`L>gTe~DWM4f4(3r{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char14.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char14.png deleted file mode 100644 index 44c4b6f090d7d5d49c00aae54d69e301668b9386..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eL!VDyBWEdlXltF+`i0l9V|5;dA#Kgq5ZQEvO zX!!K$)2^;A9v+^+z(8eX<+EqcIyg8aCnqmhu%N8045*m>!@CloUdECjzhDN3XE)M- zoJ>y_$B>FS$q5XN>;Gt77t$FR)ee#6RdED8s2MRF-^k10q2Nd~3j;%Fnee;*sm!WCOBp;}{an^LB{Ts5Mf6bd diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char15.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char15.png deleted file mode 100644 index 597fbbd1c6f64442ef5dd2d115cd88bfb3eb25f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eL!VDyBWEdlXlx~1ei0l9V|9NC7`8%{p)(@YsO^Tq$yz$rijqMv*&tbWB|(eF{S?n>D8OLBGTKLXD bfq}t)o1p3)!7E8XI~hD({an^LB{Ts5WtC3Q diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char16.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char16.png deleted file mode 100644 index 3b9173d0e5a1361df146e0e0c0f997b7a756fbf7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eO!VDzmwkz2KDT4r?5ZC|z{{xw2Wo0ZZEMj6} z$;ruGU0qL~K3%Y2fwHplwr$%C4GkR}9L}CS8yFY}R4jCkiw~%Qu_VYZn8D%MjWi%9 z)YHW=q+(8T0t2I+!N~%4r?;$=wWTF)gfE#_bMC+a!SYMX8Fh}yRWds5b`JUGsF7!I zGKyi@JR^e*Z}07`{1ztQ&aZQ%q=8YzqVRj(0)^vj9a#d543kTRSM6WMr4O`#!PC{x JWt~$(697pyNs9mg diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char17.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char17.png deleted file mode 100644 index e65a3c4f1a8c4eaebe23138493c49884b0f5ce01..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eO!VDzmwkz2KDct~{5ZC|z{{xvUEG!NV4uOGz z+qP|6uwX%QaFS$q#G~Ffi?rJ|J>fio=xq)ZVN6bcH;8BU6LU9ypN0DHhG8c9ZLX2)Bzh#|Gya z?|69b$jbU^-*TLzEpV7u!l8-V+Nz-`hgaaL0u#gZmqIogyWY+Ln$FgTe~DWM4f D?XyMq diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char18.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char18.png deleted file mode 100644 index e93e143a2f55204c6da36726bcfc7125fb02cae4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp@KrGC{3?z3-&RPPb3<7*YT>t<7&%(k|R#vuP!2&Tc zF`zIH509atVOLkz)2C0Bm6gw)JsTJpxNX}u2L}hB;`Avdkw8U^B|(0{3=Yq3qyag3 zo-U3d6?2jk7#Qu?ICd~E+!5ZiQue8^goH)d(l!Z)7Ipjk42cEnTtd$uINZQs%p)OY z;FFMWE;?<=fx^bdxsBB?S+&{N)Y#Z;k6(58={uKO!b07k;EAYQ0>kOz(7SJ#ZXI55 iaL*c{6bI%G28JM3iMCoj;a@(?=UKt+rtL4Lsu4$p3+ z0XYSpE{-7;b7K203LRG9VDX$f$K$~N|F@NVmoKrYY~Id&u}CX9+;_=m!ReuT@fPo3wn^jS>IK@(;OXk;vd$@?2>?1QU^f5& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char1A.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char1A.png deleted file mode 100644 index 2755fc0f9aacee0ba12462a1c01b231a1940f87e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp@KrF(+3?viZxXS`5;{cx!*Z=?ji;0P`u(0s(@BqaY zELdP@Xt-_Lwz9IaI5?a=dlsl(mVvDosFblJ$S;_|;n|He zAg9FB#WAE}PN@GyrXva*MWvaoSO5QiyCr(?k!$!#H}ja9+j9e<`|&ky>&MEcwe=GH4!ELVZ{GkCiCxvXVPOdj4BWPD z8xIf9*|TRI930BZ%9NFrlarI5K7G1i!2&}=!>+C_pyI<9?Ye<_8B2ovf*Bm1-ADs+ z3OrpLLn`JZKiGYkfpK@5gJjKRVFjLTx0nOmEM`2~`I=#oMOrRH;LFbnt4>QiSis=& z#`-|gfenp~>NT%Eve>b+#j$PkB-Dbvt1H6;=ha6y-_I&Tlzd{*& n&Q|BI+*V-rS+J~8mz`mWkJOIcbEo_S+RfnU>gTe~DWM4f*fUy5 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char1C.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char1C.png deleted file mode 100644 index 7629e4294cda8acfeebd324592ae14c20f84da4b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp@K+M6y3?wgbWc&eAS^+*GuK)l4@9OFb3=A|hG)zuT zUa(*RP=<$xM_F0<>C>m%wrz88a5#JREKphR7M|TeImVJ8zhDN3XE)M-9BWS($B>FS z$q5Wimlc|_nbOrKJkmKmqp+crk-7c(LlL$4UGvYH_~YX0TmSj@3nX;D6t`3|e3?6C@6Su3f=>l}E=i<*me|hBwZ4Km@io(j UqHSDKKzkTGUHx3vIVCg!0OPV#Z2$lO diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char1E.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char1E.png deleted file mode 100644 index 0cec220a5c3441485aa71c76ec50face285a7b79..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^{6H+g!VDy>D=f@`lyrbki0l9V{}(J+U}$Lg^y$;H zXU{4tE0>j(ZQHgDC~jr@{RdDPV@Z%-FoVOh8)-m}xu=U`NX4Aw1P11BEF5P8xRypX zE#wJjHen22!C)M7fKf}JN$r3D-_l6#3oJ8O7Vx-goMpJo#IVPYb<(UwAu&KB7(8A5 KT-G@yGywogwlwYl diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char1F.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char1F.png deleted file mode 100644 index 9314e7de36c2aea3c94b45ce74ac24d20328ecb7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^{6H+g!VDy>D=f@`lw5#Mi0l9V|IeO1o1B~+7#LVq zR@T+kWoT%)V8H?h2M3_k0j~e5K$VOoL4Lsu4$p3+0XgQLE{-7;bCNR>8k&qGnr#`K zJ4DxMF&#^2gTe~DWM4fE5b9J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char20.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char20.png deleted file mode 100644 index 51f13b41a422036d041f36c3522a53186b87db88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eK!VDxY_&1vXDT4r?5ZC|z|MT$hh>3{-1-5P5 z*45SJ;NTD#7`R};g0pAOK7IN$IXPKbS=rFgu&k^Ms5m@e`3Im<#*!evUvK#6Rnr0kFr5Kh;@G;DEIF-(H*iPZ- z)Z**k%sg(e>zpj*a%o}9<>gIG;F!wI8hA%w@lFR8hKy@M_DP5GRe^>xc)I$ztaD0e F0szfGM|J=J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char21.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char21.png deleted file mode 100644 index 3cbfd74e2270bff51a7cb5f72824bffa9d3369e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eK!VDxY_&1vXDXjpX5ZC|z|MT$hu&}U{m6bU- zIGjCu*3i)K>C>m%wryLmU_o+nva+&rS63HM+51GB0-!F&k|4ie28U-i(tsRyPZ!6K ziaE&-ZtkuA&ctRg<1WL(?anLoIF7bCwKjAx^Q?53baTNQ24?@LpfWa(9PNl%HyK% z?AdMGwgm%FJnoNUoeBivm0qZ zPLZdJV@SoEFS$q5cj`H~g)_Ev9y%{asOF~f|c^{l~`n-7LC%6B~RWC(u4Rr_*grm}fqq8V8H@IL&LLY&jtntCMPE=D=T+(b#2?W4XD_G^``+)FJnoNUoeBivm0qZ zPJ*Y4V@SoE zbpqebty#LvLJwvzEStvQYghbi!?{d>nVmMwjHCL!TLVPRqY zfd(E6g_!aMm8-*auQAQ8Wzspay@7Gb!OX61{eay*QBiUMUl}_Z6_^-S+KXNdS@_Zz PXbXdMdAc}; zRLn_ENU+#j{auf(O_G&I;R2glqtta6Zp*Lv4WJIR*trhC7eMkKcUCDFL*F!PC{x JWt~$(696ZPOSk|4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char27.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char27.png deleted file mode 100644 index ddbb8c1c54deab96fbe245b29fff552c215e018f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eW!VDzCZhxEwq|^g^LR|m<|1TycR#sN#;NWof z?AfPJpKjZ>O<7ra!GZhFx7naPIL56?Bg{1;o!cK(?1I{TVF&`FEIJrx~tFf{As?*0*1;etA8ugBZo4Q-7 zznig5n|pP4`TK-~2Q4$W0}tx*Z7EP?KFrkdi&ue(;q@$$9gFu$i2?0k@O1TaS?83{ F1OPqFPOks} diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char28.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char28.png deleted file mode 100644 index d83687841aa6eb425c973ae3223c37c2337c3ef1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CP!VDyp&Kp+&Dct~{5ZC|z|BH!#?=n6qj&FV4sl^&#>%<)BzFgmPe%w!93CmQ%qf^82>smGnj|t uz&r+#;=;%$kIo!;@JNDbkwhM&Aw#h||8DzxZ)JgIGI+ZBxvXI5?a= zd)Cm<@afa1+qP|6uwX%QaLxGuEF=usUX%JXcmK~tDnm{r-UW|=y5S-GpLtE{XHs5s^KQ*oeb#*!evU?;U#BrL ZGL)Z^(dUmnZ3ncE!PC{xWt~$(69B>sQ%L{- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char2B.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char2B.png deleted file mode 100644 index afffddb8b46d3c757d000fa8691890413bcc4d99..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eM!VDz6?;TVEQn~>?A+G=b{}&SzV_{)Ad-m*t z1q+gslb=3)x^3GwLqkIc2ZzAGKxJj+uCA`KvNE8`YsV@d12r<11o;IsI6S+N2IRze zx;TbZ%t=mQXyi_q#O_qc9J#yveH`aAgA(zEm2J5SlfFA>y0Ef$6txEA@=SA>w6<}f zq{l|96q$qvFEd`{v3t&Kow1S8#bEwa%i?DS%%2ZhD{!T7bKFUEU|@J}CSIajkl6*a Ohr!d;&t;ucLK6UinoXMk diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char2C.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char2C.png deleted file mode 100644 index c01324826bbe444d739218275414364a2873616c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^Ahr+-GmxAxGpGVcsR#Ikxc>kDUrbDlhll6s)2GVH z%3WPufq{YBwrw*sG(3Cu?1BXgl9Q8xYIau`*8#OKmIV0)GdMiEkp|@0d%8G=RLn_E zc#sxx^1y)u2RF!0p2McJ-KzP7FPp=pU~ZMXNqj1ia~!jJcp6kTD|_tiWbH6Hmc=(A eCCwm#fkD}WZ<)r&?SFwrF?hQAxvX_9BU!VDx+({G*tQgQ)4A+G=b|2H%=WMN@Bd-m+M zZQI1e#2g$Pl$Di}laql`4F5CE164AX1o;IsI6S+N2IOdZx;TbZ%t=mokifuHX41s# xv0)kmr!q4e+q5Eu!!og)dQE~Z2F3;q4B0G`3NEaCtF diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char2E.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char2E.png deleted file mode 100644 index f74afc20bfe3cc379a29cfb4f1419023fd1ff8af..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q!a^uLR|m<|9|%ESwllZ78aJk zz(5BFhpw)!ZQHgbCnrCB`V=U8A?~dLP%&dkkY6x^!?PP{K#q#1i(^Q|oaBTV2M!## vFb{~O4jg!J>cD}ta|Z&h@Ch|1d9pF2Sg^dmzVmkyP(6dEtDnm{r-UW|>%%#6 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char2F.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char2F.png deleted file mode 100644 index 5dfccf76ab1392c1d35ad0c54c9e7013f98ed693..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^96-#;!VDz;))vSDDXjpX5ZC|z|BH!gp;hD^pfhHZ(Lmd-g0)*>t~>g+N`5B|(0{3=Yq3qyagao-U3d z6?2jkEErmNq$R?bIQxv)+SYoT85oF5<|J_3VGv1m5MbnCWKe$1Q-1mU(tkir44$rj JF6*2UngHTMGd=(S diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char30.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char30.png deleted file mode 100644 index 8ba7054a702200e3b6497ddd419724708be56943..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^+(693!VDzc+N0J2DXjpX5ZC|z|2sH11O^83@bHL< zi9LP#R9RX1?Af#1wrw*sG+eM?L04B-a&j_I*?iUppe6>!k|4ie28U-i(tsRiPZ!6K ziaE&%76%R-*xS&U$i(cd&fJmY&k&r*n4l%=VU)6E?hA&Z+MaWBG!qhL6f>wCOW;tm klsOP`lEuI@mcfOIVfs@(+Yc_qDImi=UHx3vIVCg!0QBZQQ2+n{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char31.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char31.png deleted file mode 100644 index 0d6397738ac3c1e0082b4bab2b2ad8e3a93ae81e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 193 zcmeAS@N?(olHy`uVBq!ia0vp@K+MC!3?#j0YP|wdS^+*GuK)l4XJKJ^`t&Ie56`x3 z+q$~C92^|V%E|%*1C^DP4Gj&?o;{nKoD5Xfuh8lT)Wuj5^E1zQrqOWWB~QXET?Qxp;zGuYXVTBj31ql5S@J-_QuP^0 mLJwIk&*E12GKob`fR#avmtVkYSEn@4Kn71&KbLh*2~7YIFhHLG diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char32.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char32.png deleted file mode 100644 index ea8e707c24c723b379f51f913db0fe05129a401f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^+(693!VDzc+N0J2Dct~{5ZC|z|BH!kk@>I=o50aPhGmz88$v27D}J&l^mBVKXvzzmOb}hNgyjkQ q(xpoc4GOp#j!KC)tQ6%^5Mo%8#aH+Ime{w#+ta5{0|Nt-lan1B9F&!n&z?QIV8H^QvWg?YhCp46B|(0{3=Yq3qyafeo-U3d z6?2jk7?|eqDokqR_Az>slJGzyIUyr8;lUTJ8Z_E`y$_0n@6znBI zB~pilvuFjw)}p-lHw=q>1l<}Pv^yS@1r`>5OngvgURYSjy2^3mWL_5rhW_(HYt4@r R+W~E3@O1TaS?83{1OPL!PRalP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char35.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char35.png deleted file mode 100644 index 03230d79ab8ed1c98294c2a2b87bfea8dac1d337..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eM!VDz6?;TVEQn~>?A+G=b|7T%g*|u$4U|`_W zr%w$H4ZFI!czAfq%F2?HlN}r!l$Djwo;|x@!2+PlN|~q4K#hzgL4Lsu4$p3+0XeCj zE{-7;bCMGnnC>wvOlp+&F`Cm9P`vvUHx3vIVCg!05ech9smFU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char36.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char36.png deleted file mode 100644 index 483702d69e6c178a9dd10c2fa96e367e99f2d9ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eK!VDxY_&1vXDct~{5ZC|z|MT$hY}>Z2tEwvOlp+&FwvOlq9n*vRd1HX$M5d`iL%h9%ST66Z235!;X#$FN93x>cXf3wSg@e1tjxi|0jOB0wD~+xFJnoNUoeBivm0qZ zPJpM2V@SoEZeYxpE{jcGG=|)+ODXr(;6F>&TVY`$>`Bn zIg^Rmn=wN2^OY@~nVFdiYO@dJttdRhDV(4tp2IMa;qw|HQ%k;9X`tB*p00i_>zopr E0OSTng8%>k diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char3B.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char3B.png deleted file mode 100644 index ee2b8a48aa7df4cc0887f81ebcb65249e43a8bf3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^fFWwqU`6}K_VF3vyg{#ki1~YiN`njxgN@xNAw0l1& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char3C.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char3C.png deleted file mode 100644 index 6b66ca3efa7c399e5831913cfafaf2d447e2e831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^f!)A$S;_|;n|He zAjiYg#WAE}j%~Li-vI@l!#s;qc{Kk2e;egHm%nq3#sS9Lr<)I`o!{}&Yt>6R3=`LtT!n@GZ{Qx{an^LB{Ts52U<%i diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char3F.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char3F.png deleted file mode 100644 index 84f5185a14c7c53182904e32907b2561bf2e8bb6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp@K+Mg;3?#$mNPz^j0(?ST|Ns9lCMMR^)m2tjwr$%s z2M31*3l^L`d-mzmr-6ZihK7d9%F4;f$v|b=iC=tyx)@7>{DK)Ap4~_Ta)Lcw978JR zBqtUq6l!xc4w1mVBW{HS02}1(|O@j=>kfw}z3<78E6x$jd zIalOuWnyLykUj3k-j>JC#`do3#Z`y31`G@`=lK7e`m7iLG@ilJ)z4*}Q$iB}9@0Zw diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char40.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char40.png deleted file mode 100644 index f0c7355351d917092cdde8976e4738ba80896b7c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^oIotZ!VDy<*S)L;QU(D&A+G=b|7T%g;o;#~uwX%Q za`Luq+nzps>fqqe)zu{?CT3`87#J9M_Uu_@W#zK6GN9sWLsMCxUdECjzhDN3XE)M- zoM2BE$B>FS$q5Mw6$coY#2r}9v$3(Q3)OyZ#&Gk^N06pyEdw5(+@Qj3q&S!3+-1ZlnP@ z9-c0aAr*6y6A~WmKES|aBYoh?+UW_eO3bHZF-(e?sxQx=Y1YQf-f+dF?bd4tt(@<9 watcq+95|bL;J~_*2kH`;4^J{_JCu{ja7sxi&ckAk1kg+dPgg&ebxsLQ0K>9KZ~y=R diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char42.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char42.png deleted file mode 100644 index 77a050274a7055ae78e32769db143c2a3507e357..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^+(693!VDzc+N0J2DT4r?5ZC|z|Ff{LC@U+AiHY&> z@NC<*t*oppFfj1x)2CfsT?-a0ID7W2gM)*ipy(zHM8szK4jD1)b~pUXO@geCxMSVoWl diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char43.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char43.png deleted file mode 100644 index 8e13fef8d41163a8a2adc286348755d4975c80d4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^JRmj;Gmy+@pHv8>3<7*YT>t<7&%(k|R#w*4)y2cZ z^YrOcWo6~$FS$vZax{&J6%hiA`bvn}$;2?=u_9@tvR+>vynK+=bGbK}aDcTR+;w4CZ<30}_E mpfPO@E6;WR?C$sk28Q&>lIm;bPqzUY#^CAd=d#Wzp$Pzfp+rmo diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char45.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char45.png deleted file mode 100644 index 9fb4b249c4c20859af74e626bb241e3bfb88c7ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^+(693!VDzc+N0J2Dct~{5ZC|z|AWMNc$AfupFVvm zCMLFR+qUH7AYB(84=?3_Oxc>kDUrbEw>C>k?JUq(E z%Gc9)%(?<_UL7xm@0TWtu3y>wt>-j1-1R hmmQzD%D-k}V`zRNHd*AM(pI2344$rjF6*2UngCJrLS+B| diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char47.png deleted file mode 100644 index f7f51ab811eccba2cfe9a95bf79746af796f4682..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 222 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4xHBpZ(Y^aoM~0X`wF|NsAIVPPpNE9>g&;^Ee%E6?hlMw8ud9&KTo;AOX(lZS`lJD8$XF8O7tG-B>_!@pW9sSR z7*a7OdB^78Cf8ru3QJgUnHj`%CnY58-q5&^N&D?ZLuQ}owN{P(v5YPI-mE>FT3o=y YV5uZ;p?-@a0%!n(r>mdKI;Vst0IP61NB{r; diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char49.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char49.png deleted file mode 100644 index bfeea75897007c8135f33f8316396c5bdedc5292..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)J!VDy1cJERKQYryHA+G=b|L5W15fc+rR#pxS z3`|Z=K701;)2B}z92^V{4ZFI!fC^IPJ_TuGED7=pW^j0RBMr!r@pN$vshE=-ano>d pL!)j26EpK}XXcMbl6X6r7>W*Z7jdQkTm)3d;OXk;vd$@?2>`e(EtCKN diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char4A.png deleted file mode 100644 index d0c7d70e85584b6e1427524d8c3bd1726551e3d9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQtAOdA+G=b|9|@Qsj{+ia&j^c z56^-H3(lTBTUJ)KZQC{n2M0q#!@$5mpcTEP;W6Wo2c_$;sQcZ99AR?9-=D9UL4C4Gp`xx`2wM6i>MV^)i+O`2{mLJiCzw z zx0%2>vHsj{#zpsjF-^#`I8czq%iKJ%|4iEyWiAHh2szH(pCi8l4QB9k^>bP0l+XkK D)k8~i diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char4C.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char4C.png deleted file mode 100644 index 483700c839bb868c63ae09da609e8ce322b9752f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^+(693!VDzc+N0J2DXjpX5ZC|z|Ff{L@bK`6iHRvI zD{tGj?d;jJ3l=Qs>gq~PPIho`Ff=qQD=Pyk3-f!{2h_z_666=m;PC858jz#z>Eakt zF(=t#ZA;colb`;D&eh3<7*YT>t<74`hmoi7i;LAUQdi zhll6s)2C%+Wy;FR+qP}%>goy%40LdCFf=qgd-g0)@zsAXrT{fCmIV0)GdMiEkp|>= zd%8G=RLn`Ps7_-(eCsyP9NyE7Ga7YUs+n#xvTeJ~Chl;hH9P-6h+ep4M^c#u&mxIA ymIp-g_YXCZAw1$ul9r@&E%HKf}>`ve{?(;&uX!W$<+Mb6Mw<&;$T`{zlLM diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char4F.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char4F.png deleted file mode 100644 index e09ce68e4aeb7204aecf1709be3bf9a495766318..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 227 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4xHBpZ(Y^aoP90X`wF|NsAIVPSdt^yz{H3(lTB zTUJ&U7#Qf_;Eq67HSk;^AS~mLy=J TS-AQ#&^`uFS3j3^P6C>kR7A!b>_H1%;vV((zp`l?}Ss75}Z`r;@K#hzgL4Lsu4$p3+0XfE= zE{-7;bCP##{{3YgClAk_x15HWJUlvcxp(YT6nW305?7+vu_E=~>a+GK53kNrdw*u_+4sy_>khH5 lkD4n~RX8Jd|G6J8_~-I4d!9eFM;B-@gQu&X%Q~loCIB7>TOWm(e`FRYQHw*VN wtSP!}W-xUw^Aawz4dFToJ4AHP7TjWEhzopr05bJK?f?J) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char53.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char53.png deleted file mode 100644 index bec88abf048a7e4210635a82e75311510930ef25..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^U^WXgkd-9)$P7s72Ka=y{{R11e(v_>FVdQ&MBb@ E0Br|F{{R30 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char54.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char54.png deleted file mode 100644 index a0daec98bf2752bb22fe636d3fb995a09c7c9924..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^+(693!VDzc+N0J2DXjpX5ZC|z|Cg1ODJv`U@bHL< ziJd)rwyUcvFfj1x)2GSF$%cl84h{|r7AycNTe!e}Gf)>}NswPKgTu2MX+VyFr;B4q z#hhe|y;)z^T@{u{J9{Hw;?{;lwZm;(VeD-o3P%kZ8yQ^;CpfuATXPyPFnHIA%-wf* R(oUdW22WQ%mvv4FO#tkEIs^a! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char55.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char55.png deleted file mode 100644 index 9e89b19205a16c4bb5dc6d457647e0c0dfaae687..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 192 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4xHBpZ(Y^aoN}0X`wF|Ns9N6BFCEZQIkQPnDIG zlarIro;|x@!Gf-?uE4-R2L}g3L&LJNGN7_h#rzFGU5q6`e!&b5&u*jvIWC?qjv*Cu zk}dXTsXKqyVq@#u#K5MPt`J+&(3r{Ck~Z66MjHD{{)B`CZtjE!nn3!-p2mYL9)=N~ j^Y5@NlDu@ffrUZ9R4lE2|I=$g^B6o`{an^LB{Ts5u|q<@ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char56.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char56.png deleted file mode 100644 index c17a67a6f3d87bb1a5256f6e1bfe834a86ea93b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 214 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4xHBpZ(Y^aoP90X`wF|Ns9N6BAQbR^GO48w(3d zU|?W!a`M@;XBRA3P*zs<^y$;Ct}a7ELk9;3pvtb!^#_0&8B2ovf*Bm1-ADs+!aZFa zLn`JZ@2LK6a(JFKx5Tvq|AYrSj~+O1bKZdi!UqlMo09^woEe;q8+;fUl>Z6cs7s!+6=(&6r>mdK II;Vst0FRweGXMYp diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char57.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char57.png deleted file mode 100644 index 63784897a038ffa27ef60e8d7d9ab6ec53f7bb2b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^f*>{vGmzXHK0^~oX$AO%xc>kDUs+k1hlfW@OziC0 zv)i_9d;0WgSy`E(q2YoB3jzZJ9UL5zlaqnUZZrNn2Gqq^666=m;PC858jw@r>Eakt zF(=t#Z}q{RyKmpzWtZ5rQ?i0dN@AC=#Ewdt8)i8PH_je75EXUc!iJuMlNuWnotc}f zESi}nY|WAU&BJ$&)nS^y1^e{yZOjvn9yFYrdeTv$x$(Gn!@`4XN0Op^ORX p)ue=ZM(Du<2Vxo0HZ}?}GZY6%tvqIyBnor`gQu&X%Q~loCIGM4U2gyY diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char58.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char58.png deleted file mode 100644 index 220b65b8bc2bf5471070884927030b435849207e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=%3?!FCJ6-`&x&b~RuK)l4XJKLC;o%Vz6FYnM z?9-=Dw{6>|tgO6X!Gf}~vgG7s2L}g3L&L7FE}+UO-FuUP8W~H1{DK)Ap4~_TasoYF z978JRB=6Y#Tjcq>$viQ<>=Ic*5)ys)QVmlR5;~r7mNNwH2`-UzNO;XlT-(ku1if?E%E+TLjVER$yM&%x(T==aW`@mIM9XBK?{Whg&fw|l=d#Wzp$Pys C1V+gK diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char59.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char59.png deleted file mode 100644 index 7b044bb41f5ae6cb8e924b317b1f703e0d033b98..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^JRr=%3?!FCJ6-`&x&b~RuK)l4XJKIx6BAQbR$j1R zL0MVZwr$(ao;@2F7?_-#{PgKl2L}g3L&L7FE}+U&8~Zwe8W~H1{DK)Ap4~_Tay&d; z978JRB=6WIMb#lOEjK(A}uq*tl@*tc6XDjg9S#6T~MZm0DCYdKk)Z suubGC4{ul*BXVjwvrCay{+$C14BI9MT}zu_1TvGs)78&qol`;+03eJ=X8-^I diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char5A.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char5A.png deleted file mode 100644 index 2cabf1575b4c1741ea0ee583b938e939929bfcc9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^+(693!VDzc+N0J2DT4r?5ZC|z{{xvUEG){($_o}O z2n-C|wryK-a`MxsPsPN~ g`4hK%_LN~`=%2>7z%r}lG|&(RPgg&ebxsLQ0QF5l`Tzg` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char5C.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char5C.png deleted file mode 100644 index 18c84bd318ff5809b93c86bfe19973515467387a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^nn29T!3-qdUohG*<%yYa#6IfxUgtLvw^hV(=|G0Vtn45(OHwg`e#p0kAt4M yy!|evvK>+)+6}L6CZ4L?F>~We$6)>tW`;Y=Ob%NnWj+EL$>8bg=d#Wzp$P!2JW3A$ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char5D.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char5D.png deleted file mode 100644 index 4a97d8bd2f3ffcc725a00b4ab9dfb3cc4e4d83f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^ia^ZD!VDxWzt5-vQd$8%A+G=b|L^MR3JeS^D=T~Y z^y%5NXB`|I7A#mGCMKq=tZZm#n4FxvZQC}WGQNtpM}WE*OM?7@862M7NCR@rJzX3_ zD&{079ANWXKj-E~wnHiBnS?H`-ezrJFvo}SW4SJyk!h*ICZWq$($?8ABv~H#@=K=m Z0)rYi&p*HZ94(*`44$rjF6*2UngAKbKxqH~ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char5E.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char5E.png deleted file mode 100644 index 3b05ee2f8285aefdae957e18fb9580a945979a95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^8bHj-!VDyjKH9tuNa+Ungt-3y|G%rNOH53RhleLQ zIXN&e(80k$Sy|c8(6Fqm?CjaI3l=Qcwr$(fr%!<@^*6=u2Wn(23GxeOaCmkj4ajlv zba4!+n3J5q&}_Y%-{1hFc*ld8ffHX%y2C2`=>;2C<(3?VLNm*T*0d>1mAAbTrREx! pcQ4ugj@2+#Fm3LaDLWZ}rqr$$j0wKsaS~`AgQu&X%Q~loCIHO)MsNTC diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char60.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char60.png deleted file mode 100644 index 8120ca2a523bb23339d608ec463633e3c4a2e641..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRO!VDyxin=BMDU|@95ZC|z|BH!_!@pqw4A67*a7OIUyn8 z!7K(92@9?b6LVzOI!s!;hh??SjFhmTARPt<0c{S+KYgE90W~mqy85}Sb4q9e07FDG APyhe` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char61.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char61.png deleted file mode 100644 index 59f4c299a7751dbab3a86670263c3803e0b35982..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^U^WXgkd-9)$P7rS2l#}z{{R2q!NFm{f(2*Ko(&8P z+_r67S6A25r%#iUla-Z~4Gj&;%F2Lhel5H<38;m!B*-tA!Qt7BG$6;()5S5QVovgd zxUHKS8yEI8Do$o(i4bql3^&MRQnQqt5#pHg=p9p=R-4HJ52+b*7?gH0NhnbOU@sT>t<7-__NntgH-D!Nap{ z+cq&Vv9o8-CMPEw8X7)*`gFm91r81lWo2bRl}!rF^MUFZOM?7@862M7NCR?WJY5_^ zD&{0Vu-)AF`V1r6Icf15&*jorJkw3EIB@#FhMvZU8qCaxIoa9-*x16f+1RGBv8l1M zvB@#BJ>%rz*>f$S>*B0NUZoRRXAf-n!Nlx*LHC`@0=qV+KsGjp`vHQ-1fPUv0_|b& MboFyt=akR{0IT>)B>(^b diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char67.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char67.png deleted file mode 100644 index b0529010861cdfcf2c715592ccd123ca0da97e6d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!3-o%c^#Vtq>KZ6LR|m<|Ifq2qpYlKXlTg7 z!ctaN29#N_V1a{!gP53Da&q#vZQB9^1G~Dq&YnH{^yyQe`e|xz6w^f=N8@X4g6f!b1 Y%>2)-JWchBJ?A+G=b|L^MR5)%_ED=S;D zV8OO++me%$Sy)(jcz6N>0}TxgfeO!_J*%v&3{-hY&(H|SXDkWw3ubV5b|VeQvG#Ov z45^rtoUo(#83Xg-cXxM7NTf~4PiAQ1E_lS(v4cx#T|>udg-22yJ5C!rA7XLa8G={;`)z4*}Q$iB}(l9{& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char6B.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char6B.png deleted file mode 100644 index 1075e9dcaf2b7e0c32a4f9da9822413fbdb7df18..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^+(697!VF^h|6T^9)B}7%T>t<7-__M6CMLFE!2%W* z79Jj+z`(%d;(FD8yJ2u_tgNiOV8Mc?PoDzSEaktF()~J zfichEq$#t@re@D=nF^DVt(-Lij&wI3lvuH1bAzLx%B-0TVdnxk7w=a5!o~2fnEgtS Sb3`@J00vK2KbLh*2~7a-$~rj! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char6D.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char6D.png deleted file mode 100644 index 18b557de37e3b287b6f7b1a2d29c8bd40e59224e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CN!VDyL#uerODT4r?5ZC|z|2sH17#bRiiHV&( zdlsaQhbJ&FaND+RU0q$t$;oA9Wy;FR3l=PR`t&JKaiFPpI8YH|NswPKgTu2MX+Vy( zr;B4q#hl~^$qdZ*E(^^1Ez>^MLV@Z%-FoVOh8)-m}ji-xaNX4Aw zgc}DA9N5s%n8?P=T+PIMIE1~;Xu*Lus?RtTy1b_{x@_!jSZSoku3)O%n8-PSD>>nT b5CcQ>5v~a9PKQH4a~M2b{an^LB{Ts57A8D{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char6F.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char6F.png deleted file mode 100644 index 87bb7a25a88809b5d11e5cf40f042cc11263bf95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^+(699!VDzEyiUsjDfIxK5ZC|z{|5#JCMPGCm6fru zusnVG)X>ndtE{j?SQ6wH%;50sMjDV~>FMGaQZXkv z;l_aj42QHOB`nko3<`V`GW;33*7RsF1jd}>QRs3uW^h?r?8_RI!^)%G7-AU^#=wyI Xi|dE+%a+GLLl`_={an^LB{Ts5b7DBi diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char70.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char70.png deleted file mode 100644 index 1bbc3cde1bddc1e718f1393b5983c6059de3354f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^%s|Y^0wP)GcE18rLIFM@uK)l4KYRA&gTe~DWM4f4gn>9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char71.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char71.png deleted file mode 100644 index 0a743e7100c36a415f467ae6433d59e08acc1bba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 115 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$r1%4TLR|m<|G#b9HbXOM?7@862M7NCR?&JY5_^D&{07qyga}W=Tm2My59ms+TWh7yxA%JYD@< J);T3K0RV3bBZB|{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char72.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char72.png deleted file mode 100644 index ca21de7f26d597dc6180ba01b73c2b14833cb06d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CJ!VDz8OuLW{q!a^uLR|m<|KHWs<>25@R#ujr zoNQ=lxNX}uWo6~3PoJJWdlo1wd0fLAsF<-N$S;_|;n|HeAV=QQ#WAE}PV$4C1O~=) rMg~U@ykc1B8`wH?!J$Vh4&^Yk_A@`oUjF?LP$`3_tDnm{r-UW|ibgfC diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char73.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char73.png deleted file mode 100644 index c7f6a63b28706b8fcd734b24a416e8757b25553e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 172 zcmeAS@N?(olHy`uVBq!ia0vp@K+MX*3?y@=RVx80-2k5u*Z=?j8yXr01_pL@b+NFp zI5;?*J$p7eIeEc?13Q5 zZripkIXT(E!Qt%Lvt?yvVq#)EJUoGcfk0*RI_5qF>S8Pj@(X5gcy=QV$Z_^`aSW-L zlbm3&cT!{H;>Jc>*a3)z4*}Q$iB}`;|OL diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char76.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char76.png deleted file mode 100644 index 854816c3204c005a26420c9a11a6bdb62c0f52c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 234 zcmeAS@N?(olHy`uVBq!ia0vp@KrF<;3?#R2T>>N-j01c^T>t<7&%(kYCMLFR+cpOW z2Ob_Cpp3Gz^4YUz%gV|YELdP@XqcRw+|||f^y$;Uz(An-*RNyzfQlGPg8YIR9G=}s z19DP5T^vIy=EU{|3NIgV!EKrb zg6EH2ZxNYmYW2dtY?n&q|Z;* eZDuo_&TOr~^z-B66Tv_W89ZJ6T-G@yGywp#3tMvl diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char77.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char77.png deleted file mode 100644 index 1586532cbf6c9a8ef7ba627b5b79a13784860d13..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp@KrF<<3?z$OJsE+NL4Z$)>;M1%Sy))g%E}fjSRf`Q z1{CJu;W0Ec?CR=z`t+%?vhvxpX9EKRw{6?z;NSpMoIb@Q5~zr=B*-tA!Qt7BG$1F{ z)5S5QVoq`b1EU=q#}4L&JHne*%03mAkgy0_+9u)9qHcemA+cbcOX&FnhZ`7-9agCu z7(CZCPI$26z=3lI_Wo%SWo8z>pmF@F!%AOX2WB;cf+tf=9iCXO&MRY7m6Vtx>KYjWXsOGAe!#iGy0L*sflEHarY;GIrn0n#h&c{xW-v@j iWhydn+*&Bgz;IKAyZ_^{)p|hV7(8A5T-G@yGywp{JwGe} diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char79.png deleted file mode 100644 index 64c0c1e5532662b4c02aa8a0040c740f79995605..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^fTJ}t}{y)vikx}WAJqKb6Mw<&;$UNc|vpm diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char7A.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char7A.png deleted file mode 100644 index 52d4fc23a4a42524fa40842370d55c6f59d8d33f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 181 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4xHBpZ(Y^aoPv0X`wF|NsBrwr!iCpSxk`e8!R>zhDN3XE#6`8&4Oh){^FQ`J4{JG6wZf W?y%dU_uGKxFnGH9xvXxr5 nvPwQ4o|vsXK8@lM2@DJ(oxIk!MP9`N4P)?h^>bP0l+XkKE#5(n diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char7C.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char7C.png deleted file mode 100644 index 37c0a4c2f576579afdd7946baf504bb6f335c9dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^AT|#RGmu>AYB(84X$AO%xc>kDzpSk6>C>l%hKAd= zZR6qLQC3zC3=B+8PCk3~?1BXg92^|Fy1IbMEasf@0P12a3GxeOaCmkj4ahO}ba4!+ zn3HU=x0{h;M|#4fH!FD^CTX)AnYV^PW%<(PBg?tu7&@oqFit#kii>Aa^wmpD4A-vl VX*@N_UJ2CB;OXk;vd$@?2>@W~J=XvL diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char7D.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char7D.png deleted file mode 100644 index f4382343a65c35bccd2b5b620edc5bf20539b6b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^U^WXgkd-9)$P7ps1o(uw{{R2KtE($8F!1Tqr#w77 zK;g4z&n71)i;0PC+qP}Nf&~r^4u*z?%F4=RWo1Ccrwe%1fr=PQg8YIR9G=}s19AdA zT^vIy<|HRnR5vhk>@Y9zO-OiP@vo<`akB}d%BCal3@3yLdN5A%zeBMtLc0DJ6hBJ7&`njxgN@xNA DMlMG6 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char7E.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char7E.png deleted file mode 100644 index 3b90171bb2d81f04ee4aa1193834b581e48aba2c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^U^WXgkd-9)$P7ps1o(uw{{R2q!NEaHOziC0vt3w(9qCOSy{QPtPH3)ritGXD9u_x`B~nhoj2%p2?pZM1C_(@OZT=+@WZ7v*v^=X%T!=)+QCCCM0ktSn!7E v9SGPnqw!>;?gPdE%g>_hYbP0l+XkKlaoU6 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/120/char7F.png b/sagenb/data/jsmath/fonts/msbm10/plain/120/char7F.png deleted file mode 100644 index 0acb7c8ad3579dda09645eb8161b754902b68977..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^93afX3?$7I7w-U4S^+*GuK)l4H#9T^@>p0{l9Q9q zo;@2F7$_ztrmU>|^y$+D3l@}>m34J>0hO&gU#_!^M2u~Nskcv6U z2@h@_K5$^eq}7ZbMpqg-jM&-)#Dx`_y+u7XSQ{8D@dR3svzKKCrXJ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char.data b/sagenb/data/jsmath/fonts/msbm10/plain/144/char.data deleted file mode 100644 index c58655f77..000000000 --- a/sagenb/data/jsmath/fonts/msbm10/plain/144/char.data +++ /dev/null @@ -1,130 +0,0 @@ - msbm10: [ - [14,22,6], - [14,22,6], - [14,24,7], - [14,24,7], - [14,20,5], - [14,20,5], - [14,20,5], - [14,20,5], - [14,22,6], - [14,22,6], - [14,24,7], - [14,24,7], - [14,18,5], - [14,18,5], - [14,24,7], - [14,24,7], - [15,22,7], - [15,22,7], - [15,22,7], - [15,22,7], - [14,28,9], - [14,28,9], - [14,22,6], - [14,22,6], - [15,23,7], - [15,23,7], - [15,24,8], - [15,24,8], - [15,10,0], - [15,18,4], - [18,18,4], - [18,18,4], - [14,18,5], - [14,18,5], - [14,24,7], - [14,24,7], - [14,24,8], - [14,24,8], - [14,23,7], - [14,23,7], - [14,18,5], - [14,18,5], - [14,24,7], - [14,24,7], - [12,20,5], - [7,20,5], - [6,10,1], - [10,10,1], - [14,14,0], - [16,14,0], - [14,14,0], - [16,14,0], - [14,24,7], - [14,24,7], - [14,20,5], - [14,20,5], - [19,8,-1], - [19,8,-1], - [19,12,1], - [19,12,1], - [20,12,1], - [19,8,-1], - [15,12,1], - [15,13,1], - [10,22,4], - [15,15,0], - [13,14,0], - [14,16,1], - [14,14,0], - [13,14,0], - [12,14,0], - [15,16,1], - [16,14,0], - [8,14,0], - [10,16,2], - [16,14,0], - [13,14,0], - [19,14,0], - [15,15,1], - [15,16,1], - [12,14,0], - [15,19,4], - [15,14,0], - [11,16,1], - [13,14,0], - [15,15,1], - [15,15,1], - [20,15,1], - [15,14,0], - [15,14,0], - [13,14,0], - [39,6,-11], - [48,6,-11], - [38,5,-12], - [47,5,-13], - [1,1,-1], - [10,14,0], - [12,16,1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [14,15,1], - [11,16,1], - [15,10,0], - [15,17,1], - [10,17,1], - [13,17,1], - [14,12,1], - [14,12,1], - [13,10,0], - [13,10,0], - [3,10,1], - [7,10,1], - [14,10,1], - [15,6,-2], - [15,9,-1], - [15,13,1], - [15,22,6], - [15,22,6], - [20,10,0], - [20,10,0], - [15,15,2], - [15,10,1], - [11,14,0], - [11,15,1], - [11,15,1], - [9,9,0] - ] diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char00.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char00.png deleted file mode 100644 index bfe2e71b9a3c30685ae955c7ec8f38ad660106c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM5!VDyt9&Zo zWO})yC@x%^;x>*8&3cC iQfpJviBB;Ovl(0FN>7ei%q0o5m%-E3&t;ucLK6TWa8vvM diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char01.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char01.png deleted file mode 100644 index 3e9262d7d51d857d5509a96b4e943319ade67bf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM5!VDyt9&Zo?A+G=b|2H%=R904AuwcR2 zvu7O~9J;!?0s{lZ#KfLHeVUw{Tvk@b!^5*}+cu!e)FnZ`fEpP~g8YIR9G=}s19GxF zT^vIy<|HRHFx|Txz;=BlrvO{I^^}9xUNIyZXvZ~Z*>Np2c2Nl7m~ktZQ_1qW4nwf0 z^noTFPM$ddlO+!xyR)}i^ZPqdwrLkGNL;+2vBBa>h{4&J)240F(VgCydUcg(;Oa2t e)5gqqnHhG?l+M!@&UOLX%HZkh=d#Wzp$P!5)l?k- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char02.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char02.png deleted file mode 100644 index 90f24b13e1c200753cb928bd8ecfed768c6be347..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!3-q-O4_6XDdPa25ZC|z{{xxZwr%6#;Ym(T zHZ(LWD=T~Y^r?e`gP52Y3kyqESJ&CIXO)$e0|NsWELZ?ke?lUt5~zo}z@H zu=@kU)u7XAua-I<%UJ-7PFYWqK?M;0Ig>5boFyt=akR{06KMF0ssI2 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char03.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char03.png deleted file mode 100644 index 5423087e928867fef2f14ada1c0631890710bc78..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!3-q-O4_6XDdPa25ZC|z{{xw2Wo609$t)}^ zJUl#xhK6EdVqINbPoF+@aB$eRZQI$iXO)$e0|NsWELZ?kZ?89TDo_t&NswPKgTu2M zX+Tb)r;B4q#hlVUZ=oX!9IP`nPPl*gx7}AYjYsbi_fp*orVl4OeD|imuA95e$n?j) z9T)GmY9GGa5IkYx;wK90dM8in+{b^3fot0SX+jli!d80j3OhT$r#x1<`dTbYe%DGd rODDDKYkr@XFKNr2Y+{!C;V5U;I_4Q?@2AWHTF&6<>gTe~DWM4fcbZ?U diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char04.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char04.png deleted file mode 100644 index 309e46bd35514a33645f818ed1f3a26825d27724..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM1!VDz+wFTvYlvaRGi0l9V{}(J+U}$J~_Uu^} z78V{J9tQ`9va+(kz`&Eakt zF()~}fz3u*!Q?s%M=g`qzD+zn8{5m8G|uTJq|RBp+EJwVS|fvizjs3|b4yxkLr1o= ziScf+hRk8ml3o#?kFPD;vLNPzBI&yFKNo0#%Y$YYnC&kPxbnQgabNJfLuyg& z_b*oyZZ$R@X7DH!H!x`UvXQ~?#GJPdXLzQuF;6gI4v}JHC|@qn)^s8TWDSF-tDnm{ Hr-UW|l$J+v diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char07.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char07.png deleted file mode 100644 index 9067d5d77cfdf0051ac34ff52cce264ed0f0b8b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM1!VDz+wFTvYlx~1ei0l9V|9NI#6)oiP$OeWkY6x^!?PP{Ku(OO zi(^Q|oa6)twms|$Cf}JjY9}`~K4zM5k97&Rgv1RshMUm~FI{Bhu~aZ!6D?)dAZl#A z^2|xr%h3)dufIucC@=}B()MTSc%+fQQf#Rw(;TJ6u+TzyLD}LR91N|I!mfs;_x1wq OVeoYIb6Mw<&;$Sw?nwCn diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char08.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char08.png deleted file mode 100644 index 690e7b72022bde5865f5032eec50eef07ecfa498..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM5!VDyt9&Zo zWO})ypY_k%a$%Z>wB7Qwi&n5Z?P2l@XDPfm6fv0uk(%q kRlH~9y3>4%bDK27hRt%9zPkC90&QmSboFyt=akR{07Hga^8f$< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char0A.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char0A.png deleted file mode 100644 index 550f1e06d6ab4752d606f9d4a198e2a981ec5c53..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!3-q-O4_6XDdPa25ZC|z{{xxZwr%6#;Ym(T zHZ(LWD=T~Y^r?e`gP52Y3kyqESJ&CIXO)$e0|NsWELZ?ke?lUt5~zoPCNxpz1;Dwr*pa?x>1pL@}n{KZMJ!A9HSUd(lgTe~DWM4fNj79J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char0B.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char0B.png deleted file mode 100644 index a7dc99f276821bd1a472a01cf612001c3265bfe1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!VDxWUS3QAQU(D&A+G=b|1T>mOHNK^VPWCn z;W0Ec6cZEc>gsy>^r?e`!?tbP&YnH1tgIXu7`R};0-)lD#kG%sdKpWC{DK)Ap4~_T za*8}%978JRBqunq)rc#YoM+?M+uqoi%{E~l-;vadJUn~~2hEq?P&_qFF0(;H+pqmX z;M@c@cc#h09chAHzCV(M$&^4!-f^9VU-Mt1?%h>5;xq< zYcM**tiaQz#+EXHSLxCvqt};&Bxc0MaK*;#aad*UoKoq)#?0VtA*A`NWWy<-6%3xP KelF{r5}E)sXiMS% diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char0D.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char0D.png deleted file mode 100644 index 584df81f3b9f6b83cba991580bc018454aee1833..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM3!VDy57JXs@QU(D&A+G=b{|7S5%F1|nc#@No z4Gj&Im6aDPSaA02SqBFPF)^{OuCAv~p9Tg7ZripEsMwHot^!a4V@Z%-FoVOh8)-mJ zfTxRNNX4Aw2fGh5Fz!xskW4KMIJVhFV{xhFl)@s@mNY}g;Pi!8lnkzNPOO>5x9ms4 zGKI!qg-2&*3O`HdGx)G{spPVysZ6XD*Bn!J$}?~>OqeN}t+B&G31~Khr>mdKI;Vst E0C+k`x&QzG diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char0E.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char0E.png deleted file mode 100644 index 18ee57a2bec919d2da340c74483386a64e0985f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!VDxWUS3QAQU(D&A+G=b|2H%=1oFzt%C>FW zCMG84;NXy)oc#3ZQyw0kuCA`LXU{4tD+dM!E?BStsCccr%silK#*!evUFS$kcv6U2@Y&E;tD3`**NyHYt?m&JNdt0431%qOqjLxFT;#)Jjn?UB2wqA;=Xb$ zw(ji`BNx-(Ur#2?n%t<%=whFoFoF5vaz(acX4B1#nfF+E0#Xw$B;LMw@#294MQ+c} q%rrhOArZl%@TiAh!9=^On^A^evi+OrllMUT89ZJ6T-G@yGywp$(pl92 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char0F.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char0F.png deleted file mode 100644 index f20ac76fa1fa51d6620cc17f77ee97f43d797ce6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!3-q-O4_6XDdPa25ZC|z{{xv04h}3VEKi?4 zO-@cOD=QNd6XW6GF*G#n>gw9IZQI$iXO)$e0|NsWELZ?kZ|KOn6R3x=B*-tA!Qt7B zG$5zg)5S5QVoqtlqgaCi2kTk^N7i@sw~cy=F6vCFw0ki7lK!%8um4fg3(aP)`WiOR zt4=ik;G0`_xR)H?y5ClOYNtx_+~C>MnoXZqn{mueTC-d%+HKqEoPPJXM^bi$%>B|A sma{pqrn?B-OxdI#UvfiC_hrBE!W`z)RT7oFK>ziU#@$-mCMrSyoQR}V=3LNii%Z? xYxn*YUl=-3GX2RaQTChFKa}ns&w0O#@zg=4Pgjrrxdn6rgQu&X%Q~loCIHCD_XFN(MzNCXb`?#Y&z3JM zws6wypQpESbO}vu_qg%=u~ucI-)cqw+xa~8+2v@#a8C`QEJ!vFGzfq zm5nrT3VXTT@IiB+sPmBEeD=RyD_N;@0gP53DS67#zp`o&}@`42ml9Q9SZQBM^|2*Y*7El9YNswPKgTu2M zX+Tb;r;B4q#hloFZoVT594;F*IwJP|&lUIF)}`WhzvmA_-;Bpgw!gk}WyvQsEz^7{ zR{ldmr#5IfcSPKf&aPj4NNf6})mywBZH?Fc-&M(L{(Jtd&niv(+LDZ%m&vZoi|qTQ z<@x4RlD;{I=E`NEm)!N!`aZsG6{)V@`+!~c7_-Hl>0g?Gj$rU~^>bP0l+XkKl0#zy diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char13.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char13.png deleted file mode 100644 index 344905ea55e2f76848b91848ae5405e8e373b10f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^{6H+m!3-odE}CfrDdPa25ZC|z|Ff{L0C~#F%GiJHxX zubP0l+XkK0AXWc diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char14.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char14.png deleted file mode 100644 index a424c7a500c13463c3031db8fba2768878a3512d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM2!VDxAS4=JfQU(D&A+G=b|7T%g2@DME>grms zU;z&gkD;NVgM)*ZnAp>&PtTq`tE{Y?oSa-%R<>>1HlX5P%&%&JdKpWC{DK)Ap4~_T zawd4XIEGZrNlsvBW*6xC&d~BKj$vWCgGSry%!Dp|sWpA6$Jqpq-r4tz$;1CLOCP6$ z0uwa3q zp&PtTq`tE{Y?oSa-%R<>>1HlX4St82dl^)i+O`2{mLJiCzw z@qX5Z6<@ez6!gLw4hwbUwS^e`d>8w1clmmW9aFY+ zPnlBEz?8!naQUE0`itHR7cN+^tuuB_KR3scTST+L3I3A{dZ@GJ` z=0Mo{N!J&3YKHXB*Bh*@37^+bY@|7V7dSR diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char17.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char17.png deleted file mode 100644 index d99be940d42a6d3b0c773098821d4e2b94905521..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM5!3-pi3&)BADdPa25ZC|z|2sH1oIQJ1Sy`Ed zg#{?QZQC{;9-hF!z_PNkuC6XaLqjn!v8PX;CMPE^Sg-)7zVzY`0iZg@k|4ie28U-i z(tw<7PZ!6KiaD|V7lj%WIJ8X+SpNLqfA*8nb-5kQyvMe^Z5O++OELDV`}`B)oNbM_ zCh9IVdg2;%(d|idRDWiZZQ+kB_DRdwSKO1fS+LWv^y9w+OQuWq<=%br^4YD4kJsJu l)mZdQqGHl62b+JpxNn?guK!l?*B@vtgQu&X%Q~loCII`2VIKeh diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char18.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char18.png deleted file mode 100644 index 6278bf7ff2124925967444cfa624a4c6d12726bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^{6H+u!3-oH_de|dQpN#3A+G=b{|7QzSXdS;Sg>u| zwz9G^LqkJlWn~8khvejB9v+^vXU_%(26lCIiHV6lefkur{&${DKTr>2NswPKgTu2M zX+Tb=r;B4q#hhCIXucx~93r9uu6zFHYTwGqwx4$7h~gRTmhU|UeRDUwW{j@AZ@zV# ziHi$&_^a({?>oHGD!O<#{<(SMxc$`sm3@2Oe&e3mvuxA;iE2HUOs5@*OSpHzYh}Q( z1F!b`8nNAAou*@dQ-q;o`|&pocbvKnE%n|#&N+9LrLwZ+tlOjb$IE}Q?!V2#F?Z2U RbD*ObJYD@<);T3K0RXf_aOVI3 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char19.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char19.png deleted file mode 100644 index 21ea06a8f5308d5f2a3ce860642acf1841098dc5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^{6H+u!3-oH_de|dQpN#3A+G=b{|7QzSXj1g+g4Uq zrmU=d_Uu_hL&L7FE-^7N2M34bz>;CmNRY5TU%hOE! zZ@+HdP%Na+&CuR&|2*c=S%n4*rKgp;hD-#nFb8v9jwryKrU?2|`^=;=Zygq!x%AE45}mnA-Umi*y>-Y+q27^IvUi_l=U1;QtKC9M*=`@aox=Lo z_V<~`hJuVAUf<6sBKl2zCHgviCc zV)$yHb#trfMSs?nTVhX1mh#@%3Jw>yw30<4Sa`E5QswZXIg3p(P z2FIoK{A$oSr5@91xar>vGl7E}WS7o97pD4pVs)5G!_kQAKAsQk_sLn`tKP}*WhINw U{TJf-K!-7Sy85}Sb4q9e0D@L*+yDRo diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char1C.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char1C.png deleted file mode 100644 index 9e36f3ccfbe6705f39f0cfd00fe8f13e81e69a9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^{6Ngb!VDy5no6DmQU(D&A+G=b|5sL4Ua(*R4-XFu z3rlixGEm0B!J(|I%+S!VtE+3WeeiWw*wnJ(?DVi35`ynO-rU?@DDU_4&eM6Pg4-`T?m3deU%ue;rEKZDpR~3d i_`h52%h&Jk_AySK!4&NKDk~glCxfS}pUXO@geCx?*kK(2 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char1E.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char1E.png deleted file mode 100644 index 43103c3f885f81d872a5d26e9f72956b8c93ee91..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh-3?!F4n4AKnR04cLT>t<7FD53oV8Mc}uCBnq zKnDkhEx&sLdZ54;*S9!lT|W0yEBdMtsnVdJI*o^7lKVWK?;?=d7t9*{Uwpy(>m>?x#Y f!g%aeiy^~VEB2LqcaEe2&13L%^>bP0l+XkKRwq9T diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char1F.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char1F.png deleted file mode 100644 index bd42723de6735877c1d9f190835f4e44211d0293..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh-3?!F4n4AKn)B}7%T>t<79~co)z!6N!2&Tcv2EM7J$?Gr(9jU5M)=!PkQT<0AirP+hi5m^fE*`J7srr_ImtJU zGB6v99f)`nTX2xeqFa~YoKNfK2!W=11!AAsEG~1LOA2W)ZhfGm#%K{NdG3)}gYotQ fk!$!0p6M}29$=sN_+!#4plJ-Au6{1-oD!M;M1%flL+_ma?)kLqo&l z`KzQ7exL*uMVmU&qS)Fw4Shr*{GS3&d@Mw4VgF`g}+Kge`Qm=lCJyZr- O!r^j diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char22.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char22.png deleted file mode 100644 index 7f7b337f9278c5b8cd16ee3f841b1ff41ccdb621..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!VDxWUS3QAQU(D&A+G=b|4&X%4h#%juwcQq zZQIJq${ZXVSXfw;m6gTB#0(7$&z?QY!^89R>C>*RE}-I-^L}Ik^)i+O`2{mLJiCzw z5I^?k=-K(e;yk-;#NF)&xsPSTx3PE7Y+ZDQ?^`y|FQsk>xX| zfkA<#fq{Xxfx#OVuaABS2^W|pC$Xn7eYH#AVVFHj^7D-wEK8J}Jw2x~W(hGL5m}It zk&=~>Av56`59>u9o|6KZ9hy9Mq9#vq_*HSXxA6eWBQb#rZZ*a=p)xnVZpaM*x{1Nl L)z4*}Q$iB}=@efM diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char23.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char23.png deleted file mode 100644 index ac2e93cf5f8aee33758513380286cb96a3195495..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!3-q-O4_6XDdPa25ZC|z|Ff{LI5;>gSg^p* z(6FqmEHE(e?AfzG`Q+qeF)=Y^W#w(#w(;=rJbn7KtE&sBetxE$C{UWQB*-tA!Qt7B zG$5zW)5S5QVovA;M!q8o94u=&*Ai^(9Y}9H!G*nw?Llv&G#ld&c21!*ctl z_4R7)DVlRXthm|Lr+j-$+uB{z-6y3sRP`Ln(RVd2N@jh2OiMs6rRU%T7+M5fi7Y2boFyt=akR{ E09=(}9RL6T diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char24.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char24.png deleted file mode 100644 index bffcad918937281fd7b59c00f8064325224a9fd1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!3-q-O4_6XDdPa25ZC|z{{xvUEG%VZWrl`^ z$;ruGU0s2Jf!nriB*-tA!Qt7B zG$1G4)5S5QVoq#-v`~Wq2Xo+R)=S6#=C9srJaxwYw-8&Ip;?%nN3}4lU&5zFd9~KI0_?6!1$6dyJYtrK57fW1Dyzopr0M1ujga7~l diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char25.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char25.png deleted file mode 100644 index cc2962cc193f3d703994605a916e3a9dac8336ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!3-q-O4_6XDdPa25ZC|z{{xvkJUlEcEDIJa z=<4cnaBv6=3=|U+D=RBId-m+pr%#iUlMM|Gm6esZZQBM^-ydyv7^sJ_B*-tA!Qt7B zG$1F@)5S5QVoq&;G~WRQ4wjW$MO~l#+n(zcpL59~-p@?WA?5Hzy(b-)waS^i9Oc=v zx(v^6;k{7X9hRK&YVR@eS(#k#rX*%1cZOys-J9x1Rm~Wl!Utrnjgv=Dz>T Zuw@laMF5r+POIg4;l_e)9i;0OTD=Tl?w(aTDr$EKY6E|D}>SZhm@(X5gcy=QV z$SL=9aSW-LlblfT{hchcz=wI3#cAJ}*f=8oGB|zCYv5Ybaw&g-iMiBWJ|znYiEWJ; zVQuEZ5rDbS)uYXSQyT5Du^||xRwrd0)wZkpUXO@geCy7E?g1- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char28.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char28.png deleted file mode 100644 index f2e3713037b0bc2df411c787ede4ddbd504541a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM3!VDy57JXs@QU(D&A+G=b{|7S5%E}B44U?0T zySlmp0|R+@c%D9ex^3GwF)^{TXU{4tD?2ziELgArsF?TPjd-92#*!evUtFe`pl!U~#`~-&P$pT%E8CsrsH(Xf5CotgTe~ HDWM4f*tbof diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char2A.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char2A.png deleted file mode 100644 index 3cf258b381fe52ef02cdd1dedc5a44fde6209fd6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!3-q-O4_6XDdPa25ZC|z{{xvUEG%7JU518+ z$;ruOWo1vFKHau$o0ymw4-b!ngTvXgXO)$e0|NsWELZ?ke^(;xCQuJ!NswPKgTu2M zX+Tb~r;B4q#hlXqi((B59L_7RaJKyWe?Kfkw(`Zkie(#o7sXd`Upf~$_gnAEnVmC! znP#&pG-!XEJ88M|*XF;y1~OS(nVDxUJhXlwF#WXjss4>Mxv$>dEM2K*c`eu4+IWrZ t!|Y95Q`#E8Z#=8E>)PBUaw?bQ#SbVkpPy0j_8-uC22WQ%mvv4FO#tTDWcL67 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char2B.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char2B.png deleted file mode 100644 index 100f1bc8105554ff32a1fa2a335b424a3fd2d489..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!3-q-O4_6XDdPa25ZC|z|Ff{L@bK`6iHQNl z%F4=~K7HEN)#c#eker-sXlS@?+qSc3&nhb`2L=W%Sg-)7{#WUdBS58$B|(0{3=Yq3 zqyafao-U3d6?01a6NL{5a5(syc>Vcbzk8~oT}An>c{@(+R9>5>mAX|)Dw5~a%Wcsn zUOcz2&v^Z+!LLFp*j|2#s6^W|-?M?%=a0uZXC>cRvNr9b?DUg8j0fTwUgk%=&o$lu sq+{bZ(+&C(PZswUim%A!dUu3*nj`b_JI%WsfwnVvy85}Sb4q9e07s)>ZU6uP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char2C.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char2C.png deleted file mode 100644 index 9e1f191a2b1d778544def93b4fc63eb04b09164c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eM!VDz6?;TVEQtAOdA+G=b|95b3U}0h5;o%7k z3=|U+d;0Y0*|TSplam)LSWs40*45PoRP!?9&}pC+#*!evU!Y<`;ENjtr5SeZj5ib~Fy_<7});hM} hrxv*kfeP*n40%1$hi9(n*9Dr#;OXk;vd$@?2>|~FKEnV2 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char2D.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char2D.png deleted file mode 100644 index 45aeb195f05a05f5b8bdf3af7b4b9139a38088bc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^>_9BS!VDxg+gV)&QYryHA+G=b|1T>m{$l~2cUvKOE2~U)iag^`2{mLJiCzwi`f0Hn^!Ubgp7`P+~b@DwL3rz{lj}vz9@~*ihuLa>FrZhH5Py4;g!h0H9U|Pgg&e IbxsLQ0RCh)CIA2c diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char2E.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char2E.png deleted file mode 100644 index 10bfe514bc500a356ee34c06d15646c45ce7940d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gGzu;i0l9V{{sU9fxHC^7Kn+7 zDJv@{Cnp;k8gARRt*fi+>C>k`1rj0J6M!lhOM?7@862M7NCR>-JY5_^D&{07M4UWu z;KIJ1#)VgBHZDBb(0FieW25Vw#)X?@Rrrp|@Gx{vV7<9WWzQ3!9tKZWKbLh*2~7Z0 CeKwQ; diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char2F.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char2F.png deleted file mode 100644 index c6612f5e4353c82ab4c2a5952133cce8deb547f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^AT}2ZGmxy8xzq=w3<7*YT>t<7zhJ=vAdiQK$I#Gl z+qP{iEG)^%$qo(<%F4=T&z=<%6YJ{gdiwNfSy>rSaZ&#MDL~bXB|(0{3=Yq3qyafb zo-U3d6?2jkDh?F1H#R0RA3hZ)5Lw3H;kKQ@)hA6iF(Dy5g<;Y|HU%M#ZUt6}2uX&E W(Y$tfT;5ec-3*?telF{r5}E+XFE~R0 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char30.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char30.png deleted file mode 100644 index 5ab05e460a7833b112c9bf10ea8624d6877ad6ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~1_3@HuK)l4fBN)kSy|bF1q*;; zfq{W6EG#@cJlnQyOHNMi>gqByG!zpPQ&v`XaBu)B4iCEaktF(*0UK{7)VHxG}ELsvCpOWjF^WtQd+FSha|%zDhwkrux-=bF|6t8Xjk8K?U( ybbXdEXn1PgsL8gCfnzP(!X16i8FG;ZtPDE6yw;PZ9S{MU%i!ti=d#Wzp$P!1TtoH% diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char31.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char31.png deleted file mode 100644 index cf0d3e2dcf2aba3aaf3cd64f663c5bb98f057936..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~i!VDy@FgET4Qn~>?A+G=b|7T%g*|u#PP=JSr z=jqd@U0q#eWo63B%E`&ehK7b>Vq#~{o^^0=0IKwzd?ysBj4^vC$=_g9-cc6Ck~i0p2|pXFtFfS&|}8Np=`x?DBnrcko_A*|fW|X;y85}Sb4q9e E0B_qy00000 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char32.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char32.png deleted file mode 100644 index 3fc1c26c3e48839efc0140bc3836391ad4eb8bf3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^d?3ui3?$#C89V|~1_3@HuK)l4-?nYr)2C0*o;@2F z7|6oHQdU;BV8H?&9-idn|88d-;8B2ovf*Bm1-ADs+ z0zF+ELn`JZCp<`IXyWGKv2p0CW^AcD$*|1QoFTLC)2Az+m=xYVy8Y-8gV6Q>hRlbF zRve2YEQ+=*U8>6Pa)OD$*;fo=X&$WsG3p8?{dzN)7($Eq;`g3anhP|X!PC{xWt~$( F69D~bN+CCQ1O*_Ro8&(7)yfuf*Bm1-ADs+ z!aZFaLn`JZCp=(wVr$#Z!(-!c;=o>pQ!@@SBo>%8NWRHjep$$Y=bHMlV{Qo(lX-X& zG^es~G{4MncXt<_P#7z6C_(=T<7tDKy$p#4(~KP?Y|JGs98DM``~{DcCOi59tzhtU L^>bP0l+XkKT+m1G diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char34.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char34.png deleted file mode 100644 index 87c5d6e36a8c42c29386f2a91050abfdffb670ab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!VDxWUS3QAQU(D&A+G=b|7T%gDJv^WPEJ-< zR_^NR;^E{&4}F`#0etvTjEy^JM6e!&b5&u*jv zITfBRjv*Cuk`o-*Y65=oO}TgUz=4~5ON1pPBK}rM?l5D>Y*tmTRBOm+)6C;Zn04@t zXiM4p3a&*rWoJxwG}&Bg6tPE#bIrRpo)aF|jN@VzX1!K95n_666=m;PC85 z8jw@&>EaktF{gBbx7ZN{4i?Ey*(3M==386!xQV@N4VqoW>$3i3UsP$tCg-Iwa;I)h z&YQG5;iSOU7e$L#OmJ~tQg@cKt=IBQxj5(4;wg*6z2^&Sez=k=!`g1YPU_p~`p(U7 xJaW(TEI9mW@~5>qo@JstR&NkK>8k&eY1&`rg$q_K$^klo!PC{xWt~$(697% z>{%8TmgMAQ9v&VC2M0q#!)@EPJ$?E#Ffg#It4mBw45)bihDJr8UdECjzhDN3XE)M- zoG4Eh$B>FS$q5c@H37f)rquB++@W@d;qsi%ea#y0uCPpSdiQv%0~8 zTmrND8I|ra8&0tHWArIL>&O23am;}Ud`9WY0@(~76IZ12D~L>H+SJYPPez#GUaIj# Ppe+oZu6{1-oD!M{$l~hi%)oJ$?E#Ffg#It4mBw45;|qd96C2UdECjzhDN3XE)M- zoLEm6$B>FS$q5c@H37f)rqrE1aKMzggIhwP;`Azs8{!Nv8=h*`@+iz&c$v+qINOfp z@*1XU5l0hY=9Yb%g_Zuj(T%uUBsyW@o>Wh62b1ePb}LlV7k**pII7X`Mv39=QZdg> TyJB_$En@I=^>bP0l+XkK8DmcN diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char38.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char38.png deleted file mode 100644 index 4ee3cf0bfdf27da79f2561d153a39d8e1d2190a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^!a&Ty!VDx|=HFZnq;vy(LR|m<|G#b9HWn6^va+(k zz(5`zo&^gQBqt{u8XAg;i8(kpJbn7~?AfzjU0pzxi+=K-1!`n03GxeOaCmkj4ajlv zba4!+n3J54u;aji1I$Mp4(x4cZ2ZhHV`nlmv$N%lqhd)pIqPzAa^@U3z?~u`$~;s2 q0M{K!g@$y-$1EC?A2J!c*faD@;7eyq7kC9UkHOQ`&t;ucLK6TAz(p(o diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char39.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char39.png deleted file mode 100644 index b76defa262347a78bb75a74f3eb3b4d33e0cef58..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^!a&Ty!VDx|=HFZnq;vy(LR|m<|G#b9wgn3o@bK^i z1_rXQu#}aR85$ZUCnrCB`qaU}K}<}ntE=nm*|R{ET8Cu0ff^Z0g8YIR9G=}s19BWa zT^vIy<|HRDFy3Rf;R!fU+nCKX<>tWykp~VOm^^LTG{I@po~>a>Tehunrow}R2M$DX orWxiXBs63t?`F7i=l}zQehbejp>@k90u5vEboFyt=akR{012)}s{jB1 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char3A.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char3A.png deleted file mode 100644 index 8f971f69cb47509ee1210ea9322fc8387f792e97..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^!a&T!!VDyf{>|P9qznRlLR|m<|6f*C#>2y-tgOt! z!jhbvY-ng07#O%By#Zt9N25XaO}zM9Skmv Z3~x%Lw#=DxP#I_)gQu&X%Q~loCIBNIRaO81 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char3B.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char3B.png deleted file mode 100644 index b0fd4885240ae27e5f176f0e90b931dd5844dfa1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^!a&T!!VDyf{>|P9q;vy(LR|m<|8Hn$=-}YM!orfA zoUE*@ykNnCva&KB9v(3grQX6^phm`$AirP+hi5m^fSf2# z7srr_ImrnOO!qEJODt%3{f0$ia`QqimyL5Ri_>1t6y|eK>+kOF?(FV<#Ja&|JA(jw zW2sSIgFz$LoLB{}hFgoyIc#BcWM)2Mut1VqqGDm#hnR#1Y??A+G=b|1T>m`#f#ID;PWUAf2`a(Z(^Armumg!Ez7XUsf24u=`uFAzA@vPwN3Xf}hVtDnm{r-UW| DkGM-( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char3E.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char3E.png deleted file mode 100644 index ce8f69c94768bbde483803edfee3a6bfa72858eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^{6NgZ!VDz+bADY1Qd$8%A+G=b|5sL4e){yOgM$MP z56{`NXT`+Cy1Kf6@?~XZhK7a<7A#0kP6jGtdGo{=D9Tt8EHG{5AV);ge>44$rjF6*2UngClgLBIe2 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char3F.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char3F.png deleted file mode 100644 index 178236db4719932fd189ee55c7310442c0dcbb00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^{2(?5GmvyVaHJSW83*`;xc>kDAINlYaNyzLNls2? zVPWa&>Jk$ZJA3x*f&~knK7CqNR%U2usI06U7#O&1+cu#3s+*^#1NAVL1o;IsI6S+N z2IQoBx;TbZ%!%#u6gr^5!NMsKDDd}x{^3cd6lK_UNr*LcY|dTD@PbDuI=HRq{2J+l~?ngkk0f{ f{m!3%Uy1YkYBFuP8kCs?w35No)z4*}Q$iB}v!+Iw`D zT(Drlwr$%S92{6!Sj5D{3=Iv>o;}OM!=tRM{PgKlpyIo8^0a|^8B2ovf*Bm1-ADs+ zl001;Ln`JZCnO|1NM>NX$F4Am{mi|i2M(APrychZ*xe)SBF8YXM%Y1RHFHOb;e(V1 zX4?X{B_;?@5tzczm15X%Wa@z@Mh2FQE}vo;M1%#l*zAy1H0cSb$>N zwrw*sG(3Cutb>CC4-e1Nr%#iUlNT&lpscK1R#p}m7zk9KkhjkOsFblJ$S;_|;n|He zAScDs#WAE}PHtZ$-vI>mdKI;Vst0O{~s(*OVf diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char42.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char42.png deleted file mode 100644 index 357bfaa3400cf7ac83600ca5a490982d42fd6d0f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 217 zcmeAS@N?(olHy`uVBq!ia0vp@K+MO&3?$hCyB`86g8-ip*Z=?ji;0PyJ$sgihlhoQ zWx;|4+qP{>PEIZ>D|`C%X;)X5gM)*ip`o&}a$sN}P%%HNttn71V@Z%-FoVOh8)-mJ zxTlL_NX4Awit6w0=EedInj>y?qdbPeNN`;+uq<{jS1;Pbh_v?0@0j#VM{RKY6?=EKhM6Hi~`ty^JM6e!&b5&u*jv zIhmd=jv*Cuk`odV9waj~TkrPUCZC>AG5Kdh{>u`!Hf1#)o-+@5e8l+}o^CV#ut9|( zldbP0l+XkKX~Rp^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char45.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char45.png deleted file mode 100644 index ed7809f29a9760e15d9fc8accd98d5f16cef62b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp@K+MO&3?$hCyB`86g8-ip*Z=?jv#_v~m6ZVn#KgpS zczCvL+ZGrYc=qhsuC6XaL&K*}pE@`=C@U)`Cnp0HN2Nxs11e=K3GxeOaCmkj4af=f zba4!+n3G&lEza@Iz@R|C;^c+8X^o8!og|qLhj7?7vO3*=#&$X98jr%RXK!*1VwXst zWtcdb%7 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char46.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char46.png deleted file mode 100644 index 4176503683377d1433e3c3126689a55499bec536..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CH!VDx|PJVD7Na+Ungt-3y|DT10gqByG<^E>X<1pBva)h=axze*GPg)AP$OeWkY6x^!?PP{K#q&2 zi(^Q|oa7zFY#e^Z1-?5D28f+JP@piUk+$}xW*SU1U~dh oI9SleEYQU`cb8If1yCWwcP^>vH#}9_f#xxIy85}Sb4q9e0Q43=!vFvP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char47.png deleted file mode 100644 index d5e7020e15e5e3ec76bf059c0065c46c5079ffdd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^{6H+g!3-q-bzC(AQpN#3A+G=b{|7P`ELf17ob2G> zux;Bm9v+^+z`(O-&z6;yiHV6B8XB^&uqZ1lcXf3=efkur{<%$!B~TAzNswPKgTu2M zX+Tbir;B4q#hloFM!q8o94srRDphp<|DVhKrRZ5lr{rNikC3ey+Q-uml_;*SzG+s^Ojj&y-kbBucHh%c;YYfoU=F|Qa5F%d#Cul tpDPp$UAmSYNtU}D%l9IGRrTrfcW*Z{A2u^i(gxbk;OXk;vd$@?2>^)NVg&#I diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char48.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char48.png deleted file mode 100644 index 1848a94189dda49372b277c5cc39202a9ce62943..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~i!VDy@FgET4QtAOdA+G=b|7T%g2@DJr6BBcA zaM-qOTXJ&pf&~knK7HEN)upVgTvk>FRI_L=_eY=>#*!evUkDKRG#>hli)EtV~Qy z%)!Co>C>m%wrvXx3_N@Gtf8Udf&~kdm6f}?x_~O@_BcNSYGf=4@(X5gcy=QV$T9YG zaSW-Llbo=l_}Q6EHnz5@HV#b-=kiSA^>Ne9c%GDC@!&$<=>r9+Tf-QbnU^nAWoBmh XyoSGIt+b&CP&lcf8S0*MZ!&mWkjB#{z5S5M9z|It>je^54$1A?o8IiwU!Q98QZj=*vi}%Sg<-#dg<}CyRl> Yca!YXUGF1&fVvqxUHx3vIVCg!04BpcumAu6 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char4D.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char4D.png deleted file mode 100644 index 6b0b8099a3ab1858a0a505ecdab16d9101634ffa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^!a&T&!3-pS9lO38NErwCgt-3y|DT10rL3&X(9ke2 zFp!6b=j_?DVq#(o7A#0kP6n!a`t<3xZQC3i9F&!nySlo7>emKc_yv?;ED7=pW^j0R zBMr!@@^orjXZv#@i2B8P+a|l>@qh!PC{xWt~$(69B|z BXvP2l diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char4E.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char4E.png deleted file mode 100644 index c5a91bca7f14af73a263c7536e4e416f3d9e1c26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^{2;M1%Sy)&=f;>Fiwrwjb zD+>$^?CR=Tuwa3MgM*lun4zKJ)2C09larN|mCv3%3snEL>_;|G17k^$UoeBivm0qZ zPO_(qV@Smu-!sudM-(_*F3$FO#4PxI|Lp~Ssvj=PES;5TCmV3yESPQU52v{-f(Bnz zzrT%<6kDS?IoM#Emfh;JUFSvCXB=EIJGv>|wL9!#*Rn19>yue)?}}UY?~>2?zkhMv a4+hUYEN=65S9AicWAJqKb6Mw<&;$V5Y*(WI diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char4F.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char4F.png deleted file mode 100644 index d08e0b8b3eaea5fb510700c2a5f9b661c4a1c6c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^{6H+g!3-q-bzC(AQpN#3A+G=b{|7P`ELad27}(X- zm7JWsZQHi9XU{q~IIys=C@U))8XEHO@Q8_tm6eq}efkur{+-m^TA&`rk|4ie28U-i z(tw;|PZ!6KiaELc5BZoCIhtoS6dZl|d;eQmqv?MmlAY{sxv6UD{<>Jxf8go2jSni^ z diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char50.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char50.png deleted file mode 100644 index d6a9ffd2726fa2b174fa58a21bfca0cba5d6cf7f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CH!VDx|PJVD7NErn9gt-3y|DT10rK_t;Oiawd z!QtuCr^(65JUl$xwrx9m_UwWM3jzZJ4Gj&Im6glN%7BWes>;m<>SZhm@(X5gcy=QV z$g%TuaSW-LlUz~#{oUMH9-cYu_X?-PrY7u|aPYw`re#JI6E&|}Ds)}uTcYywlOo#& n1!lch4q_cOI@xs%jf@OV_R=>s-->wyO=9qL^>bP0l+XkK?7KuE diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char51.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char51.png deleted file mode 100644 index 76b77654ec3c4c6170848037fa52522801a97b74..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^{6H+s!3-oTWR}kWQpN#3A+G=b{|7P`ELad27}(X- zm7JWsZQHi9XU{q~IIys=C@U))8XEHO@Q8_tm6eq}efkur{+-m^TA&`rk|4ie28U-i z(tw;MPZ!6KiaELcfqX2A9L|x9g2+x6t(W+6y0g zZpEq}Hn^-ci*5SFuydN?3Z0=Wq34#TevT@Nee;+NqyHwIbuX(E_PW0NoD|koCdGA;??`q}0^ef&^7|~(6Mz2W1iFU7)78&q Iol`;+04>aD2><{9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char52.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char52.png deleted file mode 100644 index 022562535bc983db56932827cac8402f86c241e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^{6Ngd!3-pihitnGq>KZ6LR|m<|Ifn0A|@u5oSY04 z2W4gDva&Lu`Xwih<^h#5mIV0)GdMiE zkp|=>db&7Vnvu^I!D1lO+ zbr+02PDqNMCLdiLxoeee}1%RCE9U diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char53.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char53.png deleted file mode 100644 index 7d4ff27de10063ed7163328d0ceed8e7e76b330d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^+(0bA!VDyhCeQE%QU(D&A+G=b{|7S9o;|x@!Gf}~ zvTfV81qKE_efqSktINT`K}<}{(9lp>S(%52CpkG8sQ8IbRUA+QV@Z%-FoVOh8)-mJ zo~MgrNX4AwgodW=%fsKLB|L~b7%=zj0fDlH#)l@%&F)6b&1THb+~=9u)Y#gj+UAuk zaJsgb=OTYY$<0JI{|U!-J)XnJBgMlL<;ux3jfY33U(G;5%)nr&i9v*1dIICDr0TMJ iF$>tr*g{#^*cjqZNDBUmmA3}k%;4$j=d#Wzp$Py0aZlF( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char54.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char54.png deleted file mode 100644 index 4c086fc30ff67016b5662e646d71bdffc39f3625..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 185 zcmeAS@N?(olHy`uVBq!ia0vp@K+MO&3?$hCyB`86-2k5u*Z=?jv#_u@I5;d=uz-h$ z$I#HQtgP(m)2Cu$Vu68yU0q$t$;ryf%Gi zF{ENn@{VFQ7Bho2Z&oEnOP4hydNT6QX1vVUc9q9r)?Wr^%Z{`i2M#bSlRU9Vyg_5x eF<~QC9)^p{gx1Q7a!ml5!r zLttQ_n3&jt1q+gslh2+#`}FBkLqkJlW#zK6GN4LNL#6*fjf^Ehe!&b5&u*jvIRTz7 zjv*Cul6Mq8JHxilI9<%3ATJ|5A!72;0|z!JPHJpaWjJBMkWvt%(4EMT#KL$skin=- z(%4`FVmdKI;Vst0Ga$n Axc~qF diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char56.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char56.png deleted file mode 100644 index 0835cd9229a965b6bee66d07a036f5e40ee0f962..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^{2;M1%#l*yTczBYNlgrA= zfWj;+EP;W63l=PJaBw(#_UyK8+nzps+SS#itgLKkXb4mv?$p}~RL58nx?)uI7m0lTV0u|mpvYvc>+W++jbUK0P@>R_=W)KlML1 d+Mj<@666=m;PC85 z8j#cH>EaktF(zBcRI|JYD@<);T3K0RR^SZK?nO diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char58.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char58.png deleted file mode 100644 index 8585643270688be73b370e48d55689abcf5ce472..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^{6Ngd!3-pihitnGq>KZ6LR|m<{|{t}iHWhWu#}aR zB_}8I@bEl+`gGg2ZH9)1XV0Du3=CYbV1a{!gR-)6S63HM{lCSBw*&PsmIV0)GdMiE zkp|>sc)B=-RLt@13*-|=UKZtrTcT)%UR$JmdKI;Vst05qRh>Hq)$ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char59.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char59.png deleted file mode 100644 index d29788b44152d6ca765a27af3876024e94d1167e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^{6Ngd!VDytmPFqHQU(D&A+G=b{|7QzSXdk!9Fmih z7c5xt^yyPEF|o5}&vtcn1qKEh8X9ifwoO@CxvZ=VsQBrh+=oC7j3q&S!3+-1ZlnP@ zk)AG&Ar*6yE2_WiF`vJCn};Vx_?m&imwO2b2^uF-6B76tjFxR+F_2-q#IuJ}Tw-0L zgbmyK2(<MUldlJwR N22WQ%mvv4FO#sD@P09cO diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char5A.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char5A.png deleted file mode 100644 index 99b7c82f4a0e799ded1db7eaef6897ddba2dcebc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp@K+MO%3?vUPOnU&Nj01c^T>t<74`i~iu!xC?@$m4J zm6Zhs2A(~8*3i&!+qP{_pFZvC>T+;!NKQ^xR#slHU;$9Q>!wqBKs}5lL4Lsu4$p3+ z0Xa#YE{-7;b8P)?iyctlNP3;L^yUBmZx_vd#OSQSbV#4Ur&v~^FV9<&)AvF0S>M1w zuI(ZPZv4v@eN|qf_$I365!c)vIg2OTwYZxDudUg=*YWkXPj}vSK7Y5Y<9cwM{WAwfs#^CAd=d#Wzp$Pz6-dL&t diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char5B.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char5B.png deleted file mode 100644 index 2fa4ed6d46e70256da8c020b75d0ddea1503ae2a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^>OjoK!3-qJd&{Q)DdPa25ZC|z|0^piZ`-ylIXM|9 z#=^p4XlPhgR(AI6*#!$01O^6*iHY&>@HjX)baiz-efkur{?(R_ZlF@ek|4ie28U-i z(tw;0PZ!6KiaE7?xA__rc$_6C^FGu2|9|^}PPdB}rmMa7ygo&(b@sbUN&DR diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char5C.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char5C.png deleted file mode 100644 index 694f464d0cd915338af2cb837c0b3cedf9fe026f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^20+Zl!3-of{eQ~}q>KZ6LR|m<|G!|tg0pAO^6>B& z8X6`iCj(`kK7HEN)fE^RsI08a!ongZCg$MaP*zs9ZQC}WdWMV37XlSAmIV0)GdMiE zkp|?1dAc};RLp5T=P1;mz`+_25}OZ8hoy^JM6e!&b5&u*jv zIqse=jv*Cuk`ovjw=e&$lhDvORpF6a<%FXQ-igbnd48ntT2fGR%EU4H7C4~!R5iT zunk$SRoNZ4oRnhR!KofL-!f$DABC35#~WA<^%O7MCCR`YAy#sKiLNowa0X9TKbLh* G2~7aHZA(S~ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char60.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char60.png deleted file mode 100644 index 97e9bec47e05db1dfd40eebcf9a442d0cfa94a7a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^AT}QhGmw1JJ7ETpk_+$&asB`Qzk`DV3kyqfaxxDO zPghshf&~l2#Ka5@4S`ZCjy#?PRLNKpTL8iV07_(%XX^W zh@+Whd86hwHiM&@42vq38yVaQD&1v^m9ZJ{+%Mv^)Ch z2Jea+B{rwum(6?DRm7-u-C%RJI9piYWtE9rOFk}p!`~iZ?frj3QO&pf{B@pOuZ-TY pt6tN&cxjDn>4$pe(5FW_Vnq~1q&9OJ$n|YK3=i17^sM`B*-tA!Qt7B zG$1F-)5S5QVvcEFpwIyW7MG=hoK3&)Z<}$AJwN3-n}W@PRl8zE`!;Jv^1h49nPC&z zck{}nmEq;P-ZFXLzf=3b^6`!ds_Ux0E_acRZl7W|DeYu!&6$-RsfXFD-BX#cL$ jRzkLHbsG&zu2e7W;NY-r z+csro<>cgK78Vwu{L`mT7c5v%R#wKt!*llRS)fX3GnJP>3C5BjzhDN3XE)M-90yMq z$B>FS$q73SFt9EUXFSNF@Ysc2K!ib3Qo&8%BTr4B<$%bnfO8L6Bv-Jecr>he5pm!E k*RtCZ5>7wlic$0nK9YboFyt=akR{01an6B>(^b diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char6A.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char6A.png deleted file mode 100644 index 8f66fc191ee8ef551c51dd19811b87d577f6afb4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^AhsY2GmsSHRk#ME3<7*YT>t<7udJ+WXlUr*;Lz38 zwQburF)^{^t<7FD53YtgP(d;1C!X z`1I-1s4_bN1|6pvsdeL2G~#j3q&S!3+-1ZlnP@j-D=# zAr*6yAEY)g%!^$ewl<1$iM7LmhDKf={e*-BUS3|^My)8OrQ*&nT?48Vr^GQY4PS7X kG2j=ImMycFu^|J)@_JF*!-v2701adCboFyt=akR{0Qg8iN&o-= diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char6C.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char6C.png deleted file mode 100644 index c87e03959cddc16e3cd0730d114706160e86119e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^d_c^@!VDxAtef}}Na+Ungt-3y{~si>V1c2b;kIqt zy1Kf=#Kg{?J)4}I{PgM5z`#Hr9v%k=hqAIVpvw8>Y#V^88B2ovf*Bm1-ADs+tUO&D zLn`JZConWy3%vT~C2;cQU4~_0@eF})jx$NfG}sukvhf*moK3!LuF;<1q&9OJ$u%{!C~9BZ9tX&$qx?$6)~0s`2{mLJiCzw!y&O99lUke=&Sktk<@lorER||fHons9SC}uqP Xgm1y~6KmE2bu)On`njxgN@xNA*akr+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char6E.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char6E.png deleted file mode 100644 index 7d56961fffe536efd52ac94da3165f5dd5d57e58..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 173 zcmeAS@N?(olHy`uVBq!ia0vp@K+MI$3?%0sIQbn&DF*n2xc>kDpNEI1tE)>{Sy@a> zjD>~e>C>lWWn~K%EHE@Q1j?RQ$h83~W-JNv3ubV5b|VeQvGR0r45^rtobVteA>n~W zLV`zWLP7@Prpcia7BUVdlbJhCPdKySMVphc`AAH_`wA diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char6F.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char6F.png deleted file mode 100644 index 5fd2622c9ce83bc9f493d95ca7257491997f1202..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 178 zcmeAS@N?(olHy`uVBq!ia0vp@K+MI$3?%0sIQbn&sRa0hxc>kDpNEHM+qP{_pFVYP zaA09!5fc;Z>gq~PPF}EJfuW%xP{I8`o%KNVj3q&S!3+-1ZlnP@Hl8kyAr*6y6CNZb zBs|DTNJ#KcNSN`8;mH)kg0!ZLZ!MW_3bPg(%;cPz=C5Jgv?7^(CG$&d)=LV-H>4Ss XBy(-OUVI@DXbyv?tDnm{r-UW|B)LBT diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char70.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char70.png deleted file mode 100644 index e69a136e2e742e96c4851e77cc077db257459fb8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^%s|Y=0wS9^f4TrEp#Yx{*Z=?j8yXsJ+qSK%tLy30 zr$8>p_UsOzEMrNKUoeBivm0qZj-aQDV@SoE_E)L!VDz49!1&#DY*cj5ZC|z|8Lv2ZNY*ChK7b` z&z=<%6YJ{gdiwNfSy>rSihY67b)ZVdk|4ie28U-i(tsQZPZ!6KiaE&-5)%9q5>gWk g71|P#5(F3+?9MZJOFVdQ&MBb@0811s;{X5v diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char72.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char72.png deleted file mode 100644 index e63821005b61bdc67ec7ce3e0cdd67efdea8ded7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^d_c^_!VDzKz88G~Qi=gSA+G=b|37>7EDsM)U|`^a z1q;N)#I|kQrmU=-oSgjh=~JNW+9w~k0~Irt1o;IsI6S+N2GZ&2;uumfC;356LPNth sPJvmvELsM48Dia7W0!?8_@;3&aGhh5jn42<2P$UpboFyt=akR{0GdHCe*gdg diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char73.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char73.png deleted file mode 100644 index 101b31690b93eecaac8a5daa81c6f8afe9370b60..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^{6Ngc!VDzeeZRR8NNEN5gt-3y|KHHiaKVBFJUl!s zEG%VZW!tuGQ&v_6$~!nXJbn7KtE=nm*|R`pm$vPG3>0N73GxeOaCmkj4al+bba4!+ zn3J6F;O1cl7H$cNw2}}*gAJ?(8>;4;c_usvNl36iaNy=lv)0B&!4(PK?b6K5;vOr7 an3);Gt2m8I__RSTWbkzLb6Mw<&;$VU-aJMC diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char74.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char74.png deleted file mode 100644 index 6edf5da9a5b41484fac8df346ff266a9492d437d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^{6Ngf!VDzk7iOmbDT4r?5ZC|z|BH!gnPbQZXkvp`!X5BQx`NCbo4m=N6k8Y!Eltz-lnXCu~#AfdhvR91t+N%&EbhVz7rv zP|$dhq{I&qiHPTSW(FNNu=v1%9}S70rx?re@T_sTd0h4y4@1N?5v~H?&1ZoYFnGH9 KxvX2R#xWV;EbP0l+XkKJ!nZ_ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char76.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char76.png deleted file mode 100644 index 2812137fcd5817ed8c90b300b8e007270d16fb42..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^{6H+m!3-odE}CfrDdPa25ZC|z{{xvUEG*l$Z7VA) zQ&v_!d-klMpfi>|K~rS$QCbtzBFb%oA7Kknf2F<9(t_g%xb-~{pccz z^v2+@e%CxXZcgKhY8@$st?${hG?*_xecQGM=nw`^S3j3^P6`jOmnk*Lu+G~{z-!aGjiAjp0P1}`6bvO{6HodXe@)LtDnm{r-UW|lAlC! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char79.png deleted file mode 100644 index 7a0884c81041d6000ef4e4bbfc870b9d8852be20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^B0$W=!VDzcs*|q*Dct~{5ZC|z|Ff{Ll$DhQ1_mxz zus}>q%+S!#!NEaUS(%52CpkI!?Af#1wrzX*^eIr~zu;RpfEpP~g8YIR9G=}s19JR5 zT^vIy<|HR1Bs{P^%fK3AeCiNiL*$-79v++6glC}>IDRt;7_;hJU_N5QoA8Wp!W8C? zr)LTi1)0?&CRoRwZEO@xdgPnQ#%9JbIhB!_;a?)pALo1Cw}3`7c)I$ztaD0e0suYj BMk)XR diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char7A.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char7A.png deleted file mode 100644 index 488eadcb5d111ed3591055e2931f5c94483b0b10..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^{2H$6>uK)l4@9OGuaBwIqE92qe zIeYdj3k%DF1q%WL1A$5m4Go_@eF{{=p!zu#$Y(4G@(X5gcy=QV$Z_;^aSW-Llbn$7 z;2tjvkHdydd-v?AVV*FNQ>me$l&d8zVIE6rfp3e^jWlP;iIaPM5At}kt~lYvsL{-k eY!T+1!4P?oe>a=f)A>Nd7(8A5T-G@yGywoiQa*zK diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char7B.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char7B.png deleted file mode 100644 index 567ad613a03adc69b4b6549c6678c630296e4bc7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^{6Ngb!VDy5no6DmQU(D&A+G=b|9|@Qsj{+ia&mHD zU?2+%%eHOXfRbWjVmv%NhK7a<7A!b>_N;@0LswT9Q1PMUNEe_qV@Z%-FoVOh8)-m} zzo(01NX4AwgoKLfhQ>s3f#S0j2M$CZJ#e64mUW|b3G;-52M!h3^0*iqKZ6LR|m<|Ifq2lboDfR#wKs z!gBWPSqBFPprn|XSYTk_f&~k@6z BP4WN$ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char7D.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char7D.png deleted file mode 100644 index 80943f8a3f31456df063eae1d42a6babd245dd01..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^+(69F!3-o>A0K4`QpN#3A+G=b|L5W1>FVk-G&Fqr z^y#*3+X4dv%gV}t@(UI$NKQ^>VPSD_a1av{Q&v_!d-g0)eRvF)2vC}_B*-tA!Qt7B zG$1G1)5S5QVvg_GXrTrL4%Psl$4d|XE0kK6daG zw~5j3;-D*Mbv@>9KC;p}b=^tn(>MM0ROD^ridW~%t1G<2sBtn{&}aX;99$S3j3^P6A0K4`QpN#3A+G=b|L5W1>FVlw`t<37 z1q-%q+h%BJ2$T#A3@j@vOHNK^VPSD_a1av{Q&v_!d-g0)y|2AxIZy>-NswPKgTu2M zX+Tbhr;B4q#T?(>Xr=}Q4i-b7Fzp@xbEj%_$;Taba9MWUQ}TGlYQ9W{Zy8UVXZ`zV zC!nsDl^wur9{=q~WY(?2sgKffGs{`{_i=u-((5Z;S@5s!khbs5S4`2Dri6b1n$O_r L>gTe~DWM4fF0)OU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/144/char7F.png b/sagenb/data/jsmath/fonts/msbm10/plain/144/char7F.png deleted file mode 100644 index 193710402e1f328a41bef64ba6983aa0a74235fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4?3?zm2ODh8@g8-ip*Z=?jcXf4b+qMlT5EvLJ zCMNdu=~Esa9z#PzWo2a+7M8PT&pJ3bBqt}Am6ZV%pI@Xc3{=Wk666=m;PC858jxe; z>EaktF(*0U!S3o=jg5)shu85sbTxiv=y;;RAe6b%Vbb}dk~*IxR8DUZ@YwU>#sLNf Yn`=DGZ|}=q1L|h*boFyt=akR{0LK132><{9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char.data b/sagenb/data/jsmath/fonts/msbm10/plain/173/char.data deleted file mode 100644 index de2481c16..000000000 --- a/sagenb/data/jsmath/fonts/msbm10/plain/173/char.data +++ /dev/null @@ -1,130 +0,0 @@ - msbm10: [ - [17,26,7], - [17,26,7], - [17,28,8], - [17,28,8], - [17,22,5], - [17,22,5], - [17,22,5], - [17,22,5], - [17,26,7], - [17,26,7], - [17,28,8], - [17,28,8], - [17,22,6], - [17,22,6], - [17,28,8], - [17,28,8], - [18,27,9], - [18,27,9], - [18,27,9], - [18,27,9], - [17,34,11], - [17,34,11], - [17,26,7], - [17,26,7], - [18,27,8], - [18,27,8], - [18,29,10], - [18,29,10], - [18,12,0], - [18,20,4], - [21,22,5], - [21,22,5], - [17,22,6], - [17,22,6], - [17,28,8], - [17,28,8], - [17,28,9], - [17,28,9], - [17,27,8], - [17,27,8], - [17,22,6], - [17,22,6], - [17,28,8], - [17,28,8], - [14,24,6], - [9,24,6], - [7,12,1], - [11,12,1], - [16,17,0], - [18,17,0], - [16,17,0], - [18,17,0], - [17,28,8], - [17,28,8], - [17,22,5], - [17,22,5], - [23,10,-1], - [23,10,-1], - [23,14,1], - [23,14,1], - [24,14,1], - [23,10,-1], - [18,14,1], - [18,16,1], - [12,25,4], - [17,17,0], - [15,17,0], - [17,18,1], - [17,17,0], - [16,17,0], - [14,17,0], - [18,18,1], - [19,17,0], - [9,17,0], - [12,19,2], - [19,17,0], - [16,17,0], - [23,17,0], - [17,18,1], - [18,18,1], - [15,17,0], - [18,22,5], - [17,17,0], - [13,18,1], - [16,17,0], - [17,18,1], - [18,18,1], - [24,18,1], - [17,17,0], - [17,17,0], - [16,17,0], - [47,7,-14], - [58,7,-14], - [46,5,-15], - [56,6,-16], - [1,1,-1], - [12,17,0], - [14,18,1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [17,18,1], - [13,19,1], - [18,12,0], - [18,20,1], - [11,21,2], - [15,21,2], - [17,14,1], - [17,14,1], - [16,12,0], - [16,12,0], - [4,12,1], - [8,12,1], - [17,12,1], - [18,6,-3], - [18,11,-1], - [18,15,1], - [18,26,7], - [18,26,7], - [23,12,0], - [24,12,0], - [18,17,2], - [18,12,1], - [13,17,0], - [14,18,1], - [14,18,1], - [11,11,0] - ] diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char00.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char00.png deleted file mode 100644 index 0a6ccd73ef4fb5c84c3070d8c1383f713f8d9bfb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^f$^6cZEc>gocj-|El#3aE#%B*-tA!Qt7B zG$5zk)5S5QVoq;gG+(O$hs)|(2k(`?@2_n#R5HD1ZJ(lcV2(gthV-8gbECG(Efh^Q zcJA`uA0;3DAm_dCg6uaFygtm#wmo_5+2&g-ey=$rYTUNyUbdyLcuGdVkp;}GVv!{_ wp;xc3uAgM)vgL)uA>q)e=VsdfYvHbEkM&^*>c~F39OwiFPgg&ebxsLQ0Ai+K2LJ#7 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char01.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char01.png deleted file mode 100644 index b89b629a44d78d6cc4a4c9cc5afccb089c05b50f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^fZ#y1H}r?XTxN2l!JI`UV>=IFl6jwjCYCm!3#pAFuq-nqQ!(p9FZ%hMM09$3BZ wvv20kuk9%zC$I5r&B^sDs{V1J@O{2|Obd(m5<>-5pbHp0UHx3vIVCg!0B1{M#sB~S diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char02.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char02.png deleted file mode 100644 index 924b51f10e111c8e639e5b439c2db64a4a4fcc54..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^fUlzUF%Arn0(x=CT&AjpecX5U5F5#-hS#x*9 z%uv&KylPf)+S%$!oKFR3vv9rqprC8#-t}BC;xTXPMkRMcLk&@@7Z=^cRtuOOGvK}F z#kywJr&q=kw}q9LaQt5wb8gxL`-sq}WoMN3d{p}qA;7=y^|DLPUvsm3)4saq4}%du WOOUei|1UtNF?hQAxvXzQNalaly2jw{7F-Zh&URK7wqB#C)h47Hs{ z$rV>AlVJX}e_VI5*0@#G92Az>9nU_$;$_tX5GUs#wm T^0nK6?qcwC^>bP0l+XkKTVH7) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char04.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char04.png deleted file mode 100644 index 9f39fcc247522e2ba21ed835a7510f080fc749b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^fPELOM^eIq` zg@t9of(6RT%7KA_+qP{hD=RyD_ACz%kD;MqS67#qm>5vKUR>y1pi;(?AirP+hi5m^ zfSf{47srr_Il288#ab0OSUjU#o&WydzqZ<1G+>Wq-y5$dX+bkCDqqxX__pwhp5Mhq zXPbH~V|v!*c{`u1XtG$CKV_OU$F%!v1Njc6O#K|{y5e@jD^BIilhaOYO!c`u;o$#k q=k=d(t#VzHwB3UtKUJmr7NhqvrduA5x8Da^&fw|l=d#Wzp$PyitYJR@ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char05.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char05.png deleted file mode 100644 index 7cd2250b9ced19ee84bac159869367d016127562..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^f5v~F^SyEK&6Z&L4Lsu4$p3+ z0XeyzE{-7;b6Wcxg_spNSUR;0B&PoVZ?-#hCD%FCI~lhVUHUv1-t0bEBPvPuLW}l-qKgQu&X%Q~loCIIvBTgCtY diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char06.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char06.png deleted file mode 100644 index e453ad5febc1e81983dbf3dc3c903e5cf0b9e476..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^f5vKk849HP$^?ckY6x^!?PP{ zKu(sYi(^Q|oYuZbz5@yzE*qm9@4TzO9rc>ce(n*6w&My70jx_WZJqo`|BxV4W=nwL zU)@CKP18NrC`nyDo4UorF1+mKy2SE34|}GZUbmLNrhm@KHsAHXt!V60)O{9W`+J{Gi#u&44$rjF6*2UngHMVSg`;A diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char07.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char07.png deleted file mode 100644 index df7338d67f5c62c19b4334ad0f8b66afa2cb99e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^f^P#KgpaiZhxo1OinvmIV0)GdMiEkp|@C zdAc};RLn_EXlP&$nAP~5q37schGV;!!#8rfoN3a|W>50lu;~rM3M004k^-U*6YTEp zWXN*)w764!maM~?JMPkoYra@U30SU^Jrj_6hj9+4z%JXP&L jgscHuj3l#mh$KVT1?gQs_cHndZD#Ov^>bP0l+XkKNk>v+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char08.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char08.png deleted file mode 100644 index 66b52d78d5770299c490d68ff86f1e86329c9fab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^f$^6cZEc>gocj-|El#3aE#%B*-tA!Qt7B zG$5zi)5S5QVoqzHw@`xthx6)$h4LT%ZNGX;&p_`?)6A5HJyYsRcI~an-|DhHsCYv= z=jGe)FJ9IwJ5nvydQ5MQaM}f{lYfq^xpK|$^!+aVW6fOIJyXwgyG^gyeY_!bwvfE> zotcOEOJBUzWx1N4dv-Y+zu?T2s9CFBH4aXeh{;;S(sCpsU;)q>44$rjF6*2UngFxJ BW(ykjnFr*LEXo^|p*s#?qLEvn|pE)o4` z8DrkJPIKxDmEaetx3`N0)%!WzRQH{!@UwB({PRoyay+~6!|JN&YMn3tPI-hRI9aTE z&CFxWwJdgn<;9PW&F1uMP-420Vz@r6>;K`nJwZQM>;-uXjDXHy@O1TaS?83{1OQ!T BV)+07 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char0A.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char0A.png deleted file mode 100644 index 023b502a23a5294b045af8578274e1f85d64ea7e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 284 zcmeAS@N?(olHy`uVBq!ia0vp^fR!&v z%D$4Wm7i>rk5ub5&W^FRF|^?L&*M`kbMU`n%C^{bqL(+Rr7CNl&NbO0^;2WD@|0b7 zEvK|jVX+TV_+(Kzt7Vh$v3`LE)iVnMG}bqoD9iM1P?~f9hDYW9i08t2sX-pu`DRQD e_D;GwRlH#X%eJoyZ#Dp($l&Sf=d#Wzp$PzJ0BoB8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char0B.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char0B.png deleted file mode 100644 index 5a746145f48535e07de789cfba14397389a86214..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^fvN5iNnc# cEj}libEdKsrAsRx0y>bv)78&qol`;+0F8%iivR!s diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char0C.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char0C.png deleted file mode 100644 index 49be5dfae7f9c5dd20c8bfafa816a798850637e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^fsy%5JYpdQAOAirP+hi5m^ zfSgQE7srr_IjQ}Dd>E?RL*imfy+0oGwc>U6nXjp1XVcs#^PrNw(>} zzinMjDi3fhW0-n}<(%23tV;*)OflVFB{oUyrjmpK)#`bN!))vP7Vz44$rjF6*2Ung9TLU3CBe diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char0D.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char0D.png deleted file mode 100644 index de6d1f13b4d09dc3cfe7d2bd57c42dbf885c853f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^fx#`3@*>IG4r=i2nV*f9|ZD%agvgeo?uQ)bo<<>JlZbNQp>)5mD|Z zvIfsJHN-SmB-GFS{^17C9ouP}0`_=q-kpB3UA~jm`p;@^rmD+MQA$zC)3nMu^tXA( euD7wT>CMwT#PqA+lF34#l?C>lOU0sHThGJr3+qP}v;o)&`a40J)V_{)Ad-g0){e<;THv?5OmIV0)GdMiE zkp|@Sdb&7ns?Z+C0Wsb$BtgBp%CJuEoic%nymJJZuul@BB3zrN4oW=W9A%zMI;c7dh2 U`mfzupu-qEUHx3vIVCg!09wau&Hw-a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char0F.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char0F.png deleted file mode 100644 index 1e93e9a220ef01956ff08213a0d302798fbacc0d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^fU#S0>4F6d3=Iu|@?v6Q+qP}v;o)&`a40J)V_{)Ad-g0)ebHV)8=y2}NswPKgTu2M zX+X{dPZ!6KiaD_X-h3{K9Le*zl)Ap}e|u#AC0rA)YA(%d=K z=a^^9)7Q(z?rcA5;xF$mbbrhK*IJvN9s1Y%-o#B*aQmT6Zdx<4c#}OfS$V@}i~U;{ z^859gl1<9;OuJG-U;TLJ)&5s!@wevrUJNrmTEuR(w)hn$uSrjjd9co;=A_pl<)6%E Xb6E0^|L;8sbQ^=GtDnm{r-UW|OW$m` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char10.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char10.png deleted file mode 100644 index 4e7db88e7a393387c20dd5b3d72ef9ffd9dd07eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9d!3-qbS~XEC`?HgbO2b}*Ck+bU8{%x5{;sZ&m{Yz>^zC6j z$A>FpVyzW85e+5vwBrxXWfj!>8TTbMj*SAXX73kjR-@b_NF zXFsW(W}RiXTc3tKUTe@-e1E62oyO9O-|Dj8PSANh;kEzoI~sYq=Hj!Jmx$y%J;`mu V&SEFMvJMmg44$rjF6*2UngHUiY0m%v diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char12.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char12.png deleted file mode 100644 index 1df502acdcf8fa0e799f3329fdfc478e469d03f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9d!3-qb- zoJ!YqzI7feEgGiCG6;Oqi}%}a^SGh;>0Idr;hF4zHq7f(o_p$%l|y%XQ(5cTOyQ#f zPEAhFmT4Pr`li-%^IK-w>l|ga*O4g?m&dMMxc2X*N0$Q~GXHhfn{V*WxZSs;X33P# cZPq&(?>}Y{j^dCI2D*>I)78&qol`;+097?}LI3~& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char13.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char13.png deleted file mode 100644 index cfeccece7a0c6c0fab318ea7fd5974f16a814dd9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9d!3-qb)z!6N!2)GvWgZ@$va+&m+qM}R8nUpkoIQIsIXM}qzSHQ#BcN)=k|4ie28U-i z(tw-^o-U3d6?1YYMDnpHa9Yp{bNQZ4u|FB5KX=C;y_YjgV-i@-e)KALtS|XSX@@&xfx7=r#sVS3j3^P6k5QHqL+prD`x1O#JaV?aPa78Vw^wzlQv&8^=H!@wKfGFki-|}SVqJV`9ZO}>SLrh!8Jt@-Ni8X q0DxvN^dIvWy&}yCpszo@Oivs^F9lg+(=ML?0000B$;rtM4h~{sV%xTDd;0V#4-XGeeR_845uj?uk|4ie28U-i z(tw=#o-U3d6?0kxqJ<7CaEOSo#^3qBEi);H$8Y)X$tr)d+(j;Bw!%Obu zDftG6NX2x>_$UV$wMZAYhS%S@>9{}N`vs< n<5iN|mZfoAdAscFmt%|^O{{`u_HG}6PG#_P^>bP0l+XkKt!s4b diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char16.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char16.png deleted file mode 100644 index daf9ad6e90a15157011a6c5cfe20b6e70914cca4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^fNswPKgTu2M zX+Tbcr;B4q#hliDZ$4&49_PkM{4EoH-{01}KJrlMWn{D3d9;6pU9#%# zJjwNyZ#A9UlJ8#9yYMqGchA;ePv%@zktY7w@MZas$;wqq97(8A5T-G@y GGywqMhht0t diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char17.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char17.png deleted file mode 100644 index 2012ee68edb789d3bef8a2107819224d0baf0a88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^fN2zI!omVnzt&ka7^sf1B*-tA!Qt7B zG$5zW)5S5QVovS^N1-DM94x8}8XG?Rzn`aLD{;rJ;02Sr##8=6iT5{W%=4Xg_VF*7 z=7on&-ql?-d0UzO#f!~ST_zopr E07F(}lK=n! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char18.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char18.png deleted file mode 100644 index 251f80a4ffd07aae646b85f76034871c0f5ba210..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9d!3-qbB4}4OjgwuBWNf}Q*s&lJ6;DzDz*g0)q7fyBW*uEmaRUv1|>_B@vm*=5^E@woW zer!K0;b?Kdz~rm)hgn~?%5rA5%(^mJhrgTe!tB+Py=;|Bdc%6c1?HbIh;oW~eX(TC z&Gn&6V)ypzwmTg5S@XhJjz^uIH7Y({g>0Nu^t>FVdQ&MBb@0Mw>- AtN;K2 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char19.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char19.png deleted file mode 100644 index 3fb0b04b20b33f4b28fa8697cb9c27c99d8e99dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmV-00nh%4P)fIkF$4qzii(OB78X%aQ49 zEJ~vXsb6tTCE7KnR)a{)LWrubaRqTj0ifIpFqZEt8ox$OLY_p_KOYo`&UeK2wg=Vs zrm&e^JyrHGudvEc(?mnkoxdv3ypN}t&f0~X{Yk{(26QmEQ|T{Iqk#qC0r5J~28!9! ztQXcV-(D5wo5+_Ob8^adDUh`_Z4Y;KZ6LR|m<{|{s)Cnp;k8ZKC{ zKv`KiFffpZheu3ItgEZ5tgMWMg~h?aVcWKCXV0E}`t&JK{i!HL1E3zpk|4ie28U-i z(tw~}hqlFGDaPT;}us;2_eQn02z~xW-=a$M>#Qu)3Zdes$rl5Y0p}XiZ zmw?w6QH?pD)D|{<-N4y?V#_Ye8=TwZ*Vk9<@jPcY&-_i(zk=--TOBKRbnacF#c-fR zROXoNHqZW>A`{q6OV1nRUlD3an=+@XUttk<&)Y)Nm#eKZ6LR|m<{|{s?Sg;^4FtDqu zOH53Rhli)Etjy5R(80ms?AfzVpFT}aPG(_YQC3#owrv|weVgq1VTZfLSdrZVuh;i<+<2^SWl;ah~x|*U~weWyac;g)b&A z)Xu1rm3(pan`F=m7O_{J7blyxWV>eXv8?+0-Aq0+nl<&!B-Ix{mos>}`njxgN@xNA D*%W^M diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char1C.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char1C.png deleted file mode 100644 index 2c12137dc76e2e570566aa9553ee2a40bb57cf05..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^LO{&J!3-oL&dBxwDdPa25ZC|z|Cg1O0eQ*E$t)}^ z+qP|UaBvV46H``JUa(-n)2B~)czC+Hx(p2s0|Nuko;?dxztQR_P(1@{KH|5T`#sy-@<^?S|~bB^!C@|~X?4)^SwTk%Fk zan7F2eg4Xq*1owsb2`u8iY?prer>Je)_L^)dBC5WUZvXkHr34kbtgIXu z7?_-#EG8yaR#x`(=~Esao&^gQoIQJ%g@vW7t83e~Z9v5(0;bo2dKpWC{DK)Ap4~_T zazZ^_978JRBqua5?&B^{J3O16<6$w!LtE|#KJS7(4sp!AQ!IFBE=OYDOOHdW91lZU z45AsD<~Ai5X)D}t^EkxBu}z`rWQWR{o&+OFg&TPsYR$||oD8icyqQ0R-Bp1WFnGH9 KxvXC>ml$;pO>h7Jx6%F4=OVq$@Tfk4H(a#A#adKpWC{DK)Ap4~_T zasoVE978JRBv%}0V91|%qlSHgMfHRmG29a@Ru_2AaZCD~vv2ZV4 zD-}~*uz`&^PIH6nb%7 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char21.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char21.png deleted file mode 100644 index 0b1ba353ca7aef3b7f2f39db45e946c794608913..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^ffqqO!otGC!=tRMY-nhB_UzdO3l?nKwhgGB>*>aNpdQAOAirP+hi5m^ zfSf{47srr_Il2AOLWdQ2n6EZ<@*cYLe_L*wP1ohW$&#Fm2|t!RZpjVuHD8l+)JB6x zIzopr06n2x3IG5A diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char22.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char22.png deleted file mode 100644 index 908b8a05150d3771ca90a9f73fb780cca25f1b5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^fhEJb9b#QPvd-g0)z3nyT2B0)!NswPKgTu2M zX+X{lPZ!6KiaDu)kzz*_ID%Iy1%3UueJyv-=_l+RIwvpBVBVVJ`mQ2!wTqy&(lSRD zpHdZ@Y~dAN`p+zzynd7)n^IzFE3}n$j!Iy(Ow1YQUn!}-zMd+WIN96&VC5#=0~@Y% zCTG_cl{#2zOjNtFhx1&_h5|wFyB97e$Z{tbu~w$1`NwNuB6kK@%bR&bOtDnm{r-UW|N?vYe diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char23.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char23.png deleted file mode 100644 index 7c7cc10159f3c41299e2f73a05596e349b73b69b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^ffqpT_Uu`p`dRlDxB%rCOM?7@862M7 zNCR>vd%8G=RLsepz|D6=fx{*66@S3{`rA`)ZAticbb(~43}eBWLjT&urxl}SnysDY z_s?rx?g7TY?@pdUdk;?+w6;l7K}9)ckJpCvOBV^AR)16S?dOVlhoxS>J5XDr z6;!|e za{tb4F7TDc>LTs&1&t1uQBF7S-4;AZ@IMjvP_cS#RA3F!Y|3Z^~`auEFr58?^^|Q4uhww KpUXO@geCw9Z)ooT diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char25.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char25.png deleted file mode 100644 index f90f67cb4dee42cb893901155b90fc66e8203531..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^fFW z*45ROoSf|7;K0JdvS7i2r%#`rJ$p7VFi=@pnTLl*OiT=@USe`v2T%iJNswPKgTu2M zX+Tbcr;B4q#hlU!fqX|4I9xQty19z}-_FxDeeLwEHbX}73%IQe?L?GMTS8aFxXM6QVbnIJCnePZ6z zHT;s7_iVHKD%oGlds#mFx71usf%_Uq^4=|)e1GzrXZD|*S#2ZQs;>dv!rKZ6LR|m<|8Hn$sI079R#vuP z!2$;dhveksZQHhqiHV&(d$y~qi-m;+sFsI^ConMZ>C>k`^{O8kvw%X3B|(0{3=Yq3 zqyae{o-U3d6?1a?BZUqt@HpRXIhw%oeShwPoP%raBwq7MbY`q7@tr<#iFUo?6qy%m zJ1z$cvTCHWdhA#9lKP|g#KZ6LR|m<{~s6_=-}XBXlU5g z)wONgw&djGvuDpLD=RNpu%N80OiWA+sFsC=g@=dd>C>k`^)+eNK;|-*1o;IsI6S+N z2ISOwx;TbZ%t@W#DAu6B!FrHOmF0c?ZKLX?2HfJx9W@LMW)1w89j6M*#OPF)XMOJK zGEZ>VP|E+NJL3s&+q%q}!*$D6a_;st$}4uC8F-&-qjaeDjvUoDZYiIgFMs0QwbDc1 z#z%0LZ~gW3f+OXzPm-?Iy|`I;+TK6##J05?WBZq}vagT>1@p<)LZ7~e=Q;AsozGnmHOb8rL8xu64w zW^t#N9*&&DYar%r6?365F*_qe;{+>@+@WK~jxq9N9Qe$%YT4;y$HKaMdmGb!-rKv5 kvDEhPT6Tl4wh2NE!awC+T$mMi3urTgr>mdKI;Vst0CSaFlK=n! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char29.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char29.png deleted file mode 100644 index 67bc19c2f20032dbc3ef9ab56bb6b7047afb2392..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^ffqqO!otGC!=tRMY-nhB_UzdO3l?nKwhgGB>*>aNpdQAOAirP+hi5m^ zfSfE(7srr_IjIvO`3@*>xUAIP@!)U%?T}rT`{W;c&)^Zb7_j)V^J+K2b6X}&*3ghL z3dnSHE}YHH*_%H*(d5mBNeL&VuGRNXTXc^j^qoMSuwV2}*|iFF)zLnajpnaDzh{+o i)7@`#I|F(@sryO)Vo|?ozC;RWD}$%2pUXO@geCxOLs@qK diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char2A.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char2A.png deleted file mode 100644 index ea25f7706f5a9640685a7a3eb469dde5bbf55be9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^fdBK7O+qP}v;o)&`a40J)V_{)Ad-g0)ed~s^96&{kB|(0{3=Yq3 zqyafoJzX3_D(1vaxGmJ6z~SO*;<)F}|NCKVVQ-qx&1q~^ZJD3;K}zn+v(78)nT@|6 zT;n&@O>xoVs$Wczm;OHdc9!+J{N^UB0QcKwZ!>v2zlB9PsJ*Z$<& zEMr~6H06cz!Y2Vw=kMfg{BmO39QS5-&y#&yO#d|A_weRXU|MEvRfa#_ARruW5^`D$h?4K8Z3^g9&0-f!8| zs?F>y!rbQ5gf>+ou>4+}*GfhG1j>S5GQ_|JSu9+(7ViP6*|N8YZq&4oRM`E5`!+*wLK2`ae XYb-76wqIKZbQ^=GtDnm{r-UW|awKgm diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char2C.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char2C.png deleted file mode 100644 index 69c0f93505de51a06b929a28a1621bff914205c6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM0!VDxWUS3QAQYryHA+G=b{|7R=y1H0cSQac; zux;D6vuDrp@bD-rD?feuR7^|^sNl!(qv}9Kj3q&S!3+-1ZlnP@zMd|QAr*6y6A~g$ z8Zp)5&p8zg3= pnYPZ5mtj~K+*!oV(QucS;on;E-&L{iX95jo@O1TaS?83{1OV~ZL=OM} diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char2D.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char2D.png deleted file mode 100644 index 07e0ee76871134ce4e03627a4357dcf0f54541b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^oIotW!VDyDnVymbQn~>?A+G=b|6j0R0SgPuwr$%2 z0|SA=hK7b>Vqy*s4qaVcJUl#S&z@CQR(|^QDNv=aiP{XH3dWKkzhDN3XE)M-90N}m z$B>FS$q5f^4=}LY;VzgsCt;JU%Q{bniGm6rqZK0GsVZFZkaEd8mdmtJ<%BB3qGaLB TovPBjK)no}u6{1-oD!M_E)J!VDy1cJERKQd$8%A+G=b|L^MRN={A&3IqlQ zDl01+8X7t{IPmcBJbn7~?AfzoVq)92Z38N^d*ap(RK!>k-FaWwKI6S`njxgN@xNAQLi<# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char2F.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char2F.png deleted file mode 100644 index a9516b40b38e1e8e96d450c6b413821a6f4ffc12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^+(693!VDzc+N0J2DXjpX5ZC|z|Cg1O1qKGPu&^X2 zCp$Pe@bK_FefktAzhJ=vLqo%D+qRuOdlsmyH0gjBP?WJG$S;_|;n|HeAjjU*#WAE} zPI7|9fdd;F8ygc(XJm0R1cuI4a1@)&rm$6GHG{{;CAkRrFJWbR`PIChSWqq)|Kx#i+c#zPMxjx!`~V0Dm8mpIT9 zx_VF8+D)uR_uTI8trpMFI{$7bkAUV`CXK_=PR0eA4w9PE3MP*wH5ShhTqMS@jZ3QP Tvfk`mpj8Z>u6{1-oD!M<#}7+g diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char31.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char31.png deleted file mode 100644 index 3f8a761e18099cc1ff50f0419f72cf677d40fc47..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9Y!3-pyxA2?>QpN#3A+G=b|95b35EBzqR#x7& zZCh7Y7YhqZa&j^c4-Zhuf&~i<4Go_@eHs`Tc=qhsva&Lu`X}ANAnlALL4Lsu4$p3+ z0Xd1DE{-7;b7D{27Hd%8aJi@{%EbnAPIwS~+3DM2w>FPX-ifP3Tvp973A*=t+ViLG Ze(R4izp_|%rVnTtgQu&X%Q~loCIC7eS)2d> diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char32.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char32.png deleted file mode 100644 index 217effc7d1afcfa4899fba89d1f4adf6a69075a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^0zfRt!3-oH7vA{>q>KZ6LR|m<|F5j9oSdBO;NZ~J z)g>k-29ya54BWPD+ta5{Sy)(jcz6~pSYT*qc=qhsva&Lu`rR`;RDp^ZOM?7@862M7 zNCR>bJzX3_D(1wV_2xUEz`=51WtgMj-v7C;)umqQbbM}NWQaO?t}4qiHetb&lm_F+ zZBxE4+h(P7<#>~hZ6VLY&#qtZ%yVF5i}N(saD5-PY_&@fTT)}E#qIg`o5D>GFwR^5 ZkFjJK^L{biwq&4X44$rjF6*2UngCvnR-OO= diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char33.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char33.png deleted file mode 100644 index 4e6886b45dde6b19b621ebd7f8c8b1cb7e1176f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9Y!3-pyxA2?>QpN#3A+G=b|95b35EBzqR#s+V zVcE8ATUS?Ca&j^c4-Zhuf&~i<4Go_@eHs`Tc=qhsva&Lu`jC0=C4q8`B|(0{3=Yq3 zqyahEo-U3d6?06Yjvjs&p-6` zk-xG=S!jCBBGEgYXBMg4RukSHcx%eiM_H3nTvpXhcXW*juMHBkdm->oK1x+tX{ESJ kkhf`2-S+D{@~77@zN%nx>YvKj0<@OF)78&qol`;+0L@=o&Hw-a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char34.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char34.png deleted file mode 100644 index 63282f7b8994f669cb233f22db66dcbadb366425..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^fof(6RT%Ggr-)VJRysb8v8Y`t&JKeVIkG6i^XkNswPKgTu2M zX+X{_PZ!6KiaD_tZws|5aIgmKX>eNc|NnM(|CvYXPGnxqS;~-ejA8n{JuB*;PpWUv*7>Nb~GFO?T)uHG;)=(%cuol@@9)eR jc9V~r{vY(*WNx2#nkDbm-9;imS2B3I`njxgN@xNAA;@+7 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char35.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char35.png deleted file mode 100644 index f942edb81030e6bded1eab01a3acc8dbb2341a24..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^fgr-)VJRysb8v8Y`t&JKy}tLp%RqIEB|(0{3=Yq3 zqyafIJY5_^D(2))^yFhzZQc99&`UeWXe&+FS8L z%~?_3kDFL0Ug4W$$;J?MMEniM>fJ3hD(UL_Q diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char36.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char36.png deleted file mode 100644 index c6943eab5d3bda58b8b5bb7e372701dac9b846a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^fl!b+*tE($HIT@%vTJR4iPy=I0kY6x^!?PP{ zKu(3Hi(^Q|oZJbXLM)0LEE^+5MF0NJPoJ9B@oBFRaBwIqD|`C%DGLirS65eZaxzf8%U8{CpgP8qAirP+hi5m^ zfSfW<7srr_IlU9Sg%|{RT$%+WkNnNI)>y2x`epAb_4)4@GD;a2hw*Ck>pt8Qe{1Wc zZ~jZZ>9jpm4ygVtDRWq{SmSqyp3xqct6N=EIu@NQ5f^HA?qYXt+r8U6;K#fk!=01U vEdMCY6^Rg;;hDWTU18Ic<8SxGePLQG%^a}v*3P#;7ch9b`njxgN@xNAV$EL& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char38.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char38.png deleted file mode 100644 index 74a5022f7ec66cd025cc377714021a0da1c03ee7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^;y}#B!VDzW`rNn%qznRlLR|m<|8Hn$2;_;0iEZ1q zEjc+kFffpXg~h?afrp1@!GZ%?AflaE}+Ua_n(1GWGo5t3ubV5b|VeQ@$z(W z45^rtoY2s~&BHE{&``~In8l(!nfY*;#qv3gjk*jg6ht@<-Dx=Th*`kTOKU>JN`~;G t2c|KYcQfWOT+m@_>kQ!2?_h}HV(5D#xawg2Y7d~P44$rjF6*2UngHMuLiPXv diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char3A.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char3A.png deleted file mode 100644 index 3e9a0aa4bc517733bf59171827da1302bc8f0d75..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^;y}#D!3-on>y{q`QpN#3A+G=b|1T>mb8v8AVPQ#5 zP6i4a8XAg;i7i;L;OyD6PoF;Bwrv{^50A34a#vSZU|=9n{rfu?KLFJ+mIV0)GdMiE zkp|@Cc)B=-RLsep5G{5#=el1?{<_+6PFnJCF`c&>+;-8?T-*7Dwk6O~_+^7Hrpoqz6t-Xjh{ m`yC-_0zV(7=Chx@&HMc&OX@}YE380!89ZJ6T-G@yGywoju3uUJ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char3B.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char3B.png deleted file mode 100644 index 335ab2523e843835c0d2c489021df9feacefa006..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^;y}#D!VDzM?#?;@qznRlLR|m<|G#b9HbX;0pn#Z| zSXo&a4-e1Nr%zc}Sh~8pl$Di}lan1B90CIa&z?OCR9yJ&lMGNPV@Z%-FoVOh8)-mJ zwx^3@NX4Aw1O~=^+~N`s8qyDYv9vFK5Xm@4`0#<342yPNZaAQ%d-e_Egv0;d-QB&s z?)|;JKCP>gW-+K_70WkRit-rn1>BTWsGG@adO(Lai$P$6mVrURF6XbCISdRA=!!BY h?I=!TGQ6>n!F!KN+ppt?CIYQx@O1TaS?83{1OUbhRyhCw diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char3C.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char3C.png deleted file mode 100644 index 72c2aa45dc3007c11cc08592a57813a425bd7e4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^5mTl?QF|jadBs;rU%B yxn?Fd%XB>RDw{r?E&b~C^OJ777=_Ol?mU%vLi`&}hGKX0D!|-nvx| zN#B?`)HPT<&KNX!OmCjT-eAJnd?u+ug26;8LyXy(f5zeC2e=nCOk-jYeJY%?|JJnz Ppgjzpu6{1-oD!M<{NYOI diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char3E.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char3E.png deleted file mode 100644 index 857e1f5cc3d8f9ad0a9eeae98c7f5553396c93ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^LO{&N!VDxYdH;eJFq3I1P>!)A$S;_|;n|HeASc4p#WAE} zPI3Z6(`9Z473Os2>L`ZaYzp1BO$X05gfgl`+zL1;z%nh3KdFI(kyZ47(;Qh@Urjk# z*|#1#6LPFwn3;F81gOpky%BIyjzzS{n1NdL*!}k*>3yXa)EX*c)I$ztaD0e F0suTDLF)hj diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char3F.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char3F.png deleted file mode 100644 index 66c9ec4f4eb4b82030791fe57d9808c99a4e76b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9Q!3-pIZrslUQpN#3A+G=b|95b3c>45dU|?Wb zSy@+Cm!YBIwr$&ZczDj9J-cAR0%c`o78VwuaxpQn~BIGhWGZvXLlSAY9jgrC^lO_yv0m=@KS9+$}TQn@2sk{5g> z<5jp&;n5AeD^@5>KQ48N!Sbg-d{*g-n(0Agt<7pPZa5CMM?K;K0Jd zQdU-`tgQU>>C*)Z7IbxW@$m3$+qMm;HZU;I(9rPg*|R|PGo?>U0fiV#g8YIR9G=}s z19ECTT^vIy=EU|#3pp!tI4}O;a^&y(Z2|A^M14Lg7EDH;Zva<5i zr%$`Ox_~kc4h~{sVupr>fq{WMJUrXBZ7VA)OHNK+uwVgDy|3`^Wk5xYB|(0{3=Yq3 zqyagFo-U3d6>~!SZu1>*U~vf*&ldgvfBW6j&Y>!klT(Z)6dwEAXewzIQ_ZpZ=supN ziNP{g#E(BLbKZO?p<4U@pO76dAG>Un-7YzCX77SOlVewz=6@5=pTiub|L25ez@OE> roR%NBGQ+ZEA6Lgl$xVviG8ptNV^~+5zS9^6w4A}y)z4*}Q$iB}`4wO? diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char43.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char43.png deleted file mode 100644 index 5b2efc5848f479c6fac4bf68d7bfd37ba98e0fd4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^f@F*)QCnqOAefkureztqI0#F@eNswPKgTu2M zAhTLLT^vIy=EREhyaPD&tn>wLx!42gOmCpB3i~g|1n_n@X`Clmd`nJ}W62DW8 zw`}A*5?gmR@bS!hr^Th7o>X&t<7udJ;6^yyPEF);@R zhXo531O^6z)bQ{a8XB^&u$(=6wyUeFtgI|KIeFW*Z9w(M>I)2jDi}+G{DK)Ap4~_T za*8}%978JRq@LsEV^-u~31BHb&R_8Vw%*#@ObP0l+XkK`J`hS diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char45.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char45.png deleted file mode 100644 index 34fb53323cdcc82487cf284da6148ea083903801..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0zfRt!3-oH7vA{>q>KZ6LR|m<|KHWs#lpgJ_UzdO z3l=yyIEaaf0VS1{l?@FI0|NtjczB*ZeOgvlmYkftZQC}W`dD5zQJ@OOk|4ie28U-i z(twA+W6mm$`6;p-*VDGnsGL~E-llhK z>a#tj*~wQ-UTkV;d;f^tWSRk^a*fvo-%>UeA#RQhc?>?%2ka)+Tj_hcPb=$)+rG6tJl+=a1_nEtGoLZvNtl(%WIW^9 zoC6Gt_Rfh~VW{tBAF6Wbj83MPj-X6w0m6_q|9?c#1w>f44 PZDH_q^>bP0l+XkKbTv;) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char47.png deleted file mode 100644 index 531bfe4fdc35e5e673197cbbe23d4b1f8232b9f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+3?vf;>QaG}aez;V>;M1%7c5v%R#vuc+qSN* zE}*cXp&<(ki-Uv1*|TQ@0|Ujx#CUjkl$Di}larr5eF{`R+dW$WsE)BD$S;_|;n|He zAg9~Y#WAE}PHKOo5VInO%fue;?t=ff`?{7TE#3ct(U;rc>9x>S&OMGDTgBKPtqE-^ zsXL|RG2h{=gUu|FV0p$@w;2l-PGfkh5HVG+DszFK_{WEr|GIr@f0i_}JFYnNs*Ri5 zvRwOOvpMN+rISib&HlQ)Wmhd+D1C6T%zn{Ly$xRLdcro{@}JYvrg=|4oSEhK8ij?I QfX-s@boFyt=akR{0FT;d!T(X__as&DrfrQ?bZ4T2^${nJ8&T2=%fP&4ivDTNl}`s zsi7gkn)+>TwRty>@B<%dIcBytP91&;i8407o;wdDEDenq8A3zMCLZ{d774P?)78&q Iol`;+02O^q&j0`b diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char49.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char49.png deleted file mode 100644 index 7fee61d51f1ef607c0e10d217aaa7ec496c4f1d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^oIotd!VDz;TFt%+q_hHjLR|m<{|{vH@bGNgwkG}x?9Eo}f3*>gTEN^T~oH%1r1S3Ots<2&q=BgDyEexKnelF{r G5}E)(W;GuG diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char4A.png deleted file mode 100644 index 9ebccafdaf33231454b761987a87321fc8a814e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^JU}eW!VDzCZhxEwqznRlLR|m<|Ifq2BPJ&H^y$+D z3l?;Bbp-|nZrira!NEaUS=rFgkcEZi?Af!)$;oA9WkAK2^8_7$dKpWC{DK)Ap4~_T za-2L}978JRBqu!BUH$!?EF0Ut+uy_XB_gTe~DWM4f@8?DS diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char4B.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char4B.png deleted file mode 100644 index bf034c48612646e3e31931044bbf11058e9329e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv@!3-oh+|s`SDdPa25ZC|z|MT$hJbn7q!NH-c zt1B=tP)tk=D9OUYVrXcntgO6k+qSZ@vIPqkBqt}IJ$n|YUS3vo9#92iNswPKgTu2M zX+Tbcr;B4q#hlm)k$fzQ94_2gTe~ HDWM4fY~W~2 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char4C.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char4C.png deleted file mode 100644 index f0fa109862967f55cc7f558bea6fb090a842f566..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^0zfRt!VDzU8V$b#DT4r?5ZC|z|Ff{Lh>3{-1q=-h z&z?QIV8H?h2M1+k<-ou|9v+^jPoI{Rl_e)9Z`-yFsQ6A^a{y2&V@Z%-FoVOh8)-m} zy{C&~NX4Awit6w0=JN75d?xGJ`%nVz;$fPb-_T2|Giow&>&t;ucLK6TdL_wth diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char4D.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char4D.png deleted file mode 100644 index b5dd3383dd6691c2d24127dc7d01e1345c203f2c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^;y^6O!3-oB*BWuDiu{2v;PZ?GZ6o&)dGvbYU1TXM)&F-W;jGV zf1BOFTr>mdKI;Vst0QT5*{{R30 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char4E.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char4E.png deleted file mode 100644 index 20c65552f476e6f412dc5c0f2c59e31ac76fdd88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^f6p-x*nkMIJW zW9$ZEhf4%rt93lhJaC}E=q%HTN6ar98d!N4;^kHMZ0JtE0CWk1r>mdKI;Vst0OZPC A+5i9m diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char4F.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char4F.png deleted file mode 100644 index ef47568bd87962db3d3cc9b8b671413bf7e27649..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+3?vf;>QaG}aez;V>;M1%Sy)&WELgB@+qS^K zz_PM3F)^{TXU_uV9UL6Gy1EPv4S9HYl$Di}larr5eF{`>^iBOaP@1tM$S;_|;n|He zAZN0ti(^Q|oYVkEro##x-lAKyUi`1OPTX*M2S?`whJ?axT_23VhV76GVgf+_R^R`EeCbT@;w&=g}^Rlgz zdwUlDOTF5#ZjR)x^XHzf`|>sAnUB&Mv9F9=Klzeh%``1qXRnfZ>ztF#J@xXh%%b;X acFC7Dvpm1F>JJOhc?_PeelF{r5}E+b(NKsB_}6u+qMm;-Ya3&PoN&gk|4ie28U-i z(tw;OPZ!6KiaBe0y@eVKIGmI1#WEUy-@g_$mrpx9E#aflgadCU@*UURo~O0uT4#yn zqYU)`$xBSl&!!xRxp0jA@}{J?dzH_cXXJcWJ^9-F+e39fQETZ7bpmH=_4PhZV`*7E SN5d6p3xlVtpUXO@geCx65L6cc diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char51.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char51.png deleted file mode 100644 index a8e2bdb3550822334814d10df55773042ada4098..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 303 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9W!3-pSHQE#dDdPa25ZC|z|Ff{LELgB$+qP|i zfq`XZWnyAtXV0Dm$~!nXbaizZ8XEHO@F*)QCnqOAefkur-sqe9bD%V1NswPKgTu2M zX+X{@PZ!6KiaDtPo?_059H+(88Q<66?(%96H*?}p;fU}NO_P&-pAjRfvG@~fx}WY_ zpI;s3Gizq4+&G-L;P~#wjk}#P4o(+J+RnEm#zQz`0mp<`tCgbMtkzeqc75VMYdUo~ zznag@DURY%MQItfua4`!e0uWC%p+T+QuGBrL{3ZksB`?TwttFw?tP)))&2LYI99d) x;>`8d|C@A{$78vJyv~z5MQfezACWYB%F3P2y0!N+hY`@#44$rjF6*2UngHjGbYcJi diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char52.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char52.png deleted file mode 100644 index 31758a37bf0fdc6ea7ead644c6281bb837b48958..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^f*{Pn3?z9rZ$AN~j01c^T>t<7FD53|)zuXk7*%d!Fqw4PlM}C{r0Wb_Fb7G|5QUjpzhGK1APW>ug%^aqWd$s zGjZR!bHT~o@|{f!yf*~>6_(mRiS_Zn$MZVnHNVaC6Yl5eoO|*9s;h~oR5$b;n%bP0l+XkK DOKxbr diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char53.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char53.png deleted file mode 100644 index 66773febc15edcadaa39871188e51244cf49af5b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmeAS@N?(olHy`uVBq!ia0vp@KrF<;3?#R2T>>N-j01c^T>t<7&%(me)z!6N!Gg1A z&pJ3b7#bRiiHQN_pFVw>oSYmO7`ScQHXa@xWo6~EvNE80uCKcqfYOX5L4Lsu4$p3+ z0Xa>cE{-7;b4>f9#f~U&I44(XxEB21Eqi69eSx7RC&QYa6Q+OH-c7nPqjrVJQ?ED6 zBae6%aRg4jbBIq@Unt;$<2@$k?D}<5{`!j5Yq~}D_0GHACmJ+Q{o~2SQXVt^ZrV2^ z=;*)uiE}m_oZg~!E9(CWW1Up?ciF19F66wrRaEy@ZLX-j=0_I6towJvfUaTiboFyt I=akR{0EGT$_5c6? diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char54.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char54.png deleted file mode 100644 index 372cc9f66bde4afdda577fef83d46e0c8ee13293..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0zfRt!VDzU8V$b#DXjpX5ZC|z|1Vgu;OyD6JUl!s zEG){(%0L+h2L~}Rv2EM7J$?E#IXStktPH4Z^Rsk)A8`6#92%o2dA7gn96u0p(7=NBhkaqz(In? jB*9>&>TFAG0|tgyiv?ZZO#FTYXc&X1tDnm{r-UW|pL0V@ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char55.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char55.png deleted file mode 100644 index fa8fc6c16709ba745476d7a243bf8a89739e158f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^fC>}k&n71)Z`-yFsF-`_?--y8#*!evU)}S2yGh3^qJ5bcn3sG!Q$_vT6fU zgN|~VLib9>6H%uZ9XN2{HA6~nD$Arb>QaG}aez;V>;M1%4Gj&qZQFMC>{&4} zF$V{S1q&7cC6$$xd3bmN0|QxDSe`z8+SS#SoSa-%Rt8i*%R&AKPz7U2kY6x^!?PP{ zKu)Wti(^Q|oYa0#Ar?grmea8UPyg@F-SRe9?J%>ND2v1KMTci><=V1Q>*`Xs$3`qC zL>1-)MCl%Bn6mxW-gyu1MvCowWHf(bch1tDg_}LBZIUOLE_oWg@z72E%eiUCZfp6; zvqr14W$HHzA@JHk_}1(f5J-ezIBLDyZprD`(3=BX(Km-H?c6N5QwzgwqV~UE3|NsAE@B|S6 z0004WQchC+0iI?r zV8-B#Jyi_oqH_*4V7EPv<5&u-RRQq^Rky8$0gf{h@(Q4p*a#fWOfGju4dO}I)0;j* z4zv@18B_lB^sYO^qAL9=EfFf z>kF)Gx%?WBF0x+0_|)=^uJWC`_vMK{^IOEk_quK$^HW^!V;A%99P^DR^B+*&B&$68 YA02xJS1~j04gdfE07*qoM6N<$f=M%o0ssI2 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char58.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char58.png deleted file mode 100644 index 1b1f9bac25dc13887f8d2bfbccc0c0667b008fd0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^f*{Pn3?z9rZ$AN~j01c^T>t<7-__Lx|JzkJ*XG3~ob&N;_`EV|!tW$go{|Xv7zvkRj@NBQq z#);b>cgJX-uW#5_z0U0O>cX4L)*spB(Y={6=pY79 LS3j3^P6t<7zhJ=vWo2a+78VBw z2cYoNr%wX|19^CO%F4>b#Ka5@4ZFI!&YnG+oSeLE+cuzjo>vU+Ky{2IL4Lsu4$p3+ z0XYSpE{-7;bJq4c@*Pm%VA-CmdKI;Vst03sq>Z2$lO diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char5A.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char5A.png deleted file mode 100644 index 56fbfaedd893bd5a2f72656adc78c6a7b5c25646..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^0zfRt!3-oH7vA{>q>KZ6LR|m<|Nr#q)2^Fhv)3sv&qTHWo2bR_4nI7iciX{n!9RkR6z7c z8P&&;_iVm!y=9nO?!H&eSlP;@YuyRf@I0QP)R^`?R>}(NC&g}=cfMh!js3oJ4M%Q9 z?2!G`9$m#GwE5Be&FW{Q>Mom~x$+~#sw7G*Nb028rCSI1S1e>n3|eg^4Rj5Ir>mdK II;Vst0GRV+#{d8T diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char5B.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char5B.png deleted file mode 100644 index 790389479e6a868d80c88a1a2ed1d949836395e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^`asOi!3-qVvpqQqq>KZ6LR|m<{~s6_sI08KZQHiw zC>k`^|4v$(|{6;B|(0{3=Yq3 zqyaezo-U3d6?1y~J%tV^aIlC52yFlV-)x4=q*W7Il`s1mD()~o{)M^!?b=mYg6HaQ zESc59rhihVCdJs>u<2a*gz3B`dRh<9; diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char5C.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char5C.png deleted file mode 100644 index 8bb594cc699c7c431246fdf0f120dafbb82eec6d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^RzS?o!VDx=7dmGEDT4r?5ZC|z{|5#Jc6D`~J$sgg zg+*Ce*}=gFMGaQZXkv!GZC;L_w4F?zEDUb#~ppUEjZ)>ihP___mf++S{EC>vC7SSDU$9pPMVH zd(nfmdKI;Vst07gqplK=n! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char5D.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char5D.png deleted file mode 100644 index 54f8f65a260bea181ce9043d580d40dbb1715dd3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^dO*y|!3+}N(fa_Tj01c^T>t<74`ezxIFyx@@$m4l zu&^X2CvV%f?dj8}3l=O86BAQbRyH&=3=9nH>gqas_AF3+;_~-hKs}5lL4Lsu4$p3+ z0XcD=E{-7;b8`D{a~)9NalV?h_51(-w>gvjF4(a8IbWJm*E*YPv&7QbZQ1{A7H(O^ z=EAb{s WFl(O_xZDo3iNVv=&t;ucLK6VPiB=E* diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char5E.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char5E.png deleted file mode 100644 index e7e34ace3e4a0202b03a7640d370393c6ad9c535..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^7C_9#!3-o9YOMVTq>KZ6LR|m<{|{t7efm^cSy@a> zjD>}Thlj_|&~U+m1>3f5D=RB=aBv6=3`|Z=?&|6~d-g0)y=6+aB~TAzNswPKgTu2M zX+Tbar;B4q#hlXqK)%BU9L}>@m{@(@)!%lVwN3BkEBg)dhmLQ|R1uIXdv{FfsFi2> zqysL}#&Qd?4(aZnAZ(to_m9do>m~PY+F#*J+F0lvIr09}4V;M1%4Gj%}yuiS~vuDqC zb#*ORu%N80jE9Hk>C>ml$;ryf$}B7_Vq#(r4i4M4Z3C*e`J!_HsDZI0$S;_|;n|He zAScb!#WAE}PU!h)Ayz>imJ9QwpC~5%-z}RO68mz$at6a0iFbEJtYa%yZTqmRGAyvA z(7jge`b3VC$%~I%6FzNqMmt{hS;N1M6X&j;&-$Iu=U1{rSy%?*=J)kIKNswPKgTu2M zAhS9>T^vIy=H&Ky3b`n9I6povdGz=FZH(=q!KsbsRX7qdIkzn1J8YF*s%&QRc56pS zwUe;q&0X_S7>+Ie)vXq)9?W`JIQ2M#NxAzn*uVJ_1#L( z-I?mo-B#}Yxqg|&e#?DkpRE!;{0y*qt$OjV`vMDv*V&)`yijc0`QAQqCd*7N?!H$* PM=^N1`njxgN@xNAe;{c4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char67.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char67.png deleted file mode 100644 index 5afb4fc7366c75c68a574071965ff119c1ab2b87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 261 zcmeAS@N?(olHy`uVBq!ia0vp@KrGC`3?yq_mM;ZT#sNMduK)l4-?nX=gM$N5psTBk zhlhuSg+)wEtgNhT!GZ;bhK9<@%7KA_$;ru2pFTZ%_AF3+;U9sMK-G*TL4Lsu4$p3+ z0XYqxE{-7;bA0^*#aI+MHeE1U{qf)SyK6Gbe;Yhhba451;k|8fNw!PW>C{~zVQX~D zz0$Z!V^1vUFTHtSp;yfnw*ST6Cw_mQb3DOmM}W5OGOkNS^`gNWZpehBCNeeRA3<&P9rE);^2ASbC=R593`8=J=aRiXe|Nc)I$ztaD0e F0stp?X<+~W diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char68.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char68.png deleted file mode 100644 index f516062c63080b517ab17f2f1790f366a6f45d8f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^LO{&J!3-oL&dBxwDdPa25ZC|z|95qDv9Pc>I5>!j zi76{9FIcdktgI|BFc7H3(9rPd)2G|EZR6qLNls2ad-g0)eSdC80Z@*yB*-tA!Qt7B zG$6;{)5S5QV$RZDZ=nMU9L|fw1hk9(-wuI?sYk3H%%hVIQEl@$I@$mCv59Zop_>r%kSFDE0|48wt9k$X7F_Nb6Mw< G&;$ToS5Alk diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char69.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char69.png deleted file mode 100644 index 70ccd5beeff04f670f6990ef0987749f58607735..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9S!VDyfb{13uDXjpX5ZC|z|BH!<@$m3GefqSk zt4mo~IWRCVIXRhyg$1a@!NI}M(D3Zpvp{85{yRi~LX0Ire!&b5&u*jvIZmD~jv*Cu zk`pWrFfi{v*TB%RwOEbg3q$18gli@W-MS(yyB@CE`|^m9KXaomD-X}4gzaZU5)xVr i)Qk)^OmB8%WM)u|RNNlnn-K;yjlt8^&t;ucLK6U6jyp*J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char6A.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char6A.png deleted file mode 100644 index 0780e053de87e78dc615fa94ff3b99651f3d5086..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^+(0bK!VDyn;yC{SDct~{5ZC|z|8Lv2jfI8f>C>lT zVq!czJj%+-fq{X^$;n+^T|iY14i1KfhG);71*$BW`$-rm#8?vK7tG-B>_!@p6YJ^X z7*a7OIbp{E2Datz@3C(5TN|}Ci;3A;e8Q~*2M)}eCYHo7ZC%3(t@ePc0;|}ZraG<& z;s|9~xN3ojOSR~cXTT-*Q_POl? PTEyV#>gTe~DWM4fA4E*B diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char6B.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char6B.png deleted file mode 100644 index 495656af3ddf66bf8bd73a4215b9ad93a574a981..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^{6H+q!3-qVxw^ChDdPa25ZC|z|8Lv2t*or9tE-EL zhiAcp1!7`i%F4=tfq^V6EXm2qK!s1AK6P+#Ff=qgd-g0)z44!$hk&AtB|(0{3=Yq3 zqyahJo-U3d6?1COI`TCr@VHzI3~XfD`#<+$E8D-O{naOzOpPgC`zyXO*V*^f;>*Sz z->*+S_i_sR+PMjfx!)N4yUF;zpiMbuy4W|a*#YeREi7DyM~xN%jb-q3^>bP0l+XkK DUzJXa diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char6C.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char6C.png deleted file mode 100644 index ea3c99f918229dcd169d80f94c2484819f2b2847..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^fr;B4q#hlds+d>S291at`UH<*g-+Jxbl&_PDm#r>-<}24`y>*qOx8vEZQ`cFl z&*Dn<j|A>va)9Ojs#l3 N;OXk;vd$@?2>_P;PPqU8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char6D.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char6D.png deleted file mode 100644 index 3fe2fab41b2ac8cc0fb79ac6844b3ad22e3bade2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^fNE!eD diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char6E.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char6E.png deleted file mode 100644 index 093dbcf65d48ef5043daeee69a1953e5e3861152..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!VDy5o>bTbq|^g^LR|m<|G!|t0u~k)9v&VC z2ZzAGKrt~fproOp;nSy2larIXy1IaBzGbR=07V%~g8YIR9G=}s19H4PT^vIy<|HRP zh&uoTH-R{mHDv=UgXB4fg&_*<*-JGe8XB_?K4F-^FyUaPNW-xidxVs>8g(a1MHJp( lV)NTjHla~L(XB(2q4cDnck6;*i9k~sJYD@<);T3K0Ra6QLmU7A diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char6F.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char6F.png deleted file mode 100644 index f1345dd3558dc4c232b911f05ad14f9b86babbf3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~e!VDy5o>bTbq*MZYLR|m<|Ifn0!o$N87#Mi= z>{+0&n3$NMq2be~Pm`0A7c5u+RB(2JRs~Rku_VYZn8D%MjWi&~)6>N;eXpRXP%v`Fg8(Jny-r#ZIX;W)XVKZoUzR1vf(S%v)=)#j1*uw6ZFs=w> i)nPE<&QLhg#lZ9tLo9}A`f6)=_r`2{mLJiCzw{&4}vB1EcykNlspkkBPjemgBj3q&S!3+-1ZlnP@ zcAhSdAr*6y6CUi|+|9@lXJoKt`t*E;O`jwzRx?k#;**eIkotguYehKA8p{I*n4T2N m>FdusaDXG|Tt&J%GsD%p{7H=a@00^gV(@hJb6Mw<&;$UVq(l|~ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char74.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char74.png deleted file mode 100644 index 1a225196e5408f4cd677848b401e87a7e3dd58d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^LO{&T!3-o_PwJWhDdPa25ZC|z|Ff{L@bK`6iHVh! zl_@JLcXf3wSg_#i*|Ua*hCo$MpFT}aPIho`2n-C|wrv|w{X#{Lt3V0Hk|4ie28U-i z(tw;yPZ!6KiaDizj!cIQID#%8@ml@w|MtsE@8-@C5K&P&_2Ks-_M18vHWYg=bm6)j zBi!*#{M4spc^(I~!(G3n7jHf3SYKf2{OGRjCJ{#OP&@U_OQJW;c6<6{C)@Reoo|oc j|G(v>e#uVP+OLfDADPQ`7d1oxEoJa@^>bP0l+XkK)v;a8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char75.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char75.png deleted file mode 100644 index 71453904cce7395c532f8fef956f2c07dd8d50b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^LO{&V!3-qtMdT|0DdPa25ZC|z|BH!<85$a%J$v@) z)2CfsT|gNJ2ZzAGz-`;MEm*LitgK8~S($}}g@=bHIXM}qKJ6u!Hc$~`NswPKgTu2M zX+Tb?r;B4q#hg}uN1-DM9L}x+u0Q|hcTdgSzWgj>l7b{7!v@n*hXvi@bI;D0Ceyh$ z{4UQ-sjBtar=RwuPJHHi_vK_J)9h|b5B>hWhYDU3`3}#usEwZS!{a1x+C)3{ri`+A uhB{`p5B^=8%@b5FSKs)wyEfq0qIlWA%u41f{FVY8z~JfX=d#Wzp$Py95nR;( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char76.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char76.png deleted file mode 100644 index 3dba650b548dce237ee17cc50ef2264ff272769c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9V!3-pOo&RtEDdPa25ZC|z|Cg1OZQHgjIXT(E z!QtuCr-p`xEG#TtU0q^gVu68yJUl!L7A#O!RtD-gd-g0)z0-{wKY$#@k|4ie28U-i z(tw=Vo-U3d6>~}hqlFGDaD)WLY2Ew3jn^}G*}|vXWeMetQ!aTa>Npj%WPG`?Oz7o| z3DFD_JvM}0^}XXD6Ud+;&J=R`yU00pLGKHbGrk^oI(TuuL`{ClIT54H`%FJgG-;X^ zX1d4XFUzd+C7cJdoGp~Vg|c@C=6Ixvvu}`#vUI9({TromBsglpwfnKI3=Lwj$JM!x zUyyxMHZyyf^zF?B{ie5lHc43V<}9AJt1Iote(#wD>|gfWah5vbwfTj{uQz+sL^L)Y iv{AO-87wA~EI!wdCC_$U-h7}l89ZJ6T-G@yGywom@NL-u diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char78.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char78.png deleted file mode 100644 index ca17d8d6944118657d42a910eb8c84b03d79816a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^;y}#9!3-q#J-v1cNErwCgt-3y|G%uPY{7yB+qP{J z6BFy|>T+;!Ff=q&R#r||`5Fv3oL`$QwNCi|fBU>{=h+h`91mnjEB%vtD{H0i*<{_D>#|N7 zFYA$=`zh(>GdbCtv*uKH`d@o=X5*(0h9fM+d1o(#E~s2M`@&}J3F|MfJ&+wM+MoDc e_RqijJDFQIGtKrekzWb4kipZ{&t;ucLK6T@Ctnx< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char79.png deleted file mode 100644 index 42da4ec1bd9c243d69b228374e7187005e616a11..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^5) zOl;e>Z4M3&%F4=yhK9+>$t)}^AYD8>fq{W%&z^ny^eIsNA+y+UpeSQWkY6x^!?PP{ zKu)r!i(^Q|oZS9Ep#}vGm+hArSoi+V-8{!<&W|Sc-3$hc9;tU_`bDnQiJ5d~g@@7c znQ^mEnG`-=X|Z2v)#Uc%l-=1qmiig)EgWxr(;hv`6lRXz-L^-#XN7X?{6}}Lx3?~~ aTOZSA#FV!v?afZ0bqt=aelF{r5}E*HQ&;Bz diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char7A.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char7A.png deleted file mode 100644 index d66c71771c9499f8ff6f48cb30a8b75bb4b595bc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9Y!VDypN*k!E0Eup!;p!7-YzM|2uv@=nPE5vkG(c>1<52Z&`yF;6) jg`6%@?317PwHPrdu?qfSm}mM1XdHv5tDnm{r-UW|cY8aw diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char7B.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char7B.png deleted file mode 100644 index 661a723597caa58abc05890757621efc4be6824d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^LO{&J!VDzm+I;8-QU(D&A+G=b{|^idgTe~DWM4f92rxV diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char7C.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char7C.png deleted file mode 100644 index 1863064adf0fda41aeca742e1102ba8b64a49e8f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 217 zcmeAS@N?(olHy`uVBq!ia0vp@KrG0@3?#o?v|bOS3<7*YT>t<7@8IB|tgOt!!m?n& z0x>Z$pv=>!Ps_^60s{kiczDj9J=@jQm7JWsZQC}WVwvP^tAHvPOM?7@862M7NCR@h zJzX3_D&{0tRDWk+=6Ew}BZJRpGlvX5osvq+8P9yr7BPGdH*NT-Qzq~;So*-1Tdo3M zGp7n4*z%M`wquXqRW^gzt@)PB%#RycYZ%)lB>L8RrJjmf#=tQ3kusODtNJ&f6%3xP KelF{r5}E*HKTUf8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char7D.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char7D.png deleted file mode 100644 index ad78a92629e3a7c87bf5aaf506239640a6346094..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM3!3-p0n&d&0aez;V>;M1%#l*x|SXiDueageb z)78~=_Uu_hL&LJNvTfV8DJv@j6$S5xd)*SA*xR$bp?v~1hdvmVj5 ty3yOR+7IWSmb!o1*53Eyj#u`-7)AFnpI+J^+5)tn!PC{xWt~$(695a2U_Jl< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/173/char7E.png b/sagenb/data/jsmath/fonts/msbm10/plain/173/char7E.png deleted file mode 100644 index d8113bcb5099ed8844ad3625e8d0b6b1278e0f65..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^d_XM3!3-p0n&d&0aez;V>;M1%%gV~mo;}OM!_(E( z_4Mge78VvmLqjn!v2EM7DJv@j6$S!Vd7KvBk$AirP+hi5m^ zfShbk7srr_IkEkbd;M1%d3bol#Ke@9l^q-$ z3=Iv>o;?ecWMN@huwX%1S=rO4Pm`0A0|NuMZQBM^eA3s=6e!JD666=m;PC858jxe_ z>EaktF()}8p`tpS83@iZo%3Teu-M1wV{6Z_>=N^VD<$k~YwIxqkL diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char.data b/sagenb/data/jsmath/fonts/msbm10/plain/207/char.data deleted file mode 100644 index 003cbad3e..000000000 --- a/sagenb/data/jsmath/fonts/msbm10/plain/207/char.data +++ /dev/null @@ -1,130 +0,0 @@ - msbm10: [ - [21,30,8], - [21,30,8], - [21,33,9], - [21,33,9], - [21,27,6], - [21,27,6], - [21,27,6], - [21,27,6], - [21,30,8], - [21,30,8], - [21,33,9], - [21,33,9], - [21,26,7], - [21,26,7], - [21,33,9], - [21,33,9], - [21,33,11], - [21,33,11], - [21,33,11], - [21,33,11], - [21,40,13], - [21,40,13], - [21,30,8], - [21,30,8], - [21,33,10], - [21,33,10], - [21,34,11], - [21,34,11], - [21,14,0], - [21,25,5], - [25,27,6], - [25,27,6], - [21,27,8], - [21,27,8], - [21,35,10], - [21,35,10], - [21,34,11], - [21,34,11], - [21,32,10], - [21,32,10], - [21,26,7], - [21,26,7], - [21,33,9], - [21,33,9], - [17,30,8], - [10,30,8], - [8,14,1], - [13,14,1], - [19,21,0], - [22,21,0], - [19,21,0], - [22,21,0], - [21,33,9], - [21,33,9], - [21,27,6], - [21,27,6], - [28,12,-1], - [28,12,-1], - [28,17,1], - [28,17,1], - [28,17,1], - [28,12,-1], - [21,17,1], - [21,18,1], - [15,30,5], - [21,21,0], - [19,20,0], - [20,22,1], - [21,20,0], - [19,20,0], - [17,20,0], - [22,22,1], - [23,20,0], - [11,20,0], - [14,23,3], - [23,20,0], - [19,20,0], - [27,20,0], - [21,21,1], - [22,22,1], - [18,20,0], - [22,27,6], - [21,20,0], - [16,22,1], - [19,20,0], - [21,21,1], - [21,21,1], - [29,21,1], - [21,20,0], - [21,20,0], - [19,20,0], - [57,8,-17], - [69,8,-17], - [55,6,-18], - [68,8,-19], - [1,1,-1], - [15,21,0], - [17,22,1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [20,21,1], - [15,22,1], - [21,13,-1], - [21,24,1], - [13,25,2], - [19,25,2], - [21,18,2], - [21,18,2], - [19,15,0], - [19,15,0], - [4,14,1], - [10,14,1], - [20,14,1], - [21,8,-3], - [21,13,-1], - [22,18,1], - [21,32,9], - [21,32,9], - [28,14,0], - [29,14,0], - [21,21,3], - [21,14,1], - [16,20,0], - [16,22,1], - [16,22,1], - [13,13,0] - ] diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char00.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char00.png deleted file mode 100644 index 082281ff0c9c8e8f0e7c1c665b245eac29f16879..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^qChOi!3-q7@GVUTQpN#3A+G=b|KGN4o3gU9p`qb| z1q&P;9L}CS+tt+tln)FHeERe$4-XFu3rlixvY41ySy>rSeM?eV9#ERGB*-tA!Qt7B zG$5zl)5S5QV$Re_fqX|4I9OL-MJH_bKr!JnF{Pjo4wm*OE{!W{n^JY=y zlk0_BPO<*VpZs2+=iqjmmo9S6fBYgg?NqjD+qRo&)^o4RhjQQje(k54#ah9xYTgQT O5`(9!pUXO@geCxf*KXwi diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char01.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char01.png deleted file mode 100644 index 130a581c682d0af7a1af8a366ce48c37545bc46f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^qChOi!3-q7@GVUTQpN#3A+G=b|4&X%?&|8|;o)In zVF?Tj6cZDB`t<371q+mwm4T`p930M`J-cn&HbXJ#)9Xey@kSGXMUIgTe~DWM4fKu>Qm diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char02.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char02.png deleted file mode 100644 index 23f73b72569cb82a762adeeed554d9720f8ec318..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 306 zcmeAS@N?(olHy`uVBq!ia0vp^qCl+3!3-oBl?3F0lyQJhi0l9V|C5uGySlnqSXh*m zmBqxw0s{k|K7H!o;9zKIxM0Bo9v+^uva)U4wgGjVJ$n|Ye)HX(XF;Zv1o;IsI6S+N z2IQ>uba4!+m{U3_n(wFrhfC<1A5HJ-w}<=ARw{bF{3YjG9^pBcckvq?O*wFH&BbfH z5jUlDZ$32ajS-HYrS>dBbn&6U=c^`4XOtBl)6Uf~@p#b@xPkA%b7OHs_Vaei(+cwD zT${eC$zW~|m)oj4yuSCA4*ne0VNM&Q^o?5I9Z3E@?_E2y z^f~W*{-~#WL<)8$9FtYN_%%A^txx8>kfxxUn$Mi_tJz%hnH=shd%qRE>N6*u)p>*F ztTfi#W{qFGu@Z)_d1kCM8F4Uy674bFxYta-4lX=7W;`X)x{Os`eU z#mdKI;Vst E0F5Ykf&c&j diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char04.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char04.png deleted file mode 100644 index 88af09343f0e5b14ff5f25eef9d6b9fd0edd5f99..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^qChOo!3-pq95%TEq>KZ6LR|m<|1TycR#sM)oSe+V z!^6VDvS7giWo6~Sz`$+WwmCRB7#bP^)t)_j_UY57U0q#3_1tINb^(PLOM?7@862M7 zNCR^EJY5_^D&{Pm;K_GHfrsU0&SsMj|L?c?xbaxrY3mMLd1Z^C+x&ZRCuVe2El~Zx ze%XqZDPkG6jRK{csO$h*;upkJziT6m6EpYFpkY@xOPK$up`}NoTX( zhf2Oh5BD;~do2Txh;{QCm?SZ^r#-^+}foUkf8VfL$qSJ(Xu^3S^XRliw) WWfEJG)<2-j7(8A5T-G@yGywoh!)?9* diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char05.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char05.png deleted file mode 100644 index 7c39ef4ce069ac82e2755fb90fede1efe2350d59..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^qChOo!3-pq95%TEq>KZ6LR|m<|Ifn0QdU+bCMKq= ztQ;5^$iu_4ZQHiw4 zbqTw!iU{tj{yRmBZ)e=A*E%0HzOIe4WWAU4cR|{OHQ}l$JJ!AQ$o09X_0=c!f={f4 z;zga)0nry2^|qAGJaG8+VK+%tO*1*QyV>$j1+-5bSv&cr&y`o{Z{EMMGmU2D%U!|Z U{)78H3(#Qzopr0Hm*N2><{9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char06.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char06.png deleted file mode 100644 index b95f432debd11879e57be2e712dcb962af5e5671..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^qChOo!3-pq95%TEq>KZ6LR|m<|DT+k%)-L5V8H?& z9v(3+d%8G=RLogA!IST(0f%#@_X(E=|F*yFue<$VdxT3Qh3qE z<$bwcXR2>%dwwxn^y#Us+CPuiQ)hX?JJlCYG69 T%LLZ~oyFkk>gTe~DWM4fC3tOh diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char07.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char07.png deleted file mode 100644 index fa71d9a528a97ee648a3526b15b011a4f45dd4ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^qChOo!3-pq95%TEq>KZ6LR|m<|Ifq2BPJ$RR#ujr zoXo<)qO7bO7#O&1+qMM@7C1OK7#bP^)t)_j_UY57U0q#3^|@wswLl@pk|4ie28U-i z(tw;!PZ!6KiaAR!oaQ^Cz`+{e@WJ!+|Nn0z)GxB#^?9bZYsb6^Obz{aqge}HmS#l% zojYyQDVxl!)xE{5PIj-mFLW>S_^fiS15##IZj&o-6>rWsQju$Z!goH0(pvNGRX4QQ zH}4efzF;=>Lc=8OjqhV@)?Tqc(q~s*CHr`G!J-MT8v7P3Pj0QxrSeM?eV9#ERGB*-tA!Qt7B zG$5zf)5S5QVovVFXucx~Jj~o%j<#I?n}7RImsj?i`5wxuJ|_xuUgoB6ed2dQs7R$O zK0|#o!}&9nEbeb|cH|{}Og*N@nVTF{xa@h5Xnnf6se7eP`qATcdro(B?w?^ZRaVVZ zQRHFyR8_&h)7xxLU3sZ3S$b{%H?EIC?E<|lxhjipoywOvzOSs1m%WtB{{y3Y7we{7 Ti~h3#9me44>gTe~DWM4fGDT`( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char09.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char09.png deleted file mode 100644 index db67071c6b5c5a90bfc78f3dd7c8ed3480f7ebc5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^qChOi!3-q7@GVUTQpN#3A+G=b|4&X%?&|8|;o)In zVF?Tj6cZDB`t<371q+mwm4T`p930M`J-cn&HbXvc)B=-RLsep7|6$>$l>f7aBS7%zxlgg=gmpk@>j9aQB$?W;GLY`)~+JKccL>t zrATq|Cz(meXFX~;-gD%~)IjOi?0w(r7QgZS+LRplE&WRIzc0Ja3tX<%_g9eQIQx3- z5x)ZIlM8Pd$(&xyGdJ~;*))+)tMiQ&CbM-M-r+dEOCbJN{r1!IpFepe>)sPTmA8%| Y+^?IS0Nuvm>FVdQ&MBb@0C5a)Qvd(} diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char0A.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char0A.png deleted file mode 100644 index 8bc44845e7bc7c4580d917363733b71ac4594257..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^qCl+3!3-oBl?3F0lyQJhi0l9V|C5uGySlnqSXh*m zmBqxw0s{k|K7H!o;9zKIxM0Bo9v+^uva)U4wgGjVJ$n|Ye)HX(XF;Zv1o;IsI6S+N z2ITDVba4!+m{U6Gw$Nb(4wq1oJ$e8B=daEc>Rq_U;N1cp_nw=ND>Riah-?&FyCuZ+ z%muGtlTWL}QrvEYven$%GVMWm{LRG|*0H*9{<#pND0W$)JFN4~2}9k|l5>}Hb?0*b zs4jMX;HJ*%ST4G{X@P%$$fl+(ey0!irZi9VJLbE4F@Nvoh*`GT3riF?m?T=vS=PQV zlX2bb+x4{y8FDWdp3dj)Q~xG?P*Ct)xj4(A>FxWYKkzkf>v*%3y&}Gc-&>iDZ&_L0 ROrSp)JYD@<);T3K0RVShfl&Ye diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char0B.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char0B.png deleted file mode 100644 index bce1e38cbd0f9f58466cd819f26a2480d2603f56..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 322 zcmeAS@N?(olHy`uVBq!ia0vp^qCl+3!3-oBl?3F0lyQJhi0l9V|CN=M0|NtDSXh#i zlb=3)Dkdh@)z#(T;9zKIxM0Bo9v+^uva)U4wgGjVJ$n|Yp6w3vNsuWeL4Lsu4$p3+ z0Xcg;T^vIy=G0EQ$#+zN!-X~G!nKe8|9{KMzP#(nrzXqHQ)e0si>J13ak_Wl^Nrf7 zInpyO$XnKCT=~cG;b9}+dKT^T_iyx1KDtfsAde_tqIinzd&ND)3@@@GlKVO)Ctp|6 z;F4OAE2z@Mx220u?u{F7#wzzTo`+?h<{oLXbYA{pU%#H#yLSt&C~F8#$#?htA?m1h zByU~J-D2(}qnHHom8Hh3*X-iSSt7S3rg81*KlQASb?zQ`FS_UGmd3WrEOpX{S+_}U SG^qu8gu&C*&t;ucLK6U*NrTw{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char0C.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char0C.png deleted file mode 100644 index f4722ef3ebd2d2d4c17a929dbf718e3e69a1d23f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^qChOg!3-qx=RYq5QpN#3A+G=b|4&X%W?^9|D=XvS z;ZasrHZ(Ncwr$&j1q&P;9L}CSD<&oeR2vu=*wxkb^yyQe`u83dsz4#ek|4ie28U-i z(tw;=PZ!6KiaEIxF7h2!;BcPGxU2Ks|Nmv-Me;ri_0`mGY|&MH5z9H-Y=Z6fUcNOe zJ)PB-@o%tu&56csM(oBqyf(dzr&J`Xalib&`Dy~VZd?yb{H_6Vsv zzw?^&aMDbdmuD1Yd2h#OosQR!N;M1p1#l*ybYP-6+7A#n>ZQC}WdIt-}2S6dlk|4ie28U-i z(tw;wPZ!6KiaD(lz4;gvIh+sjFIsf(|F*|7A|-N-?#|f5a!X0D*U#Z>7W0l2-;T*E z+>Rs%X=c=K?Wy2@Ci|edSFrpZ)15;HF3#^WzB@I^Y$CJh#gc8>Klfdbezq&kL{7n6 z>$Cnjj#t+bYm%~G$J!+=-^S_pKv`kQhQsUyD_Oell~?Ej9l_w~>gTe~DWM4fllWnd diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char0E.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char0E.png deleted file mode 100644 index 0cb2bfab3ef958276987783518acaf73c8acc2f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 306 zcmeAS@N?(olHy`uVBq!ia0vp^qCl+3!3-oBl?3F0lyQJhi0l9V|C5uG#l*x|SXh*m zl>-999L4Lsu4$p3+ z0Xb_uT^vIy=9EtASmujx7WnS=Gk^1Ob4++ST`_k}0RxX<7+geQzTZ13*AA-Di4&15m_Uf3? zonZIrJgc2f)Q=U)A?&{`?I`AKZHp7iG_ zfmcfHmj?>?8=u<$^uWuY8IgUMV>LSBV*HzpRecn=i);Y+1JLeXGO& ztltf9;(xU`UYKgf5!LtEI95AxZdUo8h+bhaNAcyonF2h5Z^S0_er0~Yj?FLCQ*bTN O8w{SVelF{r5}E)f!+uEs diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char10.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char10.png deleted file mode 100644 index 3a2989d61ded2fd820db51a7b529c082d5f3f328..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^qCl+3!3-oBl?3F0lyQJhi0l9V|F>=1#>2zY)zuXk z7$_ztmYkfdtgP(d;80dpW@u>0!osp(!2+Q2r%#`rJ$n|YUQ^^#BFL1IAirP+hi5m^ zfSf&^E{-7;b8>^Cg^nn26o)#vKKZvjcI{icV?Qn{x+!=%Tl6#Q@JKVf?b@+caaH5K zyRR(w$t(yr{OBJz(_7j2)ct9l8g8b>E1%2w&+HMpk+nfcNNkpqw3kapN6!VWlYDb| z+}nG^UVJD#v;XRc?%?-1>yl1vN-Mi^J31=i$|2XapEkevH7(b}@U^s$w%^|8U2hB8 z&)vQ!=b5vyZ(@kp|7l9PKYTKuZMpYr+UH$$&F6OhU+2TR!Yg34!|MO%rESaEB2SvE RG64F6!PC{xWt~$(69Dmng;D?j diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char11.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char11.png deleted file mode 100644 index 77abd542069e4a91bfc19afda24f9f3e2b8db4f7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 319 zcmeAS@N?(olHy`uVBq!ia0vp^qCl+3!3-oBl?3F0lyQJhi0l9V|IeO1yKURH+C_78VvUF)?Lj*+ZzMKy&p#FlMW{d>HllsWfcTI7VLDT22I zUK{H#FmXNn`sKe*8lHH-rVF;OIGP=Nxqp*UTU_*0O^0*4LisKA ze&<^+W$nFnc5bTQ+{co$G^gxcqj#v_#LbdlVwWGMaP2Z{i^^tsaN6#*BkP-`LN5J4 PUod#O`njxgN@xNAKd6C6 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char12.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char12.png deleted file mode 100644 index 33826cf6354638c2cc75968a9b49e8638b3c279c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^qCl+3!3-oBl?3F0lyQJhi0l9V|CN=M4Gj&qZQHhB z!2$;dhrqzVGr0pD6|NDP`UU5v3aDR$kn1*i5^xnb)RnB)eD$OZ3Fn-Rv zs&lCX&)WC7%278A-aFKtSGLgJ= Q7tkLJp00i_>zopr0I9-)!~g&Q diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char13.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char13.png deleted file mode 100644 index cef663e1b2571906bca22c03268bae6a9fc9728e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 319 zcmV-F0l@x=P)Y8M9xHpf1_hv_ zkNyhldsPfuPiD5BSy$1J{`|o2FW=4;w3gZ2Rr|1X?&{sK9v0&A?;U=>v-~Mwk#y!g z_kRwPqONwn#?87b7`JRN42m>$ZM;3bJvrXk|K9Ji0REe82cG+7OEI&ZixzY4V=8B< zxtM!$?vbC51S6ikm#l8Gk`C47sJfhb^h|m1N1+$I#Z7Z~erhNDoh8qhef{#Lm+|dq W*ynuIiCqEo41=eupUXO@geCxU8ioD< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char15.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char15.png deleted file mode 100644 index eb4dd7d1b13abd6419a410ffba48f4c27bc35c77..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmV-Q0k!^#P)l|Ns9G?46?k z0004WQchC-tfW)ecC4<24Y+fWc` z$#@{54vV&GK&tJZLCKq8FcLT}8p>HP1l1b}Mss0uVI9f2ay3{g!J!+uGGGksd}Jh5 zzhQqo)FvcT&*1G|>x7Z@e|vAzfB68`Y|q*dZ)nb2DB{Kh-yNiUrL7*F?rv}>Is;Nl z7F7v6PgPW2nzWaxz~$7%K<(tPF%x9bWQ@__$4?UqwASkQVK6<+1SMDrUJR_0c`>lA co*t+50oC6JwiT|XhX4Qo07*qoM6N<$f`VFv=Kufz diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char16.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char16.png deleted file mode 100644 index f8b0fa8cd92aeb4a0383f9ab650bb54988e63f7c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^qChOi!3-q7@GVUTQpN#3A+G=b|2H%=JbU)6gM&j^ zSy^CUAP*1Ef&~kdm6f}?x>#6Pl9Q8xYPW6M_VnpfF)=Zqdd_^EcR(S=k|4ie28U-i z(tw;vo-U3d6>~}_MhYEK;Be{X=3=_{e_QZLl`yyJU+k|%&!%zgZez~iN_fHSAnq1= z`<&L>y1b~kt#`8goR^+i*mW=K+qa_90ukclY~6t7~o@-0Ew6W3%oD Z=8e19EH+#zKLT_egQu&X%Q~loCID%bZTtWL diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char17.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char17.png deleted file mode 100644 index d5643994c7fb4b2bd40df230c89f28f3bee67035..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^qChOi!3-q7@GVUTQpN#3A+G=b|L5W1Nls2SG&EeW zU;zsY%h|JMySlm@92~^N#GXEV3RJjl+csro<-oweva&Ludd9Mk$AO}ZB|(0{3=Yq3 zqyahoo-U3d6?1YY-sU@^z~Q1RvY~JK|NpmpcSldYWvQ>?Uc#|#$}x|Ydo$K*_{7gN zzdW6J%WeJFet&Kz+*2oX0WV8yy;@`S1{3vzymi6h2o^`=WKjm89`Lx_r z-z&7z&1uu!X7}hAi?o^7j-O@xdF{D@f+zFy=woW9RTQ2+`+mnS^7_f=;TvMN_|`F~ Xt!3-V%{MRvI*q~8)z4*}Q$iB}F4b}D diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char18.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char18.png deleted file mode 100644 index 4449be6246854e6446aacbc10958a379eceee5a2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 346 zcmeAS@N?(olHy`uVBq!ia0vp^qCl+3!3-oBl?3F0lyQJhi0l9V{~a70l$Djm#KZyv z1Ix_wuC6XaL&F6N7Ce3W6sQTPzW$=g8IUO@L4Lsu4$p3+ z0XbJaT^vIy=JW;zinSloT78Z7Pc2QAL|Ns9;+&uFD z0004WQchCu>BhS~eU> z<`&Z&5Hs|1rFlFb2R1u+CP*(e2C@akIR(pB?V*?C@FeN6)3 sC9DGO1SW^GYhC)Hp66PhvB6u0-=pvcVkOGyHvj+t07*qoM6N<$f~E?R4FCWD diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char1A.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char1A.png deleted file mode 100644 index 2492a605ad349a4867d80145a3f941da57b5526e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358 zcmV-s0h#`ZP)lo7001K+BcPz5|Ns90&|m=o z0004WQchCO@y23_=vyk|$~ZxVlxC>LuFvun+&Bo{%wEzGB diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char1B.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char1B.png deleted file mode 100644 index 0ae47591b5f182ac2df55b58f91b9c44c88eca2a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 348 zcmV-i0i*tjP)dqf1W{2@|Ns9>!8f)5 z0004WQchCJb zr%VXFIrUl~pB~Pcp;V{dIwTK>RV4mmK0KiS-|ZfT@ge=!Hhp}JQhG?`D54Kr5#0!G z%Z;Kw49wPk>*xT>JuD$(uL`7+0E+ooqQ)!t38o;j#Pkxvkv9-p3d{|`gph9hgkl6B zgQ0GTY(1p<4y`uZ(zJgkPs?NOl&cHvA;3rx0rq*-QI$BqZD8FjMk}-hcL1B>LZmXJ uQoJIlX(&s4G4ev?*6yiAbRrD>) zOiWo>+0f81Ffh=;!GVW|=jqd@Wo2bRwP(+sU9e!mwr$&h>X-2q@BoDvOM?7@862M7 zNCR@pJzX3_D(1BMpB6f-z;UFdVM6Ht|M}drn&*}*t9D@hrg+iZZMnJByYkCx^Q5(I zeJc7`Ge43~<;coe=krc_mV`6}8FF6HRi7gr*XTawu}s7kL9Loy<%c;KBfq&y`!i>( xlIbpU-KqOz`;jF7r2CJuGwuIPVXObh=)9eIc58yhE}#<_JYD@<);T3K0RVmKZ6LR|m<|L@@7(ACwIoSeL1 z!2&}=!>3Q50wvF$JMi=k4uf_?3!fs<_N>=`x_q0oOAP)N|09Dsax&iqULgV)%*Y7FLqr! z(jT(&&}`$Y+`5fBgzxd|x7qqn`uJ#; g)ewF1eEL6zsdlVa7VQyf0J@RE)78&qol`;+0Lo-?qW}N^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char1E.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char1E.png deleted file mode 100644 index 4431a99dbd7e59d804eaec156f96c76762754219..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^l0YoY!3-q#{l5|gq>KZ6LR|m<|1TycrmU=NXlVHK z=~D*>hrqx<78aJXXU{HJu%N4}tE{YS+qP{$`njxgN@xNAkEcg9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char1F.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char1F.png deleted file mode 100644 index 98d7ba4c879d8f933e97d5aeb9add681bd76de4c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^l0YoY!3-q#{l5|gq>KZ6LR|m<|1TycrmU>Y!^2}} zXz1YJaQ5ukz`(%d~e>C>k`^`VpUuL4CGOM?7@862M7 zNCR@bJzX3_D(1|+u$}RM0nZVKz>8j2{@t!(s&U+MU2(6=PgP6l%(s#YR%Qssy0*U% ze&TVsx?z@*O}ux@CIx3BWx+2x%A$^@4tJ$5{a}2(m#ODNWnmc5SO!m5KbLh*2~7YE CR7>Lk diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char20.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char20.png deleted file mode 100644 index fe12443553f327e2a07bded41cf28ac1010589b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 269 zcmeAS@N?(olHy`uVBq!ia0vp^qChOo!3-pq95%TEq>KZ6LR|m<|Ifn0($&@F;NbA| z>C?c#Kpq~RZQHgfD=UkMi2+p^8XBHGdp0>axvZ>g!GZ-q^+y?-egP#IOM?7@862M7 zNCR>@JY5_^D(3V~a1=VCz`^1u%qcwe|NpYJYw}h;+)%rD^&G|ywlMGId{grs);mrY z-G0HZaj(owbDp diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char21.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char21.png deleted file mode 100644 index 9fe35dc9df7c6b8e1f7688a11bfa9eb2d8731b4c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^qChOo!3-pq95%TEq>KZ6LR|m<|L@@7uwcQ0z`#I5 zLqjn!F%}kA-4V!wZEgmazFS1WBb%e$Lf+;@6CuQ@SIZO!JR zpSLdMo6~o0zuvBI^$kyNf1W>M7tb>EYwr$&z zlam)LSkTqg1(f9B;Sm!PGc+_TD=Sl0Rt^jdWMN@>`t&JK{fQ^cF+dfJB|(0{3=Yq3 zqyahGJzX3_D(3V~@Dw|uz~NHJBJ;lfwwc-@HN9W!D_lE882$&I_B@+ec;vv9gNKqF zPF;*=`Si}vXy--!x)2-p%Aco$M5n%85g^xi@K+^^z?MJqE+H%2RxahQl3KQX(ah5m zbd*9y8r+H diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char23.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char23.png deleted file mode 100644 index aef6edeefb97a69b512885278bc869075b4fb909..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmV-50m}Y~P)eL@7BMj~V`F2Aii)71pa1{>wzjrWQBe#G40d*QBO@a~KtKcp1kKIO|NsA>b0Mz) z0004WQchCi(K^0U_;9u3aLYj*Kv@(gS*r$5_zXoj-F#+6zHN;u( zPo0_O*j$=c@%G?po4XSX8&p_=UJC5~xIpxYXm7#67s~e8OtoA&2{d{#Uz(g?Qltmh_sf+J2-pWPwxpUd00000NkvXX Hu0mjf%m05V diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char24.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char24.png deleted file mode 100644 index 7b85691f79c2e5786e99d0433b546c8754d7b5e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^qCl*~!3-qZw7?6z&&fC4-` zJcfpbfq{Vw7A$!B^l4dH84C+ba&oemn3%G%vV(&|S63HMy`&EChJ z+p+BPm*%M@U6G9*8h+E6CMG##tv$c@tg>lmv$%Lh*blkY3*Sxh%;;l}Z(kiJrtw3j z{gK~+h{rS{k_@0w*jRYOM?7@862M7 zNCR?adb&7G>0*^CuB1g-^f7{>wU$L-x&&z0rO$uGI9T|L!%~hS32X;^K z-haYVX@aJg!>1=bPcA-4?GF)MGHJmf$yJSkjq@5_u*?W!d+WCCdsfS{)Okr$&t@1j z=UapvUKp9O?!l_}WnHz#Oa5GYdN{PXGS~k!?^CAqcV#T*U#?!(ojW=8z5F71YyZ3R hgnzkhP}f>Nk53?sokL*x2T%wwc)I$ztaD0e0suA*b@KoK diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char26.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char26.png deleted file mode 100644 index ca440724b9d64302d73d1ec758125081d5e2c316..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 293 zcmeAS@N?(olHy`uVBq!ia0vp^qCl*`!3-o%)g9giq>KZ6LR|m<|9|%E*=^glIXF15 zu&^X2Co3x}FIcdktE&sBBrq_LhlfW@Ow7>Gu&k`?>C>k`^@olzUIfZ9mIV0)GdMiE zkp|=}@N{tushHC{(NpM%0tZ8(xZ}_N`OAeodpO%)cHe3h;XdHvmL3!lVz$I=RglR9 z&wPK2dRY~r!%3zoy=^Vmbfpjd-#ArA`^8z2J^!yxo;UM&=nCaB?fZ8pmz-JrqxsCg zK8EWSi-hhcPqgSMvXb7kz*uLgsDPf)JonpcPGw&I|JTy<+8Y_E+wAwkCw(~j=7)sW p(TDnB>Nlg}ex7-$lMsKG-|rmj{M|o4tOUB1!PC{xWt~$(69A{fc}xHR diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char27.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char27.png deleted file mode 100644 index d4d50bdcf107ec61764dd14fedb4b4759673dc95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^qCl*`!3-o%)g9giq>KZ6LR|m<|L@@7z{0}v^y$-W z+qQ{`i2-E{4Goi%le@aQ&YnHHV8MdGz(8eXWgZ@$va&Lu`Zd94-vSjemIV0)GdMiE zkp|?<@pN$vshE>H>9iP&Adic3$G5Kk|8GlHSv2qB?zWof#j2ELwNmx6%F&a;N33^k zbd{Q*>FrXK(w!2Yuu;jBGsrU_nfvOA6^?h)HoO=5bZ^0xI;(ri#r?NZ?v*#I>4`nv zdD^{hLtC*ir{B-2xdm)V*5Xsoiid922wt1Sw>6pRlhBt3)2}FVdQ&MBb@06qtEH2?qr diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char28.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char28.png deleted file mode 100644 index 2874bedd6b4edf06bcfeedf05eecc351b14c8e8e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^qChOg!3-qx=RYq5QpN#3A+G=b|7T%g>FVloaBz6~ z^l4yVAP*1Ewr$&#m6gTB#DJ;{4GqtpJ)4}ITvk@LV8H^Q`lF0Zzkm{qB|(0{3=Yq3 zqyahAo-U3d6?1wgc=H`L;9&j8&))R#-}c<8x3Z-6yQU{+iZ!%n2->Obn=*G*kzopr0Mb}r ABme*a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char29.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char29.png deleted file mode 100644 index 63fc563a73421ca81489944435777fa46d4c887c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^qChOg!3-qx=RYq5QpN#3A+G=b|95b3Sg>G0U|^u3 zp`nMAQMOHNMSwrv|wecwYL0iZNvNswPKgTu2M zX+Tb?r;B4q#hl!U(R>XGJS?j{;sbX4&-E4InK)N|5@(6Gx65AMMPk2J*conJAj^4< z$tJd^)Gcg>(p;IF>o&A3vdJlAouO96^!mZ79l4Q9H}XrGC7!*X?>%=;L5zgqm5{jE uub7`duL!^O#XUMsMQ@AXEyqh6kKNyH#p)iF*DnTi0E4HipUXO@geCyBTwIF) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char2A.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char2A.png deleted file mode 100644 index 0556a49b62f789eaeebc821906bf2b87eba0d4ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 311 zcmeAS@N?(olHy`uVBq!ia0vp^qCl+3!3-oBl?3F0lyQJhi0l9V{~a70o<4or)z!tq z!V(x5sI07PXlN)VCYGF>ykNls9v+^uva)U4wgGjVJ$n|Yz9xLxLXasXL4Lsu4$p3+ z0XdsIT^vIy=HyO_7HU=CadwPzRd`pweY&<-*3%jbQ|H-IhHk~RQ|vROH%_~IG06N8 z=hwL6cCT}vzf5K5G8FoyyovQv0bikM`W*kKa|;qKR&Mlp(Dg|~n(y13(D_!fIZ@1O zo_e_nMAW(lbjGH#yjiHUz)ic)I$ztaD0e F0sw&LcR~OF diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char2B.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char2B.png deleted file mode 100644 index 02350aa41035300de7d65dc38ee6b40aa1df4994..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 308 zcmeAS@N?(olHy`uVBq!ia0vp^qCl+3!3-oBl?3F0lyQJhi0l9V{}(J+5EvN9!ongZ zCie8{Q)Ojk2L}g3L&L7FuH@uo9v+^uva)U4wgGjVJ$n|YK6tLv43H@$L4Lsu4$p3+ z0XgeET^vIy=HyO#Ep$|Xr$sO%=F#8#-=?%#a^C;a{;nlQEZO950NWM4B;DI_K#(4Y?Cv92aC+ zS;X>*<#hcfX?KAWU2*qyT>@V{^EoJfF}vrA@sSNYzAyfsc%Ny_r=S=m8@}9oolK+K zj5%Ab$!s~BZarD4c&qB(`VH|1?X{UYt=E;Vx^<2JPYv7YYlkL-!i2%o)z4*}Q$iB} DCmMcK diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char2C.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char2C.png deleted file mode 100644 index f8fe9aa057d4f83238b5685e8ccc84aa8720637c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^f)666=m;PC858jus~>EaktF()}8 z;l|Me2F;8-rz9j6X(ahJZnT)3xF(Y=Ak4$aXYMS)rlklEn@I=^>bP0 Hl+XkK)6hzD diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char2D.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char2D.png deleted file mode 100644 index bbaa579ce38d56a00271e14197b4c9c982ccb2ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^AhsL_GmunTUC#uhj01c^T>t<7fA;LzZQHgbCnqmh zumC7*XlTg7!lJCK%)`SYCMNdu=~D*>hrqzVva+(St}dYZCzfKTf$A7bg8YIR9G=}s z19F@_T^vIy<|HRDFxA}NF4wG diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char2E.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char2E.png deleted file mode 100644 index 358147c00065ab7682c4f02fd471a5d49b7c19d4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^96-#+!VDxIR5&aJQtAOdA+G=b|37>7tg^E5f&~k< zZQBMEE-NczVPQ#5P8Jgr>+0%y`t&JK&D7AW`#?Fyk|4ie28U-i(tsQ@PZ!6KiaE&% z58@60foY?(%NFL&OhpH!D-Df}$`TqIOPD5zv#9ulGjeLL<4icJ!II3x%+TG+_1IOi R_cYK122WQ%mvv4FO#ldKInMw9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char2F.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char2F.png deleted file mode 100644 index 12a948488cc48059d0edfd32a0b66860c652b6c7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 214 zcmeAS@N?(olHy`uVBq!ia0vp@K+MO%3?vUPOnU&Nj01c^T>t<7-__N1_Uu^}7MA4X zWF8(KLqkKLq_VQIgM&k0V4#?oSXo)wwr$%MELiaL=~JM3o6}m8fGQYEg8YIR9G=}s z19AdAT^vIy=Cqy-6lzf5V7ah1L`3j?eRT7gKi%`^nxA26Shpebtn(^%@h`qxpDmr& zdEKw$((TIJ?V7wfmXxWVV}M{{FtMDObh7Y_*l?S^oUeGN9oMp00i_ I>zopr03ys$;{X5v diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char30.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char30.png deleted file mode 100644 index 2f5c640736fc768f9aabd08b105c360c7393c95d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv_!3-oPUsrt$q>KZ6LR|m<|L@@75EvL}XlTg8 z!;_qx%)-KQ_Uzeh+qQ{`iItU=0TnJ-us~T^xvQ(|>C>k`^^;k)t^|rQmIV0)GdMiE zkp|=xd%8G=RLn`e;LX>dz{7IkmKST((|_BqHq^+Z2TqzEpeB&$HTU|?3DLGivqauH zS(^w%+-$vY>4uHZx29uOE26h~B;@V8az@L4jo-w#rfG%`r(Jk|E~z-)t7V(W>$EC{ tz=-axJ05O&e!PxfJ4c&jPJy@O1TaS?83{1ON*MVk7_n diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char31.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char31.png deleted file mode 100644 index 56cda2285e1812fa7c516d93f6f8c5dd6b9f270a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^Vn8g)!VDxg@G&m~QU(D&A+G=b|95b3U}0f-`t+%x zp&<_sPhenRa&q#51q;N)#LCLbfC{&5+or6n+||_uR9s?hDi0K5ED7=pW^j0RBMr!@ z@^oR)RkU7tmhbKl@!a|(k=3UkTv*UVf7QeqTS zTbmirt;=iJJpFBA!{)`#F)=Z76mzzkD0r}KUMg;I;L3&-N;lR`D=5n`P@l8+D#N*F wA!!X8XQul%Z1&Apys=eATq5E?UkU?5*;kErn-^`@fv#ZiboFyt=akR{0Jf}IX#fBK diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char32.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char32.png deleted file mode 100644 index b3e9f2a70a854443939ee62cc1ae06b8d3c14b08..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv_!3-oPUsrt$q>KZ6LR|m<{~s6_XlQ8Y;NZZ+ z!;_qx%)-KQ_Uzeh+qQ{`iItU=0TnJ-us~T^xvQ(|>C>k`_2O)2PXa|5OM?7@862M7 zNCR>zJY5_^D(1wV4-`7Az`+ubG)1HPw%U^I$qgiQ=*{fLdqMo#;{*vam zmwKLvvT0qr=HzLo7-yf$9tUo&_I3X2lFofQx;;Oe@3etpb`?it_rt&0&LKzQpCw)M x|K3&q{-x@amNQQ@d?Z`f>Zj$n3#`wtV%W;g(*D&dvl8eA22WQ%mvv4FO#lOnV#)vj diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char33.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char33.png deleted file mode 100644 index 3501171cb71f512b710c10b291618352a5b36b2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^Vn8g)!3-oz|Girdq>KZ6LR|m<|L@@7z{0|E_Uu_6 z9-gO9p9Tg78X6iVCnqmhus}>qtgNgIsCL`7ZOY2ZU0q#3^=>Fq^Xxs$r=9={!Ye)b9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char34.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char34.png deleted file mode 100644 index 7b9e5de83c2614938ac31f0623b893f80e94dfae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 316 zcmeAS@N?(olHy`uVBq!ia0vp^qCl+3!3-oBl?3F0lyQJhi0l9V|9Nx!n;Kk!tzje{j{Gous^5DB1d-l9ta@O!jHUBLmt&M_Hju{-($yA@)Y+mB{ z`%lT$oRt4JbTft8Zya^MZx`_BcF!I&i>+&(UEOrsRqJi8_T^dp4H0a{t6MUD0KLHA M>FVdQ&MBb@0P&H7LjV8( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char35.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char35.png deleted file mode 100644 index 8374c0a4f8d551d08e096e9b1a4593f6de1a6665..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 317 zcmV-D0mA-?P)KZ6LR|m<|8Hn$SXNdR7#Juf zCg$MapscL?^yyQe{DK7wl9Q8pczC+Hx>#6P&YnHHZQC}W`t!b(3xU#%B|(0{3=Yq3 zq=Ag|ba4!+n3Fp(TIi?(hx6J+$JlrMzZ;jAyL#y}_UAp!DiVvY%vP%}ynEo(?)9qq z2~Kw|JV>1vzG2}~h83nZ!ZE>Hnl^u_4LrTzvtj0$m^V)!EW6nF>T$w_XM&SLPH}Ht z@UN)gQklY+(+6*bM+MBvw&Ry9U;Fiz&zVIx_|K}CS!h>Tt!Ryn$!-s?G_{`RT=O`=p=OM0wsy`63(ENtsg)&jY%b!PC{xWt~$(6974*eHs7& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char37.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char37.png deleted file mode 100644 index 6d68ba02ed4efc6ccec1bcb986b5995be7db5476..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^qChOo!3-pq95%TEq>KZ6LR|m<|6f*CW@u#6P&YnHHZQC}WdS<)5mx0oZB|(0{3=Yq3 zqyagLJY5_^D&~}4jAl9_z{48gxtn5H`hcMt}+*WvWWbCV6)AW r`EofQRyrKL()`nDw`1_HUw;|fWLTDQm-K%Ix|YGy)z4*}Q$iB}%uagc diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char38.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char38.png deleted file mode 100644 index 30e498c08b635be93eaf90b280468896d6d1091d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^GC<73!VDyvzaFpwQn~>?A+G=b|2H%=JbU&m3k!>~ zva*<%SXWn9a&j_IzO1Z_hleLHF!1Tqr`xt|1FGa-{B#jeg0UpXFPOpM*^M+HC)v}* zF{ENnazaAF4(1~~ci1HsB=C03V0>I8&cHd(Y(|P!M?ztP=dp$pDJ!CuiLQ27!0fXw zHDQL%G$430jg5)Z!TC@_mfGR9i58`ejhuOU%*^==hhhXKB<`qbV3hoDK!V}TL8%r` TgEd+}>li#;{an^LB{Ts5An8tE diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char39.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char39.png deleted file mode 100644 index 9623069acdb73acd52c61bf9b68e11a0ffd00e23..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^GC<73!VDyvzaFpwQn~>?A+G=b|2H%=JbU(Ra&j^Y z3yYYTn6k2RS63Gg4-ZgDSy|b(ZQGtceHs`T2vphmqsJ!Tte34w&CjPux7`qQnL567}h*KKTU+{$oH*ODPb@XUb&cNy7?9bM9e znVl^;rYvbbF@-f?t9L_|mdKI;Vst03T>d&j0`b diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char3A.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char3A.png deleted file mode 100644 index cd6a45353a6e1a96b2ef873e5639983c6ff87035..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^GC(ZI!3-pS`r1?gDdPa25ZC|z|1VguKv`Ltg@vW8 ztV~QyEHE(8!NI}M&@eeUnTLnx>C>k`wcECB>+0${d-g0){lVtTUw}f4B|(0{3=Yq3 zqyaf?o-U3d6>~}_Toh|j;9xa$3N-llKR?=BCwzP5uF70Kjt>d8G8+Oyt0GQMvMq?( zHK-tkeUl;@89 z?-@l)RqxnOKPxrkZCb$eG`<}k`kU+4<$bKbDR=!!oL7Qn-FFMdUw>Jb%fG!<0(23B Mr>mdKI;Vst01Ogo-T(jq diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char3B.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char3B.png deleted file mode 100644 index ed293b5ac84455bcd35ee11e25e3abce4752d1c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^GC(ZI!3-pS`r1?gDdPa25ZC|z|0^piJ2*I$m6aJ9 z8uIY)Bqt|}iHQXU26lCIZQHgDsE~z)3h9$?5a$YEOwRocWjWnm??A+G=b|2H%=JbU&m3k!>~ zva*<%SXWn9a&j_IzO1Z_hleLHF!1Tqr`xt|1FGa-{B#jeg0UpXFPOpM*^M+Hr_s~J zF{ENnazaAF4(1~~ci1cR3>pqf2^cH*Cehjx62G%*@$L9!6|O zeC-%Q1kW8fuq8>9qokojv|B<#t$XRxrK-CbJ58Q*I;bW(Y@OVgC24W+mS1c_LKd@O zUZd|bUWVDH4+wA*q?Oiaws&`?=f8K`R8wrx+JK3%Y2!P&ECfr@pvY?%QRWh@Eu3ubV5b|VeQ zY4LP%45^rtoWRhyohP86p|ScZ3!9z6?zxS*SDD(P`5kh;F)groAJnm^sO>V(b|wWN zpKXSL$D?V?J!j)~vG^2A1HsxT9u;Yc3MXf0WifrmNzw<30vVsOFE|xB-Dtyghns;8 zn->Z>B%b6B=v=`dwxIgd!8ajn0<#}8hP3}+72sqDWmCS`yQUQ6F$PapKbLh*2~7aj Chg{bH diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char3F.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char3F.png deleted file mode 100644 index c306ab070789f4006eb178eeeb981420decf3fb9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^qChOf!3-pu&!ox#DdPa25ZC|z|DQd3*1^GH!GZgqByH00so0V-r+VG$D(OHNLH`t&JK{eoFLLV%)-B|(0{3=Yq3 zqyafIJY5_^D(2Kq@ML09gr-) zVJRysJA3x*)2C0jZQBM^lAN3@CMITRXc!n6sI08KV8H^Q`dtMt7XalLOM?7@862M7 zNCR>jJzX3_D(2)~2;^f{eT%qwe;U7pYOvvOPR zoa<)i7B0+o<8E%h@O97BYqiFo_gBBo^^0hjqHM*o<=#jA2_IR{FOYPy06K=j)78&q Iol`;+0J;ike*gdg diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char41.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char41.png deleted file mode 100644 index 60b32f7961cc0746c159bcaa6685fe841dc72c32..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 284 zcmeAS@N?(olHy`uVBq!ia0vp^q9Dw{3?%2B3|#`Gj01c^T>t<7-__NntgIXu80g^O zuwcOg9v+_L4R_@K@ znfi*CyY$1mW%F!G_Gqd(n$5qUu!Ti&-W4m2!0>r#ryXv-GkF>Ay5o4?Vd1cXI&)^pUXO@geCwV<#7H0 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char42.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char42.png deleted file mode 100644 index 2e316bd541dda4c81dfd52b890be479313c99d24..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv-!3-oLy1%&rDdPa25ZC|z|0^piJ2*IWb#)~t zCvV%fZNY*CEG#TQ`Lk!wK7IPMtgOt?&`?ZFjE9FOFfb6P{$Yf<9#ERGB*-tA!Qt7B zG$5zj)5S5QVovM%n|#cQ9IOE`5)J|X|K}fHx^(O33$rCAGYhudv$?wEfRA9R;8Jeu z^u;XJJPQi%*ft65Ta%-`Ib%7a=!9?CpG@NN<)&$AOg$|0^#Y5XTW`9^KAi_k8@KF} zu5~-{Z-I1}{2R0Bf>pPy>VFl~=v0-?PJNMk_Gseu8{R$2Hzopr0CiJo0RR91 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char43.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char43.png deleted file mode 100644 index 554bf17f19f7487e0466692270bac91cc6451b3b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^B0wz0!3-q7&-XC_QpN#3A+G=b{|^idOioT_VPP>e zH00so*|u%l*|TRI92}IDl|fp>#Jak=%F44jz665U6W!LaIa0=?x48f2kW<;z4sd0rwE>2ePYJWpr_fTwcCp= wee5pG*iuz{$vWujUfcW6cI3>SZQss(>kP}C1g;4)fKF!cboFyt=akR{08f>Dn*aa+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char44.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char44.png deleted file mode 100644 index aba57eb90990789b2e230135f9908c0d581a9611..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^qChOd!3-orr?xQyDdPa25ZC|z|8Lv2?dj8}Vq#(r z4h}$JLqo%^t}Yf9mgMB*vuDpPSg;^4Fi=@pnTLm`tgH;EKA-u{0iZg@k|4ie28U-i z(tw<1PZ!6KiaEU#Uh_FCax_5@- z+{N}Y7*F4p?4PL-l;IXHqABXMZsH=T141i*F34JP{nK4+qSN*E-^8&1q&7=CnvM8u$(=6mWPL@tgH;EzD9429Z(TtNswPKgTu2M zX+Tc3r;B4q#hly=fkKBBI9M*MWs@pB`1`(D)@;A4Z>H}{ba4Et%635OY}f2az0T$P zFD`bNSm>l$uNLoo^=Q$4onzPjcT9FQy|dHTtlR0FTe#bN-7W0eQ-%lyQJhi0l9V|DQg6DkdgoXlS@? z+cpOWhrqxT)O7G9FzfAn8EW)2O?X{4Lm(kB}K6WPk^@Rcj0)M*LH1}>e gdwFyAK4tYc{@++GpEYVP09wi5>FVdQ&MBb@0D0?MU;qFB diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char47.png deleted file mode 100644 index 0f5beb0b5b7e64e40b356241ac18bc28e379a4db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 316 zcmeAS@N?(olHy`uVBq!ia0vp^Vj#@H3?x5i&EW)6#sNMduK)l44-5=UPEKZFVKFo` z>Hbp{Sgn_caC93)#|NZj%yW!gs7-bjhT_+ z9Cr0Yzo1J&@*%Gi)7q?eB{x3s-zhs+sO05xUm@;y0iSN~)qlg>@L9jj?7YFVGx3{e zDKToqR!o_CEU)3pMCB<-pn3(HCjjVzN(E^$-Un5KP%-{o!fcq%{NAYTdWu55?{0cy};n< L>gTe~DWM4fV9SGB diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char48.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char48.png deleted file mode 100644 index 7b39ea2d0235d5df16b8316bc2a414181593eedf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^;y^6I!3-n=6T)nOlyQJhi0l9V{|yZd%gV~c#Ke-5 zla-Z~0|Nt}K7GogJ=51<5NNswPKgTu2M zX+Tbbr;B4q#hkN!-h2lXI9TId|1@0reSh1uW3x{* diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char49.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char49.png deleted file mode 100644 index 4229347c33686080c4e57424112d3236f5ffca9e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^+(0bC!VDx=GTn*>QtAOdA+G=b|95b3*tTsOP(WE( z`RUWAWo2b7EG%cwo(&8P-271yBWJNswPKgTu2MX+Vyqr;B4q#hm0D zTe&#Y3<`4YUz{g+;J|@RjWZh?`$Bdw{bplpJA2GQfq`L*lE}4yms1`AH8FU)`njxg HN@xNAie@)v diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char4A.png deleted file mode 100644 index 081a8e1080a68749310afc6f41ed4e957e6b390b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^d_XMD!3-pM{QEWlDdPa25ZC|z|95qDm6eql8X5w{ zSXfw+larr5eX6Xi92giVCMLFR+qSc3&pJ3b@bK^~Sg-)7-udZ*r$D8QB|(0{3=Yq3 zqyagho-U3d6?3j$@aAhU;9$9M@e==(Lx1zL1zsN$w$P3^PczAfWZQBM^?-cK`45)&!B*-tA!Qt7B zG$3cPr;B4q#hly;(R?iiJj}k*v&5Hv->WhEKWGsA>Y?QQ9_xEcXf7QY-7XK&wdb|1B@+-;bt(HES^66*e@tZf7huAc~Z&7>l b>M;Z36gJTmZX0``^B6o`{an^LB{Ts5-nDV9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char4C.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char4C.png deleted file mode 100644 index 60c281156e142a10c8994c94e0dabc390b24f264..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv-!VDzmR!h4BDT4r?5ZC|z|0^piFIcdktECv|DsQ9hsp+`U!j3q&S!3+-1ZlnP@ z&YmugAr*6yE2_W0yKBvpaNuv&_c>)8lN);zwGKNNSxPbP0l+XkKW~N0Z diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char4D.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char4D.png deleted file mode 100644 index 5fa788f455dcf2c35296012b24607f2b3a327814..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^(m*W2!3-q5W43JqQpN#3A+G=b|9|@QX<%UBwr$%C z4Gqi6%DTF`#KgoL92{6!Sb(a|o;{nKoUE*@%)`U8V8H^Q`m?-ep8+KpOM?7@862M7 zNCR?qc)B=-RLsep7%s%3$iX^a@LY5J(2pOxge(sHK5X+;I-7MW|Kpl;Kbfj1MZt<7zhJ?Fz`#Hj78VBw z2Qe|RHg32amTfZyDhG4HH)y^*6nWfZ|6m=w+1F1lKKIU z7W%10gjZXi<;e4$+Ea6c@1@7A4d-6Y6*`)}ZL!9}^s8U`w(-RZ)>@w8zr2a{c%`;Q QCeR-Yp00i_>zopr012Ol^8f$< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char50.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char50.png deleted file mode 100644 index 4da1b477eb9fa4e4d0f47f39c590498b14b5c3fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9S!VDyfb{13uDT4r?5ZC|z{~H<_ZripEDDd>@ zQ)Ol41q&9iu&^X2C!algwyUel!NEaHOpJ$zr>v|DsCY5&A}OF!#*!evUhakWU|B6W zrw6_*n`)GH$e+l=rc%2@Mq$%J$;TxiCpKM21!(661d-uI55;ah04^gB0P*zE3aN`a zis@i$QmXUMcPz>6OCxK9m!Y2pbQV0gp&b6lzePOGcI*xgdA1EL9LvGoB{%o#p=Avf z9t&hhaZ}fJwzO{T_H2XT(jfuy|Qti0a^Fu0K$a yH|~vFPW;gq3J)Neh<(K>vN9=2d1qAT#(W>bXa>c^k@k-O0000B*-tA!Qt7B zG$3b+r;B4q#hla&ja)|+I9M<2_C34i&Hw-3B-ie}*y6yKq_yk+;;T*8I;$fu=BTbL z*!+}hLeCOzE&Xe+uT3odxxzhuUzuoExSds2?sb7jd-FL8>sCvumZl%_o_f{w{P8gM zmn(R8NAbL>4PPRhy7t4YgT_I>U#yt2OS?~b*Lq?5=`F!)49)cxn(bF~kFi*_d!2;z c9OK`NRf(*xYkjhg0Nuyn>FVdQ&MBb@0DY=(?*IS* diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char53.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char53.png deleted file mode 100644 index 8573737d3a47cbb74cef548c3951f95880de3b82..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^0zfRr!3-q-mAvr-QpN#3A+G=b|6j0R0SgODa&oev zq2bxHXL)#d#KgoL92}IDm4T`P0|TEvecIL4RaREEZQC}W`cIZjzkw2rB|(0{3=Yq3 zqyah0JzX3_D(1LOh!kQ`(gSb4?SG{f6;+U9T&hmScpKHm*@=szme{_o+XYhR3!{Q+* zev4nKNx-D0TPS65%>Uh!D=y!iRM1*r{WZ5nxkPVD>bP0l+XkKErE6- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char54.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char54.png deleted file mode 100644 index 3be134038a6a48892029c5637a0c534fe59e0179..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv-!VDzmR!h4BDT4r?5ZC|z|37{DR7^~)tEt<7udJ-x)zxKaXt-d( z0u~k)pv<;y+r-4g0s{k+latS$J?r4$@bu|Z9v+^uvNE80J-)wfKt+rtL4Lsu4$p3+ z0XdbPE{-7;bIwl8=3`dmXjyI-!8q~v{jzXv-^o=C=j7GoRrWkkPGR^}#J7ScG;g|{ zz%!MtKFdWD4u+{6*Dt-qtlPr8_usr*h1}Ij#TQJrt>k*|Sba~8+l%|xzQt<7zirz#78Vu<2Zye% zE}(F7a`MxsPZum$pscKX_Uu_hL&Lzpz_PM39v&VsF)^Te$yY}8Ky{2IL4Lsu4$p3+ zfsFKYaSW-LlY2f=?63j{Ye3UxjW_k%UAJ6Qsg0lWnxWx?7rXD~Ned=jiCX%kae~tG z3zNgv1lXKe@?e(e-WT56MK7=U(8N9cSwNU*W?gdWiQl1{CJQG1aFgy4-hE+v*x#v( zO8GKhFSzM{hridweceN=k_qCn(S9uF&CGty?yFR;+_QLX?;Sa=h=p^L&zdy(`OBR4 ltkc|aDE|uYFZotx`{j>W&ac_|#|`LG22WQ%mvv4FO#s%Icf$Yx diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char57.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char57.png deleted file mode 100644 index 97145e507b6131bccb26a27b78da02bcccad41d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 367 zcmV-#0g(QQP) zprDG1ieqDA0000{QBed01a@|IBO@c_<>k%I%@!6GF)=Z=wzdom3_w6Y|Ns9_hj26i z0004WQchCUA)~+0-jIAp z+PM2G{zH+*S3TlW{ZOQxe}n!KmoG#M&v0hqKT6?=^5Gv+exho=)DM5*2nMk7zCi#0 N002ovPDHLkV1muEpziaBxUYP8Jgr@wPhYJ$7kt&tnMHRF%)% zp~)7%RD1cxvcyAaOnaN|mYla~&6v=%HKKa`rvrk%r;OYcS{I!%Hj8Wyl)iN}X%18G zZFbuimFLYbF6g^ux9-DdP3xF|e=nBF>xIT@?X?LP|8~~=f;LOfU(2XpK-VyMy85}S Ib4q9e042|415lxum{?g^84nLnU|=9nec%bhEkIGmk|4ie28U-i z(tw<)o-U3d6?0+(qJ@qaa4a&txTpI6?J(cn!PDhs-I!PoY-LgtN$$IsB{)-O(r$_4 zb55v*v7S48{a(!ji^g3wOZTns2tAtm{(R)FD|!#R*Jvej-8nT)Az;}o<$z_2jz4HU znxz{cwz^KZ6LR|m<|G#b9w&dhwWo2a+ z78VBw2Qe`*pd=3ukD;MqSy|cHvu779SP&Q(*wxkb^yyQe`m)Z~1wa*yB|(0{3=Yq3 zqyafao-U3d6?1wgI0_w5;9wTLvP$F6|Lv`Ex0){*s;4J7CvmK6c`i`@rlV^0^pz=g z%cpvsQel~wQDVDLIl<_~Y0o*`KezblnI6!4@T9bL*F&%4Q)fMW`Q&%jym?!#4|#VV r)vQe3zJ781^3*qx<&t%(&L0by8+4hk9bu6Hd6B`>)z4*}Q$iB}Zn$D9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char5C.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char5C.png deleted file mode 100644 index 81069d6de478f07359c8185839432c0a3eee3435..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^u0YJe!3-p4Og*#`NErwCgt-3y|6fc@%)!CI(9n>F zhX*Lk!os4gtQ;5^*wxi__Uzeh+qRXJl_e)9FIceP>C>k`^;d6lp9ZR9ED7=pW^j0R zBMr#O^mK6yshBhOqBmcI0uM`o-PCyQJO8&aIUQkfosnw%*(^0@l7!8}HD5&2d&As0 zJ>(yWU3fN4Ynzj$cE#=8zk99*-SW{`!qi~$cb~UUZ;oo#jU5f&|DLD{c%k~|4!@4x iCvHKZo&QfIeH1=y!_pPMCEy~^QU*^~KbLh*2~7a6{9CmE diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char5D.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char5D.png deleted file mode 100644 index 8109740f1919a7704546fec8c157d1991bb480b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^=0MEG!3-n=l)u#gDdPa25ZC|z|8Lv2Eif<;C~)@d z*{-gxva&KmLqjn!F%}jU9v&WLWn~8khveks1q&8DefkurzB9s78K|1EB*-tA!Qt7B zG$5zM)5S5QVos^QC)W`J9`Cgk-FKh--=8btrCxIJXheqN(lrvb=QG~rX)Ufv-0P5VHo`-Zq81~M3C6^I$o+YqdP+zwB!mq^|vWm+ym1ob}ou(%JDCv1q{1?{=&Oej6 u%?~)4KKr_0->JB+YkmvQSnj+(nZH+(dE+I0zkfjc89ZJ6T-G@yGywp=(O{bZ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char5E.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char5E.png deleted file mode 100644 index 253bde7c768157cff8adc7f0b73a7518dce966fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^EEYf&~kJ@+>SYJUl#xhK7NGfn{Z7+qP|c`t&JK{rAj8yg+Hjk|4ie28U-i z(tw;^PZ!6KiaD(lZ}S~i;Bnr0Tt)HE|NDKLd>4fZKEEg-!~VSN%RXDHWZzb8y@*>E z{g%G+J+ancf(qNFIl3r}Ms>yP8h!z343YFQZ#Qv`+Av3I9p{ zv$G5;WDh1Wy{^8a($kPue6}`Z%Ib}ma^Lb~F0Yrk`ak4%>{%Wj zp1{CB78Vu<2Z!Y3WMyULva&KmLqnjNwB$!@Ky{2IL4Lsu4$p3+0XbTpE{-7;bCMGr zSnqHz;5o;pWw5IJ{XMp{Ep2UW0eK4yIU>vq3^FSspkXvm=!r#0zz0=r~bZQwsr07uFpRcgcxRQyjX2qaXECAn3$~nf?4*- zr<)!mMd>|yqUrTv%DOm_&qv;_nkc?2FKW>yq4MmwkYbKR=8XA9|Gc(M<3Gu>JR;Yx x>yT!|+a1*!_4B=ggaj2&|8_XRDVVw5?y@2C%Jz<)e?Uhtc)I$ztaD0e0suj6U{C-6 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char66.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char66.png deleted file mode 100644 index 2a9a216ccf11ace8be395e84ef61395671117529..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 291 zcmeAS@N?(olHy`uVBq!ia0vp^B0wz4!3-n|x$R~FDdPa25ZC|z|BH!+0%SuwVfT3yYzlAy8ppU|@1`G7k@rgM$N5y$ct|2cRfpNswPKgTu2M zX+X|APZ!6KiaDVH(LxM@JgckLE%?6wtyXOE=R~7Sp{|Y;pOPSxrM{9P-GQOMe1cNs zEOXN@dYTA567n`}X8Y?bJ;V9lUy~z8q+U3;n@^kA0=Lu+fu=b!p!3v|+dTR&dKH{Ifzer7|zSfcgL*S|g-wU`sO^I7JO lGea+0f8XSy?$SFc7F-;Lk64plZgFAirP+hi5m^ zfSlQ$E{-7;b3y~6nGP#(I5#t0JN`F6`e5nZPt1%$0ZLKDU%F+^nmkh7>?N31l75jX zE%3QyZ%K$Dhi74)%`G{@l=&fXsxcZ5Z`cW(QQup#ovYy6)2vJG%eq_>MN%hn-rM-z zm2vipXf7MIf_+IE0dvond%yTO{dWBPyEo%%W!8Aa*W0Zs`(fp|Qd4fl^INeJD_5`k hv8I31?5`5L7)wi7*5rij@&!7R!PC{xWt~$(696~=a1a0h diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char68.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char68.png deleted file mode 100644 index fa167dcefddc919dde1f5b172ae13c9f98eecfe2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^q98U4GmzY}$08U=83g!*xc>kDpM`}bFfdR|Ow7>G z@a);M3l=Qk;o$+wJ2*HfD=Tl?wymqHD>*s&>C>k`#ZKx{-9S0Uk|4ie28U-i(tw-@ zPZ!6KiaE&-c5^ecOY8_gcz}iN(!tr*0#(e+%>M4~`ZHn=9GI|C=S;Hfgp*kZ4g?%I za6nD&z<~oR4;{an^LB{Ts5ZID8t diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char6A.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char6A.png deleted file mode 100644 index b51fa70062492027e9c84842e046d826a4a1ca31..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 225 zcmeAS@N?(olHy`uVBq!ia0vp@KrG3@3?%Osg&YP_#sNMduK)l47ZVdZd-f~~3rks9 znS+DFwr$&06LqkJlWo4jp9v+^qt}dYZ%SSp_1Nn?4L4Lsu4$p3+ z0XZ?AE{-7;b863@=3-FfU=7GNs*e2sfBWRd3v-X&X)SPY?X-&&UQ!%UWgPl-iY{Z| zyXC<@=UwMnwSd)Y0o$RuvL+4%d+ikdPHuR#&gk#{io;Jd4nE_Wukxtiy~slGg88hn U$|s)g0@}mi>FVdQ&MBb@02{7WjsO4v diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char6B.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char6B.png deleted file mode 100644 index 9e2a4b4b0b4648122d0aa9461290d41769009ed7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv^!3-pyh(4VGq>KZ6LR|m<|9|%ESqBG)z`($= zvNAC-vE<}r78aJLPoFMWuwdJ^ZH9)1%F4<>_3gN`;syRy-Ez;=XSo_@@l`2cEX}< zYrd_y{dN6Y`HOKIc%Cf}JFsAW_y&gR19=->UwD(DcR;9Qnu-y_d?l85-M^VifyOg< My85}Sb4q9e09^@Fi~s-t diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char6C.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char6C.png deleted file mode 100644 index a04acb93cf44af421bc0efdb0efa1bd6100a2cec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^qChOf!3-pu&!ox#DdPa25ZC|z{~H<_o;`auIXRhy zg@uQQr>v~(>C>lTVq#rgT@DToK!wW6$_o}O2n-C|wrv|w{hQwH#z0ZVk|4ie28U-i z(tw;?PZ!6KiaEIxBKa5;Ih^mhc31qreQuGTnnwItAW mPRsr>-~G?alILtV`HZQno!Pc&o&7|h#SEUVelF{r5}E*4=v<@# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char6D.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char6D.png deleted file mode 100644 index 95d518294a8171c5e0fb84c4a5bbf77c879ae279..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^qChOf!3-pu&!ox#DdPa25ZC|z|Cg1Ov9Pe5J$u&B z&`?=f*}=gQ} m)$~JJ?%|zqOj%j^?AfzVpFRbuX)T)f3@E`^666=m;PC858jzFb>EaktF()}8 z;l=?5rWl1Jwi%Jz7(9Hk8HC=fRQNZAZ$bh?hh?QZbI625qjGi-dARRd3Y*5{=(7yR zQhZ;v86IY`QuyYR=9~JUfy1AVIjf!HJj+Z@!Fg5KT##!I#w4w6!Rgfgxjy Vgid;5Mi$UY22WQ%mvv4FO#u61O|1X` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char70.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char70.png deleted file mode 100644 index 81d970478881e12ed16e2a3c7153d1a28cc5c656..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c1!VDyTxh&8IQlbGqA+G=b|1T>mJA3x5n3z~s zSJ%_0Pk|!l|I&5<6)=_r`2{mLJiCzwxf0<(MT{jue!&b5&u*jvIeMNh zjv*Cuk`s0uW?8bg=d#Wzp$PzUbUXV1 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char73.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char73.png deleted file mode 100644 index fdccbf6eb0a95d131b4de94cbc640ca11be13aa0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^qCm{S!VDyz6s~*#qznRlLR|m<|6f*C=HTEUCML$i z!?R$)0u~mQr%#^(<&%?>ySlozZQEvOXc!n6c=qgBpkjq7yK;bXj3q&S!3+-1ZlnP@ zVV*9IAr*6y6A~(_%b1xtbP^ICym|3LlVPK+?RB6`q=~X!i53CqcK1Y_6d|{gE%kVP!ONMYl17q2OKnCMA!ii~_N0fjzFnGH9 KxvXGx-KqeR=+YzR#%C?S=Ao>{o+J# z?OTnB++K5oZclpi%l#`Om*DG--n-U5viWgj$qK1UH`hqkW_^6&_~N1eQR_c;yZ2c5 z3Y=G2*Knk?>*4B{PWclua)*BY`sgyDO!&O;;qG^sBl6?_{#=LDw;`F!eiB87>XDU~=9#jEG;Xz;X06?J&1uQ}6LvgxGb((UY)cew zoQq(cy8Ii{Zp-$}YkOBO3^le_s25$LD9043X=#5c+iU8-jvt47tUoke;QYwN(x}K` RxfbXw22WQ%mvv4FO#r|`YbgK# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char76.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char76.png deleted file mode 100644 index d3f221e911b1ad8b37df3d06dfd55459b784e835..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmV-O0k{5%P)loT78Z7Pc2QAL|Ns9;+&uFD z0004WQchCY;+}!L7PK7iE_aIXN)52yKB<@62-JY&dJesi5XS{V`WCzWAgT`NWnbd&e<6 zwZZiv1P}c~aRy?(nVh%Rfzk@l<|$%+*KDl}M0$_5ZFDBV3MG-Gb`@O_uhD#r#=!S` zX$(4>o*q{0v}B8My-+iTpn-y-PQ`3!JlshY2e0U`$mZgvxDkzLQt2|1izz$ex@RV7 aSMvf=^ae(B0~;s+0000KZ6LR|m<|L@@7pscJcCMFgb z7+6+Twr$%s78VvB9-idn0fo;P7z`6x{JY*IaA0uH84?cq{%HiD{8_x}xkUU!#r}I9&S2 zHv5wBq_BzoF<~n}wuO)v1 zYgatl@lsNH`7wde!zvTArX1eK)OCEL@|v}!dS0tDmFDR1G!@6YeHQLrct2UG;q>N1 z@tk>EQkrMzn@Fx$8R#9g{8669JG0`ebHjxqG>QvCWjYvqwPHKJWSm+wr)Tn9b5nVz XE$pWA?$5jh^bLcjtDnm{r-UW|p|FGY diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char78.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char78.png deleted file mode 100644 index d61f595e371a9693addca57e013bc6e6de0569e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^GC<77!3-q1&-R!BDdPa25ZC|z|0^piCnqO6I5<3g z`ZO>wkcEXsOiYZ2hX<&{(9rPg*|Q54EGR20>+0&-wrv|wy@O^lNRF{2$S;_|;n|He zAg968#WAE}PVR(Gz9R}8E-R;9ZvOxOcIfPq@ED=TGdRyUH>};WJ?cUH&Xru^>kq7UEiS+?Wr#9Yo<`0*VCK;0_8-mx-NNAM>gTe~ HDWM4f1XgSw diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char79.png deleted file mode 100644 index ede2c168fbfa24323781fb391bb04cf501ac7e92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^vOvto!3-py@IU7OQpN#3A+G=b|5sL4Ua(+6a&oeR zgM*==p_rH$4-XGeo`r=aFfj1x)2G|EZ7VA)>+0${d-g0)y_m27P?mwQB*-tA!Qt7B zG$5zW)5S5QVoq*Aq}UM!j?GbKqI>@5o-RqtiTxxR*P_yP;iAvlHeD|C>k`^-0>?kATvQB|(0{3=Yq3 zqyag_o-U3d6>~!S8Tp(QIhmug|?i*RMOs_vxsv up}4<$$3rIHuovww+1O7P{{Ad>oj>FP^9u2KvVK7889ZJ6T-G@yGywoEy<$ZG diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char7C.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char7C.png deleted file mode 100644 index a23de191da147998f5acf163eac6752cb6815908..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^0zfRn!3-of@9}j7QpN#3A+G=b|KGN4TXJ%;gM)*i zp&?MXtE;Q5tnBI2rz|WiXV0D$6B7#z3{+ND=HcO4uwVgD{ha5&zW~)SmIV0)GdMiE zkp|@Cd%8G=RLq$>A&~EY0*AApqvP^B|F=1BPx-O?n8zm_SJv6<7#+j&mkFB0YJ2=^ z-W6h}(A;Ut-o7Euox8}=DB!Z-EKAwo48E?0zctrh9C#PqCFzo&Rd~v!;P&sD^xes8 ox}Cnhf3$7&4&I*aOKe2*Sz}mk?MU@}2eg{O)78&qol`;+06?N$!Tdm zhYZy-_I{k1-Lw4b9QAvGtNJ2RI+R?#{O7s=G*dUo5N14W!#e5i+&woEWCDfYCYTi{Fj@5G3ESZxhc)D^#;&A44$rj JF6*2UngCGIWdQ&H diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char7E.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char7E.png deleted file mode 100644 index 840ddadc7b71a168f837563788484c1d201ac764..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^0zfRr!VDy>TNwR;ltF+`i0l9V|GT=n%F4=;larN| zl>-9<4Gj$)92~^N#I|kQwqU^mph6ZF79Jj+r%#^(6{pUM`U4bVED7=pW^j0RBMr#u z_jGX#shE?TkdW{onSptq^=@&82>o*B47PK!0<&zB^P{4)I*xAQ);hYE@zjjF45<<9 zGnV=?81C^^+whLXu*}+^Adg*g^KVAx=Vl7cmD`hE~aO+$GYZ>o#wS6pX$Id#G>T2;zNI394i#fo+U@olGmUCd; R4WQE)JYD@<);T3K0RZS9Tn_*M diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/207/char7F.png b/sagenb/data/jsmath/fonts/msbm10/plain/207/char7F.png deleted file mode 100644 index 95d92e79c708160ac732c947c6f04be654fb3f0b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 196 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4xHBpZ(Y^aoP90X`wF|NsAAuwVfX4-Zg4OiXOs zwrwmdEP;W6U0q$u%F0ilK21(eHZ(LWD=P!4bmcPB2C8E$3GxeOaCmkj4ajlzba4!+ zn3J54@W8gXiji61OhSTxY6HV|R)Jri*f{RKVOT1vP-562=Iw24$MCF3lDi=@&%2{! mgV>CyTu!4lTU~YyZiZ)bcz*M@DT)IPWbkzLb6Mw<&;$Vcggm+c diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char.data b/sagenb/data/jsmath/fonts/msbm10/plain/249/char.data deleted file mode 100644 index 4a417154e..000000000 --- a/sagenb/data/jsmath/fonts/msbm10/plain/249/char.data +++ /dev/null @@ -1,130 +0,0 @@ - msbm10: [ - [24,36,10], - [24,36,10], - [24,39,11], - [24,39,11], - [24,31,7], - [24,31,7], - [24,31,7], - [24,31,7], - [24,36,10], - [24,36,10], - [24,39,11], - [24,39,11], - [24,30,8], - [24,30,8], - [24,39,11], - [24,39,11], - [25,37,12], - [25,37,12], - [25,37,12], - [25,37,12], - [24,47,15], - [24,47,15], - [24,36,10], - [24,36,10], - [25,38,12], - [25,38,12], - [25,39,13], - [25,39,13], - [25,15,-1], - [25,29,6], - [30,31,7], - [30,31,7], - [24,31,9], - [24,31,9], - [24,41,12], - [24,41,12], - [24,40,13], - [24,40,13], - [24,38,12], - [24,38,12], - [24,30,8], - [24,30,8], - [24,39,11], - [24,39,11], - [19,35,9], - [12,35,9], - [10,16,1], - [15,16,1], - [21,24,0], - [25,24,0], - [21,24,0], - [25,24,0], - [24,39,11], - [24,39,11], - [24,31,7], - [24,31,7], - [33,13,-2], - [33,13,-2], - [33,21,2], - [33,21,2], - [33,21,2], - [33,13,-2], - [25,19,1], - [25,21,1], - [17,36,6], - [24,24,0], - [22,24,0], - [24,25,1], - [24,24,0], - [22,24,0], - [20,24,0], - [26,25,1], - [26,24,0], - [13,24,0], - [17,27,3], - [27,24,0], - [22,24,0], - [32,24,0], - [24,25,1], - [26,25,1], - [21,24,0], - [26,31,7], - [24,24,0], - [19,25,1], - [22,24,0], - [25,25,1], - [25,25,1], - [34,25,1], - [24,24,0], - [24,24,0], - [22,24,0], - [66,9,-20], - [81,9,-20], - [65,8,-21], - [80,8,-23], - [1,1,-1], - [17,24,0], - [20,25,1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [24,25,1], - [18,26,1], - [25,15,-1], - [24,27,1], - [15,28,2], - [22,28,2], - [24,21,2], - [24,21,2], - [22,17,0], - [22,17,0], - [5,16,1], - [12,16,1], - [24,16,1], - [25,9,-4], - [25,16,-1], - [25,22,2], - [25,36,10], - [25,36,10], - [33,16,0], - [34,16,0], - [25,24,3], - [25,16,1], - [19,24,0], - [19,25,1], - [19,25,1], - [16,16,0] - ] diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char00.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char00.png deleted file mode 100644 index 5add640c05448e155269d109de01b92a913363d9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^5e$7#bRG+qTWY!Qt%Lvt3CU5oz#$Rn+6SDkQt_p+V2q4w}& rm$JNBvbhZEzjobc5B+#scMn685&OfogXPPB?q%?F^>bP0l+XkK5qWpf diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char01.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char01.png deleted file mode 100644 index b108bf2fb54e01c25801952015d52dc95b7dc770..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^5)Ol-k|1^S8yktOHJyxwJ3dLF2rUQt-_Z*qXZmy=WW2y9%wW`CHir%L3C8^NOx(WWuB~2}%8VqYb0zf;^&>1v-;A?0cKs#jpiHpFSp}^d zm^j^6U7DD<9h@G~6H_672mf!AgS?DwjIlvnG}t6-Z6mm7R^ouuM+Bu!T~)T}lxWkG e*5dP1()s}~HV0A8aU0+O0000UtP)C;=`a zGNMz?;w7~PV6;FeP{{~9`lzX9`0Z7^ycVFW#HdMGq&*8NIUq4(4n3vgezoo4xzpa{ zE;;=4?!jw1oyW#%y0fOd?dfWVAPApOf4HU@ kUegU$(}eVYu21pR2fVxojJ-9UJ^%m!07*qoM6N<$g65lycmMzZ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char04.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char04.png deleted file mode 100644 index 7c78d746ca973bd2b7f1a01c83d7179d37d5ef45..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmV-00nh%4P)6aOwF)y!%UGuQ%3weD%6 z12w)gEi%Xc_PGHSn5}JqiIWfxw@0B}pQ)6BhE?Y|v`ttf9KZ6LR|m<|1Tycwr$%sWo2bU zL&LLY&n71)FIcc3Ffh=;!GVQ^<>}L>K(%FMWnEoeJUl!=^%ZRaZ-GLLB|(0{3=Yq3 zqyagLJzX3_D&|a`cvGlVfyY_9+kx}b|9b82@8=v|H`gBIl=EPkX!P|`$fBk-`31kY zj@%EA`0|-Q<-l4dY>HkO6|93#qP!ku|noqx7pgTe~DWM4fJ+^jz diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char06.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char06.png deleted file mode 100644 index 2fe6be4013eb88d41aa4caa84cbd04607d1b5bd3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^5KZ6LR|m<|G#b9wgn3o7#bQX zD=UkMiJd)rHZU+SIXT(E!GVQ^<>}L>K(%FMWnEoeJUl!=^{d^UKLZLemIV0)GdMiE zkp|=}@pN$vshBhMlBdvN1s)cMZ>0_Y|C>EfQRsQJ>P1JU3LE#qkkxlq39!!mKS61~ zTpiPY2AO8P1plw^8V)sc9dAy1_ga$qh42r)O~(XJGN`JSmV7gCm{VR5(Lm rJ}2**pRjkQ_2e{0$(Q~LmpJ2c-?N!Vm_NMKZ6LR|m<|8Hn$C?+PRtgO6k z+qSc3&n{T7ATTg6IXT(E!GVQ^<>}L>K(%FMWnEoeJUl!=^#_k%{0$UhED7=pW^j0R zBMr!z?djqeQZZ-kC2yg_3LFdpe-;QD-uu6;_sF(o57w=bnPJYsmEdB(R>$FSmiUSr zKa;sX{hngRV0nvSN3Io1KC{OhABG1U&sTn8TKB=k_upK_4bIFlg=OE^wG>p3pLtSb z9o+L{4eP%nRWB85b{;JkU(7x+&mb>Ues$zC4XG1P*mjhsGThXYl2r-ab?P*Cl*7F{ knFd#%eg4bKkokdWODF59oY(a}KxZ;|y85}Sb4q9e05Iiq-~a#s diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char08.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char08.png deleted file mode 100644 index 08764d0e3c9bd20112ae6a990ef2a2f0f68208ba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 318 zcmV-E0m1%>P)Pb4u3yIs-f7${JgHqgEb-z5S0uItL1Qy*r>wCVK+wK_mFOp{x2H|M zZi%g}IUgHjX(d8NU&=E>64t&-Gu{{Xl`dpob*YRy{@f(+c@p~(%!>M~e5R|lo40aw zp?(gJ{tncpDM*yJR~{b3^(~+uxwYxxWolZKKb>KsSXw`e=gE2dl4w)>2GK|eKGfK) QDgXcg07*qoM6N<$g8vYKH~;_u diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char09.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char09.png deleted file mode 100644 index 4d286ae32094f6551e1251b9b294b5203d5e52bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^5)Ol-k|1x%JuSiEd zy;zx$A@Fv>p~bq+cPga$Tml83^oEBVl;a6|p73WX)0%@$*)uQS*S%bKz2#}Hz8XvT zd=btE4b{A6sfta@r!f0T?r~s?-~a!IWJita-g{OLu0Q;^Kh8XU)rl+b7w)&0(TzXr zdjHZ^7ilBY=qdJh56`)j@z diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char0A.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char0A.png deleted file mode 100644 index 89e72997aea6253e7340a66fefb1b18f9adabc3f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 353 zcmV-n0iOPeP)j zVjOy-fb~XBy1wJ%ju^hLX1~jZCzn9VTtuKEw05)nHAI9d|Sad5&<^CH zHEBNQGmj)5U&(Kn)T%N~SBW&;1tqT6QBwK=YFY>@fKqO@00000NkvXXu0mjfId_qx diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char0B.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char0B.png deleted file mode 100644 index b356ba30297521522c39f67372a0b7ea3e70a366..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 357 zcmV-r0h<1aP)M#|z<789 zG{|Uts8#?j#Q+i|MK~&b*pwse>z1Ef6Oc||*d#T=TMKeAKp?~nno2|YD&53Wrp?Ls z%E8B?@n0u*f6|%z`q-2oiMQ4(itQx&TMl;$758Zb}vhX00000NkvXXu0mjf DQ5ctd diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char0C.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char0C.png deleted file mode 100644 index 74700364008006479215c7be886df8eda84578df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^5WtQpN#3A+G=b{|^id6cZEU;o&JO zD^pfh-nMNU3k!>(q2bxHXS=$(fC?QP92P8CkerL21j}p)S|G5p*oR25nddHd4uk+hNVy)Ix?t+-^-TmXBSv5dh*=7FRBr@8bAGI z>x@q^@ZYT|+VS}1Y~dWQTEpYq{}&v(EBaI1_BiW?xX)&)`#C;TF07uvzRLX154(v) Wtbt82-U>jcF?hQAxvXWtQpN#3A+G=b|95b3NKQ^>VPP>e zG(3CuY*|@ZS63Gg50A34@`42mfC|OL#GXEVx^3IGz`#JD`sKPj8$hO%1o;IsI6S+N z2IO>kx;TbZ%vn0|Hs4_d9%pCIokwE+{m=Kd{%COaqS{&i3Ccp&9UW&BL-sC|bPo$O za!+1(Z|)ppkx_AXv9R=FeZ_K`b?SaE2IC#aCd6$wG^%w?tegK~{?mme zvFDnM|4*_OIDKp3xw3zgUH{3m{aw1Ql>5eV^_&aSxn||fy#GAA*0g4KT(B^!KszUI QEzngAp00i_>zopr0HFVAvH$=8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char0E.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char0E.png deleted file mode 100644 index 37ed6c8bf8f4bd6b064ba8164074d8899e09cb6e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 341 zcmV-b0jmCqP)SA2j!p_-QO1u65aV7@k(UX^R00000NkvXXu0mjfIJJ-Q diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char0F.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char0F.png deleted file mode 100644 index 63efab9f83006ff34c89dde38c3e31ed62877626..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 346 zcmV-g0j2(lP)t0@JuzObar8J2j0~Y%dRm$)daL`Yoz9tz`91mZm->8=^7$N9OWtm5%7&%jAOvd@jUjJQDu`%)J(s;u;z@e13=$L3azYp4SF$+i zBwRPprWK-V!%V%J=9{vq3UC+FHWgYgFxgc6q5Co0)cD73(vX-%%fQT0SWzbk08kD{ s@yt5jCdFb?W3{O<-=+?}*tGjiKi#PZBWGo{p#T5?07*qoM6N<$f^V^q)c^nh diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char10.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char10.png deleted file mode 100644 index ff6a8964244171103f65da9bd6565a389d79def8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 356 zcmV-q0h|7bP)P001Qj0{{R3fRD0=0000pP)t-s|NsAr zii#E%77Ppw<>lpLV`C#DBQY^CwzjsQpr8N%0L{(KQBhF@1O#?=c0fQt|NsBwtbCpT z0004WQchCDCPdQowRcgC*x;b(n3gZZd-Eh zap$-jL_;+gVS^|z#uUzbq9bi*cSc-6DyIZ+r#F&Q@_{kR%ePv|`AG#iwxiq8Js@o_ zjADT0jEnFV)p)y*R{34&rPgxvPYQN&u5V%>vyTLGwskdW{e;TxW5u`G&1(YM#!t)6 z%Y`!FG{{5;%9MRE9P~d4!ux2vc8&Z@zT!2dLNPye(g^&1ZY=tPc`Thv7(#08xZ2Qk zylE<;CxmeCFq`G;l@@beY$(`Y)W?!*RWrsz7T^H}YX<~|@NKyO0000P001Qj0{{R3fRD0=0000pP)t-s|NsAX zc6QCp&0}L@wzjqw78XE2K%k(YBO@aO1O!o0Q86(wii(N=000aO4CUqJ|NsAa)~|yA z0004WQchCiK5Ds;dMhD?F#LBG>Ee=alew{S6 zey?Jldl}a}M`|Y?JG2WCo!@pqP001Qj0{{R3fRD0=0000pP)t-s|NsA> zprAlNKv7Xq&CSg*F)?FfW98-LBO@aO1O&FWwg3PC3=9l*c6JsP7K)0B|Ns9QnMW=F z0004WQchCF z-FR;%!xHd1d1_ws23XQwvbT50G`Kt0GO?$-Nk{0LM#3(p`aPoUXHf7z^)vwVHD-(( zoy9dyTxYZDg~vzqj=3)l=$4-`V@)k~hc9@y2o`%^w;FEE$-?^JxvyxgPaz@^K1S^| zIk(Ptx^(_LJj1g8l1l!@*|2+BugPx-cJW`~1O5Oc><5*EYwJV+0000P001Qj0{{R3fRD0=0000pP)t-s|Ns9M z78Z(%ilCsNBO@cWwze@bF?M!#&CSgO1O#JaV?aPa0000{QBe#G4CUqJ|NsA1XvF3K z0004WQchCUGMr<<7ai?}5T zu~di9)0Bp}23WvU0RWmS7@00000NkvXXu0mjf$L*5$ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char14.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char14.png deleted file mode 100644 index fa4edfd30e20c6d928a9e4ad6c719f6812c056eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 365 zcmV-z0h0cSP)c6JsP79%4g<>lpyii!XL0L{(K|NsBr0-=)t z0004WQchC5%+lXPrV6C=d{mMa6IzxM7S zE7MG>DhT(L>P(72{4_h0YNvcAaN?_FeM-7!8j;4?Zpk#7a42aZy_HIDoA_Nj;OMwd zWKXX)N-u_9T1V)@c-Fb$_YwR3(yu74Bq|rV|BzONl~h4=QBxa=$n8;@;s$4A5+hTB zu}6%QwM&Xl%H#9uM5O=8U($c1OCaOrCYLd*Aw@JpzZ)9{Y;qVFNY+)+k00000 LNkvXXu0mjflpyii!XL0L{(K|Ns9m*I;-6 z0004WQchCM}8O-Mm^3SD{<@+;Gx;dyep&>YC>nVRWRVQsn+0m_oU zB&T+0!5(gxLUO%Ck364hN8=1w;nZnTu1VPvjJ&-8h;oiTA*`hL-U*DL!)UP~Omsba zk2KMJpyN~jb}DxT(&@tN^uWtZXI?0!4w%`gKtUWzr~?sPAB3-Fj9+A;sPh4fJ<^=m zc2Kfk;BmZoBI+;g1^dhCfOs$eGP%W~E}fPuzjj)z{HFZ656T7!*`(~iFaQ7m07*qo IM6N<$f{KNm)Bpeg diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char16.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char16.png deleted file mode 100644 index 2e03423132d2305c6e9df522f60a8caeab5bd5fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmeAS@N?(olHy`uVBq!ia0vp^5;;%Y7!t>-|5| zbBr-z&H~$|A(e;!G3QyxPrj+=y`$=>Rp&bK|BPE_bEx;Ok-HCcID@CFpUXO@geCwA CDtv_i diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char18.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char18.png deleted file mode 100644 index e6673094b66e16c4ed57e3b6e90c51737f29039e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 388 zcmV-~0ek+5P)P001Tk0{{R31{=UB0000pP)t-s|NsBZ z&CM|}F%}jUQBhHfii+js<)EOT3=9k-BO?F+0JgTaV`F0k1O#?=c0fQt|Ns9sd%rdS z0004WQchC2vbo+1iAlhXRTYi*TR=I0!g4DyoQbU z`w&zdpmTSSMh+lco%a0N1x5Km413AIZ1}rq06?TXgRI=&W;08vEes^S_UI!iH&06i z&JGj?n+KIA?{6gakm%Vnr{I#1;vuhr9w7g;MuH^kF>V9;A{U8Q9Cw+|YI1y_venq< z#I$}>0vs-wZsTRnXQ!O0`qPVTmh6ZH)+QidOfu`$a#p*f%%>v}*kg9~v{)KJj(FR% zx|;W0oNg&gPt=1@9K?D#Ovf=1?k;n0wlrIM_WU9XCgxOPpXuYKXAvvg!jp<@E$6;e igO>mHRJ@<*Im-_hDhX2CzbKIa0000P001Tk0{{R31{=UB0000pP)t-s|Ns9$ zKtLlSBT-RNprD{*V`H|qwgdzO78VxG&CPapb}=zAii(N=000aO4CUqJ|Ns9m2Hh?I z0004WQchC?Xra+2o%3i5qST%y{4Y(oMPtkqX`JuUC247 zqVC<4yOD81R;F<^i;9)0DA@v0n5P001Wl0{{R3%|{cA0000pP)t-s|NsAE zV`H|qwm?8Y3=9nA<>ezIBcPz5F)=X!000C81W{2@&CShrc6JsP7K)0B|NsAo)|tfs z0004WQchC>@J*{f) zl9^ID{V@<{f4F@`YLC(eh?3K$5?iH>WeQ3gmxw??Z%h)LO2w!WZXxQijtmuK z!#W#K*o>xDS76vhwb`^QeM3_P%`N6Y85hGP+q7Gx(EkZf3TY|;ye5r=f;244o9v9( z{_#u@i<8}Pth8v3vjSc#uu=!}nMVfy%`B~p>b(fxn|j(v0`eXym0yq_Qxmpx8JQ1$ zHei!e;9VZaaJQN_+M9X#Wao>VG;M{kKLKZ|ld`a=!6<(b)Ay`4K|+xmbpS%pyRS)0XA^I6i1;2{^L%1UCQx002ovPDHLkV1mE9s5}4w diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char1B.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char1B.png deleted file mode 100644 index 0a9b09aaa6d5e629fd81bef14b60df766b065908..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 391 zcmV;20eJq2P)P001Wl0{{R3%|{cA0000pP)t-s|NsAX zc6PS5wlOg=KtMni78Z(%ilCsNBO@aK000C81Y=`k&CShGQBe#G4CUqJ|Ns9n5wtM? z0004WQchCjNBLx3LjWc2%5cdroBX9h5`LNkH)QMu+ zIr5#tMzBFnnn4@1>lUVfW%+ZYY(=6KsraengbY)2ptazIDSaV?Ayuzv zC^=kiqZ-MOClq?%_xJDlLSQ-o-L5%KZ6LR|m<|G!|t0v;Y72L}f+ zF)^#U`$y#Wd_mIV0)GdMiE zkp|>+c)B=-RLm(2h!$d2_qTCvx!ia6&kqle1_8b^h5t13zWjG_{#)mj z+x#``;+K@dyT@W;j_2O;W)+ulUa{x)4IlO*@jMoR&fD3yme1r-@#bcYb~-D2#nk=b z#0gt3$g;7C`}-{F5ezJ~&fS{%D1-Te$x*4d>70`;9p0w)k$G~T={|P0012b0{{R3Xr?zu0000pP)t-s|Ns9M z78XE2Km-H?V`F1cQBk0vpmuh4F)=X=3=AV9BZ`WO0002Z&CTWI<+irA|NsAr@-Ex} z0004WQchCkh*p2!#uH!yfGWzwOk{UQ(AV*}fkHLGVCa zmI+&#MJtB&LniC#uPLWES_FjJF!X9g$L|@<)wp&j0uC0uK-#w-+&mAxFR6L%U#9rvJ2v=)$UpN2&002ov JPDHLkV1lp0f%E_X diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char1E.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char1E.png deleted file mode 100644 index e871c39b110f8573cf579b222b3dc300e3dad0df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^azHH4!3-piZ|XG#QpN#3A+G=b|L5W1IeYeOa&mH6 zSy@+CmxF`Df&~i<4Gn=xwr$&{tgOt!!XhRn_Vnq~z`#JD`ghlAp9AF>OM?7@862M7 zNCR@hJY5_^D&{P`e3F+zQGnSoFG6C*pUro9ZVCN}jxXmhuwQb!W4iC9{t}M2*Kf6i z1&BvEY`(w~)nb()ddp$=1xBmZb=kh#;zjgk>om>#v1rDrZ7fnoulU*Bm`!vI3blbY OFnGH9xvXm3k(eG>gsZE za9FTlfuW(Hva&Kze%rQfJUl#4pFU+_VG$D(JA3wQa&j_IeVx<61fVoyNswPKgTu2M zX+TbZr;B4q#hj&=w=*&*@Ema{GTHEdTh0RgHQ%yY%b81gYV~iwIsN=t-CGUyX?E`A zRnF@#aaT>7cVY3D_J2#zopr03b+H+5i9m diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char20.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char20.png deleted file mode 100644 index 884fe9971554ae20c2c0c6de0e0834c8b803598f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^5KZ6LR|m<|Ifq2vu)e9va+(X zXU}$Zbtx+=i;0P`u&@A?1O^5^efreU(9prbAvrmD!GZ-q^(JN^_CPttk|4ie28U-i z(tw;Lo-U3d6?3LeauhqPz~SQAbE2c|_x){Wy@i9hyZ=4y;ZJOMaqQbYyIka!ygQ@kwv(^hwTAv^B-$dk@w8}w|E2;+DR_MNpzrWp` z&$TUhe^ufY|2>tfb~Eou-`tbLp3FTf!eEBlh183aSK5lzGn#U!vo^1LF*)hECTGR2 t)n9km9=jyhbN*4=AJeEQd!9vBGVV!WTgc_k@e1f(22WQ%mvv4FO#qfKdsF}b diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char21.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char21.png deleted file mode 100644 index 99daa10b7aacd5b9f737a53a662ab57e39581d2d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 291 zcmeAS@N?(olHy`uVBq!ia0vp^5KZ6LR|m<|DT+k%)-J_R#tZQ z?AZki7Hr$L4JgUO!y_gprmU>|^y$;CuCBnqKtn@A2L}hBdOxk8+dvhJB|(0{3=Yq3 zqyaheJY5_^D&|a`bdv9|0f)=R%{;T;{{MeF z3qM6YiH%Nto>OFP1I;QHX)M>xUXHb(^jj*QB;z#!h46KsTepedxu&Nb%O|r3@$8+2&_Bdfo@Rl)=;0&t;ucLK6Vi{B=eE diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char22.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char22.png deleted file mode 100644 index cd47241bba0cf16a45826e48c13e1d1253b99f66..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358 zcmV-s0h#`ZP)^mk0000pP)t-s|Ns9Z zBO|u9wsv-QF)=aC&CQC6iWU|Y3=9lWQBed01VBJQV`F2Wpr8N%0OjT7|NsAGIhV}< z0004WQchCTaLK^%GJ&Kw|X@yKGe_-|>jSf{P zyuuV!z9Xzyh0bMBO}#2ewhIB5?(N7}&r`eGqd@Iw44Jb0?IOx-5ZUb{@u!S%D|Es~ zfHJqJKpcnPCdy49D6-zgr7v{;wVBh>$j;x*E&j}n6ny~GMQp1eAkFm>QSAv84^Ll; zoqsUbd!oK`&NcWRqHoOY#wkU;c!vFvP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char23.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char23.png deleted file mode 100644 index d8f3fd126a03b00b0f77824a50cd36d65ca09c54..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 347 zcmeAS@N?(olHy`uVBq!ia0vp^56zL zDG>+4cQ@^Q<@YP1^vAAEH}5z%F}m*fkSkgBw>&IDZExdAH~HoN(~Hk={^)#SY7s6G r)#IzURA$QCE3CPHYvWdHIsayqQ|0kDmM;1T^dW<%tDnm{r-UW|t?rK@ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char24.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char24.png deleted file mode 100644 index 7ecca053040cd7646c7aab787578dab98bf5e3e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 306 zcmV-20nPr2P)dl0000pP)t-s|NsBC zwzkd9%@!6Gc6N4SV`Bsa1Plxe0000$KtQ0Npd%wAF)=YwQBjJDisj|y|Ns9JkKu^` z0004WQchC zqKlJ8$5RW>7u4iC#>l$Z`1U2Yso>~tCJf7c*ddm|=`Mq4$ zAaM(VmMEydd2!Iov^pF{?PD?()lSS-5*`N)c0q1I-+EmLF)Xdl0000pP)t-s|NsAE zV`EWKQMR_W3=9m4ii+jsqZu{hj&#|M9zTKFvRQxDj9n0000pP)t-s|Ns9Z zBO|u9wlOg=c6N5n&CQC6iWU|Y3=9ka000C81W{2@<>lo-KtN+-W1yg*|NsA!6A)?u z0004WQchCR-*!E}2(KjA@i{wLHt)Mj^3&R;7hld53=R|HVK$52m@X>HdxsOx)Clv> aG57!gmKZ6LR|m<|DT+k%)`TT_UzdO z3l>C>*RuE4-R2L}hB`pZ9VPXtOcmIV0)GdMiE zkp|>!^>lFzshCqb`K?%s0*A}VfIx%$|8uwJo;Kw#t~a{$K~ymCf3eBp#!Oie!Lv^i z*LszUE>hu|q9dr`E1?n9cwiH=tB}AU#+I%sO@+e&duKPaY>LP!kB@qzdx!t=s{@~6 zS=&DyG5&wy&`S1;&#l#j7oO+d(!DQ=FZ)8S^Wt?0mvF|%MX$FnZxA7wxfFnGH9 KxvXWtQpN#3A+G=b|L5W1*|u$4Sy|cH zvuC@yx|Efb#l*x|SXh8c0s{k|K7DFvXz1YJker;nV8H^QdK0q{dypw5L4Lsu4$p3+ z0Xb7VT^vIy=1iS*Qp`z_$N6&uJ8$s+|M{hg9k=xMoL;h=ndQa{nOeh=m1`#jeR>vm zRmt?>^b_}ZBu{0XY)Faj-*U@d^X|2S8LvAZ`Y#U5WquUXsMt4g&(?swA2l9X&b(R^ zmoTaF-Y&~iNn-nc?plyLXCm9nP5E3!Gh>-fuYBz%9CWtQpN#3A+G=b|4&X%W?^9|D=RyD z_UwWM3$|_B29)IC;Sm!PQ&v`f`t)g6S65(QprN6mgM$N5y`NUlZICG?L4Lsu4$p3+ z0XY*qT^vIy=G0CKZ<7^(t0 z%+K6VboZXatz4*OQy6k-l5t^xkaJbimK-s=q`Lvhj~#*zcygz5e{C%Ithc-PZpBQV z*!L1~9`*Sr#XiRWyKH)K@@>&Q)6GXVW&NpF1y~EKE-Be7++7FWb!r WZ27;GCo%%v#^CAd=d#Wzp$Pyhd~C!3 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char2A.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char2A.png deleted file mode 100644 index 9a6065fa608ae1e28ed48894157d782ad87ebc63..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 348 zcmV-i0i*tjP))DlQBhGbF)bHmTPf*x^*?0~Z)%t(xY8sTD-W)>_qF=Df63fXLmeG0w3P@onVTJoi^$y#ix zmG7Mw8?;|a53|_R8JN7-G@uBC%MUOE5;&L)Rcy)we9XVMsX?NbZpziLFt1KhW-I2y$CzFEOpBO0000)DlBO@bGQBf8a7BMj~prD{YKtK!(40d*Qii(N=008CX<+irA|NsAI-TvVK z0004WQchCSsEwWyY&aerfBDSx5+JcA-RD$r}{_6|W{D)zlbN%1 z)c&U>!qOCT?8;YzkaG$KBF;eKHRx*7n!qjX?~RI}k>*X^L^wav tbIM!D506b7WeKJewmo`SA|8&~OJ7sV2pLm_6kPxS002ovPDHLkV1n2^mIVL+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char2C.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char2C.png deleted file mode 100644 index c0ed1ed49d30fd2b5e0bcf7dfc7e17ddfed653ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^!a%Id!VDx^Sad)FiUB?$uK)l4cW`hhD=PyEu&}Ts zCnxjp@B{`1c6D`~J$n`?du1-uDxe%=NswPKgTu2MX+Tbnr;B4q#hm1XgaGE8f|V6f80MDo37c0YlHs zEUxW0EEtZZn6z4}OT04*6Sgq6kU5rO+G-tZ$#5=bQIy4jnHN5^wpuZK6O$`wm~;3B P&|U^lS3j3^P6!VDyX7Jf4aQd$8%A+G=b{|^idG&D3+R#slH zV1byJ7z+!_wr$%S930M`JquLz^y$;GvNE8uV4+SUAfK@$$S;_|;n|HeAji?u#WAE} zPI5xRgPR8!m}1yHmRU$22#I9qu-YV{Be9fWnOM`*63zyXWuXbYVQ~ss*;WzNw^kD|LobbVq#*3hK9<@ z$_@?=3l=PR`t&JKzN@Q?g@t9?wr$DD$v|a)S6y@jiZYf2`2{mLJiCzwx YUv7MxR&1ZRA7}=Hr>mdKI;Vst0I!le-v9sr diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char2F.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char2F.png deleted file mode 100644 index bcd74deed4864a279e1877ef953c3dee020691f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^{6H+g!3-q-bzC(AQpN#3A+G=b|L^MRQdU+rG&Bqh z3}j(pDJv`6wrv{^56{`NXT`+Cl9Q7cELZ?k{`Bcn2L}hB`sTHAAUG_O7*e?#m2|83sOIOF#8oSv?>MTFr)W4;*seCGVkzS=jV zUqn?LtuwCr(Qc6agu}aQ&XLSHQN}a3?Y{SV<9U0hYx@@+;GVyUmA&KQMq{Aq44$rj JF6*2UngEpDQiA{h diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char30.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char30.png deleted file mode 100644 index fc83a224046cbd44571e06bd0188ac8402000365..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 260 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!3-po!riKXlyQJhi0l9V|GT=nl9Q7i92}ID zmBqxwczAdW4GmdXSk9h3yI{crpu)1UvTfV8J$?E#Ffb6Pe#)m=KY^l*B|(0{3=Yq3 zqyahgo-U3d6?1Ygc=8=q5OBH3bY{w-vw!ombC$3K|Lhj4a!O)wySt%mTeXzE_O(f& zx~?mZC9PuDb~#+Wcg6DN6^q+noMgBd#n%z#Rgw8^@reiN#lojM&e#0fYq7^Zc~yGz zisbec>GujX7At5?UU}^AkKJeNZ`}-$p1tx|;l&{HJq$k#S(_L$-HrpD!r7EDH;Zn3$Nd zvT|2fm!YAdgM$MP4^MJ(GEmim1q;f`%C>FW_Vnq~z`#JDdT)~z>wyxCB|(0{3=Yq3 zqyafSo-U3d6?1Ygc?um?;9)u7cta&JOpZcXLOub&*~ z(e>>ycyr;1$A?uC8+T?1$v0?iX;2gAUs3eY^m3ik^vUo3@<**bP0l+XkKJ)~=H diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char32.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char32.png deleted file mode 100644 index e5ad807c6500e3d895cb409ba823b1d9c624a183..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!3-po!riKXlyQJhi0l9V|GT=nl9Q7i92}ID zmBqxwczAdW4GmdXSk9h3yI{crpu)1UvTfV8J$?E#Ffb6Pe#)m=KY^l*B|(0{3=Yq3 zqyah2o-U3d6?1Yg+!i`2z{7e$q|kEqkN^AM9?Y2dj@>Z3hh?iXK8@K{;gTe~DWM4ff>Uo# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char33.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char33.png deleted file mode 100644 index 1399345dbb9fa9c6b2535600d0e4f0991565964d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^l0YoM!3-oVvX^}UQpN#3A+G=b|5sL4K6~~o3k!>w zn3$oVp@V}14-ZdraxzfKf&~k@y1L5B%C>FW_Vnq~z`#JD`idz>BY<*@B|(0{3=Yq3 zqyafIJY5_^D(2)~3gJ(XDBJwp;8R z*#`pZn$BD@vP&1p@9C~g5bt$xpP3+f*KD7u zE2Ud@mIm8$!LMCO*#^r?0(Ewtv0eFn2lq40o@xab^^ZR;2HMye*IJ(wTCo5B0ymz( f>Zuyse;5z{;8^nQ;qE6uH!^s-`njxgN@xNAdrNGE diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char34.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char34.png deleted file mode 100644 index 819962f61449ffbec2ea2b0b92f842105a326b3a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 360 zcmV-u0hj)XP)RK4vIGw5sGy z@RX!|JfiFYhkZQbBU3`J?c)dn_wIo3M+Nc!njEaTPg;gMiWI|MHLZSu`eevKq}pKw zwNDRdwzPnXbnPQ=0Fi-!%LY_Cl7&+@S|UGJ;|Vz@`)#HG0000R1{tVwZG zmhiprFQh%7uPA7#F%=olAoTS~ZQ&<;T?R*;V! zz-|YGMyR3|V3kNk?E-3*Y&q2czB-DB;YUgNJR0_I|L1n>`&Y-5SH~33OBG4xFw5Um yHQnn&b{ZFU<$r-3R`o4F|CR0000prCekb`};E|Ns984X(Zb z0004WQchCyu8^f1Hmjw+F&7s*y zmN<}XpwZ4J95&d4ofn*?lT5&)lvivMV81GqCy>F2iF5=DV|QoE9gvcKtP)?<|R@v-|;|$_Dqyz~$%w0000< KMNUMnLSTa0)r1fL diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char37.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char37.png deleted file mode 100644 index 441d9d731da820666f4fadb5a939e2e5ddc6b18e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 314 zcmV-A0mc4_P)prCekb`};E|NsBP=D#ig z0004WQchCTcku(((*PN;FM<`IMCWmY`{qKFfUk@)qjb;$_~C@? z5OzRh8l=PkESJ!X0$8q`NY@IwT*xdogIBKNu^FJt?QcAC+8!)d8`Abw2Cktg9&C3` zrB4590nvIO5v}0vqhLEUy+P63mpbJ3$mXWV=41?l4*nfW^4qce0h2WcZ)bEUO8@`> M07*qoM6N<$g2Qxy_W%F@ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char38.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char38.png deleted file mode 100644 index e1c11bc97f7aebd382526704531dc921a91c4fbd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^iXb)%GmyNxL`o1y=?3_Oxc>kD-_X#|!NK9_)2Cu$ zVmv%N$;ruQ&z=R!2L=YRu&^jAD{tGjZNY*CK$WaLZ-L?rj3q&S!3+-1ZlnP@v7RoD zAr*6y6A}_0*dAbDs+N4vz^!xWW}m=Gw#n*35196xJ{ZE`baE|s#;l%O=Nb<1N*a_( zXlz=<%zEIe%o|p1%VL>4zDd3TyC>u@HQiisu6f5!B}P}47wfw@%Q~loCIFvROaTA@ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char39.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char39.png deleted file mode 100644 index 6d9c20b80380c2cacbc62344bb19684a009dd415..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^iXb)%GmyNxL`o1yX$AO%xc>kD|LN1GhK7bLEG%MT zV#&$LJUl#S&z=R!2L=Xi+qP}Nf(6RT%0OkDpK2}vMHx$i{DK)Ap4~_Ta$-DP978JR zBqua9U*?ICmYBepZp~cI)ODhZfsHL(WTJ?IUR=Yf&c?>uTu0VKv9eijaY#ABvcQ9# zE2DXJKZ6LR|m<|KHWswQbwBva&KU zF|okFKo%C31q&7=Cnp1y7#bQXD=RxVIGjCumWPMu>C>k`^){MQT!C_oB|(0{3=Yq3 zqyafIJY5_^D&|a`bX%xdkf$a1(S}za{^kGncNbhDes{I3-9%BB`juCWa_UyQteWh4 zrJ=zf$K~?74|%_4T~)hwmC=>?!6Sj+58qflU1}g(|J}Pu`0FNnW0egPxzn$7t!0?F zchNl4tX<7HwGuOC-`K>UB&wgX&)u!ddz#9n`&Z@$vR-=r=&t{w^WT>Cro8%WAJM55 ht?AppEAaUt=3EQb-|PkL8-Z?Q@O1TaS?83{1ONabcHRI0 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char3B.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char3B.png deleted file mode 100644 index 870173b218cb0330c81ea890de967aeaab200a77..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 286 zcmV+(0pb3MP)1Ox<8QBjJDip|Z#Zc(Ah2z!f{+k5TX_J zr?Q}cvOIR3LX`NS;f+`0$@d*Gw3oyE9QYnYZ1M042kwz!)uy0;$+udp#0cJqadvzb z@XAx0RRadn-0`()I9ypcLYxSO4%s@fUdBEkV=wbQ#$4#sd8Zeg>fZlL#c`zttA`E` k^|Zf_b6Cyk?8tb#pizy& z(7F~_p$t#CYHVE!%wzZh<$F*ZDNv1pY4?icD2SL}6;$;8;002ov JPDHLkV1m9&fj$5L diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char3D.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char3D.png deleted file mode 100644 index 41b5bae96f53118662d80a0c45460adf435af59b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^iXb)%GmyNxL`o1y=?3_Oxc>kD-_X#|!NK9_)2Cu$ zV#&$LJUl#S&z=R!2L=YRu&^jAD{tGjZNY*CK$ZXAOx6WTFqQ=Q1v5B2yO9RuRC&5M zhE&W+PDn_2V0(apsamo^&%l8}Jfdau+(vUoEg@bte-;CS9ZoD2)0jY z6{p5dwj(B4w#-cCDGn(|SQeb<;!C-}7GAtTe2r0((H)ryz7ECLl-_tT8ZRs}JkxfI rrJVo7Sy2IB19RrTrGjS|eseR(IT&5Oum5ll&=m}xu6{1-oD!M?A+G=b|9|@QX<1oWS6A19 z1q*n1c$Afufs)&{ZF6vNNKQ^>VPO#y6FYnMEKp^^h8x8|ImVJ8zhDN3XE)M-oJ>y_ z$B>FS$q5XM_bziwENIx=*tmR8Q)43AjN@Sk4@AW=EjpmEw{hnmh6yPRp7$EO4I5e$ zgAzPjL_C<(N*4pc)@2+X-P000#T0{{R3g!Q#50000pP)t-s|NsBC zwzhV5cA%i3V`F16F);uD0OjT7ii(OrKtL8276b$Y3=9k-BO_5!QO(WG|NsBs_P+lB z0004WQchClHYUx2o*_To&tIWc>>lQ z+&KBt5Feiv$#U3v(~`Xv?;l~b7xp+(eJD4(V$~ArJJR+h-n4o^lzq_n(B3b4cXw;0 zFWTT^_&zV->~_^S4X2_Xftz0^ts=YWemA{ni6M#TuKcmv&Pf>aXS9TW=LZ?B1~cYZ R)p!5^002ovPDHLkV1fcNiL?L! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char40.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char40.png deleted file mode 100644 index 1e65d8186a6492e93d4ecf39ba814638bb70e4dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 290 zcmeAS@N?(olHy`uVBq!ia0vp^fC>mm z%F4;f$t)}^4h|06wrwjbD+8)BG&B?w6XW6G2@DK8d-g0){e*Q-<^UxaOM?7@862M7 zNCR@_db&7@zQr z74>J8$33q7R^HxX!sM%YnCI<>v`t5o)nER#yY#zu$@k5lzHC-1Pzg`E_{nR^w5HX% z3p+FTkA32ky?N2{@xPv)-_b&Wo+)ppwH#RF6tr>TkDV_!RlaZjrS2|VV>JKY`&#o4 m^-5kJzD3Xc8`fp{jNMX(%_T8v{w$zF89ZJ6T-G@yGywoJ#CgR4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char41.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char41.png deleted file mode 100644 index 72741011ed0d7d797849b844f9b2095e3041524d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM3?#3wJbMaA83*`;xc>kD|Lobb3l=Qk;o&JO zD@#sJ4h#%@`t+%xp&<(ki-UuMn3xz)?Y3>(y1KfQm6d_&yDoqI0Tf~^3GxeOaCmkj z4anKy>EaktF()^$Tj;O?$7ZdsqF?_1FVk4P>*}4t>q0C-J&_q#We#ejD~W%Y=wW&+ zc%NFP7@y1JPeuDbGfJ$FQ&7<_{?lDBan6Nz_W7xy5t$kPJ2aN=%>2W!>3nPU5kC8W z(bsMS9J|nEmm^;3IQ46;Z0?c2Ti=V-|J5^6)cmz#%ekb$HH&7KuHWopQ@cAdah~g+ z)t`eW{j}uXY0|5aGR?z1@0|2itx3{5L~~EKoH-*W;{aoiK#wBOj=Ks=HN&@F)=X!000C81W{2@<>lqJwzi<4pv}$A|NsB*fmU$< z0004WQchC8hwB%h|yoN zhOerURQ27Z^@)@M40hmTK9V0UoeAiAl_rn16*mqb)fFQi^BOjsGLYln?7C;url(`Y zSutW+4Q7f^@Ww3ZYV)CATt#M}s2*FFL+kAF+?;g!>MMpL2^;n{jT;W953K#m9(%U- zd+NW~X8q$N+|K+BX_eVO#Cj}donn?F6O(yd_>zWtL3{wo)(GK`pIWm30000X0{{R39Q7V=0000pP)t-s|NsBZ z&CO9!Q5F^!V`F2Wpr8N%06;)Mwzjq-BO{86iUb4%3=9l0F)?;_cID;e|Ns9OWVPJ@ z0004WQchC{bXj@djY`Vvi?Th*IZ zk*Z}Ja(Z9}kXvjS!Y!aIydX2$+$Mt1O_-ufxZR9Y%hE^Zt9yz?Ceg*3Nc$t)YURl~ zW5ewywONV{4b8MS(qgA*>SrFGnw)mBamM Y9|3O$C4O*<@&Et;07*qoM6N<$f@HghY5)KL diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char44.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char44.png deleted file mode 100644 index 7dc5673d66eb480ff09015971ebf2b1f0ad63140..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 306 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM3?#3wJbMaA83*`;xc>kD-@(B_OiXOswrz%n zhJk^B$;rt)JUnG(Wy;FRKvgU(EL~k)XV0EpuwcQ{r%!?E>mG+E10@(sg8YIR9G=}s z19H}Sx;TbZ%qg98Q;bEB$K|w;(#1dj@ArK%vvq!c@ZlYu5Xb!f8y|XCDJ{xc?fQ`Y zH0O;aOmlVA?A@+cifz_94RZ^= z{9+Y3zlk&A|D?1D_YP!he>dCnX3{sw7ZYaw`O{|`S;>~^;a#cts9^1^nEwizlV(;j z6n~h|+q!34aa1tZ!cOkSzd!iinQS|yT=eAhd;WJu9Q;coKKlV3&fw|l=d#Wzp$P!V CJb=Lf diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char45.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char45.png deleted file mode 100644 index 65788a92ffd8f14e856a094a3807b7fd49706bc9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 282 zcmV+#0pV!Z1Ox gV*=UqyyBwb1M~I>nit4wn*aa+07*qoM6N<$f>arLnE(I) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char46.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char46.png deleted file mode 100644 index 42d2464f572dea07394ec48edd9d400cbf03f7b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^B0wy`!3-qNPSte*QpN#3A+G=b{}&SzOHNMi>gqBy zG<0xq*tTt3U|^uKvN8`34^R~g3rks9+1aya7c5xt^yyQe`g4DOn*k*lOM?7@862M7 zNCR@}JY5_^D(1{R=Ph(tfrmN3w1L@Z{_p$S8qHD_;zGImpXuf-zUt1kX;R2lyBmvr zb_n@9+^AaHsK{?)`@n6t(klBi=8G;k{NR-?yx#dZX0mAid46uQ+C_UVwMhxr-ZXSk zOMk;-B5?6gR-)oOj*SBKi=sDP5pj{(d`5ew@$u{Tgx0gKclg6z2y_X9r>mdKI;Vst E0Q0k9l>h($ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char47.png deleted file mode 100644 index 84fec13b09b2ef347ddb1f52697741430c1420cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmV-e0jK_nP)X0{{R37y!;v0000pP)t-s|NsBZ z&CO$DV^L92prD{5BO?F+06;)Mwzjqw78Z(%iUb4%3=9l0F)?;_cID;e|NsBUyrHB3 z0004WQchC6=*l_vL$n39C$34r=$XPKyp0ra)B5@PlW zv=NU660d*f9fAHgAG)D39P}8nozP>DazYV(+rGb}{#Qyz^xMTxt%0&G`Hk%z79=e$ zQELDf`Brfzxq9xH)hXx&@`|Bi0000|EM5QUgV{?h4^}g-`5}MIr`}n#Z}sf?vHxak`CpB@^7B-$ t-DHvDnwDE81TtAa+Be}w|E;6;jLP<06=~u2mw>i2c)I$ztaD0e0swD3VmJT* diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char49.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char49.png deleted file mode 100644 index b0bc6ea899aaeff4c0dc783a11e8e69d4eeccf37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 175 zcmeAS@N?(olHy`uVBq!ia0vp@KrF$+3?wh#%Ss1QS^+*GuK)l4Pfku26BFa%;W>Nu ztb>Dtva)hnSs75Cg@t9?wrx+JK3%Y20Z`d?uRZ60qKqX$e!&b5&u*jvImVtYjv*Cu zk{?(yGf7K?m6e=(^Fk*fAz}W338xrXba;85HTQ(E2YRQk^|Cs8V8bG278V8$4%y41 Tztz72wKI6S`njxgN@xNAW`#OU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char4A.png deleted file mode 100644 index 7b39bc32b5e29ba4f91e427db4772e3de4417316..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^fKZ6LR|m<{~s6_n4Fv}CMLFR z+cq8^p02L0va&K|Wn~8kho?`U0u{2buoxN|E?BVO?AfzG_0?UQPXR?4OM?7@862M7 zNCR>*JY5_^D(1YM=*`!lz{AST!5Yu~egE36QU_bj3&ipbJ?%3)doHR!S-~Li@y^R- zq1=hHrsOofHSd;`UuIq>-PRSC)-G@9Dz(GMCvHh^m*hE&a#hf{gz?^wr@P{oU>RDuuKWuxW zhken_h$YThB3^e+Q^q#1aG5d+YI*LnnQ+dw2>NAfjoGX?n(ol795=qZH!FkLE;Dad zdb54j@nv@SBO1*POoM$=Tc2xY!wHqj$Tw900000< KMNUMnLSTXx?}D2E diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char4C.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char4C.png deleted file mode 100644 index 8221325f30cd3e2301939189a97cc768a0fd32d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^Vn8gx!VDyNCJ0mjDT4r?5ZC|z|2sH1@bK`6iHUV} zbr~8OZrip^Sy?$SFc7GOg@vW8tnBRBvkMk1c>44yP_bmu{pmmn#*!evU}(8UqVWdv4QHE;BrTXK#1(GnG*6z}bcD}!!_PE@ z8*hRi3=9loV`CN;7Ew`A&CSgtBO`Wpb^rhX1Ox=OwzlQv<)EOT|NsA?cf0if z0004WQchC8j>Z{!~UuvqdM$_e=Z)G|%ePS*iYOC8nL(hq=HmY^xC z?-NkVp&#Bh_5{olWz=Ys900YfD1+1&z$|Hmxs4N`2MLAJE1;Hg=llwor7Q3bs3nbm z0I?K}1K?;sEyQ(l+xkjcBF1V+r}=2QM{G?Rsp)2CSSQ#qAkruN4`d z25#H7O-xM8(9keBIr-_+r^?F8EG#TQwGIvr3l=Omd-g0){oI6!uYp30B|(0{3=Yq3 zqyafAJzX3_D(2))aujM&;9+T&5|w=LfB)SUhlSG5lr|>r;!<68)XCN?bP z{V%)_DHf8uYu!7JfInHBI@b;pd1uH=b77@qK8U{*3npSMX;>ky&aL z2bS%WS+H#74H<*8dOzd?F3gj$$*^sb72wrA$CuHcW%FVdtHD_&5B~Ly8IPo1Jni4P yC41Ja+YY+wP5(rLFFUj>^_gUU^}WoekM*9d9OoN#wl)JD&EVX0{{R37y!;v0000pP)t-s|NsBC zwzi6jieqDA78VvjKtKQh0L{(KprD{pQBfl!BLoBl3=9l0F)?;_cID;e|Ns9f$K65z z0004WQchCCwGp0yD*YqR)h{QD;;`g*JUs1@JgXU@i`?x>T8t>2BlI9tzPibt6v$;{2chBpj8t$KUxKU(bTYwM*G zJy7uY#U{E=4`oNI$DoeOv3J5kbNQ`MpzDQZZ6ZOOKURc)h&7|4KePV<8u17vcH$uf P00000NkvXXu0mjfJq(=v diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char50.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char50.png deleted file mode 100644 index a0bbc1b47ca08cdccf601f1ae6c034d323cd606b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!3-po!riKXlyQJhi0l9V|I5nC92^|BZQB+Y z7-(o{sI08a!^4xDoGd0L22{nu!qU~%b@uGp1q&8DefkurexF_I5}*WQNswPKgTu2M zX+Tc1r;B4q#hkO}qlFGDaIgl5h%k5kzMs1>vnP2|!#(~s%O5Ry-co;pLR~`KWi3yc zCcK|DWBQubtA4&L30Aw_ZC0wt+9R?_e?fA%SF-bM)9Q=Ami@VKU3lO2k9D*6>vZJK zy0Ix_M`+Ng$G0~gUM14Wbm&Zx-k+J5f@fa|?4Y zAyRMEy-_*<v)mJ3;aLi!mQnrvK zjOh`s=%lpR0PkFH4>dJyi9zzAaQMZ#vRTJ!=SCW8K*Up2svK00tC+?bzrk%yRhfBs zUzDaV>StH~N2^?yx0(%A_aH&Q<#$6Cx7MQ(=ZCQ?k=3@eF2A6$jS_npUlwJ3^M2_H z!S(#iE0g+t3eY^<9us@qj94Wku;tGV362*sZ2-#Ieyrj?5P+F8w$HqYs6xc~gDR*l zJAKVlGuS1~VprRm?u0I!${j7Zz&CIA2c07*qoM6N<$ Eg0X6{WB>pF diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char52.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char52.png deleted file mode 100644 index b7d3fbb4e3ccf75bb41619cc1e5715e8cf41a9a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 315 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM3?#3wJbMaA83*`;xc>kDzpSh*FfdSASy@a> z%)!BdhleLQIoZ(A5U7NOg{7;j>+IRH+qP|6uwcQ{r%!?E|CKaP1j;d%1o;IsI6S+N z2IOq>ba4!+m@{=!Bp-_+hs(yh4C3$VZ#R~??Otr}tfcvQ3ybIy`$eHM0%vs0c)zB3 zgHGFu&d+N8XGF^y)i7|L=W;!X0{{R3L8ili7b`G?>KSwy z3g(Te!mAJM78SKTnAt6AVEHag7*?3ZdQ%nIbf{big)qB`>Yvp#u>b>2^C_^+1Us}H zI3(NajD@>jXVmIUo+$OHU<_Z>g2eGj~IuREUw! hheZoLN^9Sd{Q=ng2L{M0}BfaP$3Tw&(o(*7c5wC_Uu`p`fKjfZvjOaOM?7@862M7 zNCR>*JzX3_D(1Ys;3(9hz~gf9nn%l)#^3kDl6p-wid%lJUN=3qA?&$~MaCYZ-R#^6 zmCM8K3qSa>O;%0SB9isP!+l}P61e2<*hYLziuho*u`KTP5zEJUPZrw$f1tX<_RLZ> iQ9&_D{!{ta*ZUvr=ir^ou{Q*0DTAl0pUXO@geCyxL0mEb diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char55.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char55.png deleted file mode 100644 index 23c0edc72fc19b15e2e6e6b79fbd794ea1b45d9a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^k|4~%3?x6Bmj(hU;{cx!*Z=?jD=RCXJ$u%{!67g( z(9qDZtgI|KIhlutM@&o%sEUP!rK_uJ+qP{B7A$!B^eIsNJ!73sKncc@AirP+hi5m^ zfSgI5E{-7;bDmC$@V%}u`L`Z}%a z2{V{qZC)j|c8Y7hXv&^jny!oPoCrPmWvSNa1yz1Cv`e z+`X`q-LL7*wwFpbXJ#yuTW^;7Xm3Vb)SJ1PUYjn73cg&W{DR*px9QeP=hg0hF>UcS Z3@3xwOGCfh{0Vd&gQu&X%Q~loCIG9Gb0h!& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char56.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char56.png deleted file mode 100644 index 373263372a76657b3592b095f65729260175a3a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^k|4~%3?x6Bmj(hU;{cx!*Z=?jmz9+T1_mZ4Co3x} zJ2*J-@bDNK8g_McojrS&g@pyEP)tnh>C>kR7A)AdZ5vSi)cCM_KvBk$AirP+hi5m^ zfSkjgE{-7;b4n+63LRG9aQS$Mx%dD7?V|oZx6L23Y)U)IdnKKD?oE*sE-M}121azO zeWJI;_Q-5ow;2}FC%(4}|g%@muO42HKOWxY86xy&R{PlCqz27eB z1>W>ZU7Z?t^6dfWsk3USrq)N>UnZP+lccyk_KP$puPlDd z>3)P;cTeHW;C0rUnB7G*A5S+>+N1X0{{R3VlqJwzi<4pv}$A|NsBxh2|Cj z0004WQchC6SaUbEjB=aW20-VINVT2KvxyClI2ZZ_$@1=42G**i_HO!O=k zuwx1rtti*bAO^O(p9-_`in9OQF07y^kuzJgreqnQF(dZV}Tm9`MYT zVunRkOKO!+!TCF%2sI4)uFjh@@HSiK3fWQPzNiC`E}Qul4x^P4%whStZ-lPfZy(fz z>jxtGanA=6+OLkTrR;Msq29j;tR)?0I$zQsg!nY`V*W?q<2c06CBHGgZV+GdKl)$` UNI&Sbh5!Hn07*qoM6N<$g5}Y=#Q*>R diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char58.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char58.png deleted file mode 100644 index bab79b05f8f85583ba2848d283d6183393f5350b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 335 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM3?#3wJbMaA83*`;xc>kD-_X!dSy@?3Oe`=k zkcWq-tE($HIeFW*ZDnO;4h{}Lg)A&APoF+Ld-m*t1q*=cn^v&114S82g8YIR9G=}s z19DDzx;TbZ%*hSBEp}Le<8XGM!~g&J>``ycX0!V<@Cq>ga$}xwlvPT2V^fEg!$t>9 z(G3h=pK$XW+8L1B?Ce{0#DIDJio;F?Wm|d9J^tJ47AYDzCC*L0C*{Jk4B?u?)z#Nq z59imFb(}2zt?i)ZTg$)YVN>aW%>~_aTcg+P3&}C6dD(P$XYiWB6DrGREKzw7ccf{p zT3U$Aytlf~*e)A?fAad%m7bjbgA=dmWSpL&Dt0nAcrWi$_l|j9%Z&84z7tj|`~B5V f_*!A1>n{c`4UW6<(vviSzGCon^>bP0l+XkKMKy^) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char59.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char59.png deleted file mode 100644 index a6b980b528cab99e1e2f4dba137f161da286bfac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 292 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM3?#3wJbMaA83*`;xc>kD-_X!7Ffj1!*|TC| zV#&$LJUl!O4i3u7%4KC`U0q#3g)A&A+qP|c`t<371q*=cA3D770E#k}1o;IsI6S+N z2IS25ba4!+m~+-Yn(43t$Kmi=hN}O!`3jC8 mR6i^@b0+A}X4!n7r_6h{u!}RVYXiEJfx*+&&t;ucLK6UdXLAey diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char5A.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char5A.png deleted file mode 100644 index 4ecd64f4736e2e218eef98d951b5d344b1e25a94..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 318 zcmeAS@N?(olHy`uVBq!ia0vp^Vn8gx!3-o%Cj6}gQpN#3A+G=b|95b3ID7W2va+(F zp3zv>rJ{bPPbl0ZQnE5yFl)6LG(`R^U`xyf9mnK z5P2(XA9$(G?0e&!InNtBjpr?%?`1TPS@8Rv{25zL`L8uUceb+TT4>rOCA*_H#S$*f z6J42Is^ O2?kGBKbLh*2~7ZY$A2~e diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char5B.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char5B.png deleted file mode 100644 index f513e387d81c5d52d5f36df25143e9c97b19d65a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^PC(4b!3-ofigJ|#DdPa25ZC|z|MT$hI5;>wefqSk zt4mBwEHE%|!GZ-qc@`FyZQHgbCnqZ_D;pXbmX(#AJ$n|YK3VU}d!RI9NswPKgTu2M zX+Tb+r;B4q#hkelPm3K^;BaZ?3K9JCe}67htxizxtw^Tghdj5pT`_oj>6$UO>C3NT zuMYjcaW~q!la1r0RU2or=~S7iXZo8BY`ue@3Y9G}vimZJx!6aKvu5JlJNdmg0>7GU zVdrPRuh(j?voQJA>J86Xf4zP^OV<7O@tvzaZ0~s{!@86C>wZ?dtUV8+fR17CboFyt I=akR{03yg}Bme*a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char5C.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char5C.png deleted file mode 100644 index 104b904ba76cf02234d960080333b63a742f9a75..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^fk4d3!3-p8dkp3QDdPa25ZC|z|95qD1qKGPu&_LR z`gFm91t&9~J2`~+U$~PWmMNIJaoW8V vyZ9#Tiac~}t(~2u+2)sKx_A4&7CmHn_JPf{vR>04=l}*!S3j3^P6gM)*i zp@JzX3_D(0*WI4yKofuo0mN$c1D`sk#zETe1RF4?|&!`=7z{fo0%CtsZi{ju9j zP|LoPW4Z7JpCcEFU)ePuJvvoQFey-Xo8FIR3)cvV$X?eEbU*U7^qo%A(-ybJ} PT+iU?>gTe~DWM4fYshdc diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char5E.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char5E.png deleted file mode 100644 index 801f45bb53d1b155ad3c4f78a1fab556d62d6daf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 298 zcmeAS@N?(olHy`uVBq!ia0vp^0YJ>b!3-oLg*sS)lyQJhi0l9V{|yZd#l*xGELgz9 z!vhp%VPR2LR^GO4+ta5{larGj92^1z1Ix!5l|gtNswPKgTu2M zX+X|WPZ!6KiaEW3oa@+3hw+{Ds$2*y{&wNwP( tr!M@}%a?lpoaIu_g*R*zSG>Jd$@oQzHBNM@t^m-%44$rjF6*2UngE2EdUpT- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char60.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char60.png deleted file mode 100644 index 511f5677752f3fe273add85bfc2874683a333188..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^fq{*~1RnKqXKq1DGAirP+hi5m^fE;a47srr_ImrnP z4DVP2*qGCqb0g=h4qF?=m$tE$iP1N=*o=))Sz$FZ6AQz)O`@|4Le(|^wJ~_Q`njxg HN@xNA%q%YR diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char61.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char61.png deleted file mode 100644 index 9f1863fcd3cf21c2b70ba97e6a071c0b62cddd43..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^B0wz3!3-qXPX2ocq>KZ6LR|m<|G#b9wgn3oJbn7q z(9p1~tV~QyEHE(e?Af!)$;ryf%0PuIEG#@cJPr;HU0q#3^vc)B=-RLm)z7%6mEfydd`fN}lK|GCb$rc8VAs=G3oQ<-5GpSfsimO+SX*>a~9 zO+V9SUpv2Xg<8avNG7f|m93G661ImJy4^gPZaD3qqOs*)V`tWNe@Qn6jk3(yMibM^ zcjeU|TD8IHtLUUHtY($DmIrg#{AZlGC%c$;_366r`@WucDM=Up8#b|9**ICY--bP0l+XkKI<0Fl diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char66.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char66.png deleted file mode 100644 index a2e9d32e3a8dc90ba8fe8e23e986a2bbf8af27de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 327 zcmV-N0l5B&P)X0{{R39Q7V=0000pP)t-s|Ns9M z78XE2Kv7XqF)=aa<>jEDpo)r$3=9k-BO`Wpb_4_j0001EV`I(D&9=6-|NsBgrrw$W z0004WQchCF~3VsnSi+@Oi^Dvmy)7K{%}aB;o8QwXAkKW}0(pmkPv-NZNA<`bA_w z)~A1jWQ2AavX><(t9|*w~7`nkfAc(^KQc$`<(r= Z)j!S%2sMG(HL4Lsu4$p3+ z0XYXfT^vIy=EMd>PGVK$aDLe#UG@LA-O7Y;tlk3kwTS z?CH~|Wo2cChK5~TUE8*8b8v773=CYbV1byJn6k1mP;tigq%5F1#*!evUmdKI;Vst08-6RLjV8( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char69.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char69.png deleted file mode 100644 index d8ad504776e0f861a9925907e8afac42624b693f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^5=f{wzzgqypdfJdKLxGdKC3Y&d8U?fA+o=D>k`?n#b3dMD;g zP(1z6u&v2GjEAQ^;oiNyt&Pu3=O`a2;5&Ek#DRhTr94r^ko{1Lt|9`uvS?2Fc`()D@7#ZFikP*E-d%0a*@SoI( zPj7AJ>`CgDoBZ~&1!vuwC(SV@d*__6saIt$Qqh0nG|m3E)2?qv@^l}^O~0D*ZNb*v k^V{mqNQiu~H#y3=Z4uknr5%daKwB9+UHx3vIVCg!06`gDtpET3 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char6B.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char6B.png deleted file mode 100644 index f1aade654f4ed63c0105e134688013d541841976..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^Vn8gz!3-pWKJL#4QpN#3A+G=b|1T>m3k(coVPO#y z6Eie4+_r67a&oeRgM+fN@`42my1Kf6YM(xRdiLyD9v&W``r|*NI)OrrB|(0{3=Yq3 zqyag}o-U3d6?3LuaO7)H;BmRQN_Cm-ZTn-McXuomeRgWj4F9w{r+ByDDo6->cEVro d&ZfPp@{gO@4*s8ba5m6722WQ%mvv4FO#q=2 z(2#|Ng@=cytgK8-OsuP`D>*qCs8Cs1dBK7OPoF;Bwrv|w{o}yKLZB#PNswPKgTu2M zX+Tbmr;B4q#hlWK2bmfaIGj%(xw7=n|NCy!N)z5bb51;yy6}=;p>+VKp5)HTJ?b(n z;f^8hztuQaA7{L=XQrvcs^e0Mzu$Z>HNL&_j5AY;8T%n~&SfvX>*MYi3(fqvt7zH0 z)g}GAQ)Yj@bmCOIQOe6n676s7BR))zT4rD2`I|HLEsL{P30Du$9SokXelF{r5}E*n CjAhFJ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char6D.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char6D.png deleted file mode 100644 index a3a4b0ba2e5a702f4150430fc4a5bc0d06257341..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^5v~Z(9ke2Fwnul;q2M7$;rtqEG$6fPoF+ruwVgDea7`ETY!AVk|4ie28U-i z(tw;iPZ!6KiaD);(R>FKIG9E6&;7ptZOkUu>5k9Tm)>9(yr}S3_Jyx|7UQRdlZ^sa z`DM$VY*?gFAzQ>`rozXz`}^FY^}iT8v+Y73?u@^j)}y{5rtjtJe#f&vl7m&>S)0{J nocp?_r(~_&I<~K~t~mHli)Lxk7FwbUw3)%v)z4*}Q$iB}KXhD5 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char6E.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char6E.png deleted file mode 100644 index 1b6fc5b446830e4fbf3b1e59051854ab8653c2bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^Vn8g&!VDy}=R0lyQd$8%A+G=b|37>7EDH-ua&q$1 zr%x9wSkTqgB_<|TR#v90tPE7OZQC{n2M3@s&Z5m}Kt5whkY6x^!?PP8PO_(qV@SoE zm-GJ=F;a*Y%1TG85aCh3g1}D Rmyp9Xo?}mUza+f~}W;HZgd*`njxgN@xNA D=PgB% diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char70.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char70.png deleted file mode 100644 index 3d117f04cdb71c6a28698270d26e252dc212ace6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTl!VDyJqE`F^QbGYfA+G=b|95b3U}0g|wryK- zax#$n^Org!P?oVI$S;_|;n|HeAVQdAc};RLn_E@JLNyND5156IiBrbOF~E b4?zYV8;*}#7W`WaRK?)w>gTe~DWM4fCWb2m diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char72.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char72.png deleted file mode 100644 index e785d04dfdaa914fc46797cbcc676af65f985c53..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^5_!@pW8~@L z7*a7OIpKlrfd+;<+7m5!VpBb2!qQV(eNwb^T*F?dHspNGN@)#RcSNhiIcx* diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char73.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char73.png deleted file mode 100644 index ea219c7351fcc19078e61fc11ccf2a421555ff71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^l0eMK!3-onJS;y2q>KZ6LR|m<|G!|t0x>Z$9v&V; zLqir876%81ZQHg51_mlCD+5)XJ$tsStSmV>xvQ(|>C>k`_1Tg#%YhP%B|(0{3=Yq3 zqyagpo-U3d6>~!Sy@d`aa5(?HCgu9B{x;LAjLi&l*(X1k)5ZSvS)S=Ow}7j&_oj$? z|DCXE34{Mbx5!^?J&L9a&%9?o@|7oGzEAa~(@~%9RBg#+o9~in>1I~6Jk-3?vi#-xg$$mqelF{r5}E+uXj)1D diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char74.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char74.png deleted file mode 100644 index 9225c4482950c004456562a4a9621fd32e927fde..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 284 zcmeAS@N?(olHy`uVBq!ia0vp^l0YoL!3-p?Sg6bdQpN#3A+G=b|5sL4-nMNU3k!>b zgTsOa3wU^Vl9Q7I0|Ujx#DJ;{4GqtpJzG{**45SZ^yyQe`jVcd|A7*WB|(0{3=Yq3 zqyah8JzX3_D(2))jOKGz&ve3>lF~w{qKbuvSpxMUkple#iEN6a6%)7_@ZTE&fKj(E`ZI8V(`^CKZ zI|_arJ?(lg?OFGcsn0XJ3pTB@sSTUFc;UIU$fMD6`(HO1bu2xT8#&K7sY;CX%XD?! f_}cTy@(=9F^w?tcZ(Q02bRvVNtDnm{r-UW|#sCx0wppCA^#7 zKY5j9@nfRuzNgdV^>q}5wr!tp_UFSD6|K!@+T^R$F5XfVE-p(B?uveF7X7PQSU!2% rqd6b>>;84fysT^Kn-aIUhAD1=Dx1mW%7bP0l+XkKTaP001Ni0{{R3OVeQ@0000pP)t-s|Ns9$ zKtLlSBT-RNprD{*V`H|qwgdzO78VxG&CPapb}=zAii(N=000aO4CUqJ|Ns9m2Hh?I z0004WQchCk!wUSre7v|)E=kz*VMX21}F zsfA~l42KEI9@C|{m&jupYW0dBVUHUs$R$4}tSQO?RGQd@492;y6qx}afA*6IrTl9~ zMM;kqWr@$$8Ahk#B%av{4&isf*bDaW=p4D+veji=(`B-xjVZ^Ep+Ii6py1^&_4xrj z`&C5V0$#RUC)?~DRI@=+j$pEdAGoKyyVh9=ylL4{qEfoeOFlktIR*JjR^WpVPY=;0000< KMNUMnLSTa1NS_J- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char77.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char77.png deleted file mode 100644 index b1a97d6ecc1bf318317af895ac0cd4c3fb112084..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmV-x0hIoUP)P001Ni0{{R3OVeQ@0000pP)t-s|NsBZ z&CM|}F%}jUQBhHfii+js<)EOT3=9k-BO?F+0JgTaV`F0k1O#?=c0fQt|Ns9sd%rdS z0004WQchCqOr zz}ca~VDqT*Irk5edQ9}}nOks&=*46Hg^^n7ct&Im7l{|ndHVH%%2uPyjp?ldE*DI< z@tryCl9{i^of+HQs2~&}(i4@lU>wAH zJ51Lz(as(7ZgxpqdhY#Unp#Vg`TO{*r)~?sPyTuM)mmF)egRbS2qgvYIpY8T002ov JPDHLkV1j-3oTmT) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char78.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char78.png deleted file mode 100644 index dd9be54cf19caa6642f4222e67c6f5edd7db987f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^ia;#D!3-qV%RCDOQpN#3A+G=b{|^ideERe$4-e0R z1q)bMSd^8Ofs$fkVqINb+qP{>PEIy7G<0xqC@U*Fd-g0)y_;W>DNqGtNswPKgTu2M zX+X|IPZ!6KiaDhd0{IRr@HlUFDp=5X=l?d{1-^@y)F`CP%TafEy)i8Gb>xeuDU2#B z4Ssz2=ewZL&fE1y?IWcqr+W;st-l=JaF(QSPTC+Iy@e;;;qZNz#M2U%HSwueH18_e zoxXhW^sFzE_7COyAE!;awBkVT60!1b-pv6S0ml=T+;)*DU|h8RUO;U_UG>z*trIF3 Y*L`9UT6$uZBhYaSp00i_>zopr03HQzWB>pF diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char79.png deleted file mode 100644 index e7da21419ec2851682763e2becf760a980928e7b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^N0nk-`4qyU6_-b>x<~!gfsR}GPZ7;bT(RsvokxT zp_$9WX>#N*jxaS*m+c=|_6vXe7cjrart{pLts3tx9m!6ASmv_f-PY4Qno)c6oSWV! z9~1OCUs(P~GtGIM_+uB1t}_#te4Kjti|Q=V`C43O&oY}lN@|$0KdX(9qDq!67g(@a);MK*i?ucUJ>N8B2ovf*Bm1-ADs+ z;yqm)Ln`JZCnO|1*j>!VbIy*TNMc9$*%u7V0_}~pS6SIuDz<7dc8YK1>O8z5Th(ZN zmab5H{#7Ftx!0>$J#5~E3Qwqbam`X%`nKYl;=;nhr7KH0J!}@$9$#R=e~^vg&_ZoR UhpR5@fL1Yhy85}Sb4q9e03WkX*Z=?k diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char7B.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char7B.png deleted file mode 100644 index 3f719bcd238cd7bc505a5c264af1120ab88ecb00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^l0YoL!3-p?Sg6bdQpN#3A+G=b|7T%g>FVloaBx_# zU;z&g4^SpBF!1Tqr($Aa%F4>ywrwjbD>F1SOioTdd-g0){f^iP*+4~%B|(0{3=Yq3 zqyagNo-U3d6?1a^qlJzra4gpP*m>vww%xH8^JG6ioY1M*lHsu1Bx;4Ky0kJw+@Z52 zJxtRkEpKdGQ@qZ_QOO4E7h^10BQQ>FVdQ I&MBb@0AB*-tA!Qt7B zG$5zj)5S5QV$Rlyx4Die@VIQw%31gI|Nm_l^A@(%-eq*;vzXk&ko>A;`yC%=X=cOr zi4q2X6OPwQd{wP6ejavqRerwbR*z4w%To4d%`on&Iwfl6w>ctv-TWgxi?(hw?mBkj z+*$rrTvMhM?L4l@zuS81i3#e<6K|ZaRZhNBym;a7JFlKR+BdDUKHBNR`?LCbQ`vVd T&uwr6I*Y;6)z4*}Q$iB}%)xM- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char7D.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char7D.png deleted file mode 100644 index 4521c700d6bc52c81eae22e41cac758a95cd1008..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv^!3-pyh(4VGq>KZ6LR|m<|8Hn$c=qgBF)=Y^ zW#y+&pKjZ>&B4I|D9^&e!o$PU)zuXk7?_-#Tvk@LV8H^Q`tOf)I)KuQB|(0{3=Yq3 zqyafgJY5_^D(1va3}k9i;Beu+peDTMe{T47r{X%LNe_M7E`<7axAwoQVNAcldZ${O zaii@b&T9XO%$l1o*_1yxl~j1Qkm+gmvE_Wb`*+>d%Ph%NO^rq3Y?&N*<>u!Ntod7>l)QQ2C*Js^?6^kGI@TQ7-ot%ylfq`KD@$H|LHOJH#rG#zb_XU;gU*FBISCwGR-8^+Y3(&m`p00i_>zopr001R>BLDyZ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/249/char7E.png b/sagenb/data/jsmath/fonts/msbm10/plain/249/char7E.png deleted file mode 100644 index 136f025860be4514afae2bd64b230bfdaddd0a13..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^!ayv^!3-pyh(4VGq>KZ6LR|m<|1Tyc=HTF&Ct*gD9^&e!o$PU)zuXk7?_-#Tvk@LV8H^Q`hw_JAZf;uAirP+hi5m^ zfSehgE{-7;b6Nwu#f~U&TxPr-BKWTU_R9Hz+2WH$+tP&|#WZG$mGUpCU|fEiamie( zh7Sr6Eex42Rwsx#Ui;wRSFWeLZ<2tW-^t%I!gu;S)s%RmE52Is@vNe|(;7A1b2psq zEn)g^bzopr E0Q}KKr2qf` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char.data b/sagenb/data/jsmath/fonts/msbm10/plain/298/char.data deleted file mode 100644 index 914d131fe..000000000 --- a/sagenb/data/jsmath/fonts/msbm10/plain/298/char.data +++ /dev/null @@ -1,130 +0,0 @@ - msbm10: [ - [29,43,12], - [29,43,12], - [29,46,13], - [29,46,13], - [29,38,9], - [29,38,9], - [29,38,9], - [29,38,9], - [29,43,12], - [29,43,12], - [29,46,13], - [29,46,13], - [29,37,10], - [29,37,10], - [29,46,13], - [29,46,13], - [30,46,15], - [30,46,15], - [30,46,15], - [30,46,15], - [29,56,18], - [29,56,18], - [29,43,12], - [29,43,12], - [30,46,14], - [30,46,14], - [30,48,16], - [30,48,16], - [30,19,-1], - [30,34,7], - [36,37,8], - [36,37,8], - [29,38,11], - [29,38,11], - [29,48,14], - [29,48,14], - [29,49,16], - [29,49,16], - [29,45,14], - [29,45,14], - [29,37,10], - [29,37,10], - [29,46,13], - [29,46,13], - [23,42,11], - [14,42,11], - [11,19,1], - [18,19,1], - [26,29,0], - [31,29,0], - [26,29,0], - [31,29,0], - [29,46,13], - [29,46,13], - [29,38,9], - [29,38,9], - [39,16,-2], - [39,16,-2], - [39,24,2], - [39,24,2], - [40,24,2], - [39,16,-2], - [30,24,2], - [30,25,1], - [21,43,7], - [29,29,0], - [26,29,0], - [29,30,1], - [29,29,0], - [27,29,0], - [24,29,0], - [31,30,1], - [32,29,0], - [16,29,0], - [20,33,4], - [32,29,0], - [27,29,0], - [38,29,0], - [29,30,1], - [31,30,1], - [25,29,0], - [31,37,8], - [29,29,0], - [22,30,1], - [27,29,0], - [30,30,1], - [30,30,1], - [41,30,1], - [29,29,0], - [29,29,0], - [27,29,0], - [79,11,-24], - [98,11,-24], - [78,8,-26], - [96,10,-27], - [1,1,-1], - [21,29,0], - [24,30,1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [28,29,1], - [22,31,1], - [30,19,-1], - [29,33,1], - [18,34,2], - [26,34,2], - [29,25,2], - [29,25,2], - [26,21,0], - [26,21,0], - [6,19,1], - [14,19,1], - [29,19,1], - [30,11,-5], - [30,18,-2], - [30,26,2], - [30,44,12], - [30,44,12], - [40,19,0], - [41,19,0], - [30,29,4], - [30,19,1], - [23,29,0], - [23,30,1], - [23,30,1], - [19,19,0] - ] diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char00.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char00.png deleted file mode 100644 index 9bf3713c43e423f49d427887a7c9a6845b880eaf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 316 zcmV-C0mJ@@P)lp|pr8y43}a(s|Ns9{skH_G z0004WQchCsx!hgPOygs%vxRq%58`tO>mo#`WTId3!!NFVm;pqVkf0wTA$?$Wo28+^73Oq$L z=QKKL;bgrNLpeot&euBbZuLJ3oKGRmnSaVVMPbg@-}lMR)ms$4j{5>ibPGApDg}oC O0000g~zV*mgE1Ox<%ii#E%7It=a|NsBv5=`X) z0004WQchCXQB!MXhr$Q007qj*xpZX zlR=+KP) zprB)8V6{|NsA+QfzSm z0004WQchCtz8C6-> z_JSNetGIO_r=i#`jK)Kl&#U4wo;$a)D7Jyxyf*e$ywP{x@fO83|4cs=zcNeDS5nN3 zbF~$P#Z(%}*<4si@uWjL#ghMYy%bWNE&hiVX T{Qi{200000NkvXXu0mjf<7%XV diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char03.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char03.png deleted file mode 100644 index 82625db6c10a59610841fb36f7497dc4d64b0261..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 376 zcmV-;0f+vHP) zprB)8V6{|NsA+QfzSm z0004WQchC1)^hX4O|0A)fy z?3jv-#IO;8VZCEW3&XG)3>h#LN0jr;7R(nx0qMzSsMn?hsA)mMzIUCK*W!L~eo>MO z;QEX}B$Vb@`RY?4(^jO1k4(hIR|A{b22{iyZ(yv(63~qvv1kDi9gc`Yowo~{u84bj z%knGYmb@Ysw}^%QY2^#=t=kF~jM?0RlqA(lc-KC0wgNQ-$zA1>S3K;IS1d=Sr1Fco>>odh6@~wKaSqxTfo7zCQ)5?4MG&b+DjCRPfe7z`ddP(tp=};^7GyR|6N@rS2Cx}MVn<^Z zl$F$@0zN7g1a*v8`Y%hf8b9L&=($h!uF)+mWm#<}c8l6e^Ru--ON)B?+;WbhdXEHb zASd~;j$Md&mE>gT;Kmt9OJ{gD%qPTpLXE3tu=fIHb!6&vtUw{gk|4ie28U-i z(tw=fo-U3d6?2YGx-E1>K)@wdIpgF1`rXDWQf_Ws|8lxV>D-0VOU+hYKc^^q#Xiri zO0svw^At9j^XFeSuCCcxcW-No!u@|OW&fCJ1TMY{KM*OH>&5=l&E@zo9%7Zdi#II csZ;qMm=ia1D0tos0C}0g)78&qol`;+0O-$%h5!Hn diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char06.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char06.png deleted file mode 100644 index f0dcdd7681ea5488815c1998b4941ed43d873fde..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmV-Q0k!^#P)ZO!l~S?9lD>!N zlf=mA)xtfun+a07*qoM6N<$f{*i#)Bpeg diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char07.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char07.png deleted file mode 100644 index ca838f83bf8c2e7b69d89abab985c9f406a49dd0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 332 zcmV-S0ki&zP)Fixx0B~)0zgr% znjI#nl0000lp|pr8y43}a(s|Ns9{skH_G z0004WQchC4o!II2s1cKt&J>V6;9)PH@bO0O4EDu(8nay}Cvl*|ke9a|2 z`bCxS?=Ks-uc{1gC0hPQH>Or64PK2YOp!6c#mDr+zYQ?_UDn-;brEI3Bj^QX9Qp>BFj=speOE$UPK~uGH}Ow-r^X-A>7iQ* l70`!94aTNL3%Xt0@fX$^3-Ni|rLX`1002ovPDHLkV1mNLk9hz9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char09.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char09.png deleted file mode 100644 index bc3ac2f01fb6c2fdad7a927df73a2a3a8133be25..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 339 zcmV-Z0j&OsP)g~zV*mgE1Ox<%ii#E%7It=a|NsBv5=`X) z0004WQchCO2VdggXmZr}OB65eQGfK@2Ea_)h}}7XzAJpPYt5 z*Uj3WOVX=4J61Y!#En3l>?DOQ2`44tDds5Y7iL_irt^v2DU%5?79?Mbq(cw?`H1x? zvHE<@vwsP5uj}sUZt@uKw~gf$LoaCJ(07f(&R{_Mt|ZocNk${zRR8LCNm35+p<4+~ lU5s_Sf$X$r(3I^QzW@YX3pBn@o$UYs002ovPDHLkV1lSijyC`R diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char0A.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char0A.png deleted file mode 100644 index 0823a9033e2f7537bca3751448a4ab7973e70543..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 404 zcmV;F0c-w=P) zprB)8V6{|NsA+QfzSm z0004WQchCJc za{5|s5lli!T879%9D{c3s#wBl*MfpZtK-WK1^Ei4wU}bcPfE1!srRzjg;)HoMQO0u z+gEicB0X9x@xYKI>51dM>D?_nj@4Mov4!?kELF{7N1SP0x0v+gFPD(}C+YdrU5_o6 ydgzjv9|{We(Kol)92_Z diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char0B.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char0B.png deleted file mode 100644 index 23d1c95d20f1e5e2b448e78885da9a35919b4be0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 401 zcmV;C0dD?@P) zprB)8V6{|NsA+QfzSm z0004WQchCv1fQ z^NJ}*xHfD=*s$JhNDH%JH8x~G?>Hi>na$`2K?2vvC&=lh3y@vH2|M4V3a>@`asJgw z%7Cji0+H!7#ljbz5{Z{`dic1p*!Ut~QACNlD5sXByt>>Y{*=peoaMbo3V4&M$bu9{T; z6hn$fP3PljOYy8pw9ngO<9JP!;-#hp7kv#Dhw^+2C9hWto}+QHDLz_G+#F^Q7G(I+qfv0p7e%11Yi0Ans*D0>Nbk}00000NkvXXu0mjf9EPme diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char0C.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char0C.png deleted file mode 100644 index 4448938b7a959ae25d519b3a07c04365d0891bc9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 307 zcmeAS@N?(olHy`uVBq!ia0vp^vOuiL!3-ojQ-uBkDdPa25ZC|z{|5#JvaqluCnuMc zl{q*#@bK`6iHR*(u;A&_r^?F8+qP}%>gob2H#9Und-g0){c~HMJ3u~TNswPKgTu2M zX+X|8PZ!6KiaBd1pX57iz~S%2H0rF1GVJzB!RLM(8l)#@bK8^w*18`M*8Di#!) zaQi*a>z!o#wek($F|p34OyydEk39IMn>JYVFIscRK;pkZ!^88uuRm&UeWTk^-{Bx5 zdieOsPfuT1$-3=QRiCi$*7;3o{>kNcoAUns_`@K3pZ!B+NZmf5%Naaf{an^LB{Ts5 DedT>c diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char0D.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char0D.png deleted file mode 100644 index 6ecef535117337679c61f0e9704a719e5ee5d982..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 293 zcmeAS@N?(olHy`uVBq!ia0vp^vOuiL!3-ojQ-uBkDdPa25ZC|z|Cg1Ov9Pdob#?LZ z@B{`18X6iZD=RNpu;A?3vtnXm+qP|c`t+%Tg9A`Ua&j_Iy=V+`50JxH666=m;PC85 z8j!QV)5S5QV$Ryh-h77@1e`q^KA3;spF6`Nbg4<%?iJhp4SI6t{9e|1(K1(5qV@Bf zhQ*zq*(Vr1Ph|-GAlLYSb-wkt-s0`LcB1?aB5Xh6c?9n8EO~EUu4Q>gs9Z1n-7fw= z2eTrLi|mZK8)x2O=U*XXb7!^08jIj*TB~jTt(05TWE0-JXA1W{sh!_yubD3FoxUdf o@!F#OVdq5lt7yLXb9|mUgAm6-fuuu^fNo{*boFyt=akR{0BnkKcK`qY diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char0E.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char0E.png deleted file mode 100644 index de67aea9a3d6edbd42d3ae14be668a01d26b00df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 375 zcmV--0f_#IP)6{|NsBjX+l&0 z0004WQchC`nHek__K_>+Gxl?*}M|sjbFP1XovQ3{}9b zMBmyiCKz2$P*s!+pHp%PLEpKb0OB+$^PUeUp;9PxXB>V=WwtnrNGU#~t3X)Sv+dNn z!jr*Qi%Ec>&(kgDs>CTI;k;S|?fyOZ`}Np;PjP%0-7Nm#nXTc%=Uk2{b{NMVtMeF+ zxswdCtPplEf=yNxdb%%MDK_x2Scf+>-IFt*>uAZ5h$1t7hyClJSUz4Wi#O7pcmpDM V3wBuQ0PX+)002ovPDHLkV1j;FpdSDL diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char0F.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char0F.png deleted file mode 100644 index a8afa68d0f322f82b6895942ea28f77a4b1f108d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 387 zcmV-}0et?6P) zpr9ioBhAgtV`F0$78Z7Pc8ZFM3=9ke1O&FWwoy@0F)=X!008CX6{|NsB`a5nt_ z0004WQchC_2FyFA zAmci)3Gu)Ne;^&~fi*ag5lyiUBg;^GeHpSX1a!}8xX%iMeBWJ_y1nJB)ZG(4Du^U9 z^}9n8Hd`#vlqHCPCFS8?erd4{fV66Bv6CnWNKPn~a~}EZ7$009;tqsCf(-AN8&WD-%75#ranqg-f62n zT`Vo;dhjyEF;#J=|BkUT@kNF?li4hrO@YAp_^f2-2y%kBh#y~~j+u2oakuXElQ zW37x$l3tZopHpXdq$e!~Fih^4z}*T$72h@s8U_`7cX(SKiP8%wd@xHpJ8f=z6ED)5 zmDij|keZ+{?67&54h??R9Bd9|>EV=1-W7VT_92C2Jl z3qz6IM*&Ii+VpfzIir8Dx^N?TbosAns_?q>f%*r!>I)ppI&J6x00006{78VwEc6N%2ing}40000{QBed01Y=`k|NsB}*QMhC z0004WQchC>4E+q{i)tG;) zRTVDC8k`W-;}8`NNE*zjtl=I`#UrZ9?<>S>4F#x0>EPx7NN6eBeTR)l#j5&;iziy0 z2oe4A+EWKyh<-<%1)%hG`v!z>X9DCy?R}QML6h|tB`D0s;?NF9Jq?bED`YmA*f*0g*( z63<;*xqc?gwA1>{zbfeu`Lc6Uak{fF(*K>jq5c8T845|!fyGq-0000loJ3=DR5cA%i3BO@cWwzd`)7BMj~ii(N=002NhK+Vm~|Ns9md5+`& z0004WQchC8TkLdy=6Jz%&|P2xqZY=mjen3pfxaB07)}wg@dF4cL^YS04KQ+n+K9i zb+HGMOfKI>lEn1$tX2}#t9exAcaJp3!aGJ5pmldjMp1dXeLd!*Rx0n4FBThpq zFS$@pw2Dwpa5*-O2&cmV-^o$*a~_Yp9)7Nz6^GHic35-kvDVRGR3LRjFUs6+$?)e$ zDsosR8nZh(JA}+{gLq-E!-{COJzdaGICP?G&%#7lFHh34U8uZDJblp3QBed01Y=`k|NsAy*BMLz z0004WQchC*;EBLlz+`4&0PBdrN8kuVP(+ZZpf)s31cCvrvpKbZprn3-5W)AD z=aA{^ac>BLYze>9^pk!_q-8oV!$o1!sIH(t5ox|AjxO28jD@KRBD;YN-g80 z`KD0c*Y+x;S1(csQ+yYVi-MP2rGf5Mk^jjtYP?z%H-Fq?q*2sNw>*fP3%OoK%lUY4 sdbintz=M3@+#LPT*&o~3tty++e_+N653Bcsy#N3J07*qoM6N<$f=TqUFaQ7m diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char14.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char14.png deleted file mode 100644 index f4109353cd073fd7c88881c5c91cac0db9090c12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 415 zcmV;Q0bu@#P)fIkF^YU|$LQ{}Lw0*=?L~&KAzh*#yAFIj0ri8C4VLAmex=(PS}q^&F5v3)55WeeEr<4LSx3kO89DDdjVoyuNz)#mX3aFTyVIb?Hw%v_4K;E8e1N!>b zJ@2KjehIUV7hxOW0S1#FUgrx5D!)+nvl@dlu{H+^q4%P)fIkF^YFi3 zoK{K&aU%xgje5ZU$2eZb**#zMgRwO*cRk;XvxZ4S$oNPcG@#y({G8Z2K#J2i%t37g z4&IE(BK!a%_c%zEF;R3w8NVY*KyPH|X#f`qmL+o^z=dmx%YeX%Ts?99noz5;Ppgxi z@oJe`l)7-14$R9m<3g*Grm|E*xg`flYPFy&fv8V&sZeiUn@MW*QctX=^Gdz5I$<2# zr@Gd3;0B+K2Nc9cHG5;?hZpH2LZ*T2`)Lb$O~D%(ijUkA%6($D5iOPY!DMoKlQD^i3dZBKQ6}g@4j3!o%Ncjko)U5V`g^7Y|-@vUnmZOOU0`}00000NkvXX Hu0mjfLfWsL diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char16.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char16.png deleted file mode 100644 index 0c6012eca563bc5b8ba71e7ecb607f4cb39e458e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 332 zcmV-S0ki&zP)pr95O7UkvT|NsAIB2V%F z0004WQchCYixoy)4ypBZyjl@mG&U9RTCCl^zgrj5RZ6Z zT-yjsVX*HV>V(Joy}Rf@#A+LADE4Tmn3>oiXD1=*4&ZenK05D*4D@hdvQR;)5QH_< e)B0|gKh_IVw+onxyu|+i0000Vq#C9KJDu2I(zmkP;Fpfpt7=ZSy>rS{pUEz-#{V8k|4ie28U-i z(tw=9o-U3d6?1y0MDiV0;BisZVY7Mg`~Ei1l~-I^1D~tA@Js45pR-IqELf_skk>84 zHE|*9%mCL_Ebbz0)H))5|&!*4D=3zr>mdKI;Vst00Ovx^#A|> diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char18.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char18.png deleted file mode 100644 index 55378425e68970e3a06f48ac73785564a94da247..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 455 zcmV;&0XY7NP)op!olPdr)JVv?p|?yksUT%YrN0 z_8iT?6qRbhRf+|(kjaf!GDN0&vZuO1-D#GO5I%{T9pzR-i1ZYtl{P59R+rl$7cqZ}Av zDZ$lIjN?N%uiCqD^t=ujjv{qW0_bPO~H4Nj~aAO?tdx2&#kp7=f8)Sc|3r+rJDtUoBb{^ z{+`TXwy*D^wb&)$MG4K_<9%F%P=Z$ zprCekb`};E<>louF)zwG>?q|7^-yo7G>^%YvTv z+;1HHXU646V-c?H(h_x_WDfFW%M9k{4`_a5ZgOBVg1st{o?~a`u?jhd z)^x$CWLHDWH7dhL8~&xl*$JL1YGpf#9mJKxJ<0vA%kOimb(Zt#Rx|c+7B0&tO{Pp> z7Zaakl-WM}P^;-B`J)myuP8>d2hjq&`apIg^p=|Ce#Uk>S3fh6zc!g>9TA24^k$55 ylY1~ntIqYDK;GnaXAaPMc^9{5_4QfOdDsu4M-BhdaHshI0000 zprE$4wlOg=V`F3G<>eL@79%4gii(O+QBed01VBJQ0000C3=DR5cFoPr|NsA>yu}~@ z0004WQchCE)Z-42h&rfqQUU&O%Sg3j5R zo0uCNhxubeti=eP88MyDu^1{M9M8c6C~JrYPD0E^)>$ZPGrIAF(~VAI=!D~qpfqXV zI9Dj`&cLxrE#h`9Fa_APB|4LBwMYhKSt>Qe0b?Mdoqt;6Urd?Z?gCk1bTM{lZlbk> zqK4bQG5v59$n8Zk*7|#$Vk9G2HSkxjtBNp0@-el>ce;1S8?4Lqd>JsmkRZ8#L4eW$e`WAu2#IHoxpu~Cx%!$2jPYAu^busGalc=nsP9) zxnE7-bZLCqU4r&|!PHN?p(qYL>N!2HP`Z&sHNV#D0dZ6BK0q+fRnN1fnDp|@irMo0 zI&)MgjaISiVYv7aoW6DuD8^d6g0JxpNV)thRP7IzERo&2u-a|PKRk**v9u0dpmwX! P00000NkvXXu0mjfBu&>g diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char1B.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char1B.png deleted file mode 100644 index 534a93845314d69bb97d6ac5815cfcfa700d5621..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 463 zcmV;=0WkiFP)NklW%El2vQJue`4vI(OEpv}ogluA@_S+`*>u8( zWu%+x=B^h<)coY*>M|H|x1prOHQp)n1@oia!p^w^`)qNEaDXp2NQZ7YwQC#y_`8B)zsJ1&qICj zgVg-Xji8CK7OKTxstwNTOjkz_@eTS`y4x8eSLM;|F$4z_vTIH&*s002ovPDHLk FV1l#P$x;9S diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char1C.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char1C.png deleted file mode 100644 index 3783454b192e7e145702ae2caee56fa5b8f2afa8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^azHH1!3-of6!`i9DdPa25ZC|z{~H<_CMPF%b#*y7 zIEaafm6eq#D=RNpuz-h$hlPdZ?Afz{fq_8f+qP|c`t&JK{gv;>^nrZFk|4ie28U-i z(tw=ho-U3d6?1BXE($d(@Gxs~Y;FAi|8}G9ncIe+m8MTId03Lyy=^(K=%+<-J+EE$ zPUyet{Bn2+hrvqa#-6DQEV)IR{Vkp^)!3H3=t|F~sEsS6&)ta;-RB1bFQkAKBAKuy} zbz_K5sP#-~Y$#W(7#?B@~QVbQ^3v%!!sWm`=C0Tvp`eDjI!yTr%H31$IYRytyB zEyJ!&jl?Z$phFPx# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char1E.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char1E.png deleted file mode 100644 index 2783df7578d50244d9a41e0bb4ae373eda88d410..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^DnP8t!3-p2n|AX9DdPa25ZC|z|DQd3mW737!GZ-{ zU0pmpJWroKH8eDIaBv6=3{+NDPEJnVwrv|wxtN$(Sy>rSy=666=m;PC85 z8jzFV>EaktF=y|Uoq`OGJWP&n|9j1@-zLr^aV2rPXRqX)!$%J3C-Rxxo_@k7gDsWK zWU`U;ELEf9&Pns!k1ul!c3oECS3lERvZm_T5}%oi3~Z}gmj$w=H5&Pdgt&?FaUZHt Xoyan!%4SzM&@Ki~S3j3^P6x>i;0Pqm6bhx`jm%&yHFz~4YkkDd0NhduSnJM)`Yb%@DLbH`IOXofOvwGb_A+9+_P8(+@Oxf&ZE?h0| YaDwIUdDiQ^K&u!$UHx3vIVCg!002BvRR910 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char20.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char20.png deleted file mode 100644 index 8bbf2b8edda29e693a239c6c3c6c033a5a9fecf7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 327 zcmV-N0l5B&P)DSwrKn@^f}YBu@+LY63i=!rJz? zjPBS7ZODWgI7S7H&;xaDHYSi^72I?$fgPsm3)T4u(o@X6e3XP5+EpN8e_IO)Sl;Am zCI^YVM*Qi$oQAqi-OqNFDvQmsg#>n-bD&?vc~CWPxxSo560OmFWd}s<3jIre?cVwu Z?gyYM3QA?UUw{Ar002ovPDHLkV1jOQhQR;; diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char21.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char21.png deleted file mode 100644 index 19d7ce4c7b7456edfad5fe16d6e9161fc6e494f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 310 zcmV-60m=S}P)1 zT%&flGb=ujl6#xEbSw#=s74&j41{a#Y5?g3eHJln(`;$MY}kxqAGSAV!$wTzV*jrR`ok29lr8YUI=x>(t3sx;||TFP7G| z2K(Wy^I(_GJA|wr{bjCt-;HeL@7Gq;$|NsBuwCQjF z0004WQchCeEkX%PAFD7p*uUB%;$JmF-I!W;>Cwf zd~NpLl9fC0Y~9ubX_B2_cb(2@&*_KIlV@|pty+EzS>q#qpz^|VJ||bNDTCU+b3zn% zPH+sIU zprE$4wj(1W&CSg*F)=_uKm-H?3=9l*c6N%2ieqDA0002x<>eL@7Ew`A|NsAg_|(1t z0004WQchCco5JM1IXu$vf+aecBYv7zbI1XXiY{;P0 z3}>2BN=2;L7ef8<;y#dcgqRndYuiE^;Q-h@;5F$O4B!x_O|>jFxg|+ZA)zq_15HY*0fRR$r?vjPE^^x$R;XI)Pso| z)rqT=Ia!^!8W6?43AOYFtCW2EjNEdZN^(A_3S;EtO5HI`>ZQZMi8-kGYH)(#c7oz| zf}%S?;dvMuc+5ho^8oUNqzCqwY;47y35ul?`_hR6dQSfHiFqKDahyC*T;IyArzg6S nw0L6vaKfxgk5QJ|op78Vu+1O$qTiVO@4KtMoaV`BgS03#zKc6N5Qwzkd9&E@6g|NsBx!gfXg z0004WQchCd zIJZc9yVMs{3s%*O$#^V>Osaaao{^I?)Bv%V>k-X_E?~D|g16yVsy6I6$kNKHI*(51 z!OD)cj0$VTXrtZ5p_m!rO0{gZga94EWEdyI>I%_E&ZX zpr9ioBMb}-c6N3a78XE2Kx1QLii(OcF);)L1ONa4QBhIl<>j`vw$07W|NsBdON*2M z0004WQchCC&noRe{xNxm)qU>!-d4{^Mzf%5+Ck+NdJ3GPU)f-8lrPIbpq7q5O7TFAqMu>N}tM5 zz^;I-!@_KsHbEWx-7?D*89fPCAD7N+f4br`i?mNO&`>T9sA$+k6yiWsia78Vu+1OyBW40d*Q|Ns9xlJaK& z0004WQchCS6yv3)$yiP_ad*`(sQ_SjBl2vcrU*3{EuoNlW_EIbFVdQ&MBb@0K*4* A8vpPWpA!no6H~Y&D`FRPar%ZM@ ze`^(o=Gz6{|NsBnkd2`L z0004WQchCJ< zA@@-tT?)zB0gH0I3gw~74Uot!;!RD?2yQ&tAdV`lMVzsUkwwfh?E#*+tOB_PuJ^%- zO`D31MO-E38^l+xd;dWm#xL0oz#zV~!+-zldlxf&TVxOmo8qL4BY}!Jc3Ij&z_2G< zO`eOCV){U=LO&2o?N7u)FNnL|5O?`eO~r0h?Kjp7mvG%bsUGYP55-rHE>`0C<26I< b!aIo%BcTlxmgels00000NkvXXu0mjf5^$m< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char2B.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char2B.png deleted file mode 100644 index c5808c0d298e6cabf37d95c971f424563bd82439..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 384 zcmV-`0e}99P)6{|NsAviZ8hU z0004WQchC!p2u#yLZRGy9UE4}oQNMORdOfCK7|?B- zfO*CgWLyh2AuiZJ3-ZLVU_FEcf!}~bQ@rC3h%LiaHYOG@RKD=@qRwE|Erkm{Pe_Zs zXqhE9$hTQ(T=psIg>He@;)vmtK8vMa71iQ>G^YBC#i__vE|$i6G>fC2Vs0*+I`iH_ z3}q&T`l^@5HvbM?*3@h{gr0PDuGz!(Z2Cfu2F-p#4h+cijyanGsHN?8vTUVPYp(|$ zRG#S=PJQF?HoRDEaS^KL*+9x1sco{N56nc9>i5NyE8a(saB&AQhJU&!6efq}1+Oo! emBpJKJMjY<9t`3vgTF)o0000IpO diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char2C.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char2C.png deleted file mode 100644 index 2e55be6cc8949804a7784d19d2aa8e4b8a9bec07..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^;y|p$!VDx=J-GV-NT~$)gt-3y|NrdSvw?wuVq#)X zpFZ8TZJV;PGEmaN!NJhbaKVBFKm{N5A~phr7)yfuf*Bm1-ADs+N zR#&i?H`RmBcYec>l`fx{0+`M{)N%iGr$mJ>U3JoS#j-8VsuP%&)G`UVH^1A+!1yYF fhpi{z3gTe~DWM4fif>iJ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char2D.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char2D.png deleted file mode 100644 index ebcde77a8f3625673afd1233b5c94e1a7124d981..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^d_b(l!3-p~te$lkNErwCgt-3y|G%rNOIcaj!NFm{ zf(2z|Wh^W#$;rt)JUn7zVrS2u4Gatfs(t$O>9%d#3=Iu|>K%0ggn&YfB|(0{3=Yq3 zqyagxo-U3d6?5)R^yWLDz~Sw20m zN}ai=)wNpd#@_9W(!EU=d|4Oy$-bE#$SJ%mzjRi5lu_)|`l diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char2E.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char2E.png deleted file mode 100644 index edf01f67ed428da6a5633c28b6cb54147341ce9b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^+(0bM!VDz0u)lf?qznRlLR|m<|G#b9wzFr?vaqo5 z@bHL0TnJ-u)x8=;px+-K*fp-E=)in#*!evU{f4BaW$bU x{d0~$>8%$g9b91y!S5vwh%m=_xi&O1GMu<6pC!l9x)5k8gQu&X%Q~loCIC*SM56!z diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char2F.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char2F.png deleted file mode 100644 index 639cf95a6144cd6a23d92ff1dc8df930a330c419..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9c!3-o<`K&zvq>KZ6LR|m<|G#b9HZd`=vuDrp z@bHwCl^GfuK7IPs!NCEjgoTAgSy_3(f(3zrfyv3qU0q#3^~?S*)d$KkmIV0)GdMiE zkp|>sc)B=-RLq%r!JF@Z0tZXLA8Vzm|F^HH-Rg?HI<-rKVt%h4S2Q-tQ0{P`$f h`~B)8rE2}xOfnBxc-SIm)B){e@O1TaS?83{1OWLiT9*I- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char30.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char30.png deleted file mode 100644 index 826961f7e2ef8502f0b10514ca6f5d4b9b5ea357..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)r!3-puC-%4iDdPa25ZC|z|2sH1Bqt|#b#*Dqj`f`lh@?s{&k3Y>ZU-6D%W=^OSM@vk&a- krM8PcFFxgXao1k{*9L6c5=Bn@2fCBN)78&qol`;+04Ysxpa1{> diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char31.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char31.png deleted file mode 100644 index 08ec3887daa7701c303078ba22f56b388172be6c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 300 zcmV+{0n`48P)jEDptiQQ|Ns97O@4a- z0004WQchCPW^vq`3@B7=fupD~iRcWuldxOX5qPgY8SyNt19d;9V z{p^sF5!2}o=66-vN&WX~9K~f$Y8;x>lT&@CO@`;B#=*}$-(Iwp_*xdfFPX*N=j6RU zFvG1%WYz^s&fXU@TCI}&IJ)NV`P9`P(EBz{uKmIaF`HDUWufFE(! ru+8$%(w>-G?pxxxTu*rI|IT>wCI@GL!7K%!a~V8c{an^LB{Ts5;k|b2 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char33.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char33.png deleted file mode 100644 index e8a0faf5cf3a68158f039997953d0de07bba2247..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 306 zcmeAS@N?(olHy`uVBq!ia0vp^@<1%h!3-o*cen#d2IByq5ZC|z{|5#JIyg9Vb#a87LzrCie8{Qyv~3Wo2a+78XN8!?Lon1q&8z+qMm;{+&&2C{Ph&NswPKgTu2M zX+X|ePZ!6KiaE8H1NmAMcvvn36*6?6{+qAewI<-;&&(&Rv(%=(@c9)Op8ajNn`SBZ z+N$=F`HMr;b=lXLd_VK`=fv$c1=Cy3pNn4HCIj&3muc~j1 zxKvpqUwGU8hq<}klULdXPj2%n?DKxk^WD@wdH1vYaH`f@48*TEK{~pga76qW0?mC(p3K_8SLa=iESX8Y^*q-yd*-(vuyi@vamH zN}LLqvtG*TMV0aeNLFcS(LIOoAtM`U(eWd083_K1l0{1KACxRwgDyzY(;^cf>s}T$ zy>DOivZ$M#W28TenwjOaS&W8Hh0~O6q64#r8P(KlE@Ck{Z6e2wx@a2$j2d&&Ho&xF zo6$CW6Q{fAP=AZz`7U;PwJvt?Y2%)U*u^n&7snLn1(mxvmS29+Zv92SEw%)FfIkF=Jz6prD`(3=9MW1h%%e0002Z&CO9!Q6nQG|NsAFilRRN z0004WQchCh=Lz3M9HA3p7Om2CM@0Z~{dYpv6LE`}SmFpmGKH#S0=azwmUUVY;ZyQ5%7+mCVpJ z(ZJo}o4PF_S&hO_r-4XKB%>xu?ZE_fvv|?gUJd+pe(y diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char36.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char36.png deleted file mode 100644 index ba7dc2c0b13821dbe0ffa1098d52d64dab9dfcd7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmV-$0gwKPP)prBDvQ5F^!|NsAYJw1N_ z0004WQchCB7KF>_xNJv}4PN^jyzIXXg;rcao;cC5prBDvQ5F^!|NsB0L#*up z0004WQchCFv7-_98aiB?)Dw0MZycM{0ACLuT>V8xH-`(r>FQZQb=050QMfjuqe57^Af~T* zd`3!z20%-CIC>L_GB?m_G?6KnZ>U1IqTC)3?iCFP8m)kivI!YUfSu6Sgg=UamKGC^ z^5sBfHsRQw9q79gd~r5kX)?h@)uJoqosis6({Q1*6Uq!SDy2EVbOWmN8IlrXJd_8F zG4G|8+KVs~Nc8b0r>VSk-1_40aDiL@&)@MACT^fgqh3Uun#keZ?Clqx5((=V9kqJ^ O0000Od^O!3-o9F-;Q!QpN#3A+G=b{}&Sz+qP|+va<5o zvuDf7$`&kGU}$K_!om_57|6rJ160`6)#c#e@bu}^UOhc>NU@ISFs%+@>M)E_?U&oVC=CbBd%sx4Y6?0X?e-uj-2&bqH3 zuU(t*>-To~ycv4GH-vf2UwgGZbh_QzL+`JBmG;qO-?ClLsvhVH22WQ%mvv4FO#oZh BWfA}Y diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char39.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char39.png deleted file mode 100644 index 82f985b00c45751cdd542db844b0a4882de504b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^>Od^O!3-o9F-;Q!QpN#3A+G=b|37>7EDsNlva)hu zVBofG+sewy3=Iv%#Kc%wSQac;094r3)s>u_{PgKl2L}hBdKIPLx!k|4ie28U-i z(tw;MPZ!6KiaD(lZVNRiaJcm9rL6w&zkYUX&Y~0Nniucb;J_ijB5(PV_5UZgIJYm= zoGkHF!`i&GCqy{v9B0gW@54Wf?w;6M(rKUIvpt;cePmbtvPIJDrUr|68MNL%bIP|C zU-U8kn(VB-NoCiVChwozp6&GfRNT5()0JP}I+(jo=j3)y?Z?YGWG^2o06Cb!)78&q Iol`;+0HY{q!~g&Q diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char3A.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char3A.png deleted file mode 100644 index b2808d208ed9a45dfb9356f90d50558de7d92da0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 322 zcmeAS@N?(olHy`uVBq!ia0vp^>Od^P!3-q*0!8Y9lyQJhi0l9V{|yZd%gV~OZQI7f z!^6VDvS7i2uC6X+Wo4ieF)=X*2Z!Y3z8@QwP(ncP1qk}sQRV+?!pi2EB6aN*}jMW)kUM(mDhh9Es@XE;o{L> S!3OjP1B0ilpUXO@geCwz&Vw5O diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char3B.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char3B.png deleted file mode 100644 index 775b21af51cd284f52afc7b07f60883a88cc9f00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 326 zcmV-M0lEH(P)l|Ns90gx0|T z0004WQchC%uC3O8&<^Zvi)ZyE+?8ktuV@i;y^$so<{-ffB#~iN5GQ3f zrAM@&I^=n)V+Qg-$x9T0ngQQ`G!8xO9MkQ6?V=_$O+?V`i28yML{v*cdVI6e567E2 z@&kwb2Atq0>M4&@?!5VSLli;L@K0I{AO+ z+R+xuYo(O3_KUr)+qAGONc5om4;o02mz8$qBcgdDLP7&Lbg=rbgR|+(O49x|>K;z` z8ZDrkMe}pEw>H8`&ipdOdQ{G#Do+GnxN6k-{}`{}N>@8NuLy72#U1?tf+7kAtH0E& P00000NkvXXu0mjf0#Bme diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char3D.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char3D.png deleted file mode 100644 index c465cb2832e65efbb493c7f5636dbbe815931db9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 290 zcmeAS@N?(olHy`uVBq!ia0vp^>Od^O!3-o9F-;Q!QpN#3A+G=b|KGN4o3gU<*|TTM z%E}B44aLO7SXfvB0|R+@cor;J094r3)#c#e@bu}^lFzshHC`F;M8R0*6arbDKiN|J&D&+-fRa_WrP7WJF+tXYhuOJFCqiR_tkU zK7M`C;>&JPr!w?!o<8>|XX0y}f^%2DukR_YzUlKg`L$Ki`)d=FLvt#k{!3-pCZQt7qq>KZ6LR|m<|G#b9HbXWwnyec~~te!}08AMV6eBLz7;)+m)ADi?@rHUfOubP0l+XkKchGrI diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char3F.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char3F.png deleted file mode 100644 index 196b251ea3d7cd4a82845f3df1dc985e2283b62f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 364 zcmV-y0h9iTP)X0{{R35$kR!0000pP)t-s|Ns9C z3=C0GQJ|opii(OrKtL827BMj~c6N5QwzlQv5eDaCp4`rrj*Q6C`fEHvOXFRH2@q=^d^4KyV0XwJp}s7RJUms*wq zl_Q2#2f+uh7PD1z#UyG{&R6jS3dkIMvBoG0bV9+xdb8UJeN4(q01AY%CGYnz)0_C{^l$h7HHZws!K$!{4qrZ0JU%UZK4G7^A9OYyH0000< KMNUMnLSTZVoQ(hg diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char40.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char40.png deleted file mode 100644 index 41cfeec363dd3b3cc575cc02ae05a75093ea7a4a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 324 zcmV-K0lWT*P) zpr95O7PhvwBO@bYV`B^q3_w6Yii(PMc6L!wQ2+n{F)=X&1O(;f<;~5_|Ns9iPhy7v z0004WQchC=i3RQ3-gG(a=dKrj@Bp?b`r(|nyy+Z$XU7_T3Igmcuvn&zKIHq1)k`?Qrb%$Kwx< W(g|9>;6D}s0000k%I&0}L@1Ox;?KtQ&(wxFP(0000C3=AV9BZ`WO|Ns95LY9sI z0004WQchCTID_PHSuf3Go`ShjU7L^GPu zA5@fYas&PpXHJNpEV4cyXxJ#@i1G&to_Iv0uYD_+AGWKdH+=RMizvKrE7b_ z@2lES_D^z!)B4@Xq~dN^v@5abx$t0}Rajl-I~lwGR%hZa2*)2=>fs00RsKqi}-!0G93u=#g9`rvLx|07*qo IM6N<$f-B~h1ONa4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char42.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char42.png deleted file mode 100644 index 8790345e50b8285f8d5ae2a8d7edd78f9699dc36..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 352 zcmV-m0iXVfP) zprFmo%_ActwzjroV`Bsa1Qr$+KtMotc6N%2iZL-U3=9ka002=@QRU_3|NsA(;FXvF z0004WQchC3UeMg6WtKz?r*jr7ogI<%8Fu&2XQX8t%Vb%DM`@EE> y$4yjvF4&E1EeZCN)c28UH+c)MsOMa#HG_ZC;R`m!;~w1r0000lpyii$u$Knx5F78VvUF)?FfW45-o|NsBJZlOQ` z0004WQchCSX^owu)BohOntB?-fSQRhw8H9cRU{2{ho{C>enT=olnTVKHnEmkD_ zhG~42CY~od!=1APuIa`u;gOXnV1b6M))-pi^c5Aa7-jzV?#?GR#( z0004WQchC{w z5P~cg9yamUM(4KRx^F18Rzl{={n(M_8V^>tWn0G#%IHfxin`v<56MI77}2Mpfr2DN zpN0ahJq_`x9Ce6haB1jC9i#blKT@B69U85qOX3?9?3Tf&=k>%()Egbebk7e|P``=& zeC}1VxU|`c^pDWq^V`*G2n5Spe$ zG`ymt6n^a!yFgU6p<4D@fZRKj&dSxIY}X$#a{5{ni>=*8A>!ZS&nUbYRo`m2*nP_~ zbN38F&w84^SX|n$sd!dWZ#I$W*&MNwYh_oq*Ib*uu>aoKr@YvBF~66~8lR^+c9kM5 ztzmgDA+9U|WED7=pW^j0RBMr!z z;pyTSQZXkvp@N;AU*g@I#^%dBd$j%U?JfNCZtW)Hor*v+-tnyAbU5|Ng>%B4lLxLb zERlF8!&toIpp04yUo-cd&pnNaTyu(#HzaD#S)9xe#`W-tLZQTYg+dpBIT2fv%OA`! zPM?$dV9tTr=~)xL*f^Ut@XtKlu%_oBpV9GOj6&>OCmuR9bFsv&oEN~fh&7>)M5 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char47.png deleted file mode 100644 index 466584e8e313f49157edab247143af230cd30a67..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 408 zcmV;J0cZY+P)@?FH<_A+xdzv@7pqiNYoI0+tE{7U0mVQ6qA=9rV;9S zePvqVzL9Dl$QU-y*GhS%Y;ttk!#4ZHhbhJM$n|o9rs0vReY^T0KXSDr7u>&CQQ_0i zP;7d5tlc^;ABGBK^X0^`%}yKeD|~2<*-0$>U;O~(atLZiF|!i@0000f*;$17wxz;R zgX4@RSQ?Aio-r%@@?~y*lpt(jDa=tbfki>iS;!)ekHwVveNYfo1A>N#@oj>*fDa8Pv5ZC|z{|5#Jo;`cEtgMWM zg(W#TxvQ&d!GZ-q`KM2x0%hmja-0CT#=~Q5 zbzs5dM%$~Zx@T3_G&D9UHZ^XZ$;e`)X0VkvmW_Fe;K2h7pZKB|cxSBW&S1K8njvbl W(VN9{f6fP*#Ng@b=d#Wzp$P!3fIc$- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char4A.png deleted file mode 100644 index 7d758e0bfdfc5877cc0a0a7cc81681f481f8371a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^B0#Lj!3-qdJ*ZX$QpN#3A+G=b|5sL4K701;f&~l2 z#Ke-5lUZ0;0s{jb92^V{4ZFI!wr$&1R#pa7&cnm=^yyQe`iuUJ{6IcqNswPKgTu2M zX+Tb+r;B4q#hka39QjxjIamT?M7MnWzhCysj5B8v&sX2Dnh??GkR+^oZ0_0<10GO-}WG#-OMuXV1D@=L?WtP zkjFJubg^4O&Qu#vgjK}?IZ0_1$w>>-*L$ES(oOFGyZ?iJ0;azLrpwyRYXnv_anU#ffQ8x^a-9Gg zd_vK=CqO9pi*DnjJDVRA&(jQ`UE2jlD;-d^ZQW?4e~aR)Fj%>~raV}=?gRT3FII+) zx?34{@@6FrYhTsdFF3vl2Pj+EsQEaPvKLz2TIKQU`Br=*{Q+(q4-WwDWTOB8002ov JPDHLkV1jj^m$Co= diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char4C.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char4C.png deleted file mode 100644 index c9968385a67d91f8c7b612aca9bfa141ee875e2a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^(m*WB!3-pGf}d9bDdPa25ZC|z|0gFWpFMka+qP{y zJUn7zVupr>EG#Sw7Ay!13{+NDc5rYgD=Pyk@9OG$`t&JKy~xbX_keuHk|4ie28U-i z(tw;&PZ!6KiaBp5MRPG5a=4nFe4+Ae*5CKr%A#H*A7d4%vRikE(RD({HSS+WKAzh? zhpqT~<2&oQ7vvOgN3xt%I`(6Ce6e=9sA{RKcCokVT+0oqehfRywk9^o|NYqfEym&K vf~^OVUp`?>OtYM{mQm_y-J!nhq*J{6-f`&6@r~sNI)K5`)z4*}Q$iB}T)|>R diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char4D.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char4D.png deleted file mode 100644 index 36a9db70e6b211a7451f7252fb114dee06f98685..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 430 zcmV;f0a5;mP)y780*y3XO Y1BwR`>Vx98QUCw|07*qoM6N<$f}!%i7XSbN diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char4E.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char4E.png deleted file mode 100644 index 5e2365513023054850cef332c2e7a35074661696..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 341 zcmV-b0jmCqP) zpr95O7R}AgKtMoIQBk(GwlOg=ii(O13=AV9BLoBlV`F0g004G&cID;e|Ns9j2Hpk$ z0004WQchCT9t$}xjpr4U(NRLVQ{Xfz6!TBW4kF7=!8u-NmWW{j_?6-w%Z)f%Pu(bNvDN?Dz0 zv>L6ct4~xZY+YTGPDQO!*!wKw2Oa7!N^1Lu(t*N_<_Dz%8KGV_IMp$Yr7e5u!_T diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char4F.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char4F.png deleted file mode 100644 index babd11980f356e65773332f6ffd72e03f436a8e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 404 zcmV;F0c-w=P)j`vwhRmm78VvUF)?FfW1yg*|NsAwCFlhJ z0004WQchCqWt! z0CA0%2zEifkXhDvhYr2fmOrhAXQZS&#l_`F+C}7l;*a$M|D`{<`ul^Qi~6FEjpLwS zs*n1*@;b-+d_wcJ0jHPwa=+6b!q@wVc4fWD-rtuwh9s;A%lkwHof#v=DIX~yt%7d$ yKhTtd>^~^1di4KQ5Q}XmJgmG$WX8Dd!}kML-w7f(-d=M60000jb zs89Nq_h0wid*q#;ELS&MJvr9q(-!9J)qafU0;Z^K%D;X3qo8!5(xTFZt9|$WWq!DR u$$RBp)e$$84a|FWuD|xZ{Pvn~4MSrTr~U5vviv{?GkCiCxvXj`vwhRmm78VvUF)?FfW1yg*|NsAwCFlhJ z0004WQchCtd^-a;J z0>F$@3ig6}Gjp5qi#lGT_WmI{pNVR;!kgQX%e{KX({lgA|1w{@=lh}0O?~mlj-%ke z)TO`f{PKKauk{1YFXzkGJN+Vj+>d0ua*O@GUsiZ5VP%-^Cn)Kt7%&a}fDv#uY_snJ z%&AcQ3yQNJ;W$al1mKS|EMh|jX2`U!P#cSSo4nw)55@V7VDpB9@N>GSft36Jolt7s wzQOW(#OOy-y18p!1VoR1^_y7O^07*qoM6N<$f`={8c>n+a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char52.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char52.png deleted file mode 100644 index 1f9d6aad0f0838a8c6bfa82d95fcb08dc8bc9489..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 367 zcmV-#0g(QQP)Fp^wzjr0F)=_uKz4R^ii(QO&CO$DVrYeh}W_4<5S_?XLDC*nPO%s)lwBNcZXAN=Y+>Rh0`ZNj7 z9&B2R1Z1fijdBEyKc@K?I$9LJS*M&tk^WSj8f5KpYag^y5^c~aN7yBipi|>zG@N^( zRpzR`<;|^(5GeB55q935wdCyggdc|$4jy^ctcCyp N002ovPDHLkV1i%dqf1ONa4KtMo>ii$BYF%}jU3=9k-BO_5!QJ|op|NsAhkYr#0 z0004WQchC(_CeTIO_)XDQERduNGlJNCE-HGNI3oSfX@{ZeN{$)v!SU8El{$V8 zro6BgB9s@CJeZMQoMw*sW`G_#G>O;i753SPSWR<9<%8!foQM1Na(;xb1j!HoRg~+N zEa!nBu)bS3_^g<3-VaV$VRJTGzZSBH*Pa9I$2?+%mzLyGr?)vLGsoA*Ti-aG`rclh zB68w^E@a2wOK4;=yXV8#$ZVeMouv1247zF!?eTnshru|ELi#-dV@|&1q5CG{8qkkJ c;J)9>A2?$OqHA2I9smFU07*qoM6N<$f~$I}MgRZ+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char54.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char54.png deleted file mode 100644 index 0d841fb260bb3cec31d2d5a991a0d4ae95d26621..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^(m*WB!3-pGf}d9bDdPa25ZC|z|8Lv2?d;jJWo2ax z7A#O!R!&Y%784T-3=Hh*>f+(yF*Gz}VPOF(cW`ic`t&JK{qzaT&H(w0B|(0{3=Yq3 zqyae%o-U3d6?5KRa^yR#z{7GNSBQsA?BD;}H#FK+zOrkT@^46DiQ!2&)|hJGXPzC} zy)~>T^s1xeRG+XrpAN2DePh$_i_hz|BAA1C6e&lAj%XBYsQzyUN zmUltfdXXJ7FVEV3__WT6&=t8sX}+4xu9G!V#hI_aFi>% zoBj9WdIRg8`*CYzzbaha?Rvl3>eU>R)(3?G_MW!Vs~6v$>B_qHbjj-pyQ_ll{!E^D z**D9lts-Z$!Z+b-p-zrEkME}(vGys@0}P(7 KelF{r5}E+u%Yuji diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char56.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char56.png deleted file mode 100644 index 196264c2651a34155adb07f8c8769c5116aeda0e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 373 zcmV-*0gC>KP) zpr8y43{g>0V`F2@&CM|}F^Yk@?^2!zSZOS<;{Z+nC+(9Zs7!krcPrid;h z8q&JKsNQbT`pihNs{)~p_~H9mL6LgL*`MbV73FpzjCWVK-DG=sJd;$3yI|}crfmGW zH)982Ggn>QTo1^>X>nnnZ@(}P%5fcrB4AuP;5p*8b+$GIo-4fl8ji_65s9{ExDAPB zB~A(-xjQa)Y*RC{`pAp0;vyWS+Ja*I z! zD$?q0aeYj~~E25|RZ mf#1USCVs8aMtKM7*~}lK%@8qrur`d;r(yBFlMJv@n+Un1@rJQBfYd{^BL0#|Z+xU}r09 zcn_W2xbw;FpYK`g{^Tx$JAA~lHUgSF&>j21%`eb1VvE3GR6T(Kz$VTZ@@X k69l$Z;(AxVU3^vRqaDrFc2>^JilV)S*N<=%-`%icyIJ(n z8FK`R*;P+JG;S(#$VwLcvtr+jqm5dA>U?=~ywYyZb~${xdZ|#_v15AMTenrOkYMCG z+s1$D`Jy9YdAHXZ-HLl$965Q|bnlk@ zWA+O^1-?#~k?{58ImGVcLJEM;$ZI`71Ox;Y78Z(%iVO@4BO@aK001#DG3Dju|NsBLKAJ!P z0004WQchCYCYdl}3%^Rn z{QewUM}eRh>Z^D&w>ncS} zL>~Q_t$)nAX1){Dny=%3=ETy_3FaZy{WG0iT#qVF?N$j$d+n{0KDG7YIpZRQyBWI@ zthALMmKKVa$j&=u(r})`==h)dIQyzpzIJhMhb(`aYpIU)#yj`sdwe+;l~Z9eLro^{ ehtuxGulUt^*!A~Z*^&cvBZH@_pUXO@geCxVV{4fJ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char5C.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char5C.png deleted file mode 100644 index 334c9be1ce4b7690211252ca084fe034eeedb475..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^NkGia!3-ofH>_9(q>KZ6LR|m<|1Tyc78n@V)zx+O z>{%Wj9-s^h3yZR{^0sZ;%F4mFSe*mm$-e;vd8RxfsiM9JN2^M8pu?O?e0o&B0$$=xYH P7cqFc`njxgN@xNAc*$_J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char5D.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char5D.png deleted file mode 100644 index be2dfc46e54ac58c8a9302936126e6cc61d11fc8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 298 zcmeAS@N?(olHy`uVBq!ia0vp^en8B@!3-o5N-g7nlyQJhi0l9V|IeO1o1C27)zt+Q zV_{)guwa3Mg98r_kC>R4va+(Fp7ajE15#K7+ zu=-TU>aa!CCpb?%&V0CPVaG?U;iWsiWU|Y1Ox;O3=AV9BQY^CQBhHLc6Okkpv}$A|NsB{;li~5 z0004WQchCF(EH!EXzfgQ)jsmo86d=vZrd6q zGbIFw5dxBTH?0c-M!P5()GD?$|7z3oxJbA&pB91 bc`>{LGM@%RfIdH500000NkvXXu0mjfe-DJ= diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char60.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char60.png deleted file mode 100644 index 68fb70043793253ee76b5638c24d4ab3ff0936d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^qChOm!VDz0XIY&9QtAOdA+G=b{|^idR904Auwa3q zp`n9=LvnKRwr$&h@@LPUefsoiSy>rS&4oqn96%w)k|4ie28U-i(tsQTPZ!6KiaE&% z4UF$t3)Bwx@N$&79$Jw2{sjXg$8Hl54jZ=4+deT04$LQ}y=Y)!X4t(!Y3-%i%WtQpN#3A+G=b|9|@QX;)X5gM-6@ z1q-%q+ZGrYsI06ElrJkQAwUT&>;@gQgO7jr%V5$id)gC7Yq>+K`Esw`YCFh z&w$7b(gg7$I}Y%!o#-c-z|dJ@;9bwfJV`~S2Ygu4jQ3`dW%MYSv;FF5aVjJAzz)MG z^qWk>czRYMVqY)7j!B@5Do`Rg`4&P%6?EScZ|@IaCC7=~xD8hyq@p=m*1x*8sbM*+ zINS~Qv($)nZTo908ZXH%is>8SCN0KqVvEmBu4MT~u1bylskbJ(^%uu(?P@_6nYT&v zwp)MGZmN_dcO=}ombMfU!w!UML|r@@B}XWsrHrnyuWzfz#Y$w0-W|V@feWyJ-rbA< O0000lqg&CQC6ilCsN|NsAy)PRTp z0004WQchCqReIA^n8A(64-p4PcXzIoy1+0|IQhF< z>%jDL03Q~L)G%0x(w6T9czP-Klh3NDG3~^(Z!JKHX!g zsGA#bMOB`xPi#Gi!RkH9It2{Y&&QUK4F1N-BNbDnB{rdcFVgq^uRD`GC>lWWo3bZfn8l)+qP|6uwX%QaxzedgM$N5eUaencR&tfNswPKgTu2M zX+Tb!r;B4q#hkN&ol?4pm+US$ER0+ zzn?gxSrL+H7c=1c~hRaZqo`^SUH{bR_wg1ZG4w~3c{HjuN(q2bxHXP-WO3RJ08bgUUD!B`UH7tG-B>_!@pljZ5+ z7*a7OIpKlrfd-}>;tM`mTA#k8punzlpOJl|f*p6$eWpj7m4BQ~;1%OwG?*WIl9egO zIv_V`M&q&jhNq4n+CPnr+4xdJ%skPK4{rq$5-eJev~Z!NFm{f(2b&T|iaJ%E~M(EQW@LXV0E}`t&JK{g=)XVW0$KNswPKgTu2M zX+Tbor;B4q#hlWM4~1G3I9L*Fg8k1_{NLWIJX>+w?fLgDSak#^%7_@3FF3fkK0IY_ z()7$LHiiEKYXi2XAN7oke;vKqXP(f%xj%)ES1#pUspz|;C1k<_jhR1N3#$6W!%lg~ zu2ed@cj}{iGZQ_Rew_Y9FKqWNzrr``7P2HgSt`*vS;eenNs)WD?*@U=+!rh!>Kv`I TOMa9C-NoSP>gTe~DWM4f8UJi> diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char6B.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char6B.png deleted file mode 100644 index 16869235aa3319cfada61759f9913c8a117c4fb4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^Qb4T4!3-qJ_FCEiDdPa25ZC|z|8Lv2O-xLThleLH zFtDtwEIB#Z!NFm{f(2b&T|iaJ%E~M(EQW@LXV0E}`t&JK{l>*nkAM=4B|(0{3=Yq3 zqyagVo-U3d6?5iZ@)T-N;BmRAp>eBY=l@*Zr{^B+Ua)<=#HEC^I_agc9-&`t_EnZ= zNi8kYa=s+DrC0NNYNp5g%yhl^8Kpb6tiE8g&dhbHreWfGy}ttIRjZCHXnmP*Yew0! zGcKyTHXKKZ6LR|m<|DT+k92gkL!opHk zR_5T~z{A6H_Uu_PF|nslpDHUWFIcdktE&sB+|bZ)+qP{$^)jLDsX#tsNswPKgTu2M zX+X|QPZ!6KiaB#9dGj4n;Bo#rm1V`lf7^8(XHAEOqe zyx`KTxq=oVVm1%1m8-pe`1V&skpoY*n|r!fha7*5h}y?n>FGZs_dkj(S(-Whd4KZ6LR|m<|Ifn0QdU+L7#R5U z>C>*RE*>791q&7^D=Tl?w$0GcP)tnh?Afyp4h}#a$;rt;^>f$A=>R#5B|(0{3=Yq3 zqyagTJY5_^D(19K@)kO(z`@d6f3)ZO{%LDleZ0Gh$-;t}>Ur>6kx3}T*oc4p|jGCuoG*>oE74NAsyT?+pv^016(%V|4 z+%jdKjBB9hM diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char6E.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char6E.png deleted file mode 100644 index b4baf4242231ffd00a069cf042a2694aacdc2e8d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)q!VDx=89mkjQU(D&A+G=b|6j0R!P&EClarGj z930BZ$^rue4Gj&uy1IZ$l$DivczB*ZeJUm<#=^n^R2;S9_6DE?V@Z%-FoVOh8)-mJ zho_5UNX4Aka~pY^9e7$FE_Ys(B&Kqz$HD!uK+Zuvj+xz09Q8u0q}Wa{iQH^7-c}s6 z?!(LL*KHpBuYH>zSM+${*8K8~L9?DNeyPE-YNr54({HZTJ-$+VjI2DbzENqdb6i>Q zX?MtOTf6;S&toiu)DBEEV(hzekDE7AT*^&0U!v4z)$%*%(tE_k_8J~8JCc3?=q3hF LS3j3^P6?A+G=b|6j0R!P&EC9UL6W z%F4RBx&i|Ofs)C|$;!&gJUl#4pFR~66Judv0jk_k@>w4!$5;~N7tG-B>_!@p)8Xmj z7*a7O_WVZP!wLee57oI&3vFKF_gaa0gR7W9P|D82r-2jtkC}#UD|nn(BvatAaL48K z>n$7pmtW8AxA~sGa?2CTHLXn|_nJ-$i{ut8Wtr@*>n6P{tS7VW+6JS{hd&+li*?i2 zx8GkpZRed69=$(qMRao}s4VSSGG(Hb;i>*6ZBwt@w+pWGe_O6|!_o7k8qiG)p00i_ I>zopr0D@X+cmMzZ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char70.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char70.png deleted file mode 100644 index 6e7e31123b2bf475ad020ac5513efd59aa463547..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^Y(Ol`!VDxGezopr04LchX#fBK diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char71.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char71.png deleted file mode 100644 index 97d54be9bb981a80e00ae32e18607739e01f3012..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^d_XMB!VDyX^c0r^DfIxK5ZC|z|Cg1OiHV6B8X7t{ zH~@uNSXh*ml@}~n5EvMkoSfX%)df_uNr1Z=D92b5imPA9|pxxcFD>x!=nzJ77dU#Dl*^pI)dE2h`ynu6PbW-@rX`njxgN@xNAN^eh* diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char73.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char73.png deleted file mode 100644 index afcc4ca5e9957347d339d5318cea92f2a8680320..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^azM<@!3-qhznKZ6LR|m<|9|%E+2rJ8Lqo#_ z3l=CVEA#O1Jbn7KtE($8FmT(pZ4M3&EG#TQa1sDDQ|JLQ1Rkf7(1P3Rdm-Aon8m#SK7i0X9Tkw?h zos?y*d~Ll4)Ycq`oU!_b#0&GN2Tyof+#VTnL^0)j_;jdHpNHx7Y8&T^LSpmo12@ssAk^JpPoBU3qFtzoye-|m8hZ!bOeK^tDnm{r-UW|y-;L1 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char74.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char74.png deleted file mode 100644 index 38ef33516db2a34c744064b533d8567ef8db78b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 318 zcmeAS@N?(olHy`uVBq!ia0vp^azHG^!3-p;b>_VWQpN#3A+G=b|L5W1IeYeOU|=9n zjD>||!GZxM1p`oFen3%G%vV(&|S63HMeahz!7NAnbk|4ie28U-i z(twnfQAb;y^UYPx}T)@bu*rexA8p` zsMn%pul8=Gnp@=_-J8EPG8SxA5`DL;alNT=viE1@5~=L;$GHk;WrKaL`Am)Nn;gx4 zmi?#A@ri$TByE2Z#}UMluc7?&`(6kBott$8*VP3X9&?h}5_MW#bm_`PcN>-|_+&(E ztWz^$pRgeM^pc?B9^b&^ZFl?YR(xPpyu`ON(R7OD<^3O*+*l>B$=>rK>y}f2e-8jX O!QkoY=d#Wzp$P!1;(u}g diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char75.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char75.png deleted file mode 100644 index 4e7af19dc8ae629a95f903af401ceb607475bf88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmV-W0k8gvP)hvEb}=zA78VvGBO^dSK%k(Y|NsBeBU7&c z0004WQchCk%WD`*SwEiio8p9#`ypICwb=GO6hTUQabql40waMuYr~26e@)pB*%!2W#_q zfOxnad@^2eYO_1}k`EGW_POVsVV^Mz^fOZcRocxpH>BzC7nykK%4u=sP6TPlR=1&q zSjx?%n8a|YkC*$Z(#c? iM74;o5MjW*!hQhAt_d9IUpUMF0000 zprCekb`};E<>louF)XJMQ1&hMt z=xB!p6_c(~EV_uA+jBDMC~WdU>KC5S;#q{P>z5#sIerdlnx!LqVyztjk9-I-;04%8 z@N+Y9h3H)A*vOhh2tK54UNXF=2AfRTvqXcfwx%gttg|<(?Uri0;h#~I0{>CYx%t7c z`kNm2=h+DCz4Xi@CcB;XGdxIGeTE*lIX=n=F58m!3|9$GW-D|Tt#r5LTCl~QYi6SR z1l5-l*D>^P5o#JFoxXcBJy@QeY{m!`8prvkS9Qq*S25|XD^1m+NQkYuQBv3{!8JuG zT~gNDV3FWF`qyf$i{ah%I|bpe=Nok-QttD(>`nJJBA<1h&j~zjj6goSwT@(fPQ Sj}N2(0000ZI91Xd0Ma^&NNzNPZ>H(5W+}V=rd9$AMAw7ucrt&Gf34becV1zd&F^&)6 zEVXw#48u{R?nwZB&ly)ZjqP|@tLnbRzD4@xyez4&{6!(kIhOp&QQdU9Os(i$<0jtQ z!Tp+Yrr}!~Q}7++SH1peQ_A;RHlw(iM+4l4MVKXebHL%lyG4}bM|Pw<6TlmzPah|sBY?RfCf%<>A4}Gs_ z7Qt_MU4OoA1X%rh3OpUIV0`cl@r(*~e|jNcMjrg4Z@^tdlRpNZwwWL9VFg8|f%G5% O0000_B_}7du(0s(@F*)Q2L=W%Sg-)7K63AN6`(X@NswPKgTu2M zX+X{nPZ!6KiaE8DZZowgaJYQDWX1LB|NpmP*VaiL>uyt@A=vqAg(~;vCn7IRg_t=k zPwzXCem0bC`P#S1i5{^HtTt0T9ReNu9~|r9{=k*7bxnKi6P``iG?KqPRq#{x+;BEm z%%M%;|Bb=RZf8C{*E&Od(xt!O_MKV5%B<&VzZU2R N22WQ%mvv4FO#o~kfSmvU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char7A.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char7A.png deleted file mode 100644 index c670440533fef231e5f126edadeccba7d98135c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^azHH0!3-q3s&wptlyQJhi0l9V|I5nCl9Q7S4GmdX zSk9h3yI{eBz`($+t}dXGr%#`5+qO+vS(%52M@&r2!NCEjUh32Rc|bYFk|4ie28U-i z(tw;$PZ!6KiaE&%4UBbmaV7_jALgC@^brda+nfewjnnPXv*b0-_C?PU*Eri2T*eZ8 z_7p4QjkReH8=2DbN?t0y&HfYi`N8&CocpgzD7wn8j^>wy+9 Nc)I$ztaD0e0sv5kPT>Fm diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char7B.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char7B.png deleted file mode 100644 index edb0fbbfba210948d6158a0f53b6fd106e618638..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 293 zcmeAS@N?(olHy`uVBq!ia0vp^azHH1!3-of6!`i9DdPa25ZC|z|Cg1OIXE~dD=RNp zu%N4}i-m;+D0%km*{4sRiiwHw@bDxjCmR|X1_lOh+qMm;{(3#{L7)o8k|4ie28U-i z(tw-=o-U3d6?1X}--@*=aBL0=2&wtMop~5tg{bHGweDv^K6HR=8N6xB0Nc* zhq{FhM5ZM^n8LV$S4{o&=iaiA`P2Hs9Dh&P8J%pPofN3O=>8R^`(a+Qv)(Ow}^UQo(iwAYnkKgiHcW7$4@z*u|(MPwL{!jmx_WjbcSy2w&A2X)5seb>k{m!Ki pq0!Ao7i`o%Uiu+%=e?n*{?A&rZuLjqQb4ydc)I$ztaD0e0swvSd;$Of diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char7C.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char7C.png deleted file mode 100644 index 517a44c88df7f945337dea61247535f4c17f74f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmV-00nh%4P)c6JO53-oX0|k_;h) zVHMsr@U8v5pu(yh>P`^sl;?`EBc>RcaQib#t#V*kVdJ9_}Oc*cg~B!(+?~F#Q_-oGmkNn#0G; z@50~N+u|$!&fXlX_&a+nK55Rj1z+$U^oAeDsvACaOp=cOWv|_hVqAXNOOGR;8(tbl teckZd^pwY2(;6ckG^Ta^V=8lld;tJ22;@kF?UDch002ovPDHLkV1iXtn4JIs diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/298/char7E.png b/sagenb/data/jsmath/fonts/msbm10/plain/298/char7E.png deleted file mode 100644 index 57db02cf876959a7fa787ac08809610d073ca5f7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 325 zcmeAS@N?(olHy`uVBq!ia0vp^;y^6N!3-on{4R|GQpN#3A+G=b{|^idG&D41VPWCn z;n}urn}dUcn3$NdvNBLfa&mH6Sy@+C*MbEL&YnH{^yyQe`mSeU&OkZFk|4ie28U-i z(tw-;o-U3d6>~}_I*PR@@HmHR32=S+w_UbHtHUR3MtGg`oo!ktHH+?~vBrFoj}Izw z`0>M4%p%;5QC>eX`dDx1(%bgV77fZP-0s!yiM+YVD_+EO?+GPaYiEUdA0G8>isbms z{eH#OV-D$}Hec$P=9R}*+;*?Je?|ZOVdmps>R#yc-JQ%AW^NL^W>vPk*d z=HcO4uwX%8U?5Qb?Af#1wrw*sG-P365fc+DD=T~Y^eIri_>GPFKxxL3AirP+hi5m^ zfShbk7srr_Il1RA^0g@NxCDxctlQf9|9`Y+$D-8dz0NZ)2+Z3ewr}OKWmTs{B$pr7 z=zsdVE}h$svyb&*jL*aQy8VoWS7sEi?Q=t<7zirz#2M33 zi3J7*CMPF9efpGzg{7>l45*5Sho`Hn%h1qJSy_3(f(1bJr_W7z0+e7Z3GxeOaCmkj z4am9S>EaktG3V@*(|m^&cvuwqnfUtu|G$09kAFqi_30sR?EcB; z9bPLV0-^KeoOs1u%#!r85R``GVsV6>%)_2#jb*lO*&f4!) t^WHfy%|E?b&=N3_W}LL;OXk;vd$@?2>`Rxi2wiq diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char01.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char01.png deleted file mode 100644 index f496956725afd057cc3d6d342743b052b5e9f2a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmeAS@N?(olHy`uVBq!ia0vp^Nt<7fA;KILqo%D+qMM; z1}ZBnFIceP>C>ml$;m7%EM;Y7JUl!=wOw6ZVq#(r4h}%|X*)b@fI^HVL4Lsu4$p3+ z0Xe5VT^vIy=A4~!R;WdRr}^jcq{i>{w{_phNw`b%TQ9b(ck&GC75o~;8<2dDJK@wh zAL)iH>40ksMP^zuoUm@(bye{;Yf)VLr-me^0EK643Y$5%D4Q=2JaM+#ZL75#ueqaM z*&R0i!miuK#=3o7X{~=XmuxrS|Gri4`GKmo&3b_=yGswWy$lYIvs6+(+tzZu)dzvc(&85;wr%#bC=8il|M2)cj6x&G133O{Vux%MX2uH^J-0A f{->pKY=0P{n0dFH+Vr9r=q(0MS3j3^P6=Y0000pP)t-s|Ns9n zF)^T^pd%wAc6N4AQBf8a7K)0B1Ox;?KtN+-V+;%o0002x<>k%I&9=6-|NsB~1Skan z0004WQchC=Y0000pP)t-s|NsA> zprCekb}=zAQBhGNBO?|T7K)0B1Ox;?KtN+-V+;%o0002x<>k%I&9=6-|NsBBOjaNO z0004WQchCb#$WegGl>ps)q+qJm20(x63y}3P z63H}=Wan)32Vg6a8on=2Wl~V@R{&On3c#W6@<#FOHj{ju$0IWdo0`XyOeR6iC^;P> zxp~JqSkBD~q?mEDhKClnn_CI!p)$D*cJq?-5!t)Xr`yd<+mC%q_}OcGEa}@2`?KA+3+zv54OjKG`g3<(_-xO zyb5_&IGUd3#Q(Y6>}q{Jf*Tjx?BjD;5u9xLXOcesO;`9w+_R2O3B~E mGw7v)Kl=Bq;t}2qw|)TNj1Fz60+RRu0000g~zW1yg*78Vu+1Oy`^BMb}-0002Cwzi6jigtE(|NsBe`!^;4 z0004WQchCe5WP?c cwYnsBUL1`JX;-QOga7~l07*qoM6N<$f~?t_e*gdg diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char05.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char05.png deleted file mode 100644 index ba548c73641624cc2b107704eb46d39507f68072..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 379 zcmV->0fhdEP)g~zW1yg*78Vu+1Oy`^BMb}-0002Cwzi6jigtE(|Ns9YLFe=U z0004WQchCmvXEw}oIGwUD$k-4`9*IY~BI z7EWbne^+HB$r4dSNRS|2ggCjAUm@8IA=gj>(nm&*PFw=QqwpP4wfkza+vUSx92Wts zrzt%lz3FB$dI}+FRZS{SA>CxEDds7Jw5@0o4#frxg1RfAnYaxV_+@WtS_aZ~=KL+F z4+yCTH8KU9i`Q*045VUOlf#?Kv7XqBO@a*F)_`}&9=6-1OxprDG1ieqDA|NsAyLvITJ z0004WQchCNklK(##UEO(FbmAis_ig6b$IgrQmz-pP8s=L=G>P9Wseu`Y;*+R6oqu!>_l zAx6*Ugc!gNAt3^4ZrmV#1(L>S5Z)Z1c1la;b_}*lR}CTOQZ{Q`!dvTeuh04|VehMR zF($q(uId}Ggkld@s*CEXaFp%-YonR?h%2;MSbmE;d3Xtwv z!uLhmC%GbyA#@L@L-tZPl>lkobgL;qh`J{rLE1xdA0Ji>bJod2=FcGdn*9o)bqX2j Y1=&yv*yNZk%>V!Z07*qoM6N<$g3NHCUH||9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char07.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char07.png deleted file mode 100644 index fe9ff1db91d330f2ce54c8b906ff1d2ea1148ef3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 380 zcmV-?0fYXDP)prDG1ieqDA|NsAb(;0OD z0004WQchC4ah4=o)C2oAGqUe|{7J8Uivi@23xJs{msHpbOBG52T^M<^yvVU_E@`R3HPOiceJh z^Ch-H0bs*Y)F)trNG`F1F;(U!GV8ibV7Wm$5(>^#qp?)lGE^dyhC~Hqpt7h@PzGsX z*8dq5L1t9orZuQVkQx;rVif#JrC@L^T7U=Hsauwd_@dQ9PI_M|2#;w+>(0a@=(3X3C!iYQZt*R_AP(u5%*vUHcW`1LMv0S fHYp^eh~8g5FnkS6HtT_V00000NkvXXu0mjfIc}E` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char09.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char09.png deleted file mode 100644 index b83fd1b8bda94075e400e16e819fb4f2e2d5ff54..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 374 zcmV-+0g3*JP))96ov;r7YQisNEurTyt*x3F&atuEIDJHu0#Y}CaEV#D!i8MoY#iDg6K zYb1Ob3tj0ubs;g_ z>UcoRuODJ>FKM?@dsF{yyJ4>CASE5?ij4F}Z*gY`d6SeN6=Y0000pP)t-s|Ns9n zF)^T^pd%wAc6N4AQBf8a7K)0B1Ox;?KtN+-V+;%o0002x<>k%I&9=6-|NsB~1Skan z0004WQchC9j0g?Rwx5dz*?7r2vf@;TFhU3`P z`)sdc1$YkPaB~ogmq8e4u8D?W5DzTZn4LyZ6uU^9pA zacuxb19k^cK6a4n`$JhEVwUm*7XjL=S$2o#<7ES)$b?|19@l0ZwH-lBjo$J85DqpIBDtoq4b<{#8If*rza4IOKDO`4?DNh zV95-5qL!HJ zyfg$h(7$BMZ6EuK(y?cbOK-?Je7Pp+ zAvSC3Cg~xIRl^1UY%J1KcU-2Y)W6;y$-X^@TQ~UtZj%qGIhV_=00000NkvXXu0mjf D=Y0000pP)t-s|NsA> zprCekb}=zAQBhGNBO?|T7K)0B1Ox;?KtN+-V+;%o0002x<>k%I&9=6-|NsBBOjaNO z0004WQchCpmrzmp=u$l~Ef7K>xx*szXXvS1rHcG%HN91J@}$pSDc0s6~GVPPi&K)>q?nE5f1 zX{mmiKV+k~z{-l$@ZamHWD4qj1Q2Ub0kG=2UMrq$O(q}v@yy8tqx$h2OEN+AEGZo_ zxqinvtP)Kos#u`O<)NpGW@xm`6A#f8ODpj-Ez4Q)C$^#;n8fglD4yMQi?-M_8QSPJ z!Vf35!sVcbFav|sZjT59s_99PSWzc$UpFN6;bR~SiIeBkqgY58L*`Vb=Y)Ho%BVf@ z#QacU7oHZorsoSc-Zwm_=g^(LG^v+nYTPzE3v&-rLpdJX8;@$JB@qVO*?$@CJD$pL z!mXCuOCfWrm)rXqnbT{z2|C7~4RN_uYArW@pTGI`Ouqe+AL_#ocNvr94FCWD07*qo IM6N<$f_wkXF#rGn diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char0C.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char0C.png deleted file mode 100644 index 29044014f7fe6f306f3372d9e5cfc29cdbe5b499..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 337 zcmV-X0j~auP)ajq{!xxY3iSS_>lTBVQ%H0R_~jG$gZ*%B+WErCtgu z*;AR@(F|zpSTM?&A9g@SrH3kLxh!Zk!o=}E(M!Gx$(@HXo94l;HKW_oDaK>E>dSXE joxVZv=e7u_zZUib1uP5q!UmUd00000NkvXXu0mjfVxxrX diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char0D.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char0D.png deleted file mode 100644 index 49229f1f188b6fd583e6b27e7ec1db5768bf13ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 325 zcmV-L0lNN)P)k5QO(WGKtMnM000aO4CUqJ|NsAnfW-X( z0004WQchCy=7pfF5V<*x z$^cEH(9K~Ky16J683{DVGW*Qci0o{Kv1-lGu^E8n?TFD#Xr-J-rMy)sDrPSb2*+Bu z93LEP=d=Hpk}pUIAWG!#iJtbmytM0)PD3={_wp0j;w8mHyz6Q2iktp|a2W|#UlsQO X&BzN>?80nK00000NkvXXu0mjfY4V7& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char0E.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char0E.png deleted file mode 100644 index 284bf31d1fa7d45448acbd4bb3788bb750664e30..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 424 zcmV;Z0ayNsP)=Y0000pP)t-s|Ns9n zF)^T^pmuh4QBhGNBO?|T7K)0B1Ox;?KtN+-V+;%o0002x<>k%I&9=6-|NsB%shPY0 z0004WQchCyPXjcc9au-M{!6ShK1QB(XboF1-DD$p>`A?mJn%%gf1a4)dEDx!89c5%L?Y= z2hI|F4J*XjYzs@MD$jv~tW)KY067j-p3I;nFlEn!?)8>OIzW<)d_H7?p~q4vWSB)8 z@k&A}9m>A*!@Oy9Fu3JmD9(`5@NUAno)2J-p8?jZ#*-?Mg| zr*n^7PE_xnMFjo=4KD<1ol0h9e*MJS&ZQ9aG-Xu#4{Eu%H;*H2lfuW;j>e zNWc5sViE<}ePTkYmkwZ1i=Vn65363_QGAkT#w^d&GV`l7{Fgj>D^GqJa_a~23JylX SZS4pE0000=Y0000pP)t-s|Ns9n zF)^T^pmuh4QBhGNBO?|T7K)0B1Ox;?KtN+-V+;%o0002x<>k%I&9=6-|NsB%shPY0 z0004WQchCo49*23!L5Q^(Bu?33P64iTto#!P61380}gW9p(aKi zJ3Gc~pLu$Wm@>sd>{jdh4x_*AiEa$b*>hmzaP}x*C&?{m&k4A@bitlv3Q4Dre9cjc zAPXQ|XWZr{+{l;13(lW8#mL&b9ok~RTw3sZ4ZU?v zsJJlp_QY=wv5~cB7=|otkM1KS*h2<$8psb+lUnbKdD1J$l8oEa(O2z|?xnu4=6lR< zxlN%YmO!+p<0qG!Wp0QOl05|C_7uc?Q~>Ijkl$Shc)&ZkHx*^H4Fi%~w5Ma2?CFyK mW6!=|{OZ4FWlw31`05W@nhwCIrv{$@00006P)k%I%@!6Gc6N54prBDvQ49{i2 z0004WQchCZJi zh06wPZ(Ct~IQV>d7nsL6UUNm0Y6&+Uo?5MyW5wR@9X5^!QG%&lh=P-0NRUO8Dg?g> z-B1VOWnm^6luyi}0?9$-y=3=@!h3h)26t0-r9=GOM7U+gsr+s4t` zCI_L)pn@!e61ohkK-APrGAIB+(-kQO^q^fvHK5DgI{-m2kBa~NJ`iCPs-$He~%*vHM@WB$Z-;rex4_Ko?lpcC6L6tNGRe_ z3W@~byODfcQYazAh#2OQl|e?saQZyrXY2|AKSou^wJNsD1IzXhH11Foo6Ddt74rT^ zXM;r}Z<5;~0CN^`w_DD0#4`0`jxU6T$8j=*G1RRcda~?8er@CWBVqP%D5l*V&7RAM z%hy9RxY;_HE77X=j+-XZwJ~$!<&o;`dJePNYP~z_@2EH$s0~-5uns)-7=|Z!Z{Gcd z^<}yC*yr9R7vg%SDX!D>+9UU^f@@LpGTaaH9Q<0zkB5fXTmRxMFL$91a2Ly!UjP6A M07*qoM6N<$g00=sApigX diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char12.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char12.png deleted file mode 100644 index 08d12244589332241a463de25cda0a45dcd6565f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 454 zcmV;%0XhDOP)g~zV*~^Qc6N3Q3=9AO02US&ii(OcF)l$PLvff|fGk^524WB`A<~p2IefEJ(Xs<5mt=94EaxU!wu3B(Y&pqdon*NP3wAGA zYQrL0enQS9#v+m<(U>CsBbIAybem3@wUAeno_rI-Qb@44unJSwLV&D=DzFy8`BiXn z9h`1saH@&GNf9`e6nRi|(*dh`Hb6hFKo7Yh{&PaTK4E1HrTRw5a0%~yNSfY2^aMS3 zs44T8h#?D)`s|5lL$Ew9m>uW1M*js}l)ghE8+B={NVsA6;j8CXPEU8teb9J8sBL8c zxp!iDde3=O{4AdEoVE|13$cD)P40S_*1yFZx6ISdGk^EnFkFky(LUUsF8DF0*wMMh w?ER?@3tjUw$9K(vyvqUV)m|#LvGKjwe{LQO-+D3N8~^|S07*qoM6N<$g0H>DdH?_b diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char13.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char13.png deleted file mode 100644 index 8c283add264335a4c14ec461769408148d9d9737..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 449 zcmV;y0Y3hTP)pr95O7C=Bi|NsA7Km-o} z0004WQchCTFi@#t)_aW!xA*m+W;kE;5F z*yxhDTyrw@oI4$taphpg7;lJ<3XD2U!P1;oStej>M|{ z7Nsobus_W3dXS(;<4dRhqeH(z9<|H!dlxm_+KyC)ja`6ILU3zjEb rOV1qN>$#Bk^33pmWlC(<>0RtUv&If+zWySe00000NkvXXu0mjfjqk}C diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char14.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char14.png deleted file mode 100644 index fafd173f66f42a72e3e50af9c3a31cfef696b33b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 451 zcmV;!0X+VRP)0{{R3&M_ws0000pP)t-s|NsAE zV`H|qwm?8Y&CShGQBf8a77PpwprD}T<>hvEb}=zA0001rii#s6BLoBl|NsA-hnYtJ z0004WQchC?xbL7-sbUYxmdIBzXFMKKl<3eNRQkoO`dcAZtE#HoZ@t-)SQk!49RqX zS>*v9cn9j*UJS|qHjHN+_TAzoX@`}K{M8JDaFJJbnv}X;cT|?=vCsC?AChnPlO=z_ t;fH>~8T`3ivcKTyImdK{aV5v!!{-11 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char15.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char15.png deleted file mode 100644 index 0ddee55fe09e09820e78f64ab2bfa5ad5d287310..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 467 zcmV;^0WAKBP)0{{R3&M_ws0000pP)t-s|NsBZ z&CNhSK(@BFQBhH#prB)8V+;%o78Vxe<>hvEb}=zA0001rii#s6BLoBl|NsA40*H$M z0004WQchC`t`E+oYS;rQ!oPOT;FC>B&CO()3hhR2Z3{nO|VmoQjF_^>eoRm zX-@j+K#DjhE15JBKT4WHO%~hB$~1|?@tHR55ywnR$sAg2$RTH!W@mfP1Sd67)fP<+ zoIEhz1*;sFc)&@95<}2=KSKXXM@mj<%;8&7b238?x#o0iLr!WhJQc||>|hHMAM~iA`_)CHtcqX^++ZrL9q^U^1Fa8`Cp^hSrq` z<0c*SVyG=$XKq;TrVHSTHSSZ@_RLa-(3gZ4lg#c_VFL&NL6k5}vwq7u;{VxY-pzZH zoC_J>3B1fYfel#4OHPxX3^KZ}2>YnGt$#s0-@j4AC0(5sZmQ>+7|q4y@6-;h6>T57 rjXOf@Yp@7np&ddNcu+!(`1Z;VCA|<9c3T)O00000NkvXXu0mjfh@hr_ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char17.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char17.png deleted file mode 100644 index 2ef1ce3b883027bcd334db08a15c938f0ba79166..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 387 zcmV-}0et?6P)6g2DAZHQ|`eA$vzH~ zj)O^XGNhw1q(T`|z$;~bO#&kC28l5P{8h#b)^h-$q}r(l`MRghDn_BJi)CFj)s9=@ zdp5ZT$azfqIFCcF8~RWeT8lAG6|YvjhGoa@-D%kTO|drf_Q6Hq_f8s-$@h2UJz)NL zLf8nfL^XcNz=IL9JWr*3TJ^0+XP)lp|pr9ioBQY^Cc6N3E000C81kKIO|Ns9&u+6go z0004WQchCx}*moge|+< zCLm{t!61}58A&E3j4~-;5;^|GZE&CyITo#W7vTZV6cZ5bBPTnH_~0jd7l|39R~fa( zf?(}|4HVV=FyRVvU%HxADsWE6(6tWz+DcyBqt8S8`c)_kV%`x zT_$Bj**sq;28ug|K_iz=pXPtPtKM{uLOgdMws%m3K^W*fyf%V_(-`2(gX V6jfw3bx{BS002ovPDHLkV1ih1=3D>( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char19.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char19.png deleted file mode 100644 index c93222910cd6c98564b2729a2f3f72efb9edc832..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 531 zcmV+u0_^>XP)B>z!rx8EEM;W{#;E07BEbrB zNK#A8K^y)Rq}N11FTI~D(MIr8T4Vl0DO_V-TbI3#QTuDi>7D`fkJ!Bmtz-T{L@kh} zx;8a;%ZVtQAVs9hFJp^?V;G2#>UNgsig-0TK3w5W7pcK0CCT@FC8*s>W^!eXM3OF> z;8`pT%C7RyXzDJ1jDTT@J;&)v&=e(ER|k(Ezh08&hvAJAq6S>fQybe;WV%nHey+!P z(i~HBf<)o)*80jf8A&we%#brKhQ~A2x$yc&d&sm_Grk V6S$Zk;v@h7002ovPDHLkV1hlw>1+T1 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char1A.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char1A.png deleted file mode 100644 index 450fa248884d1f409d48b01ab432246341a01dd3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 541 zcmV+&0^_$wtJ050dmqQ`sQvGPn~q&u9Fh#<>G6#YQQ-#*XJir_xxoL&6nYsW--n0 zvD=f$DolxK)UZc$bL=3&h-Bt;I-3z^2KN5DAl`;orY&BSA>qU|iiK~CDYHw+A0B2p zEFGa{OF{6D&TarMfUEsyQft%C3qc3oD$Rq_v+WJ= fY1 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char1B.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char1B.png deleted file mode 100644 index f34058984f03b6dbdaa6351da474d56bb12b3ca2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 529 zcmV+s0`C2ZP){r3ITWXUF~`;nvDW%>*&317B7<_)v$}(WV0-8 zWykpU9Oc5FB1jnC81GHvWAA_N^0bqnzIlvyzu1J`Hfqs9 z6=S7y(r%k%3 zRar|hYrWGZUXQI)gRJWF!RnSLe)DlwzjsQprDG1isj|y0001EV`B^q3_w6Y|NsB<(TuPF z0004WQchC@b9cRu;2iAq|>u|(xH zH&B4Q(<2<>lz$lybw`1%d4q3s%!Kyjdth>Q}rrN+K$aWn)5@ z)$=RZ1?nyv;~!^FyK{;F3`0o+xF(t!8HvEJo9h2Q8EKF)FUf(sHG2}J_Bu<(X|@$1 zXNL(SB6ZYq(un&&?0FI2h$DiR$yuG3X7Te@V=3v+U&##nTYX{P>IyB`PLt=YE)i+P Zd;sbS3E^U7-&_Cy002ovPDHLkV1n$=h!6k( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char1D.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char1D.png deleted file mode 100644 index 7bbb21afc5795acd8e0aa7ab407497b0339dabff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 390 zcmV;10eSw3P)i0OjT7|NsAGRej9> z0004WQchCdtMNEX?WG|rj& zzO`vqwr1g*78`eyLRN`#n$VI-DR#P^oyb^TmUjCoaUj81>Re#f`l_nIL@JyOTypN3i63|k}L{p|zcI=G*)e?ZqC k!auy)KE2rf;$~mkA6r=vW=|4SzyJUM07*qoM6N<$f^FcW7XSbN diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char1E.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char1E.png deleted file mode 100644 index f23be240cdc0fb6827e95f61d2c812a0adfb8827..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^+CZ$s!3-o%w{7$SQpN#3A+G=b{}&Szd;0WgS65eA zS=oXG3zCzQ0|NuMZQJJH;BfZrSwllZ78VwuavmNYWo2cc`pmnwVL(1(NswPKgTu2M zX+Tc7r;B4q#hk5IHVPh4;BgL|%))Wx(C_@&qD!o!ziNln8W$BtWHP3|WWWEj#Pf^l zOBSvd3{`fuDpixeOnWie-`e2QOYSp5yF7NqE{wO^D|7JD;tOF8(zjf1wFNskFVwrx xB;s{-$zs)jwX;|?Woovxh|F?WyE*=Bol!em^O-N-B7sg|@O1TaS?83{1OS$(VMqV~ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char1F.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char1F.png deleted file mode 100644 index 075a98ca37344e7c9e7c0a84b982693d978b3724..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^+CZ$s!3-o%w{7$SQpN#3A+G=b|1T>m>+0%CPEKC1 zU_oGD;I?hs92^`B4GmdXSk9h3tE{Zd!@~nq{`BcnF)=Zq`u3JtEI>YENswPKgTu2M zX+Tbqr;B4q#hkNOcJeYP3OENwygTgk|E`{D53{#L-NLWUH#zS~p2_Zj9`9{6N zXM43<8y6jv^pN_)7}%`*A+vyK6Px>b)fMX5`&TtthN8{wnmac=wCrDdMhzdmXEm rbl26qb}hZwZ+z30>$m^(yqVc3*pldJCLMP z0*hD&hWzS!)9qh%J2s-UBe9q7FyCbt+NqtF7Qf#R*h(nbus+ytz$1BJPnV{9pT=T( zHw3#TjDDDms1O#Utl%)2OC`BqRl+-=t7sY;HncADsoL7ey<`JeeP!%)J@49{iuqHW jjP^ck>SStj9{&FToNo=Je8z|;00000NkvXXu0mjf`CX@& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char21.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char21.png deleted file mode 100644 index 92e42af6e6299102bb08d00601f29a4728a6ff4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 357 zcmV-r0h<1aP)d2_h$tZ*yM$x}u^8Y7$PFVamwTgW`RXPEXj99NQ8(_6Ew-IMMXE4}t0~Hk52mhJ z)RTC>ZEU0^F->qcQ@4y(?0C|<>t$Tn6fYjxp7Ov#ufnxayK(c6mu_adu{2Ixy{~Pu z_1+lii(N^1Oyfq7BMj~c6N3nBO{=opv}$A0000C3=CsqW45-o|NsAX5EoV_-%R7NMZnj;11GMJhIQZRv%vuesLSf~bxu2;7*L3Tm8rsYVe+ucXo2ereTg+pt$Q3YiFpJCdAXbTCbCX?uac_D`RU|>0&_u47r5|zhu|Bj;fVIp9ft` zjZJ4S=*Py~yu{X^woUUM+r==pFG+3NMd$=}<9?N#lzD9aAF;h|+ruxhg^5CZASH!1 z$I=z(a-1$kTwOduzsa+he~L|iz6CJ-Ctc>*5BUHVP83z$Xd!+800009F(zR$ zp-PFQC_g7o9FvHEbC$$oFTb39;!RAs6QBiuV>hh~ww6&pIM(fYD*{?-BP|qUrpJL7 zvnWM%;N=jDVEcYYbN^My9hy+WYS~~ZFJY)xU)<=0g@Rb}~{?_cQsfS{e zHpvfS)t(KpRgZkI0ii0NxEW;GGJ9$Jlhm?%tiupf^-4@DM{n7&xUO0tGD(_j&;}pm(j@aW0w!I^paA)0|jN5M#S;>)^hpeRw viT^AHcAO;E@-N9YzG*t_^q*AEwHNsV{9_bn+5!c6OkkpylP||Ns9G(u|t` z0004WQchCen>3$Vu!0jO zF{VeWCHJWPeNK4AGb5e{>4-g^q67haA9cX40k#$4WW*)G1fZ-L#<3Wtz!8QKEK^Zb z9wbsF#?p6GO5+s9_#}$M+8u?b)z{*BMrq(;JPt!gQe3jYNgty2?ZLUBlhp~e#P4+yco3{4iwh^)3hKJUz#d&5%Q zhdp|>&h@iTg(NV0f06DhDliv#L3cFqPTiePx4(K>D<#wRwyWayL*i+=nWnpcCtbD^ f3w2keyt}voHU}qc(M%T}1KfZFo+v^yWaaGz3?VGdV}LRzf@JLvj&(nJ$mtT8x&q&y8ceipllI!AvEMss~EHJ~#5@sP6PcRDV-# zv&#GD{CGI(`(KoMR0O+j1#EV8y65}%v3IlnpsjvAYp(30(Q-2_SKU+YGAC-^>Gc#} a-|+xAln(sB764oT0000 zprCekc0fQtBO@c_<>k%I%~4TNii(N=000C81Plxe78VvUF)?FfW45-o|NsA(3IAjO z0004WQchC8qfq?VkNssbe8u6zMv2Xcsq*SZiDaLue#km3?B4*6IUg5=l40j$$_rMeTs1LPWG zQ3=uSu?)!|1sjuSDji|OlPC@wLjr^$oAS-KWav#6g@(xp({ssZtqs!|wCj8$W>x9n zopIx&WT>?D9jU6Yi5J6bv)mr!qk`POx*fis-ZduZH~WdP1OM?BO?A|*k#3ex)XzH{ zAvRFQXKJ!=Gl!cr>{NM*3>pV~*MrBV(8tCi5u!gwY+-&MaFbIBPPE?F&i)RAG0!Ny q%`$38{)vy+_BZaM!XK+Tx9cC=cMwgTA#->D0000 zpr9ioBX)LnQBhHfii*w6&E@6g0002CwzgwqV=*x?78Vu^3=9MW1VBJQ|Ns9n&&JpQ z0004WQchCGKkj5YmU8A!~R$|G< z4D>dkmQ}KuQE*0+G?UVV7=tyr1$#M$hY1Bd9610 z(UQZIMRrtJ-)$RZ>&Gy)a~Z3j({@m4SVi1&lg7leDtv2=_9pO#+KbQH5qS#zwOOki zvJK@aWfS{CPCGwIKqL&u&qSeS^S#+TvSd+2#Vf!{Fc0{nj9`{45!q@`_1--<`-_#H f*9XBj^=3UkN_h@jtNIAf00000NkvXXu0mjfa5AR0 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char28.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char28.png deleted file mode 100644 index 64920655405c7605131ce4fcdddbce02128a47c6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358 zcmV-s0h#`ZP)_ru&9DW5OoE zxnAXH)rF5;(M!%ie#9lkM%#&4Exd&?Wd7tx!2Ua22|=9vpk5o`<{907*qoM6N<$ Ef@xuwWdHyG diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char29.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char29.png deleted file mode 100644 index 253df9029d68cf099c555d7636c43a20e7b65d92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 339 zcmV-Z0j&OsP)whZe*RaB->SA=1ngJ>f+LO!z#Ow7uvkVQOwj<#9E;49+Etoy zL}ZFbVu~WrWPlfx2Z0<<_d(ITbq_9pU*k%Xts_-#1zp)-S~A`))+LcJDEDQ&N~CMJ14LN>^0-)F8NaFX4b_m}!JPr;)-{~j$)8kP+Z<&cUCs1K lNywz!mCczc)Tm9nFg{?`3^Yp^9>@Ry002ovPDHLkV1i`TjHdtq diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char2A.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char2A.png deleted file mode 100644 index f65315c61493ffec8c999e7874bd0bf12154044b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 439 zcmV;o0Z9IdP)=Y0000pP)t-s|NsAX zc6Ko_F(V@*V`F2Wpr95O7K)0B1Ox;?KtNGZQ49k%I&9=6-|Ns9s(LT%o z0004WQchCCkVLzZ3`J%uua+g_qEAj<3WmI z%rE5hGh7f6W+?~uSqdRfGG6erA|9_vMh4A_>^KIIm@Z_%)hi39&4Q!rmd`i^e*(B} zT58r3-d(((oMbiyVCxPnJcHn4^BjTLXT$*8y^!*(oNFPE<7K5hzMIr2@+7W?cwsg^ zo0P}$vSMQs(2KP&229X%8$LEeGLOzF?In z=Y0000pP)t-s|Ns9n zF)^T^pmuh4QBhGNBO?|T7K)0B1Ox;?KtN+-V+;%o0002x<>k%I&9=6-|NsB%shPY0 z0004WQchCco46F!(uz~;o+Y_xV!3LPloasKwlG|qS z@fe}x;W2}dW|WA1MhPerhQ~Gw;@~HYj4%tb!^#US===y!WhC6O*}TGuAa-kz!jor) zbr{REg@zpN7zjg&GLRj@Xu9^0XF(X`3dmg_|7$2LM$ zP?e{2b|%(FsIw7C$OC8$Biqm^4pC6FL?m}fFV{--#>PF1 zTC8->uC69`{Q63~zM9O{Jw9|+_mZbXwx1J=8{OMxY()0jX-MB*y(8IM4k{N67g$Oj zIV@rsoSyiX$E}e^#n+Ep3o7OSu$nu{HQ~?E2|Ov$9pIU}PsrS6{@Yljd-Rf?A+G=b|7T%g>FVloaBvV4 z6XW6GNls3F`t)g8Ss74CU|`_cvuBl+mA7r%22{yVxjz>u%2*QQ7tG-B>_!@pv%u5E zF{EP7*^BmEPKG>eA1qwwbI85S{gl=|DY~R{!DM%V%&U2F$Ic#AmQ>~6pOY7r@uHvq zm%6G_)Sa~@;h!$Xt~tZ^|CF!7X}OiG!PDekF8usv;pS-t0k0?CHmsSfddEw8QmRAN zLG>H06QYbhsA$*ZueLNuG{16)KhkOa7RAVG9&4=?ybsyk-gZKzrE&Fmt13`@5LmUgg; RDFW?b@O1TaS?83{1OVFUPCNhr diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char2E.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char2E.png deleted file mode 100644 index 451bdcfd4bba7ebe19dd92aaf0ed698d07688a17..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 217 zcmeAS@N?(olHy`uVBq!ia0vp@KrF$+3?wh#%Ss1Q1_3@HuK)l4-?nX=gM)*iq2bxH zXIWTSczAfk#Ke-5la-Z~0|NsWELZ?kTUJ)~^yyQe;`K+3^nrZFk|4ie28U-i(tw38KxaVHp%UzJgwPasVl0@^5?S+d=KJ#TLId?cLG>!Cs6XP0pynpSCM+yCRuHV#P u&NJc3dT)}&&v!E0>q~CB{pG)=TlEenvHvf$DDwh3fWgz%&t;ucLK6Td>s`hG diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char30.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char30.png deleted file mode 100644 index f24a106fa3cb6e44c61ecf07b37523e7c49be5e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 306 zcmV-20nPr2P)a zywrwjbD+8+P>goy%3`|Z=W?^A@`t&JKz5RtG9iRkbNswPKgTu2M zX+X|?PZ!6KiaD)UqWM}Bcvvs|a@ff6u6}!Qx=iPkY2Qvy5cc-S@7z~9)u(*!(?#2a ztZ z2F8{i#!RuZ)1p|6PXu`bs*RH0#{f47HQB;l9B7LK&g zOP3aWF-~sLp8sT_dK~kVY?fS>?$Zv zYw-hO_Qod`V9jG6%l!O(30JnF`YycpeR$_z;ZOe#e|V`}RQ>Cdvf!W8zJKe(2C%ND zuCLR>oAQQR&70000UtP)P*(p40_znbPuI2agn z=c3a*Ip{KN62|8tpnqRE4ANu-DvF4?h>BwQj*iaCXy`ypW`Xv`j1e0!3na}5u@N2X z(S{^UgPiABMC)@xkNO-viU9~Mgnve7x-44xD@c?SBhKW8rbTW@D)gbkRm4X2xkG^s zw?L*r0dZS36WHWyX;NJan|&}X&6(2A%n`k%rznrt1f69Bb;L#;^U5p{kKn#S_Xz3> kqtt?G_4qL&m@hHT7uP2ZtG|{O#{d8T07*qoM6N<$g4m3S?EnA( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char34.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char34.png deleted file mode 100644 index 3957953a80b58ac5a85e0d164764162381991ab5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 443 zcmV;s0Yv_ZP)=Y0000pP)t-s|NsBC zwzeZ9BZ`WOF)=aa<>f#?Knx5FQBhF@1O&~^%@!6GV`F0g004G&cA%i3|NsAUn^WNc z0004WQchCrQ^XdqM+b#0m+J zilWXH5(an_MdnD9FEmO~Epp2jrKkqU@?BIuLN4$f@|B+!vcrY$=BMq_$#$dsQ!ZcH zfbq3DA3F%SH~=5dT6cY~%P_p`Wu;IzzebX8XY1w{$X##NH9sToC25#&3~dG zzn;40KM}8nAANT0ZW0c+L+a1YDDG|KG;}OKMi8F@_%7sLIvwyVw@XJ;!a34DWqYRb lbL2nCXXECVA(l*@d;nz35$CTmkA?sM002ovPDHLkV1oO1zQh0k diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char35.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char35.png deleted file mode 100644 index 97c7632a84b7cb12f744c0e0f4176dc1b7b934a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 455 zcmV;&0XY7NP)=Y0000pP)t-s|Ns9Z zBO^dSK#Gcr<>louF)<7b47RqmQBhF@1O&~^%@!6GV`F0g004G&cA%i3|NsBhuJ20# z0004WQchCCR`b1Y#I>3W+@SsGd09wd%%K&XJ> zkyP8`bc#jn1zgFsSucTn5RjkeC6cc;hT;&H2#7S!%^>ci_PUVyQ7sYj3Gj98I`ey^ z+2HTbdp9FRSD!u~EVLRC8>!0kr=^A+5nX-iCf$#}MiTsl3yyHGf8^mg?_2`HN+&s}$`Hsqbj5kGw&u`9h=~^P5pjFn`Q1k&AbN`F;#~ zy-8l?w~UR*cwC2kNH|4REXRU>I>iS5!YItbawy%002ovPDHLkV1f>&%|`$L diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char36.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char36.png deleted file mode 100644 index 78fa09d72f1d4a24790a5f587f322ebb08811c78..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 432 zcmV;h0Z;ykP)AblAj`u0YV4caB6JRRuSS|Dt)zU(pHhI!F~tYrmZ63_EP+$?b1RA&WYr*ZQ8y& zqEPkvE^Uo3Y>SbqJ71l7Qc!t11bA)a4JnWce$Z1>R$n1WI+_n{? z%1C;|;2P9zREKDoMi|GVLlk7&wVbu*hcr0p&Z_5YleS?|@BMH6AuiCnBnqw#A;GqfMvlnIC$^xDjtBtk889r@YHJ5fx25^S2O_8p zfWAHv)P|Y3%?|P4#ih6?jy&3=ZbfmVYBOZhrwP(%3;G?7A&s`|JB~=zCYw48k)X;i z)u`Pv$BcTQGpm!33xa>KWj j)SWxyHn<+*6x_=g<-rlh(QIS|bS8tRtDnm{r-UW|;W%;V diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char39.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char39.png deleted file mode 100644 index 869fc99543d657e270b8628e3700f55bf2517dbe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^`amqq!VDxoZS?d6QU(D&A+G=b|6j0RftZ-s)2B}z z930BZ$_xz+0|NtR diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char3A.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char3A.png deleted file mode 100644 index eae43172c76b29ea34f187dcd725b13d4afe8d4b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 361 zcmV-v0ha!WP)0EppCR8yK zu;RYV=#1|OMNZnGJV?m_Fx}TU9%kAIu>Bef?+O~Fc!`>z)z`e23bYZ;7V^Y6d79`Uf={+B>7H4;OR`}+49wtLN z9c?Cec;Y;F((mwsee0gw;SC?*`W-Tu!(~HfKA^VzCXe4<>lp|prB)8V=*x?3=9ka006eOw$07WBO@brc6I~=1Qr$+|Ns92V&E$P z0004WQchCfh%kJgm zJDyQ8#lC5@#L{HQuvzGhasZM_$g*SZv0Ys1wT;3rN%}!|^*)C=Ojq3tp)wcsH9z4i z>!g7kei6$thX;~%#{3czRp^l`8Y2M^B~h5E~j6#I}M*Ai+9d=_t-$)8a( zOfAz3@}SwE?~~@8V2H3hcW+OzL*@qwE6g5#X%ETDX;>!+a+BR6aK1z*h~63OTr8T= zIt-@AnIAX;=DbvvPEKekrI8H8ycmG6lX_k&7MmWn#3E&DljSsyHO0 zC>u)wa_TUHlv0)yT1g9-d18x!c>)G#9^by%Uo-Yp6~OAFg6#W7^!*ujhBjz_wePFa zSD`{Lc2qYi!y2E1_e9DxMr>5m!@f-4~*r78~Yk{8ZhkdhzLlUuRd^ zTnWA;==Mi0s6wJY)U`%B-{**nLZ_N(x#(uESqy*8+TK^)olz1|x5{$Ep|b5hlYhjW zZR}9^F1b&`;Eu!wkL+sAf2`qMJIn(l4mboT%wciU$@ucE=v7m|cD>C#ymGgA5_A66 zI;a2KC!Ncd**@Lx;F@Fom-%;OFKaE^&y#1`y8P*_m9mMyO0}1ptc*+jv}C=|mbX#n bOW%FsS7hZ9v^M<+@)ComtDnm{r-UW|fvkti diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char3E.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char3E.png deleted file mode 100644 index dd33d1462d58e1d76a16635af5911ee7ae8741ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 326 zcmV-M0lEH(P)k5Q2+n{V`F0s3=9?)7It=a|NsBXL|JVB z0004WQchCjEDpkrfWF)=YfKtOhOcDA;*|NsAid8R=C z0004WQchCe_L_?U>FiymmBu6}tfEaVt-P001-y0{{R3NCjiL0000pP)t-s|Ns9Z zBO~SIlV`F2WprE$4wiXr^c6N3^KtM4uF^Y7NoTIu&hs-FVS4e z@p}C*2@rgVb)QD|x=$mi?$gMH)0fcpDU#_HxU|_Mr~OaOX(T@9c8~=J zk@TF~L0ZmH0-oY%$+Ax?{hOA)9$NZ(D2aVNlyo@N2s`STjk hqjIX5+OaWX;0;mj4D8js^bi05002ovPDHLkV1fhwk{bX3 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char41.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char41.png deleted file mode 100644 index f487fd0c9cfaeecb04f540afdb48f68e19c3b6f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 420 zcmV;V0bBlwP)Fp^c6N3I1Oxy80HC0t|NsAlMvoW( z0004WQchC3lp15c+)OLUfsg+Tb;q`r+ zrHn!kV^oga1hrc}h*8BMQ;x8M7=_a}IU+t|MB~(d`l?1TqOAL^L5B8>5oP@f(cb$= z=45live)+*d0aOZ(R=f;pu1{@6kcOwfUddbw@Viz2R8R2FZ@k7`e)a1RN+ZnKSye8 zd&gQyJ`XaK<32E3`!ZG}E)9u(70!`CjaBIx#WCo~MYWXE+faLKf=lP6KnEXo)(tW|V=k9wfeY1Yj diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char43.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char43.png deleted file mode 100644 index deb8392a89397e26f183ff39297608f1eed4f7cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 444 zcmV;t0Ymc6N%2ip|Z<|NsA3`g>mh z0004WQchCbwg|t-OytE66 z&tiFscnbDet+Mdtc5O|G_Hr3Qtij@UM3<)yZz;99{`}Ofc3sKF%$?VzdTh#rSf6|$ zy2I3mI)_=hL{4UVPk>Jmd{%hsYn;zcEw3%I>NOtokAj{RpMDe!sr^pvoHlucYj>u= m#FJnLiY2cI5Rr@@SN#Y6aSL>!QyUNf0000I^17npJj_oKz@P z^4n60tX{@gS@1LC__pv|EyMVWV-_m8nYvM$vyfF6K#4%{l`J(!W-MfA}hU#DVHlf8+c`R6=~Ji+jYueu8a~T1}Hz;P*(8958$2l16Co7IC#T)nd=ILex|5 z*jgh-#Ps$p5i1DU0|E(V{zd43j9LzfBtzGJ65Ts^YF)v-Mf&Hx=q2Kx-^k{E48ZE$1&jaCb!sWKi`wj>eYq|bv+4HPTPbZhKDDldSL-|MA~!7e~e&)@>oR{+g{ zgk~jA0YN>=+tm+HPT;fKH^2)Z!3PHWKxKp(5NnbE^v4W1RcQ(Y*)zNyjx{-FxLkyV zO`F2SO~w@o=>zo4wTEl@qz#V002ovPDHLkV1guv BktqNG diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char46.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char46.png deleted file mode 100644 index e9564961176de12b1cbcf575ab8ceff7936749ab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 306 zcmeAS@N?(olHy`uVBq!ia0vp^vOuiF!3-p)Br3TADdPa25ZC|z|Cg1Ov9Pd+iHY&> z@N{)`B_}5B~aXGg=b!YfT2?^BLXSrB)8>FxXL_Lrk4v~=6*vPG&2t`vnIe0up2Z@hINk9)mIeGAax44$rjF6*2UngDhS BeEt9c diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char47.png deleted file mode 100644 index d22f444a52b569f02524088d1aeebf540c8498fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 470 zcmV;{0V)28P)c6N%2ip|Z<|Ns9fu~pIl z0004WQchCf!Gztme30lky5(f{%>m7l#^R M07*qoM6N<$f}SAFqyPW_ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char48.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char48.png deleted file mode 100644 index 856006a179047945fbaedda353dd2b8e02af4008..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^YCx>S!3-o>ilV!KlyQJhi0l9V|I5nCSXfwiczDFb z#FUkl4Gj&?o;|y5+qMM@7Ibxi6h3|WG%zsG!NDOpIT@(_a#esbP?WJG$S;_|;n|He zAZM1Ri(^Q|oVQaP`3@`au*_vJE8+e5KRt?X%MC*L`cB;(=Qa$@tL74vQei7n+@bp2IqzQ`M9XLqrt>ui#Oij}?#qIWNw zmiobU_K)b_A1`R%zrA+u8~wHCq}Jd1c}9BMMA0jCPA@-CQxceT(fxMd&&jL`YGIdZ if1X}rz5f4f8^!=tfmQQ6#SQ~q$>8bg=d#Wzp$Py-&~xAb diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char49.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char49.png deleted file mode 100644 index a9e750cc0bcfd4d5a263d5d7582801335f894bb3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^!a%IV!VDz+BmRE}Qn~>?A+G=b|5sL4=HcNH6BApo zU_oGD;M1p1Sy))MZQFMC>{+0y*}FJ_LX0Ire!&b5&u*jvIf0%o zjv*Cuk{{SIGcK2u*b(N)$jp4W=e2hFxiz~Cc~7J~h&*{EPMKB76~OID@CFpUXO@geCwU CLr3TU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char4A.png deleted file mode 100644 index 2602a860ba706c483f91e5e46b2dbc16aa04d22d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^5fT3j3q&S!3+-1ZlnP@ zy`C&B$fJED@pJ zQ{?ezL%u`7jBvlZ49`o}eGFkJ+#%91XELvivBR8m%np6(%=c3Sj&Ei>G126PiS&tw zv$>3No^P2gE)nN-KZf_whO={KZYWH9qT=B*wJE9K67!0$zt`=!)7-(#AnD_A;CxN~ RTcE=jJYD@<);T3K0RZv&XH@_I diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char4B.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char4B.png deleted file mode 100644 index 3cdfa11c47c3d107bcfe93e5757f51f0584c7caf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 405 zcmV;G0c!qd?v3}a(s78VwYii!jT1a@|Iwzjs-&CM|}F#rGnBO@a~KtNGZQJ|op|NsBYfD7^f z0004WQchC zFA~*eaUxp9WFCV*k zH|$r`BPL~?^omI;?x_)*QUfMC?jzM>Jf}MB?AkTQmQ;fsiyd1m9lG7#FqxOjKtE%g zsPuR|Vj`2C<8wnqD%Yh7zQAnYG8VzYud$po4~Cz`t^1}+b7ygDZ2RsviQ61jDsdjS zJ$eI0)41Ir?TfhmST5oYL;j8H+PDKIaj!A%_-Fm&a*c(&R9Sa>>$n2sl#FV(1 zb5UEl2a;rNbu9mZKP+@M6`)ObmEpb;Oyltf2+tClU4j6j00000NkvXXu0mjf^}ng! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char4C.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char4C.png deleted file mode 100644 index 0a0f3af0a0a3fba2eb95f5221f92601ef4db60ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^3P7yH!3-ohbF|L_DdPa25ZC|z|Cg1Ov9Pf4@bDxj zCo3x}8yXreSg_#i*|TC|Vn9{fwr%U`>T+;!2n-B-`t&JKy_d|TRX_>Gk|4ie28U-i z(tw-^o-U3d6?5KBImySO$l;P(aPZQ!|Nn0{dRp!6J8oGjd!%JLS89{v@v18?9xiIz z{7RHVOEtMeQ_*ba*Zn-3#Gf5s$9>X&*X{iWxc`W2s1zr-&Sqwr%Op7C+=Xwp)hu1Q zN%I(<*$enHTt2w3=~mOenY{Xy+)Hg|?vC=RW;?r*X^sz1#mYDL8E*F4vlp3QBgoZKz4R^|Ns9hx`6=z z0004WQchCW6j+X!bw+ErjcIn}zge8uOC{>Sc zdr>dT`yH<|#$fv!Ph*_MC5DauLX6S-7ab@>k?1H_xEA+-rOyuciyO(QEW+*d@Sv#? z`iG972op(-_{O>o;uGItG~hViP>G?qfVK+guY|bVr!(Eokl;F1m-a+?bi+qTAhtw-uz01WUt9_B}JRC0pfSg*K z5qcaw82~(T?4dK9bkqyh;2u3iM$?(#?MA>EeNAk*)i%Qr8Z~!L#G`yD9F!=XZp^O)0F5ACy{ANjxLqR_^Om%n69K=7*b0A zHNG%3f-950F|;WE#n7VkCj-~sOiY@YOXq!*eGB~^Z+A8No4(vKeA8UO$Q07*qoM6N<$g6iF%EdT%j diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char4F.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char4F.png deleted file mode 100644 index 35be9ba033fdc2a6f8d5c3061326e06a5b7e2e26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 503 zcmVlo7001K+Beu4-V`F1>c6N%2ip|Z<|NsBJGY(e( z0004WQchC^>6tftWWj#dejT0VZadg8LPq;HTEv%02$bo8wxg7y<1fB~hz@$X< zq_F7hUNVK_h^Ws%&p!9a)+B^z6=9K>6xV;D{$g}j5wnut)k~TgG39;fgtBOF{kvaNiw;W1-1o(~r0Q&< za&0?)@S=86=QN9)TiQ`d;%19ZiBbBeiQokLsfCl(UB0e(xN4VAAnj`yn5x}!6LB@? z=R25Arpln(nKAO_wMsW!9?L{Bje5gVnI8fQwy|{s8qRuy5H0MYfvxCoOPZ6Nyu7Bt ta*LHSYl&|Zzy9W!w+2JQOeo7v{s47k4d~ zs<&0Omz>n42uYz|9x3L45?KwwN9Tztd(=BZMnATIaioA$u?SCs)798%Tkt~AH*O2= z$S3zQ9?8-be#g_MS<8;outyFF)3||u$MWfEH^i6973|x+8;Xp>@oM#c)eU>D%mvsa z;tn)!87Z}4Sk`DbIrWVV17mgd&$tMsZTjP1up7U`8X5O77kbXtBGTN$pjqcmD@|to c*=FhG2L-1KK0~INLjV8(07*qoM6N<$f?9x#82|tP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char51.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char51.png deleted file mode 100644 index ad8dd7fdd99873a5ecc958f85b41a6250fac2d04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 565 zcmV-50?Pe~P)0000pP)t-s|Ns9M z78VQ)3lo7001K+Beu4-V`F1>c6N%2ip|Z<|NsBJGY(e( z0004WQchCPxi6)=mM^jsd=1_x$XVvl3C zR)^YLw%;IdTW8zcrk_2^vn{L}8ZYCr?1HbQ#V{#X`}1%n9cc6bOqFijv2Dn?_T z6dD@2r%e7h0^l>yk$$*E1K9E2H#oSTT*get(&%0`qzOa@G)U@3b@ zP!L5GQ%~iL!sC7HnK^=8QA2}-8%>{iYjl@i=_>&z@xqHM%1K}#t}Goua4YIMsaKM+ zqne-`0jjWKCKEiWrrAtLHQ$V#s^xgs@0&-QKUEMFu5fZtLP)Qf25x zxRxD1Xi*!hvyz3+wOLU@Vn+}4S&5~bHbxcHw~$MK*-J>&X?523eq&(XaBT1+US473K%Xkf! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char52.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char52.png deleted file mode 100644 index 6f72e4fc660804318a8074d22a6499160afb72f8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 427 zcmV;c0aX5pP)Y<2z<%I398&qr^#9`@9{Wfj{B% V4{%`W{*3?t002ovPDHLkV1hZONPoIPUYRq0V#~8h> z&8+9VWavtRDrH0kHOXP@RD#zVPKoT(mf}t58(HwaZS9s2o1%b0257U<+Q_JY^j7N&jiNXi3UGSDIRv3&)Ve%z>jvJ ziL5HpK}WaMyf1fdbfSy-Q*w=pSv}~zACAXg-##mT_rg&xKqMjPMf&b(!!^y zPtLTYEZT=PHcLxV#Pc<)jx_}7L;c8>Wx;wGsk=o3#7lx8|H+4RqV9*W0*r7*=|&mq zkkK{Z74_6bi2izpqU9dj{Bk+)#X4eM)8(knUnuUz(Ep>*{#miqN>e_XSB=UpsEma3 l`Th?ptX|g{Vhrf22l_e)9J2*H51_nNT`V^@C!4r$GKncc@AirP+hi5m^ zfSlQ$E{-7;bKYJ#E!3>Q!+K%$o=F`a{@34T$+UKTd1`4nW6PYx5=IBz-!_s5)cyzY z=FBPew4CUYrdy;DcSJRgU!cq5nrKw6v{lySqkkFV#MsyvST6c8ZwiTFSn}Q6;M1%ySlmz4GqP_#CUjk zl$DhiELiaL=~EUK7NC-|XU}fiwkOZFF?mUvVD?D>qh(>}%deX01ONaV`F1LKtNGZQHqL+|NsB|q3G`b z0004WQchCyOhblG`m(G z!-3282>7s~E0f zp`{|%s-i^}nrl#~bu~rX=y_LT{=3c`LRVR(=i7b_?Kt!1cE5ynW#AZ1=gWx6)Qlz* zJr~oGJraP0mR@kXW*n}!8VKm<*{&H>@6zUGS|7V@kD^X__sgHt{aujee2N&^!b{Ok z4o;Nk*Ik>yR_5jMcWnxGGY&L8v-lo@TDloB1OyBW3>Fp^0002Z&CQC6ieqDAc6N3^KtNGZQMR_W|NsB6%*Ukw z0004WQchCuArY^*Qt$ccu!*Q6@= zcFnrZc}{W-5wn;;I%)YGcqNmTh0_JKY`HA=zRPwQ zEX~c5qRYYe#uksC3N|pM;}DYSn~i^w>TacR{1B4wtxw*opPdOdL>=dlG%4^Pdu>|* z8MwARS!YS*@oa_Fwu+XcaWn&7=|7~pA>!gu((c%7 zDJW$R60000loB1Oxy802US&V`F1LKtNGZQHqL+|Ns9u1ziOI z0004WQchCS> zy_iUu$5hhXB>QYt&Olbm1{2T0m)nPADxw8Auz%LvZvKmiYjfAx1-`qLf4W^o`7drE z;g?(7kZI`K3^Eb1-{jnFkwNdZm1$oKEI!%p%#Bb-(dm?|b2phQYSr29o10wB%@pfu zZh^Z5!!jYdK6Nd6dj2b9S4act6VB&+CX2fCQ6g;;Kg<_fMf>es(H=3&7_+H}vrw58 l!s^4Y-A|1be>@)~&>!Bt4lscO+C2aO002ovPDHLkV1nT>#9{yd diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char59.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char59.png deleted file mode 100644 index 87d9a97676de378cdb5eda6f49e23d55b101345b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 367 zcmV-#0g(QQP)QBhIl<>f#?Kz4R^|Ns9j?qg2? z0004WQchC6@gTexuAsCuExAy@;luce21?XnD))(5Dq&RVZaCjhz^ zj?h&s+~UcApHCcU-HV2}8ISk8-e+R7w=9rDR4d{lW6yr82cv0`hKY zjav!QZ-Fw24<-)M%+YitNS39+iGw3MN|54zgEU?m+9x-VL@t;y?g#Rr1|!J_(y;$h zrr)5io|`YnzvrVT|MXO41ktv_?$3yxc<14RG; N002ovPDHLkV1hMwo(KQ{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char5A.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char5A.png deleted file mode 100644 index 300844797edbbb35944ecd878eead9ecbc1e2731..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 393 zcmV;40e1e0P)drsPM($0}XoVxIIR01!(|{rSgFUX9NgyXH17v2!()e$H$Bg4?y?ZZiU<-!Aqp0XkT-#o7w#PXQossPh z;Wcdl zvwxy&BSR_i_er&l&S$h{Xl{=%;kfXf^&+9&b6==MsyM8vv&-2(aylBCZ9xldG7ctk nu+Yk0qmL{089x6GK!yDS4~Pw!JxUMz00000NkvXXu0mjf_~M}! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char5B.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char5B.png deleted file mode 100644 index 127d8feabe2df75d22272059d5d25b5d7a834bb8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 308 zcmV-40n7f0P) zprBDvQ5F^!1Ox;zF)_`}&0}L@BO@aK000aO3_w6Ywzjr*c6N%2isj|y|NsBbR$I;h z0004WQchCjMpwnTtIX`{w1`x`tfZAJ)A zu;hbvz+$Hu&Um-I!)Bwy8U=C}`&ik^>$L;_Wjjx}nA-MOV3x#Ge(jJz>}al&+X8BS z&6bBoN!QxA+ZAj{^V!o5(j;jAWZ)yu_us^_^wtAw*XqDHbT?v=f+`i}oITR@k~guc zCc2@yf9e{P9YtbcQ*hX~Bg5d@Aq0G|Z%3NJXWM=@1;q=E2?|90lp|prB)8V=*x?3=9ka000&i7C=Biwzjr*c6N%2ip|Z<|NsA&@u|uH z0004WQchC?ec` zV}l9g-DvGdoZswgkI_ovgI>u>*(q&m3Utj2;B#e^jc0(<@tlF0lPFV|?TNzGInj4y zlpI9G{TkMmwwwP`4ph7j?o?XnD0h`6FLRwW*R;9p66muIJ9mE;(*?};waV)^iEDai zy2yBVB0j*v-zC!mlw)c&*U&yqsEt>BgsX#ZlXVODzWRKa00000NkvXXu0mjff>nVp diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char5D.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char5D.png deleted file mode 100644 index c0d90bdb8820051b62b838d7396cd8b7f8ff6155..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 332 zcmV-S0ki&zP)i01ONaF)=YwQBlp!&31Nnii(P$prE$4w&msJ|NsB~Lo0^> z0004WQchC2&)KHMD+f*omTf=YpdPzDG(vawyltp zMiGe`mTeQnJgbDr-t8w4|Mf!_+;{s_P{uDOI6|cU4W=KdgQeQ<$K7)@jS7$@<@0-e zHPc(qolxhE4h3b`h^;=cNST7Tq*kV;;&5e?~aj6pc z@#d_yCjjkejUGC=n@-OV=%#2&HLmOlx=}agg1Qa8E`5T%1hu8r#0deRya(ZmAchN?}`%1yWGp+5JRVp^qN#>~aN`G;e`SMJEjo4Q1a?^S3@b zvb`>{t`fLVZJD$~#qp=#Hz|J-)2_X4^_dcFq`djEh^rVZTy=zgEm_WzV^$W5)mlXM=O^$Q>AO$M_7 O0000f#?Knx5F000041OzcLF`%HJQBhH2V`GYnip|Z<|NsBvuZJuE z0004WQchCce~Y3&-GJx%k<6V_KzbImUOfV35hCM8SI z0(D@4hV4-kTJ}OtsNH=zrUqV3X+1nUqT~_PjFRp5j_BgyX+kNtskF)=Y?V`HG8pv}$A78VwEc6L!wQ6nQG1Ox;C006eOw&msJ|NsB`|Jwlo z0004WQchCYvSV>5yvuceMH?V-z8Kj;qO>@U5cuojmNyUV#TE~t-Tk1@J< zY&`tAQ@@~$XREQvDT9`Wa6nsp`3Z%7z!yXg%(c9$%n}w}P!tni3bzNHIo%`kg=Re~ z8V}56VyWGXZJa$mAzFl3Q5FmDiTs}IZrt)~N@7U{BE1QZx+3QB7jkd|%qEi$Pi_!` TwytuV00000NkvXXu0mjf-c`2k diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char68.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char68.png deleted file mode 100644 index 6b01d75593aa8e4454b01b2312e6afcca03c99d8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^DnKm8!3-ql=bYmKQpN#3A+G=b{|^idWMN?`D=XvS z;pyt?5)%`1aBxUYPTsa{+kyoPfC|r^J*%v&Y-nis^yyQe`sa;PjDezzB|(0{3=Yq3 zqyae#JzX3_D(1YMn9X-sfv5TMv~Yt7zweh#VOdE!dvPUyAo6+xGP7)2^;ApyFhe883lCj3q&S!3+-1ZlnP@ z*`6+rAr*6y6A~&;H?UQdE$l9Mm*)_^S(mV_{)2G&B?w z6FYnMY+zs@4-b!ngF|w1@`42ml$Di%YPW6M_Vnq~uC6Yi`f#TcAX6Aig8YIR9G=}s z19Ikgx;TbZ%$a)WqS#>p0oOo9;ZrXE{^wg?bo2I;uaf_s^ib-#j(h3%H&G6oUo~Ij z)0`PnYQOc|tXq#PUY5z4yWD%e^lMkvgx{@QX*>St+x`ov*!!|=Rsi#>E~!A7Dk! k>h*J?7s@_=*&jV`i3M-jlMOSYf$n7RboFyt=akR{0Lh+svj6}9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char6B.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char6B.png deleted file mode 100644 index 2b83225a753396ecb7de2b8129b764bf8c9d6497..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^@<6P~!3-pS1vBjiQpN#3A+G=b|1T>mGc+_56BBcA zaNyzL2@DK8d-f~~3rlix@`42ml$Di%YPW6M_Vnq~uC6Yi`YGYu4nQHsk|4ie28U-i z(tw;!PZ!6KiaA>^c?vZs@VH#eC}5D<`#-n$aL_LCX*c&>VyZiH=G)mDCLym_PyG3P zZq3%f{>Ve-k3RowUito~Wx{)w?`NYwO=oobWzgq#-?jSZi{^q^sx@NsT0ZYB*zv*B zV&AS8$C+C%Gd$c~Aa&v(bIWCh=S^J88xLhJ*uR&{|Ip?g^@6oIPk&dRWjwf+o5erX RC#22WQ%mvv4FO#qd!a|!?e diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char6C.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char6C.png deleted file mode 100644 index 9b93c3235cc8d06dbae28b777c36f1df809ccf24..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 315 zcmeAS@N?(olHy`uVBq!ia0vp^N6t{dBKjT|=Fz$@yr8u>Ufr-~0+bd#cZL z4ey4Oi?`$=gT&YJGF2`P*5N!AIe}&AmGF?B{Vqow8xIDA-sRnq#QtS=l&2oh2MnIB KelF{r5}E)oM|f}m diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char6D.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char6D.png deleted file mode 100644 index 4f715cc2e2a5d4e639247ece8aa45143b8e94d0b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 303 zcmeAS@N?(olHy`uVBq!ia0vp^NZQC}W`eiH%FMvXfB|(0{3=Yq3 zqyagrJY5_^D(19KiWFj25J# z2ss-zc+KmOX=rn}c1LlsZ@v%*Qn~>?A+G=b|1T>mOHNMa;o<4( z>RPa1fuW%xP*O}xOj%j^?Af#1wryi!VR3M90IJNqFLDSd$5;~N7tG-B>_!@pv)0qa zF{ENn?gc}>Lk2t!fty3r0^c7HwD9V`uvS=ltzzl}4qFfQZC)#?*~HA&IX^n0Huc1W zE%Esq8UM}swRHYxk^Cj@|IGi*J*1KFfL(v4#QkLtc5P%)4Dn%UVeomTozZdR$4hag zzyk{xEob7pa93o>hULG_bgtw#EfqFRjbQun#dX6Kr?o0ArhW@q=04S&vLO2M45trs wj*B!+`L4jC`Cd^VPL_+~i9~+&g$>#JN|`OTdWIjk26Q-sr>mdKI;Vst0J-*c_y7O^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char6F.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char6F.png deleted file mode 100644 index 9edef05b1ad8b2dfad08a64144848cb35d8204d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^@<1%f!3-q-X|jp|DdPa25ZC|z|Cg1OB_}6$b#*OR zus}>q?CH~|4h{}HJUl=pfq{X_%F1WYp53->8w(4Ip`jsAy^F!5tw1@(k|4ie28U-i z(tw=Fo-U3d6?1woISL(C;BW}Mbz|9)72o&gvN8)^oVg+Be!N8=!}(=Tp75WSNv%}a z_2A5p%V*y;otlv-8Pd0x-|^`u(>$gm37IaoGv`b*-u&fyk!4WI*OKnn_~DA8QeDDZ z&ettV!}WHv-0S?g@X!_MY=d1JSeozGuwJXqYb-o1lQXyf%)z(wECc%IX_9BR!VDyj{Q0#G#0l^TasB`Qe^*ymU|`^a1q*;; zWo2bgpFRZ&%Bd||4&*bI1o;IsI6S+N2INS4x;TbZ%t=m2NJwUA5@1$XDCAJ>#F8S& b%*+tn!Fm7W{}nHQ${0Ld{an^LB{Ts5c7ZCo diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char71.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char71.png deleted file mode 100644 index 4bb36719d6256deae17afde3cdb2ee39e8415aaa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^fFVdQ&MBb@02zTP;Q#;t diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char72.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char72.png deleted file mode 100644 index e9dfc4fe1bae81932c14afc97e83169cda78231d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^NwE10gatohG9`+(4f=!5Il8<_2rK3mV_{)YR#r|< zPVVaJTCiZjwr$%C4Go_@eHs`TC?+Nb(#XT(;NWof>{+0Cr>ZRqKq1DGAirP+hi5m^ zfSevr7srr_IjIu@g^nn2IOmFr9xVEQJ5O+1=xq5J4>dUzXFPdz=88&<>kHrH@S}4z z=d4}%hs%sZ#>?uB;k@QuVJiwRHdzT4FB3U??%l)t7dAU*L`%+edt0M(e|7zTp2hne z-gS4{thu^a=j1T@tyLbN|A;TaRY_@p$w>=i}+C>KXqGb_oYD+5hLS;$t_s TtL{4;=q?6NS3j3^P6XV@wZzE&dwEIS>=tKDqmmY7YyBPMM%s0zg_+~4$cChd zw7ZFUlQ@d75{-xvj6}907*qoM6N<$g50-` At^fc4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char75.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char75.png deleted file mode 100644 index 44b0301afc37dc7719880c326ade8e039bada3d8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 375 zcmV--0f_#IP)S!bG)<19 zi3(ylo|MPO38IvD2-;hOp))Q_Y!EYN@ZMR*!VDqgiyiM{s+7GKBLi|K&^Mc0&3zf$ zE&x3)5jCBq}&!__3BH{wwxRU1k_ zZLh~hwi~rO240THCXKa5mbX~REri<1NzLdOn@36@uL7u%6zSzpK(MXQJr&jHd;2b)R z94Q^^VA_Bpg*D{KtszTs>pZiD3^A@LO>u()V!M-z^tus-iIiLR-ers!qzQl4XMN#H za8#gkcrU&fx=2F|M3Rk&puKdWgn3sPpd6!}{k>;Y zOXi>r{R)D0B2AOtkHNHIJjH9~Uq^BfBTRju`{aGss{UeB4T+~}xtc%@OlXiIf^vnX zC^){Y?CCtt5MB3!Dk^^H&o&jQmr#n6`5L&Ox|MKH{NJ-%if9yUmnht3!Wli`Wl>U6)KiX7r| z0LaxPn*4n;y@!XYWgh-4;+)Ev8uPBL|B5vF7oo01C`sG!!`Hv&+OEAmocY)4GCkPX b5j}nYhxZXy(hlMm00000NkvXXu0mjfNj}>r diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char77.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char77.png deleted file mode 100644 index c8ccef3cce23b296142d47de9a4d2134aae626fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 490 zcmVlp|pr9ioBQY^Cc6N3E000C81kKIO|Ns9&u+6go z0004WQchC%5<)`6ut^15{8b15aFHi57#Gl*?|Lk8oD*mzMkwV0+A z5Bc}-B|c{Pxbm1i<5b*l3*ieOq_k=q3eVy=WIphYbGhj>t9dX;sor#2JA5!N^;ez$ zpU*W8el`HOk4v0qIbY2ytGriUwnA#Iw9??p`hnhU`Nlw#<`HYrVZNbT8uhV-Pkrz- g$f2)I`8#&v4?~|41SbNLSpWb407*qoM6N<$f?7$}9smFU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char78.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char78.png deleted file mode 100644 index 616121d7f8448feeb2743bf725d84b377b04107d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358 zcmV-s0h#`ZP) zpr95O7UkvT3=9k-BO?F+00aaCwzjr*c6L!wQ86(wKtMoaV`GYnip|Z<|Ns9KrCKfk z0004WQchCi_@% diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char79.png deleted file mode 100644 index 22f84f12ef5e74b46d0406c1532694d07c0eca85..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 356 zcmV-q0h|7bP) zprGaDi00aaC&CShJ`WLlY za!D~T&r*~KReb34JoGkPJ&59A%M5Ie@S!YQ&8$fn#KJ^(C$QltFZ$_FZJ!p7ca4%FpHt zn>JH_2)_f)58F_q)!P}F#o7GpzJO-MXZDf)#=HSe>ITVcaHRtP0000`2`CWJbn5!Ffh>2(9prbAvrl2sMyKEZv#+{u_VYZn8D%MjWi%9 z!_&nvq+(8T0t4ed>-2;NZ}c{B9Pa7+W+K7S!14A)Mxq0=n5^#$Cs|ph45c};vg{XH zc34}zopr06|kxc>n+a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char7B.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char7B.png deleted file mode 100644 index 5129ec83cd3fc78032d0f561f3fb088380c427c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 339 zcmV-Z0j&OsP)0000pP)t-s|NsA> zpr9ioBT-RN3=9loV`D%-Km-H?78VwEc6I;&05LH!ii(Q1wzkd9&E@6g|NsBUIaZ$l z0004WQchCbaMqJ=#e($0R99vn{m0rDxj%P+q z(;--vk)SQ+(>^C9F}@F7u%ypPncn&mKxU^7o0gK3(L5kakuRI}%ot4A%5AeCLljpR l^4Rv;*SfXp)Y66A@d2<*3BTA@&Pf0O002ovPDHLkV1iYbkEZ|t diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char7C.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char7C.png deleted file mode 100644 index 88013ba98677c0c96da1d011bbe9dca9df101b4d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmV-e0jK_nP)Fp^&CSi_<>deX00aaCii(O+QBgoZKz4R^|Ns9uza_o^ z0004WQchC)5fSYqx^aF@ayU!s2U1!;V zkaU&=_ywmeXbTSxs0)7t+!o$DUG2J7={G*`pBi9IE*w;i#jq$@(JVmIT{>%GVYxWj zUk+~%RWM&X!@EEIy?BO}!^z_wJaP1H5}s}FlpyJ3e#rLCV}+pN`egn*$ShLW#>Zsu qM5(3o1(7Shz2}|b?j90s7-2uM@e3SooUL>K0000 zprB)8V~UE3&CSg*F)_BbwgdzOc6N3E000aO3>Fp^BO@a~KtNGZQRU_3|NsA#^MGvt z0004WQchCksu4}QlMoYG;og#MBa=bF@sk8qMB|DoqH)J$=Q)*a zNwvFjPb~NqCtbSs<+$MN7z+3W$G33{D{gG|bX#|Au?QP?sqfKK8ri&Nl;h4Y&KsRN dtl-LJ?FVvQ3TB9+wkiMs002ovPDHLkV1iiSrB(m{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char7E.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char7E.png deleted file mode 100644 index 5303e419bb897da8473e91ae3449f35f9a8691e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 355 zcmV-p0i6DcP)Fp^BO@a~KtNGZQRU_3|NsA~`q?J{ z0004WQchCZFp7gs3(Zu~pd3c+>OD?Pp5y%zhZvJ=h%t0Ad{6^~^HPWyC7Kh=1a0>5u9f@|(IJ zIEclScy4f~!%W)E7b?yK*EY%|uNvL$1jJ*)Jx-$tl5t4AsTK{N!?+}l3^SoF3X7zf zEFufsb5aE%ka6X1Kqew^B#ua28stpbO(#WmbU6lg#qn3_`Ydk2nQlt33$9$kO;~X~ z*+XyD)nH@TsPipHi@tYb%n=ji;CrXVj|H0E(q6Lq3LRN4)hGY}002ovPDHLkV1mxQ BmRbM+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/358/char7F.png b/sagenb/data/jsmath/fonts/msbm10/plain/358/char7F.png deleted file mode 100644 index f55d8f70e87921496fc4af24ea6da1e57c40d11e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^Vj#@I3?$8F6>o2M33zPoFMWu)xsJFfcH%tE&sBxYlFef1n&=NswPKgTu2MX+Tbe zr;B4q#hl~>hQ{sbdBzS5*LzNF;V|c@b~j*VE_P*@k;|@R5+(VdVY@TKxwLl$4jv^X z${VXE-mvw^X>s)N$T`;M*C8Nb(scAvgTms)-0O}lQf4?e?_y$u0b8P|wG(GJ%b_po rvf>I!JIkG|niP`m$jYwsRA6J6qp5h&Q6`5G=mrK)S3j3^P6k%I&5DYO|NsBP=yeeQ z0004WQchC8Anf$UHOLh` z#u^bf?AxGyHIp`Pq|Iud(DsoWw67bZb8#H1%xzJ{wo7$2mSRVYI38oI8aQ&(5~v!P z%v)SdljTa(T{XJG8C?J0V2)LTnfFtb@>6J@8`ixPVTXxONgB!hD?UQDGOHJ9zb%dQ z?PUPEoZr_ltH(EMeYgVOJ^LS$=d37_Zc7&!aGKj7iQL0AJkIhW?Y8uA2Y&7+c{lm{ c?&|yS7b5u;08bby8vpk5QJ|opV`F0@BO`Wpb_4_j0002x<>iWsing}4|Ns9=uWJVY z0004WQchCz_;{ETiQ4JWn;rPMPjEN! deOLDR;}3=36`8HW^)vtg002ovPDHLkV1nfRsEq&s diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char02.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char02.png deleted file mode 100644 index 20d6ac5e3a2c576e3fd40fc09e675ec26391aef0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 504 zcmVEVy zus1}S2kGR`Mk&meMxz3al`N(uzUA}CVhWE)Nysa>4 zd1_Yor=GRE#kYRcmp(g?+O=OyQ zoTq@45P%?KdO*0QgOw2vV3#osHW~2*4jI$J$%s*+RmNOjVje4{t;X`&0=~;tfOxM1l|%7ajIjdM^0^hb3wv9h&2aR( zXe>{|LrOdUEH9>!`|FzWvNwIsYB~Qs#d3j0DdkrP7~Nya7nzq1viUgkd|I}MvwTER zw8--HQvO1bPqW3I<%=0+ioM8}dSP7bB{rpNhAH=re8ZH7wiCz2KL6wkvXoEXVyE#c zb{d~zC-E(I0^MTo!i&EL(tmkOIg^K=3N)M|5bCBZE=e@ctQUunu&4MCc%D{nxszIc q{EOwnyNTR#@%2rymRAJBEcpk{S{G}*sglP40000f#?Krt~fQBhI0wzdQW1a@|IBO@bFp^&CSgK005w%pkrfW|NsB4(Ebtt z0004WQchC{COoJAhXpvj>2k(nJNtgLgAmbNEsk%)``;?X{2;ctzu%i%# TBe6~900000NkvXXu0mjfWcRwQ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char05.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char05.png deleted file mode 100644 index b302c4d8044555635f2b58025ff1327f1bb83925..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmV;u0Yd(XP)k5Q3M18c6N5QwzlQvii!*j3>Fp^&CSgK005w%pkrfW|NsAhibG)l z0004WQchCuufV=&+01#edr1|Gupc}3Tb35FdW`%;)YrT5 zhb_o!-g{@}$kxN@=ogZ@y^6CS_pR@jRqP&-R1xO0<0`3kgT4AdqT*=(-;|(Lp7Xu8 z(NeWJj@=Zet1INHTaOS`vs~yp!qlWQU9laD27tNGN_-TH*8q00000NkvXXu0mjf@kPvp diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char06.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char06.png deleted file mode 100644 index 22cb3f9f4352795481ee0fe3fe0ad44587acb3b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 428 zcmV;d0aN~oP)prB)8V^L92|NsAsxAJZP z0004WQchCy$&$k$3`E%pAjJRw?T9#bY*t;T(kEBZen`+@ z3$a&0hN&t8B%U)u;2B>4ndb};e;euDW}obdL@;Zo0e3v;O}T_rXBC=R+nNpo8kl8lm5rKhRg()dAA{~O{P>CupJv*Uy;l5F7C=hA05#GLLDDs0dqs9sCkm4Pzeiza(k701t%i#rN`=-W7 zA^PIS$a>Bz@fIkF+e~-ii(O13=9?)7R}Ag0001>prB)8V^L92|NsAXB^r>Ep#7-FHaY2^Gs zZlxB=r8(JLuTZ0Qm-S(yofW4Q_o%KhExD^4b=&GoRQu|D&M76`t+f5uv2R798aU^Z}&?JrwQ0+ZOruQx481lV! z;?s5V%60#^QG-9?&YuU4q`|$6wC4$C$>lsW97&cDl4n+ye8v0UdH c<}>eq03`hm&|cN&WB>pF07*qoM6N<$f`TW&+W-In diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char08.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char08.png deleted file mode 100644 index 2256da9ad0f971278e395665b24aef333d725a00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 419 zcmV;U0bKrxP)k%I&5DYO|NsBP=yeeQ z0004WQchComEpTuv63vYuzYWDLrY#SPC`Z8qnGJ1lJ5D|2qQFglbQCf8&P zA1!X$7fkzl25k?i41^Z3uy~?Uz|naa2pl{Ll)ivaoQaLRWI5Vf zN$U5{^B1}q3@ztR?_Q*P`62(=)m}j(i9x6o;;;BP?t4p7`XC9jR;Dk5QJ|opV`F0@BO`Wpb_4_j0002x<>iWsing}4|Ns9=uWJVY z0004WQchCwd!n%|7%;3Wt%M5Pe zG#IfT7>w9k1`n1Q9L=Lkp8dG2eXr2}IC@3fb!#Bb|5A>+_ zyh)ag<)YuQul%EZu+K)c=DmB+c_4VkxX5PQM2QUuy+W<5-4yf)Y+4F5MGQoD?dslx zc`d$_+5G)Ic9`=sU6WxA{z+#a{V2S5bt%wDQ4qZf;%|WH?GSAzmJ1AKGA%D~eZMNd z(h-v7Sr_Q%)y#tgb-(f~=~A$_=cOL)(NSx?pAn0gV1Bi_RD78QAl=V_{kouh@cLC0EdPvUJ+oo5kk zl5ew|01oz3W-Zvwi0K{e5nE$Y&~CCglrpRbsFyKZ>T3lxIJUDCKMF5ha=jRX=gq;7X5n z2+jI!;nGOcedKkC5L>($a( zp3Jy4Wq#LNP6FRwX3_f@Xno&Wc@Rnraxmx2pmwXk^-jR^WnEII5$Xwf=i?&?o%+;4Cua-OHehz2BlEe&Y zGdC1t)|N{HD6nE!ekwr3CG!%Pb%zg_nlV9^$QOZ)Tro|NsG9Mvz}Iro3Ot3sEJrf} zy)HDCm&-#+D{jlHY2^O;oASChea^4t>+h+SGc+nG|Ab(ndrrCHc^QCrKTf=#ep$pQ zA5j!7P`*jZ#}`q)pdTrhrq3SAr(J>}<*uCPW>)!1FNi+nuD7Yirgn{PcM^k5v5~Jy zd3y9uYCG{t`Lxr-EnoVid>!Lj?1!Sd_eRLYej0{Nx!B`XVXwf|-fww@gRW{xpzU_q zE-B*uUC#0#U(V3aavG0WPU1Ps38dL9 kpW+{W-z59@E!oAAe>YPWusVvPUH||907*qoM6N<$g7_QwNB{r; diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char0C.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char0C.png deleted file mode 100644 index a3428bb069092b3187a762892d0b879467496b8b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 374 zcmV-+0g3*JP)<0aAm|J!C(3vD3Gv`{*a;b7de z>pCZ;)kEU;l5-NcBjz)ea~rs_GcK&)md3bwIy7i2tLfyXnPF|g_13^R=*xNI zoau|SC$hfIaedI7xMnYE?)tc94{oKJPtmA@pNCjWB2{Cj7EQOYOOje>scKzrI2BwW zy-(afV!ao7iu7lzv3-{L>>>Sqh=S_}g5|++V>gI`!v})x5emD+*r@GKWG`A>f5|K? z_W|Zj1(P&*0HvwB16#PnW2wA-85hYsQzs`*J~g!0c-*mF@{_8+2VGJ@SGODR0XxPI Uyb(RDRR91007*qoM6N<$g4GtLH~;_u diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char0D.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char0D.png deleted file mode 100644 index 10b0a496caff8fe5b0c18f5753ac779b7024728a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 357 zcmV-r0h<1aP)hvEc8ZFM|NsA-A}Fi? z0004WQchCkzt6lsAZ7ja{J)Hf8q(Vq2YT$p}kH*@&?cCL0FC4rMDQI7ej@#4d&5 zFzyImO)wTl!^1GaU>Jwsctdc&zN`CIfIEU!XIAOoz{q1bk=za|UCt*aW$tV1rJ=u%=#Kp~Kl#_+gH%zFQn>&ho~jWOyZ}}Y00000NkvXXu0mjf D7U+>< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char0E.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char0E.png deleted file mode 100644 index 7ca1f5f1407e1e3cc7f477e21f69b51f9a87ed0d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 506 zcmVhY1>y=cD~)(s z57*Xstt_Y>(>{nz?UuivV9_lXJMgwVNt^f6#j67>y5%Ho=aQG@M0E30UY1ieNf^*p za0xQ8TE1HVUK$ayJP|JmEnkXps5p7SysujfjfL>k+bqHR;1WJCkjuCu7>sZEMuHE? z$q^g&a-8;64ZPz1Qi~cpi5Jt7<=NC0q`5AYc-FO4kEV0mE>KJFcQ$fid)_V2iD|$y*qQroo_jGF5)cO84YnT!`!MV5C@M$!*)6|| zKKIcFyBKR7$Cu?Zcq!03cJ+%Ys_S9r>kcEu^pe*X9MZ}l_f17yEpall`;ja5nnfJG wPWu`AhX4Qo07*qoM6N<$f{mly-~a#s diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char0F.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char0F.png deleted file mode 100644 index d48609c5e1026f9b6fb0d5dcf5ad656ccd62d233..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 511 zcmV zprA1^F$@e0c6N4SV`C#DBNi4G&CSh13{yanqwxQKyWlEvw1s`$ypm~YLOO2S z95F7CG6FzYV|swanhxw5(Ewa)ObzE6F#?!1rUkb~OcEVy%%c<2D2gdTbS((O_WlHb zD0+hId*C))LkUWX(eiYi9b+PvOV9{WA(kt2CXM}GBSPVprzu@e75JQKsIEft!(+^w zDr%2=%c~2>#P#2yYb|e(gidu$>49qel(m@)=MfRhI|MIpG9=kVoa8)u4FyhWtpE15!b+y7>{|HC|smJi=1B!Zrl`~h)07gl)~`iB4j002ovPDHLkV1gTE B+baM7 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char10.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char10.png deleted file mode 100644 index bb46c03113d19cd50d4abdf62905729e2b2f5638..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 552 zcmV+@0@wYCP)LtIJ# z0004WQchCcQ)KByKxzdgOq;g$I`-TnnGIee7JY%NhRd)6f#yhe(} zwCnys%GjRSU8)PuxK)z-qwracT1dT7tC2$Cwm^7hfx!XZq*V#_C|Xg`#uH{~MR8iF zn_lp~eZf<0(l85zLoKiSBit{K+pen>o%7a!h@u&PB)Bd8=YPq#@Vs~1w85ipXY?%; z!#M`Z&TIC3Uc$|udb&8()?VXo9@ybdu21af{B-^%u|_9(LYJbpG7pwJr@h>=aFh>U z79k!tHRHSJy6O?N=Q(A%GBw?PH1!kVd7QZ4@Gjyiwwo8PbyxgUpBY$R#a7ce^)~bu zOGzIoi=^W_JvLJ?mUX;EI*B-%%Grkgz8=rgl`N0b|7?Sa5Axo@LBddMCKJBA$7@Rl q+g!q(YyYn$8zW3h_BGrW_xJ;PlNIZVC?f*^0000t_;+>S}fvT$>nyFt{bkm!u0kFZChYJ7u>cy#@9N>RcfW*!XZt4x9#$uMtlIy7uCGW8Q-ELYIPfen)8~PP=Jb z?e;(d%QY~s#!crZ5pla$4@&89yXV=54KCp}yW?Jee}`BThfU}0pH^x(BZuZMt=nQ< zl+HYIv>nniR3J>zuRKbvGAxWCGbS2Ihoi;Q4cJ+c%OTlQr|K) z^FKlS;Gv?QqnDIzdh?(T$?G`fn&BwoRqVK04tKX0`_UPS*M|PlJWjO@)rv#uquq<7 z_T4czvzd?_Z;R9sp61M20qu3cT#4@U^j~c-=QZQT4o(uLVrOgAje$Q~GT4I>ZiDhy jOE!mEmh3j-jeGn7y^R(^k~CQ200000NkvXXu0mjfTtWIH diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char12.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char12.png deleted file mode 100644 index f92b32476468cd0c9a0131da7ed3bbc109cc6f42..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 536 zcmV+z0_XjSP)-d=f z0004WQchC5y4E#4JN_}U^#>&%@-Il+3 adi(%GffVJGIjv;?0000yCsV424BN5U9NW+inY}K(g*JnMt;PW+r}9 zdpQSP7Kxk}I1Wk?XNdwx=Ur&;z|@=2)_}COLTivVp6O!)X&0EL9UNgyLaz#=)hcuX z>0Ib<4&48nfgkX|%X(IjR69g8}WDh4hmdCOd}l7>ul&DzlwzN8D&Y!&V8o2l4QKR81q8pRaP-?6w+^0-pU zx_COqW;C_pe3vDQmf6aaJwxl%5cML_rRot?=Y9Ota^$-0XuK22vz&72urJ~oww}_; zcI7-vXNH`vVXu>%${MP#Wsgw~7~B4r#$^h|S2pV6IEg@GXKjGdU+CTFKC1s-g9(-F zH#n3q3_C~T9!{-yCPUu?*kt~1sK)jwla1jflRbuhI6Zy<;j9(PwZvmq00000NkvXX Hu0mjfM2_hL diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char14.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char14.png deleted file mode 100644 index f3f7bb50554763971486380bf9f02eb49b6c8192..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 549 zcmV+=0^0qFP) zprE$4wm?8Y1Ox<8QBg55F$@e0ii(PMc6K8pBNi4GV`F0g008CX<;~5_|NsBT>?j%l z0004WQchCC0+G@xI$G+t;k%IuOTnziw3l_Fh{JCd-Y)qm9{~ z_59OFyxbt4>)!?r#Vgm;cF)A0s3VjD9`5w@UwSDsQkfvogV! zmx!_Ev2uTz>04kPgJQ6kgm}4Q*}chAdwQ{*9Sme6e&Oozxm#mLbv!Yr$tc_R*nH$6)C5olEBRj@C_FKv&|Z&l2y>6pD?*p+K;O7q31anXp+v+4!; zhvHZfE5|V^(bCog@00000NkvXXu0mjfvjYOr diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char15.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char15.png deleted file mode 100644 index a94474d1648cc6406fcf8dcd6272f804bab832ab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 553 zcmV+^0@nSBP) zprAlNKv7Xq1Ox=Owze@bF$@e0ii(PMc6K8pBNi4GV`F0g008CX<;~5_|Ns9#zBF(E z0004WQchCvDu33`Rv%Trl|lZ`*`m7ZE}_-I-3mKYKf~ zM?xUeG|qV{AW8&?I`UAH0lW@80bYM8-_>#*I62tLk84*@$#EB!qfOdM?g3fbDn=zo z{e~>e4|Z*={G1b8wM{M0Pn+0nEx%i8`Ni4=S#L_YX_ABX=&r$sE1F73O#3saBXPVpLyixh zSZn6EF{A>faQWuprOD;PGJ6OT$LEKvQM|GFOfv8iQzv7HRM@owgpRqVUVa>KzRYTBtTK68x=#mb!yEN0apdinNwInAoi r%SYql$MV6rcqgjmMtx~UKPcuGY%m+!{BVI000000NkvXXu0mjf0Yd*E diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char16.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char16.png deleted file mode 100644 index 12f01d28de0e5795241f11180e0b28227687915d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmV;u0Yd(XP)c&2t^Y~lw2_X|F;KQot~+!uI?wDSrQhRJFbl4gy8#SB)Y^zg-OMqoBe4D8m0fWyo(;AAqCq%`OBzCk%UciVCq zv2WaT5m54IlWvstcH-t1T~n(12=tJ~4~2-mD~&H5jOyzBKU>>%ZzRv<$kNLJ9na-i zx{iA`gtcvOB{%6ksi5@->p536Ng?=%C`5hY>0&mVYe;xCSF;F%`k=z1JZOPI)h2wr zLb702lnLZHFZf*OUJkNa+?23;b#&wTY;&W1)VBD?^Ye?dGn}<|K2|+xTg=y6{od8J z!$yjO$Q49?0MY1*TL+s93?{nY>2hb~CHJ8uXYHWgUgq(S1^2$sv&_4^>NJ1U+dMaF nfD1L%Lcxq}x?n#K*MFWr7+4lB?OYSH00000NkvXXu0mjfkJ!uE diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char17.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char17.png deleted file mode 100644 index fd9bad42c66907611eaad095df7d4196e4e3d5a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 451 zcmV;!0X+VRP)jEDptiQQ|NsBga=S$U z0004WQchC+m|S`BD>Ssh zZ5!%s<5YozM1ew*icFFTN|F&^Yf=P~+<{1Bi*aVgeH2{W+b)czG1t5t~0py$IW&vr?0Mv^q4Uhx@$U{Z~nFJKDdJG4=xsTHHzio3o+pd_tN0W*hn}1CO;^_BfZ~$ ztVmDuoOyS)Kw;+GO2Ez!!>=$l$Fox$2{2e99bd%3?cD}5?J;U@$_6b~TGP$JGQb7F zIVum`yc2C6OVt}ohfBDv)Fw={qDzuMkJ@m*2j2kghnOYfO%1Ae5R`0hhu8}@HC? z?}XLjL!`-`{ZSO!_2eU2ao7^zuV}G90ycT_-rC_St?I8)Slf=`vW}-)z;4fAJ1yNd zIX_V@ds0sQWf9sUHZwHtt&G7|L}*iaEMv^?m)gN`Tr|8fsCvufgOqK}ncg5yw3VR` z{9fI}9v0eq@`*lWQ9}~hF=}{V`JaNj+4uwPYl-^=TT4C6;veOh8C6be{Eq+t002ov JPDHLkV1n9YAISg! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char19.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char19.png deleted file mode 100644 index c9aae11cebf9e361c01b36723430753a558812d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 608 zcmV-m0-ybfP)eL@79%4g|NsAR3G|i# z0004WQchC!HVnHwgwEGKbC9og4v>&D)o#P4?dp@pCPOz`dOUze0@ zsQUawXl{!G^Ak;9p=?G%`7||mG1}AZAz?|Zpet4$1m%qV5dV;xT^H*NV(@TUhkeK^ zakI(s*qIh+xk3`KO1}9ujJpV``)d;47B?Q+Mtn1_*T_XDglmw;D4(|1>2YIIY1fl! z+z<7nkA0%W@d()E(R#?V(yH+qm9-~LbZtCW+fKXPl>YK5VV|6vX_Zmj+n)O?BBVZ* zSE$@u(bLaWgg%vdplg`ze_P}sN2jd}J@UZ{=X^URj0W*S+Zf_Cl*bZVT4>wJC;F5{ uO-^)4gDA2FNNaB2XNklDO+wJ*=g;%MrO<(Sil*)-N|iC|`bay@(Yj74y*6!_?7kD6SQub@NHpm;?k>nzjS zscemA0}LP2D-{)Oqc0Czp_6o`4g6!>wXkBYNC~umfOuQMs+%U z_MkOU&sGcaD>Ss1X3ZvQSB?uwpZ>*~I4olpLV`B^q3?m~W|NsAPSLoIN z0004WQchC(Xsv3u(!^1WZHGHa93`~wEQq6|+;MVRyDY7{5OH$ENu^vM z&fh2}<3!4dI1S| zA#as?`?gKaLpQ?~kOE+TRjmgaR;e*$K9EJw<5PjXa#O|w>{7~^Cau*bA0s#2ZEa9@ z#)lhk*2&azSnT6ubHcI!YCi5V|86@3}*yu{$vwJ~Qj-)*2Tq z?p9}6hnYPx(zZJ>m8_K2p8{9CvBHOv@2v2l%E{kTMe;u@TVzm5KJ3FEj8_^@+NBay P00000NkvXXu0mjf)wUEF diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char1C.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char1C.png deleted file mode 100644 index 2be94199c9a4d7ce5e6a404eb51eb7ad4be66b37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 377 zcmV-<0fzpGP)lu+V1xB@q1_Y}FOGkr_ zSRxx8TCMXIz~OUi_cj7YT-P{SHnzQtAT$lC=qx^xCEeo)6#2~3WOr<9alxsF(R#>K z#p0=|w=85xebzQEQ*){*y5_1)LPQv-S(2$bd=$HIy4axxyxp-dVM%(J;^{Q-r#uw- z+Kp4mj{$S0BqdaTAbrkHu+<+HX5EVHaPy7A+hCKr*~-hpJmEioW|6ml<_bRy`X{^q XXa5XYPb%B(00000NkvXXu0mjf9H*aU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char1D.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char1D.png deleted file mode 100644 index 4133ba9a4970a1dcfb4e0fc73d0748db2bc820e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 449 zcmV;y0Y3hTP)shl0tm2ZB2{}QRW2%uGYhGr4}$_G-y3;7Jyu?>SEF3LY{Z61hUGvA0it5)k!rVN`6~H z4n6L-zyn8JB-%!B!l*5rds5dNFk zAbY4W5eDWnaqusi@Ax(FzvfFzSD_ExyE!s-ysyvqBDEZBEYJlLKVk2O{3rZ+GGCKF rvMEpIYv<2bc;J`e`$dUY7xMN4+O8TlfK4^+00000NkvXXu0mjf)uqOP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char1E.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char1E.png deleted file mode 100644 index 3d75ac87bae459df6c9c579bd61214c80ec57998..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^#z1V!!3-pCt0}XB1Oj|QT>t<7@8IAN7#OImtel*j zEG8zlZQHi9XU{HJu;A&_r#w77hK7bfwPj^xEG#TtU0p!+{(N7K0fiV#g8YIR9G=}s z19G}NT^vIy=A6Ci$#+13$2pLz)o4b+|J&2#4o+*D^*37e7iZ&~)X8cG9(d-=PFYry~j diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char1F.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char1F.png deleted file mode 100644 index 5cd92e36e93806ca8b900967fce05081b5067e8f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^#z1V!!3-pCt0}XB1Oj|QT>t<7@8IAN7#OImtel*j zEG8yaR#w*4)%Eo0(*+9_oIQIMsE~z)W!tuGJUl#xhK4}(zyB;228uG41o;IsI6S+N z2IQ1`x;TbZ%z1momajp9p*hfnWyzmA|F>CHG+tZMyz%$!Sv84g1#gsoIW~)tajw#= zsjf%cHg)h_Yf)J=*X?4PSwiInCNut9jV~P8C+MuWr*S!>YehuB>jRn2B~w*P!Xusb xP04=I{df7qTlI2(|JFDE`)8lQWqvhAf9V{K2|^p?oq$eY@O1TaS?83{1OR0NWfA}Y diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char20.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char20.png deleted file mode 100644 index 988cc032fae01365ebf78fb28e6ba08705a25111..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 430 zcmV;f0a5;mP)#8y&0000pP)t-s|NsA> zprFmo%|JjvF)=X~78VQ)39T_$3`T=&(Ez^x+um4fhqBnunR|Zf88Hh9 zQO{m->eyRLwv~s(#!K(VF|?#Faf@pC+#S^6)U(S^jl}Es0FOvTi+IP;84@@2ixSyG zB559>V2C0+Of1a5)BVD7z(fjQ;6%(DCJM9pZnt+0-Thv;!4_NSyp`NAa8Ul6&W!I8{SITX3%P5TM4fAagD%TBlb@G Y1JLLXUY9R>?f?J)07*qoM6N<$f&t9IVgLXD diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char21.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char21.png deleted file mode 100644 index 5239e3f9f4577a5da288c08098677a8d9abbd53a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 404 zcmV;F0c-w=P)#8y&0000pP)t-s|NsAX zc6JsP7C=BiBO@cWwzi<4pacX23=9l0F);uD0OjT7&CShYV`EWKQHqL+|NsA@_&Y)X z0004WQchC8Tl1(-u|JUW60FtX zee6u?Wfu2S=bk4}@f%_ouGg6C2HG<3Eh;)*ea&}>|HeBxftSB$g?k4U-E2R`4>SDA yytgGCG7o8uCQ`WH3a&Y$M*{Xv@F^n&e4$^w8xdr+M_K0p0000XP)1x z0004WQchC5G6E8&Qx4H0J7Z5y#XBXQk9k&8`aX(Nk>XUbV*>r;Xi7jXDh zNx6XQM(Gv@e=|^riXnX|rBws=I@o)Gt{2zv!fCH_Wdhf=bLLLKV3ZkRxex~PiEyCN z^@4@#Wv(lgPUV6PB#p|3Nqr-){4%Di5u0CdeBOk{{q$vNC0A#quGiAr0Pgxn8uMzf z_o>0(hO%zl>^0YGe7F`{P9F9a1D<)K>_s+cDIX#nJ=C->u6H?yp9*dGfd|(s9$kO) z?D`9>*AcDPZ<2qJQ!buxkE!;uRfJ!a@9Kv*R{K-^=6_tLTO45zG>1IU9LtwDA&mC= z&}Y$HW-78l>n3h{zRY`KPP3QKq+O@p4E*bYz@G|+_ALOA2U>wV&}#9)i=5J<@DCmV V8+l-5(w_hT002ovPDHLkV1kKu@kjsw diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char23.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char23.png deleted file mode 100644 index 3292416a7f950ff7c9773f4f2f3b4e84cd0fb571..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 539 zcmV+$0_6RPP)lpyii$BYF#rGn78VwEc6JO547Rqm|Ns9>EFqx) z0004WQchCC zgF#M_V^#GJ}ZU&RMLyT0fE>@okpkxZ_u7Qo#;wR*ROnzVvzzdPxTYK{Ri zoy!@jW1d95_$7i5s#n7?EUGJ>@EVjWZY60b0Yv?wlQK>92yhaHu4j`#6PBXyFyaG! zMRi|}O5fl63xxdhuA6=KMRk8~SnVwJT#o44KWVD7d>SN;g|s$w_zvk^?gHNnw2>#c ze9m2kc)X~0+r%Aa+eDD+^{b6WIG)8{eIrr4xUEhzPp_!8SG_kaR~lW~++r~fQj`)7 zyX)Rmcc-bn#(u0sb76FGq*H5l*Jq_K`X?m&=m=J0innkX;fZoQh*QQ$_NXxX>YBK3 zVU`H8vkb^lF^H^DQAtEsmAO+~iu}SjtksA^gkLT1=%s1B#h%dzeAVp_sVspAL4A?=-1r(5ThtG#Gs}nl7%jn> d2YE=+@DHua96cgPeL+3^Iamc-xq!SU-5>;JGF5eXbA8HOY3*Ip9Pr;Z~ zu>C8{9*%=94iiYd+M^ZI0kdchlBM$;-nhPKcXp8J2EF{+oLLA%$-y;*>*t-ErD1p5ARn|wNzMs%HhRkRO! rUZ3)eKJP?N_iMtpBjO`(?u+>Wv&$73KD%=300000NkvXXu0mjfX&A`2 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char25.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char25.png deleted file mode 100644 index 0c1fd8295abb4f272665605a7aeb4e2982534978..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 446 zcmV;v0YUzWP)k5Q9wXI1Ox;Y78Z7Pb_@&*V`F0@BO?F+0OjT7wzjs4ii)71pv}$A|Ns9Tjzu*9 z0004WQchCs){&EObMlY%Bjx~^D!4VzC3XEjI%Qv=L?-c4GCq8vg|(jY6Gg3QYvsB|XM!!Kb~C?U>-ReP^ZvZ4 zKbYkM8ZfGVyem00iE;$SpA0X@6UEm oe_D{x_od;#dI}wmy!_W+ACdWZe%djJ3c07*qoM6N<$f~-2h$^ZZW diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char26.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char26.png deleted file mode 100644 index 25d5c878f4602607d606bf47e2a8a4eacfb2431a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 462 zcmV;<0WtoGP)Ez%kD*Pb`Kdnh@Sb3;0Y;36k%qd63vas#8D$R%VM%ETikfv%t^SNoNV@B zn`}72i}~rqH)Pkz#k)bvQ3rcqi@zODw#;Z+v2i`-2aS$m)5ZY|>ctryMAinUtF_Q) zeHLJCcfK8KdN*4I^Oh;quiB@&K!NWPho;~1j~2@C9cobRp@p=q@Ex)XeixVLW*$=< z-8Tq0a_U?-Ad{i|(Y`lGA^|(VEu`W94jR6e)ZlA=0M+~x*eG0rVE_OC07*qoM6N<$ Ef|4`GZ~y=R diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char27.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char27.png deleted file mode 100644 index 54109514ed81822d9838947e60c537882ed15faf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 462 zcmV;<0WtoGP))DlBO@a~KtK!(3;+NC<>lpyii&o2cDA;*|NsBlG=yFN z0004WQchC zprFmo%|JjvF)=X~78VQ)3`e$PK@$NSmgXD8HidOR15ls+YJ(}sqF zNJd8o&kwjw1a(+hIvTiPY}4uGIszN_8g<^MSxXJ3255f1?%SKSZWh?WTa+T^T75Jq zh$evc9uf56;1g?=$5B~-IER&w8BU&Xr%%jJewI6ZV^(&O&w?qFe%)C>k62Wl4+VNl j69Q^L>NTYr{w&H*>KqOL5nrqf00000NkvXXu0mjf&3~Ts diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char29.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char29.png deleted file mode 100644 index d06ba6e87fc12ac5baab2125bc4bdbc1f3d1342d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 383 zcmV-_0f7FAP)>=jNnlu6*>AYbFbdVnR`ow5}|$!lDPp_KGyAZpI dcb~Wg_yPh85CJuAp;`a{002ovPDHLkV1gZ6pGN=y diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char2A.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char2A.png deleted file mode 100644 index b247ab573e2da7e769d5a27b643ec2202f908596..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 499 zcmV zpr8y43}a(sF)=ZUii#s6BNi4Gc6N3^KtKcp1W{2@<>lo7007O+&9=6-|Ns9O=znGa z0004WQchCD<2E9=WoVV zYOLcBm`?3PQRWOp!ZST>GUH0L%bboDneiZ+Wll?8W{gBZ<_z6r9D#hLG-gnUKu+2q>_9vFFa>AZ>?MxKoIG)A7THhi<=#+9Fl zkw*`xvewOtn#^vs#E3FHwTg5+R7#0?po=(Yz-s-?)!=ZBmY+4obI5c^859> z-tSuJq-3?1W7ycw)<7nn$cGQm)xWH6ATJ}Zcdv5`6aUnM7xhndF|cN{O#IU_;)hC0 zAF3|$LVe_!2FNpwkbeUG7E6FUPM0+Ksi7w*jS*&gQqp)VGrc@wQc6*XEfv9bs=N|< p7NF+;fn5CeZ4y-Zt>^|v{sA&V7u0p9F2Vo+002ovPDHLkV1j`iq?^9m~fa00Hmpn{*8iz1>l4u^L+)ZW#hACJ4c2HxrlbCi)tg?=# zQ|{T?4S9{VQzK4)4c-kp<(^Hmj9W{yV(Qbv7c3i+JZ8v`58_y91$HUdp&m2<>yCc0 z$1owPr+E#-Pn>xTO-yEAHe-LP?|}Qw`*1G1JRU7>e+KtDZpz%ikO4nAJH5DpN_?oS z^iWaBdGP)sh~h(4#aCZ^%hhuGHvJEa=jSW#{~0wqT!yks<~`JH2ezoT?;zRIDd$ln lcW+1fG0FKANzuY0lktLUy?T*T60U+p};9B$|dSFKe*48bpIxg@HrS zZg!`crxApTN%Q5k>CYIG$9t&3$f%I(vMo}hPjzwrW4ZSv76%gNDPysveWr+rL_{Pq z$w?xUKq4X%8KvwpiUr@xu~=+KoPTPm(a`%uAGEyC(HpK2NK%9)Xqn}Rl8Bv_w5Zn- zS!%Q-5f3dE9sRpQ(2^q58@F^^l7{=Iy8cl2epyyXmoxKA5p&GN?uYpYDo~gPD-)0P P00000NkvXXu0mjfPt1Z} diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char2D.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char2D.png deleted file mode 100644 index da6ce733f4ff0bd5f7d7b87dc0cd5509f1216794..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^B0y}z!3-n=S7fCCDdPa25ZC|z|1VguATTgcOiWB! zS=qtCfrW)7IXT(T(6FqmtgEYQ+qP{$wLCmLXV0E}`t&JKebXJ*V4x6VNswPKgTu2M zX+Tc3r;B4q#hkZSy!jdwcvvnhQrOS#Jh~gw_nd$bZN_Wb*FtQTW5TJn^=~%`pm}gv=>!R zCBKGN9;#|nY^$7O=&R)_>)#~~c>fzV8B;Wf*8UUTa;OXk;vd$@?2>{$X BVe|k1 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char2E.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char2E.png deleted file mode 100644 index 8664d84c372035ff2f9f48355b88d8e51c3c04fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^fg z?|L#Cc^)^(c1kc(xOiUKb8gO-l+PQOE;7H*aoE%|(WKjPo<1+z=eJUg4!JK_uk^1v k;hwzT!?jT9^k)l3mq)AzqB_Jb0b%7 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char2F.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char2F.png deleted file mode 100644 index ad3a7166614c972e15dbdb56393fb8aeb3b402db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^(m*W3!3-pq^PAiUQpN#3A+G=b|KGN48xIdpS6A19 z1q)bMSk9h3o1C01CMKq=tZZm#7#J7`RO{g2P*zs<^yyQe`i_d%nm{4Ok|4ie28U-i z(twF)=ZAc6I~=1d57^|NsBuH;SSF z0004WQchCv3&#u9kViCWGiCLN_a&~{6@)Gw;a#9Ww_d?*%43GYIMZ)s^fkPnH4O@ zD>&{v;+uEGN&nt|98sEX5eKqHOd}tSnCvX|hJag@*zi>)CfsYsf@7}|3&vhMHhk5? zCw^AR7bg4K&x5sMs*+^HXFYtZiJtYW5*v1{b{<&VRxKf&Bfs2>AY^T@f0Y*zb8Jr! Q761SM07*qoM6N<$f>*+u2><{9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char32.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char32.png deleted file mode 100644 index 6301e1079fd6551b702dd7e4fa1f26df63079c0a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358 zcmV-s0h#`ZP)F)=ZAc6I~=1d57^|NsBuH;SSF z0004WQchC)o)pSm*RfKQ**+=%sA^p)lxAyc)sKhb$_5^aDWf`}m`b6BN8nb? zj_Rv+M|Bn3Q9U&bb*u3_2YUL3s#B}i^n2-zuTHI-g{uE?5l~T^gtBrXN}-g9cFdcX zvG}0!jtZhmq5SY$c+HVRNop;j1ZB@qf-@23i3LZl2Mb275*xms;1j>A$Dg%h!|PR1FRXs8 ku7q@so_oqYp0TRFx3~CKq_W%F@07*qoM6N<$f_r79)Bpeg diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char34.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char34.png deleted file mode 100644 index 66f6523485a235d3a3abb8bea9792e6a90484677..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 532 zcmV+v0_**WP)0000ZBO{86isj|y|NsA!bQU}S z0004WQchCbXZ#)D+s}8KHBC*&+GU!U|yP}XJeV0xf zSex&ekR;U~`*=7VZ3It}+A=1y!A#~G^&8qe^kl9*-ls1~w&#&Zmy+x~63Ez- z#C;dYaE%TjOMz678jzFu&TY~FXh@SdaZog*FNH;}B9ndk7*E$iCi|=p18z87^9=dS z1)(P^(tT%*7kaWHEBl<#lONS>$fs+qv$AjgsbbT0BtBh7;?s2`&8F)>^H0_MJ9(32 ztGgtV$P_7PBa7ZOA5~sj`%J!rqbv(Yvbyc=|D5FHKc1VO?DV@NtKv63+5V=zJ0000ZBO{86isj|y|NsA!YXEZq z0004WQchCNL7ag^fII^gz;#AyFlS&8Gt181=3EwlM^3}; zU<_CgDsZ8eAP-JnK4NS`(u9C;Xg8#Y%L$u5c)?i{IFq|`MY_14c(j?4NYinFk~PU? zq%_T9&Pkr+lRU)Yb8fxjZrOWK3rH-W&!e?;)AwW7Rv_ z?Dvu`bwSgDqRHe#Vg%d#t2UGGn#mGfCq}oe`+aA&&wtBQPIf0En9o$$yUS#!rxkCT z`7V?HJi3dfjgv$2@zeJMZrDq?N5ld7u#)ddQaZj8ct(clin0-SwtI3CY1K3n@|~{k z6?j65Dw8J9hB0|pnG8=!;PG7Yalloj{AAYsb287x!ThwNtBT9P?b&2f#?K(@BF|NsA$WT+Pa z0004WQchC!fN(}CP-mb7&}XCodj@iV`;7DeXO0|zKWljd@H5ha$Um4`KW?-xk+ZN- zK+*agxmYVOS$8IJ!mmjYCr{n3K-iMxcvJ9c`Xw1u;!GC5AZ5HY*t@)-DXFpF$NGe1 zH1&&W8h)dCx5wx0DOKIneyukXRS(*4n95SP-r;GtVH)#1=avsPO!qdO0SpHv zJ2J94AaYNVv`y8EXIl002ovPDHLkV1m*#+ZX@< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char37.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char37.png deleted file mode 100644 index bc5213423849e6f8aeffb280e0332ea672b5eb6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 481 zcmV<70UrK|P)f#?K(@BF|NsAiN*8nh z0004WQchCquH+nq~G;B$&^hv#9dL7f!Z}Jg)RA>a-Ynad8%77ntX?*4-#ofpF2N~Or*cp z(qONLvg(F=z33b6_4tH;ey{5>m5S~4UTxD)Q@+3TakFv6IS65eZa9@trM4SBSpikuhezxuP*`--OHN2;<>ag z=Bnl5UWUK9hS^&LJgxgJf*?IM~5^I0#_D!3Ais#S!zE5nT-CQRgY5f!d P`hvmJ)z4*}Q$iB}m)3#I diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char39.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char39.png deleted file mode 100644 index 4ac13d1658127b1f343e068fb8b1ab0a4224aedc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmV-H0lxl;P)f#?Kv7Xq|NsAbnCJum z0004WQchCxhxRHibVr%`mKr-=|e zpWKQR7f#;VhAqpmM>Z_ZMT+F|Jt7KNkHLNYj)bd%8w zg(c;X=${iSZf(E9p{IdWwR8r%$lu^{Ti5I+7f7ysf};$s-UfUmT9GjNH5ek%s0KtMotc6Okkpv}$A1Ox;Y78d2@3AM-X~Wg(9^=H)14k@jUwEI?qP3S>2xC2c(B#FQmg zInkr(p^M~~{P_$w;*m}i0l@VE&xhb)gzsq00cn(O6u=sd0*4KkldsVFEY;* zDl}2MVNEj$PFw4d;F<)Nwp%w&JnP_$MA1`DWK8%6nZE=D+ME;O)q&|`{A#+}rbNTZ zxca=ZEneJkoz*lx86EuDS$N*y2b^L}=ext%o9TS_NJq*2^l^%VIF9kpMzZ1b- S_#Qw20000jsy z0004WQchC*cp)63-6Wm}bhUul<7MFZziS|G5f$Q{S?=(tME!a4d&N?Pw=X}` zs6N-AHd5|z&;+O|o8yig8q?zvWw!^`S0JbGEy(cBH?Ome0!0Plz0gYKZEPDEyvj1Z z2pmto`Z3ik$2q&IJmVM^`)+?xJU=$KegBYn*4XbwD8HUp1lj6$=#ip-85a~Kln)8h P00000NkvXXu0mjffikl= diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char3C.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char3C.png deleted file mode 100644 index 8bc7b1f10b0b61be447ed8a644e56683126a414c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 494 zcmV3=9lWQBeQ@02US&1Ox=-<>hvEcFoPr|Ns9v8iWG? z0004WQchCC5d%;iBnQZNfD(&CqPsqZg}9O zxLN=f@?W6LmKhv``pewxD(LIUEuHv7X6<01F;wgTsck%9T2v$ia4Ulccs2pRtD%+x zr_fkQ7&-x>Ls`)_8dKuQpn}oOW^KP7_VJ&eVQX-u-t1P2#VNi ztYsqF&GyLcZw2Trg|Um)KblYWL3i{SltR|fGunCXaqRDA?}ryKuCx1FYyR!*LbkGrVfeFttdcj^<_XJ;|No8Q$mgojq#* kXyY3naOFzuc#TGe54wyKfvZ{QK>z>%07*qoM6N<$f|EMd+W-In diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char3D.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char3D.png deleted file mode 100644 index f4153070297a5501d22ba73c6bf1cdb9e9acf2b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 374 zcmV-+0g3*JP) zpr8Z<1Qr$+3=9l*c6N%2iX$T1p0jkzC;G>tFZt_UwT}t|4HbGRq*DqoKmn+p?+-kL9UTlhE=Gj z?SXSS;^9b5wa|)e7gZjX=>HJf5HUqwu#pO#liHxwZVrysOGXP7r-gKmQvH7-l%B}n zxaG!5Dd&RbCvY|KQ4f#xH7ymr5n%PhEN+e@6}{u+vtC({epa-#O=i>dD7es_%|V2H zQ*fafbUczuQ|OUE-gtu@S#hC-4yxwbszG2%kys}j_iM8Vvy5TNwr1Dio!?<3WA`Isc z=|T1fWt8*%rWmtyz;oJRjv~y{jQtudc#R670{)`MZ5P7r(QYfW+z)@8U8uaK`&qK2 zCzK>ZgO2}>5>2PU;zETuS==a(5lz^9lpLV`GYnip|Z<|Ns9RwaQ`u z0004WQchC6*AbQD1rkNUAVOfFWuy)S@ zHgD-1-2huH`L&X+<<5C1xfsgqSfW4ZYzW{!afMdJk#}sMS~PU}-N^DQUIxHbxl! zNa&*#~~Qru79=KVjIUUt+w^>bEuW-E6H&cjaoSc1^%o9!awWWHT+Td zRsC;VX|>8>&Q6Kbem1;p!i0g1R$o{_3j%vPgJe3xODJbo$XPs4sZo$m^H-pEC+pg3xTbtuqu2GehSYM5A`=Z6oe&du{ l3bccR+btq<0ln|;P)g~zW45-oc6N3#F)QagL7MykxReMG^=%{S^Wo!^*U1=)H+kF*V)baOoGd8uA_X}OyNmW xd(!gbj;CAh%5OW~{o{_;S(?dZ-*)V`{{YM26Ru)oHdX)t002ovPDHLkV1gTgMETiR$og)<>Gv5I{hX%rBKGJKSA?dp>e94MQ*(5#liMb8>BxF80 zvq9wavHmpTGt{$3tiPGq;5bmMzkQDFiXuDf|7?T2n&Z6sCmTql@IQ)WV#9&|dz{zs zV1ubLs`6kDv8C&(Gm~GC!|k!5mXU*?hOwofYI&9B1en40AW@q-pB~vjG}>0>`Dt|9 zLjaBAE^FFvkM#T9<=(Qi{q}HZB`m|Y+e4)}nuoZ9)`n1i)Z1Nd{=Pk^p?*i$dwRLZ zo7gq57fD@ZgGiZjZQw5T?Il9Aj!0vGsjyK|(6^Y&z^UAIRRt_No0Dnvtt-$lfc^jh WR1+7#)C#5m0000g~zV+;%o1Ox;lBO@^}F+e~-wzjrWQBf8a761SM&CSiAprCekc8ZFM|NsAAJ&48t z0004WQchCN60F7l7fp>`61GP1H}Pe`~`EMm`5(owu(1YFHub?KdA&g$J|i)E}sfZUr^^*JtK~FnY(%c zdHP3LGf^Y*fwHx$R<*nvN|v6JsxG#tf`igP)c6OkkpylP||NsADxy{!A z0004WQchCf(oKCS7@9DN?hB5=bC(6^={ zNyv<}8nkBtz|HO%`I7ZBGNWH%4!|$cIp~rnBtj%EY74T8;xi|25VxG&p(yJ{8sK#a zJ7tYviU_${z#8%kvW7`W*+f?7Hy|q)lH|qiu$v)d9P$*Tccdi>K9Z>6rDgi5myBNM z51F@7UM=VYGJj5zuFnE)%0Nq~d>(>d#0yikOZO1qf~R$1D-o zIrCIScdRC(+jHy?48E6>e|8<2@AnOp5KpAKSN_~0nDa(@we+u~?OgG7kyuoPl(t|< z@MhtjR|d3e+^?iz9*cc$`q#mv+8msqRjUNP2Ich=SV16c9hZ;v0EqL5L8w zyh~0|ybCQP_%xBun!xk63lrK{1z3AI@9W9*F%y;kk__N$Vk-q`Tw{urOlDp`eTby{ zc#->~O^DA#tSTfs{lYQ7`)ol93+X3XKiv z$U?&%$b^jK9)%srjy@b-lR{I3`FtQ1LixL}Bn|d*Bc)5y;udCH%N^-HB(IOjZ>-;B zL9)(g_v4N%$$)qo?0wFWZiTWXk@tvkO;*hNaiAqx5F9-&$dW{gGL|2dWD^Rjqpl@4avi2dD<$_+ zE1R(Qwn`a`MWcU&BCLKMq>6Zm`VR`m=jmVY1NXZWRt5@g-~a#s07*qoM6N<$f`k&u AeE6{V`F0$78VQ)3?m~WF)=YwQBed01ONa4&CSiWwzhV5cA%i3|Ns9l;4>Nk z0004WQchCM(t4AdAhzlG0Ko*v;{O5ULK!j~M z$*c^Lqxh56e+-b7fb%707*qoM6N<$f(OH;o&W#< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char46.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char46.png deleted file mode 100644 index 3040dba9cb1233750556280bfd30314577eeeb74..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 352 zcmV-m0iXVfP)k5Q2+n{&CSh51?VTo|~FJJKr#{pMA@E!{`lzJLZ@}%jkLf$N$BDF=Uu>m(GU38JzQ`XPB^05s<1x7a0000u4^P)c6OkkpylP||NsB_&5&IH z0004WQchCD%$e?Z@Z{;>ovzFOD1t-KJf?C zQED-|&YV)l__%Uhv0_*7aGMXVIT4NxN=Z-~(ow&flh|*;uJ9=_6V<5;Z3oTk7Mcu) zLId7CuHzOp)6RoOl>ml>kmH{2oau`LlZpU1`lAL7&WzAUjy8fxhMDZG)@Oj?OZ%aPH{~!ZXoQWDjmn ztFBT6KqBu2+#7uFg$9zxW(4DZ-^~T&CcWwG>j&H%eo_ESkiIU?@%c+W9MBbOHEzJF@ z&QP}PFD!}#Ge0IJK;3`1C%$1p_U%kJ1w)+Ng5#8C#f0u317DTXDqOIUzFN*!()~cQ zWFMare4;sQdAIc(`~}Spt`g45B}=_LdE8v%ENJSTrGk__tS?RZ+tK{#e&Cle+j9Dr zws8gJ+#OisN0hnQu$51KKBgwU_-AdK=R@D;*(Rhn=(7oJu^*n75UHOW(4hbT002ov JPDHLkV1n}F5DWkS diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char48.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char48.png deleted file mode 100644 index 86738c3174ba775417dc36a892ae1d41feb14717..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 307 zcmV-30nGl1P)FqyGj~Vgu zbUZVrL1%yg3=*GS7{Rnwxh3K{v@l9Z84rX=O$K3LkRpj__FN?8B^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char4A.png deleted file mode 100644 index aa3a8d203305f9ef235cb4b26b4ff7c4dbfe877e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 317 zcmV-D0mA-?P)BO@cWwzhV5cID;e|NsA9S4h_Y z0004WQchCLGy_ODNOYp0!x}*|xT&xRK>rZ=|(T2vGx^ z^mA(G>=@rL&>AA@iQa)Nouq0#5GY3;1xMj>ft6?Z<*Vx#mO`x|`OEkP{yYwcNx3LI P00000NkvXXu0mjfa&3nB diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char4B.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char4B.png deleted file mode 100644 index 40ca13f87b59c76ff978d843f2a24c48f2277ac6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 473 zcmV;~0Ve*5P)q3eMb2YQ5FX&NJ9}HP|qz2#GUZj080v~_+TIU7;^{1;;!N*wk!Z8PJ3OYvEkpBorf-gB@vMZW zIXu%BPcyhU&@1j}y_`LMrf1wI+VANJ&ot|s#eL~+_Yn_?6*uA1SS(&>08Mgjtra(w z&TsVxy!T+b)$MU#c)v}tSO1U87#`k5Q2+n{&CSh^Jg2%J%=P)yKd%GBz~1CGEI49Nsm(>F2GFE*gKlzVCpW-at&?K> z6Ai9``NCP)l;BKKTH$JNlun$6MJ6^Al}?Zel{d%St8vKrq_n~D;jkI!PfjJJ<$Dy! zZ0a}1N|$ID#ZKq-n+s{peU3uY6a40|$7?E+W^+It>u{{JgB9ErmpdFQozZ?JLUKfp zTa(fuJh7$H9>+>}%ufc_4mIGik^x^bXq0=%ElJ6PsWRzzm&-~}jso}WCpcDmOltG9 z_Bl3b$msx2qRX+8<$1A}vm9`&l;?#m-WhONDb0&y%_+{+^Wu8mjSU>|zQ!oOhmylRnYsvD;^YcX5M{*uNVl)J74&<-@`iRWSui;K zG(gh2rw^<6LI{qmb5aBidR-`0e@~PHJE3ZnhEMotixQ?1e8kO{bAN+HA4#tOJW>Dv N002ovPDHLkV1gsL0$2b5 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char4E.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char4E.png deleted file mode 100644 index 534a3c1812615d72cb2e88173fdcfbb0236f3790..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 437 zcmV;m0ZRUfP)lo-KtKQh02US&prD|Nii&o2cFoPr|Ns90NNrpI z0004WQchC{oHvQ3hk|@hBX_ zVW*B8a9oHqxWk7Ar&V~;IRNmyrceRWD2=J-9H+1=i6Z! fyxu+=QI_xnHt7`V!Z1Ox;zF)@mYicwKfV`F1>c6OkkpylP||Ns9AeoyxR z0004WQchCePpRkLYB6|t&4>7nbasHO^-RIBJe` zfSwuguPMHtL?*i6{cdKs0s=opWL1}BOm{{u$w>%n5e-ZHtPxd?f-rY*W_21vo8W5` z4Y0%480q~0KU}sBaeoH;|CQmnFh8;}!1Q+Gi9Yf?Qb!LwDl=W1e%sC*LEgJnETJg; zYA)w^Yn1uGoCi;$9Ut0^L6K|I^8Lpk5I^^FhxEFxQ`Kf%<@#kZM13u2W;E}frfw`Z z(bQG(M`EJE;eV&pP|@RZ%fM71Yd>>zq3o#YmyNb;=n6YEjua=6YMS%lOQT+=LF33> zuiSE4+fN}h4zv1{Yop(s`EOGg+6nbeQZ3POFGg+Xk7N5Eu$DlpaE##rx3HQ|Ur@A? l4F5Kz$(N~mT5Wc5{{tl461UV$p<@65002ovPDHLkV1mJ?3a$VE diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char50.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char50.png deleted file mode 100644 index 2dfa9a7e9971e474be9346183df4646d4d484144..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmV-$0gwKPP)lpyii&o2cDA;*|NsB8x`$!_ z0004WQchCug6E{HGvW=y{Wi{BG5T5AQB5LM{_8E1y*aw31p=z3rI^+={xl3bmbJDa+25a z)9bD}`Sz#Q6;G`KGsxFU7p6rd^}b9KC3uk+&Fl*0kR`>PwWM3;t};?A=k42 O0000V!Z1Ox;zF)@mYicwKfV`F1>c6OkkpylP||Ns9AeoyxR z0004WQchCh8+1TaG| z9=t%USRo`Ta6^cv7zEU^m?dec6GiZRW(#Qhh^W%34KWsyw^-k`=xJM`t2f94Sg_aZ zX$M`y^y)x6W>6g!$J;-afipdp) zznaTAo*HE&nB(9{wBtjIF(`6vTE2f91mblscSy@k8LAfJD%TH_A?jm6GoyLFY3j!N zB$~P^z9c3Z9R59}x(X?tiN&TsmUd?ALfLAd_~}DkR&;@t8b^wgNHxrP@OP!2r$Ob& zO|M*HTI!<^Du%O@6h=FgR&`gwE9i{luecYC0)3flTA7HME(Gk<`#hw S9bS|G0000 zprBDvQ9wXI&CSgW3=9?)79%4gV`F16F);)L1ONa4<>lpyii&o2cDA;*|Ns9)_<92X z0004WQchC6WIi{@ZK!screOrG&bXvA2_ zr${BTE#O-Op9$`~HTZ{bp^>oO>WOp9Rxfb&1r1W7E5dYv zCP%L58rGE!Tu*flnUqQ*y?4}_dv)Zy^5?Wn>uEICE|j9Gml7px)}|<0rAe?y38b#3 z-D%v)e?ZZC^*Ns;(AyGyagwn0fX3M}M$8T6{RUE3@)MmmAW63#n{eEK275($PhZiB zom}9%ghXth=X_nw9oi_YmRWmj)cS4tJZ6P|$`E6zdA7iTUgDFo0o!)bI3l)hZ!uM< ibu-mhw=j!@C-@)0A{Ns4EmPS50000``)x zG378GeG12-aF*sU$@4@;a(kJd>aaSh{;yrrT32*DOVbhD0I&0;yy8iooq!`MhT>6B z07AcjK$Q7+l`IUw0umV^39fY!a2I7Li_FkH$_8rm@`V02m=5BzJtE^6fD0l!+hN4id+zd7WxD+Bn)M6&AB10eMRHG3Ie1WKX!3-qxwyyRBQpN#3A+G=b{|^ideERh1*|TRC zELh;+;Ex{uCS7}-Ap5_>s+&)Jk5_ifX3+ryux z`zk;4-juFWli5+D)o2p;PTu{${q8pZybm=kiAU^Iv;@!CZ(A1ybUK5ltDnm{r-UW| DXl;9P diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char55.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char55.png deleted file mode 100644 index 373e51fcb19211a2b23b24fc64edb57652474b04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 412 zcmV;N0b~A&P)hvEcDA;*|NsBnAvzHN z0004WQchC3`J!o0Rnvg+eTtY0J}ThWRa@=8w%+m z1a^G@&T>(Pt~r+g=&IPsJO=}Sj{%7=iX4#*F`7};2Vo-T?FedF!&2V`hZ0iEb_$<_ zb#!Dllv5OYwyh;wN2GH{L3%izp@q@>3{5oe{}u)6XMTX%)ACajMV9xuRJxyZ{SvO&M9IP*E*g}(r_brU;Mrl{!v0000Wa||a~=*dxr4|9e3FL(k&&h9Pue&{{^jrOd8lEBiVQXlk0>H^?29#Y}+2hVpI zh-M~0uKA^%Ed+ikEx8sB3x4_#0Sn=ET;L)5W@Jm-3d;AEh1!GoI-xVnQpMK*3` zZUWahMxLpbChFT%Mi40}kG)~wnOny0)$ZfWxZZVy>WkY3&qhSMpC$L8uYbl#>T#8) zeLW7-S+v&*3w;cpNQ#oC2|Y|#TkuM18%sLH&ue*Lp`~^(ue-rQyCzhgtKUZ6m z(-y|?z7khES1WW_=x1%)Y6Sray|b=Ku|j8~xk;8wvqFa}k}Tn6vR<)j;PC~`3LO?2 zW!ZEq2m%T1z@{Ho=&;Zi{v>rP2w36x+X@|4_{9o>c#p4LZ7ccC@-J2ppwRoP6*?%i zaaCZB7qy6rt(3oU^+BXVB zX54TEt5iatY4{fQ>6hH+XjbNvGlB;ncBw=velkFw^K5)DBL3a#s9!x9EgNNd_&#uk}Z) zxg0jLLP6SGFjnOdY3XGmJ?KaGiw19?>yCyXJ|gyL-z4ga2a!=GAwJ@YzLx#Oy6SFB zwo#>m+9k6fjmLW(I%pk|PnjwZq>;;JVwslG9|}5?Tm|W!1uVg|1nIMRv0NuvF;!DRYi}Hw73oa%Bq22eQ=@%x;qA_HfI2w}MvQ z0C60o(;)AuOtc%!hz|s6+>|!gB*`M`5nA9IDZx5xB8ynf2rbZ!l;ACUwGoku)Z%;S zC~0%bLOuM?Yr3=}w7?~88a`wz;%IStjL-rNQ|>=ek=JbTbA%RnYIgAU4|O?uqwEMR z@VK<+O}-*)PM#xVoh~p6m~-+Rp@-9MxN(c`ml3i~`N6GA&i;Wd`q9TjcwJQKb%YlB zxV#9jwb;Lp&;oY9ymS$}mp?{m0WwD`0D z0004WQchCdTc?hMh(< z2J2P3X)1HDP$SjcCT7Ns&n2ca1j~cd z6oAUuiyWk3v?_P3a%F^{o}I0ts8A@oH2W?&y7UJ5dz+MYu706z5NLjPwpk@ch`=-- z2rDCefDUa3!WZaJJ`i47dPfL9q!k3&iC+-X-w5XaAQbqu3vEq~L3|_7NUhq152tTy zat^}3JM-B5a~(=iF};o;+P07{TT1XjY-rt6LJdQl_hQq#ebF zqhm-jaRI5Wc=iP`(2zImB16C9t^SY52rj>urh54qNdfV}`VXoJ70u>vKQ90P002ov JPDHLkV1glmdeX01ONaii(P$prCekcFoPr|NsAK^0gTN z0004WQchCOu2X<2a}5=M^EM?E`s{?6&M_M0&rI ziGdnSmjrCEJ%WKFpD@~%^uVO9zaLwm=;EjisK7@WM zwYA0tCC{S}oJ8U+4w2aYFfAu-=l8+mIGCqp&HpNN?Agug%p%!Ofq7 zvLUn|O-moPZ%zHb>0g`vqFbs>cYM89H@e*~!+&HZgjJQ{3l#;M^6TBw<9`ia=i5w7 aSr$J|t`I4056AET0000Fp^1Ox<%ii$BYF#rGnwzjtA<>hvEcA%i3|Ns9_3Y>%h z0004WQchCA-0pw98$JS+G>(SV05{p195bb?tqq6~LW8hS)D%)E2gqVA@KvY$(Wtky; z!^)}*uwO5!G312$mB152%|)S5c7x@+inDHDtg*C(GQ(F0$^GOoGDMm3-`^yEg0hR0 z`~fn=I(k7tNS?l{*bvgPPn_?P4-l3O-&JggV{p6%8zN|5A>`B~xwdSD6RRdeyh!f* zM4y&5RhrT}ZbQ6CEl8x)l!RhSmwe=pODBU)ESopHUo7$GTWa8+14Q2l zeOtERow@p(2unU%w$!^ZWAi03S~gdpsCy}70000lp|prBDvQ5F^!1Ox;zF)?FfW45-o|NsAOSCv8l z0004WQchCLmY+My_`=v&m8fO?A znVcd7@9faSBRI3{qm_Ic>wH-HL9BR(W;>jwClL8$td)uqbW9Gf3a&zfO?eJZ@JMiA zQY%g7%{JyK7I8pm{>T*+m~c_$F&v5sm6B842aBz6~ z^yz{H3xG1)wrxvJPBt_&j@4@`^*0^@mH&}laqA!m3KRg*X?`bvCs1b!x0I$K9OClouF)=_uKv7XqV`F2Aii)71pv}$A|NsATwUwR# z0004WQchC2(!o9a<%{ex9dS2b=i94$(aa&KpBQh z)FMm>6Og4||KEXN?n?=!@pD3o@5FLUQ?&f0g~CC{@4l&Drvazgz+`KLmfnZSM%R4I zt}*;TEDNqdAV#5i6B~hx)ro_Jb@$X-YaWZi7SxFaGPM+Sk;H2;PMVI5@@iv~#hxph z3-g`r$%QnXN6W}UYilD}ja#548Cyds3~H2zXgwp*sX=_Qd^M=~;?}S{zgGy`y4hmG z5Vf_NORz&ZzMCBab`Hcc)0g+7(phs%bajm4BO`y|=DUYT9Gka&d;xHo3P9r000gM0{{R3$9Qy@0000pP)t-s|Ns9$ zKtQ0NpkrfWc6N5n&CLJ+00aaC3=9kw78WBTBQY^CQBhHfii)wPC(ny48$BN9 z5#tw0HzEelgwDcIVUfMLt+>WR?Zin%t~2-z%QvtI>~gISR5FVv39v|lGX$Y+j~K4d zh`!Y)zlbt=umBWV{+mB2SF3z`I(_MgXtZdn#=m6fxKYR zp-R0|Co}X0;inB!P+JM<-RiNV@Md%vYezNjAO)PI(GqhW=ucr$^3Z#+m9e@N*EvKP zLCw|njIco?$zhvIEG~JCP$zMJuPYg2GNoZdq*q_xP~XZmJC`^bI;4abXD)uQ`iT`# z`U8L`(nx diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char61.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char61.png deleted file mode 100644 index 852522152290c2f4d51df54f050e42186c0665a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 399 zcmV;A0dW3_P) zpr95O77PpwF)=X&1Oxy803#zKc6N5<<>k%I%|JjvQBhH2V`GYning}4|NsBOF0VZm)<_?j$e4v8Q+B!S`(1oIIo zQ*=K1LFpV1T47K3GC@FGEcc=<*f2ydyGN~VCv=am5bTCoA*!z}5HT9PK3=ipPNcfsy&|h t7Np@RL#$Pzysqo~1iE}EqNxyD{Q&O03PqSdqf1a@|I0001EV`I(D&7h#5|Ns97ipJys z0004WQchCnWf}Ih!Sc2}f;7h=f>sEmuYQc5utM^4Aw1hD5l%?(HCB_g*s*{UVrQR!RLt88(pOxHrzePmnsEPJRRkA%}syAeuYQdx)dw7d$)! zfJDnQE~R##sraT`waGo!wyJr0SH79~2nsU$LIS*7d~DS$4rI4DwytgAy%wc(uiK0* z5U6Q(N}Q z?V6()`3H_qV`XB_P4cdZcbma}`LUo=Ue=FH9J{&WRyXEOfn-yd8&~|o8)u|TH!p0xdw4{PqJ7Bh=3~$9ynuy`bPSi zxau3dG5s{Y!9p8z?XdCb z1W^wDD{ck6+}VPT1pdLxwCP9qZv)Fc1kgNp(z`~aOb$dTqX+_xvxM_C56?w(#Yv$5 ziEusOr1xZOo*3a_R3j{QDqL3wLRw_gjx!xK;h7Dt?$jbdPXQ%-%A3I*cP}q_nEfeL z+_;>0Rcda$?uIfl`He6A^>w)?4ujqg-2cYQociuxaW$2E_~mKZTc2E}J^gX3DS!Fv z=jpWp*ZGwFf$*<@xXM|5>f!hUD{xRwa6LDCvU)GbXFigLlMr2C-v<_|zVA~N?443k oJdYd8+Lgsx_bHw{tj&jzKhmWXmkJNDQ2+n{07*qoM6N<$f-=nA!vFvP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char68.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char68.png deleted file mode 100644 index 01941e3e017f9d4d9926460e6ffedce04f448d82..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 325 zcmV-L0lNN)P)}Wv%r5J{#*ukc(9d*DM<@9UUQbC z7DPv9fmAhTHXvPw>D*9gHPvAd>NgKC4IvN>+)ME7%$T%Zv_CDZ=c_?G^K;3uA2t_h zIp-nn(sjd_CXcNP8ew9&i}IjwmWm|*mbmJ^Q(em&nsKZ6LR|m<|1Tycwr$%s78aJW zva-OyKnDkhr%#`rJ$rV+f(6RT$~-(ghK7b+U0pyO$;rt;^$Oa>$AKKik|4ie28U-i z(tw;QPZ!6KiaBqudh<0X@VH()6+dCq|GQF2EKU=yxuoCu=-E73{lID=w`Dd4220() z?3Pa7J$rM{(^KCvtMmdzB{^Td4s`NLkk8#0H$%5)^4vL3n8KT)icYFd|KoG3ed>AD zBUazLB93l4eWm7^iTJPj1rMD1_S74N3G6&QSISm?^?T=4Pl2vr@O1TaS?83{1OSQq BX5|0? diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char6A.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char6A.png deleted file mode 100644 index fb05ca5d3d29a9086528a7e042351c98b297e709..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 326 zcmeAS@N?(olHy`uVBq!ia0vp^l0a<8!3-oNPJ9AM7zg--xc>kDf7`Zg4h{}tVq#@w zWr2Z#EG#TfpFTZ%_UwWM3zU_Wd3bmX4Gp`xx_~;8laqn!+m4=l1LQE41o;IsI6S+N z2IL&{ba4!+m^1hCZLwwr9+yBpEkV2T|>gUSazn>Q`7 zpEOHXH2R?Sw+s4Nj2nt)ItsEZFA-?}l(+AGK)jUAQL&HJ+$Xme--}4O-zTj7mvL#I W$h#xeZ$1M(!{F)a=d#Wzp$PzpxQ1K+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char6B.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char6B.png deleted file mode 100644 index e601263e85fbbd177839e14258a377c455a4806f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 312 zcmeAS@N?(olHy`uVBq!ia0vp^sz7YW!3-p`*eC1(QpN#3A+G=b|1T>mV_{)&aBv6= z4BWPDo0yo`)2C0*o;|x@!2)GvWgZ?LLqo%^t}dXCLrAmADpz{ooH=l}hpJ%+JcYRfM!*=)!7-E-I*6V4u_tI$$V%guz*A?fz&wiynb-}5#2YUazzC6so zRcY!3Cf!@1E~h5Wns{sCDvw6S*I7FVdQ I&MBb@0BI|FiU0rr diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char6C.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char6C.png deleted file mode 100644 index e27129e3a6c6e279aa0a361321517afa860d0be3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 351 zcmV-l0igbgP)J0LOWDr0 znbKP|aaSSA2CilzIupX;F)(TYaeimc!Tr1w&Lb{0=JtrVa1JaVkn6%>g{+Ut1v$}I zI>O>1nxVcZ`r2Rmdi`!c^*y*GS9zKW!oBq|I8M2LYD;~AH20VA`s=w*@_tg%n!FD8 z3YOJ_UKbS^^eKW$dOp6Ebrr0A%bBxaV&{Cp!b`O2U^7X&u|YY(*!03S+aPh0TXoGk xDtLzj&r!kFVr0{gNg~B?nB$CM6ijJS`~f{B3SFraPICYN002ovPDHLkV1lz(lEwf4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char6D.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char6D.png deleted file mode 100644 index bd543e4485a5748f13d594a56f62a32738f457fb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 335 zcmV-V0kHmwP)lp|pr9ioBS1hv|Ns9P3}y5H z0004WQchCmkX|8VdXg8%>k0d!JM zQvg8b*k%9#0MJQ9K~#90UD7=Y!Y~xT@rRT`2f@)Jcm$8&kild02#y{6cnt~#mp68E z5AH++tdbZVza_({-AS$1MXw1 zN;|R>j4h8aG1q{hFy9yo^DRKdLd)@~S!fRa6yuiTLosepqGGY_@I7x?hnIfV4Bp+Z zCoSu0*xG*5j61i5g06W6uo38*3CF7-Rm?P`%EVg`NXN(&q-$gf5{?Yg9w{*o+c2+% hxfS^x6f4z=<_}ITUiP)SrQrYo002ovPDHLkV1kQ}i?aX# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char6F.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char6F.png deleted file mode 100644 index 9b287c65beeda7bc9b7f1f464443e19da7bdf0dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 331 zcmV-R0kr;!P) zprB)8V~UE31Ox;?KtOhOc2QAL&CSgK006eOwiXr^BO@aW3=HMv<^TWx_?7fZ00001 zbW%=J06^y0W&i*H$w@>(RCt_S(V-5)Kn#H4hKWth?-6iwJi`ng$7{^bph=cB3j{mI z3qW`T>nm}e@%keHOYy^MIqL$;0S=3;MJ*4e`+q4x8p5968aD%V7 z70nS^hC%DFh806?%mCH|wJ`&MzF8*FH_HUN<`~0jh#A9XNEkiO@^2r{7}{1Tql;%* d*(GRM{Rbl(W3KF^l;HpX002ovPDHLkV1oaVjCTM4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char70.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char70.png deleted file mode 100644 index 88c3978f9878e5cddd2706ca368c3fefc954ecf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^96&6?!VDzWr9CzUQi=gSA+G=b|KGN4TXJ%;gM)*z zva+F}Ay6hTFtDtw?CH~|Kv~78V?YrG#*!evUC>k`1^HU9b%8>RB|(0{3=Yq3qyafPo-U3d6?2jk9?Uw* zz!W1aAz^XqfKQmh(IBogqwt;rH4_huu7(zd87CDO82lxq41VlrbO!2U@O1TaS?83{ F1OTaNG2s9J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char72.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char72.png deleted file mode 100644 index 3f4f17a2dfbf717526f0668c9c8f135c90bd5543..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^nm{bW!3-o%bEe$_QpN#3A+G=b|95b3ID7W2n3&jt z1q%!f4V9IZd3bn|lasr;y0&fG#=^n^R2vu=`1I-1va&LudWq8;9sq?HOM?7@862M7 zNCR>*JY5_^D&`!$;w^MQK*Z%@d&h!}|L-bk?~q*aWe5B6SG8yE_2lXJZrzYJ?aPKN z&r7_lfvdz<_o-&Y2-J!G(ESiIVdnu^!52LWj*X9-YWxg#C^$JrFjXYQv*sM!-XQl= h>_UCO%ROtvXFIa8IxfuWvjy78;OXk;vd$@?2>?F6S^NM1 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char73.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char73.png deleted file mode 100644 index 6705c7ff0c4658173e1004cb6fa9d47565954184..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 306 zcmeAS@N?(olHy`uVBq!ia0vp^+Ca?D!3-q5_8q$fq>KZ6LR|m<|G!|t0u~k)F)=Y^ zW#zK6va@H;0wsBPc%D9e+SSz+7#L`1Xz1YJker;nZQC}WdU@NKPCylmB|(0{3=Yq3 zqyaf=JzX3_D&~|-v%0;*25VTV#z7AFfC>yZpl?OQ9qQd%c5cEKK%XOEtcA!wov*zTi81$+ow6D| z+RDdwd#cp3%vDPo{U;kb+kq#Ns@6@gMSChS>J-o^fQ+Tlan#&bzqy&cdb>HJ0ghVc z_TbPd$z}5wXtDs7J{L{iqcURZ@T}4_Gmx7>tHnYbduH)~f3X3npQ#W4Ymz%4W)46KsKb#KS3?g9{M-Wa`TNspQ^`$)F*T2|(}O tEOQw@%WIfxx!#i|j#^dc+^r0~)el>L4uM5l^f3Sc002ovPDHLkV1ob2ufzZV diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char75.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char75.png deleted file mode 100644 index a3efaa9eeef1160a7d89af9a391f49c1a328be31..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 436 zcmV;l0ZaagP)j>V5?GeKjJHiOE#{-w3J{fG#u%ZSu_Vb1oD zzFIWYtvNe6E)9f*UZ+xF795kMdfhxRIa6aIifpvgg}kK_>XZTLQZS@}smkUvNx86F z^deHX+6e%YJSw|juklTvwo}gP+Sql@d|%kTX%}wEjXI^GXu5m)W&H5(VDSnmJopa! eeL@79%4g|NsAR3G|i# z0004WQchCJ^pb9RpOTb0Aoy4d$_l}2CTS1Q(6;~wPy{tOz5(sTJoP?25ZWw z1Vg5h(TT=Yu77BD1C2uRC^_3P^F|2G;$$h+QQTIQn^-|nUhVNk319h{lH1uo2)sTC zXL?vXtC4VeGPT?7&Pm<0P5Zl2;)@rUjXM3HL2CL90d-UTxnM1~8nS}nmk`0#)Ncg2 z25W)MOy5v*+xgQ4owa`1Sia8W_KK|BzI)teYqq&qx)8mC+dAxSUwQK~n$c|H6Ckt}v-J#}KjI^9=75evd`3O6<8+G5~Sx?H@>{7rZUvSMC4+002ovPDHLk FV1gmL4#xlh diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char77.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char77.png deleted file mode 100644 index b95d4373bbfcd15682d41dc23313d70c1b3e1c88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 569 zcmV-90>=G`P)EQpxd+<>0V&FHvPi)guAkA_Rth>A&-$gZp;i^QWwj3E(e5bqLO{kE) z5!_)Uhs>*JsBG?#ZL$;_xn%G!Q~~CNiY31rRr2^IFyjh$7z}J~;){M$FFFBN(Zhdkt=(rrwvJB$0LX%{bCt)om`V8O4gV z@YHF?XUpBw_R^v;edL)X5OcLXgH&|t**~YtQKRnkaOmNzGSkD=SgL$?^KYdq16y;07kB$EaVyqT7dmpyD00000NkvXX Hu0mjf`B4gI diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char78.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char78.png deleted file mode 100644 index 6614acb6bf31739e6961cc43ff4b1bafc5a88ada..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 419 zcmV;U0bKrxP)zJ zMB|*NQ4AidIeV<*jK(r5PNgm{;IF3WAb8y@a+Qus~xsK!|z-1aOFt=AGx0fphhik1oXY@7L-jLQnx~x`&&tmOUH6q)eeoB)0roVI@>8CC^*%5NMpLrJTGEAi&Yh` zyR!XRtQ2J#0~dA!?9fjKb3F@Kp(Z#)1>{l9_gAKOty@ITvX%nutMbp(Z3t0*DfD_S zp)b+TvGto;0%pnFyz=*~0rNz;@n(B+&%LLH*L8mwwMfzn^Z2p^_yFF13du#^N+bXP N002ovPDHLkV1m5?v6=t? diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char79.png deleted file mode 100644 index dfeaa6fbd49b6d6a5042ab5d4d11fbf7f6c04716..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 413 zcmV;O0b>4%P)k5Q5F^!ii(PMc6MW9Vlp|prE$4w$07W|Ns9laGuHl z0004WQchCKvc99G(Z*n0ogz1XU zTtE@`TriJ82qmR6W**b1o#>h=vvL(5$pCi76oT4>_t}G6v>j57xbqVr&6z@IHsv@r zw}S-Fif&9v=42P{-mve#)g$w6q!w1)J#5~{Rbi-d*w(8rkQ%70aoOFf$x?h4H1Op1!VBVn(00000NkvXX Hu0mjf7yz*C diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char7A.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char7A.png deleted file mode 100644 index 7429a869d8cd66f278cce8fb4af8c0990257be84..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^+CZ$y!3-p4dn^0|QpN#3A+G=b|L5W1*|u$)n3z~u zS=oXG3!XlGnw*@>!omVna`x=mz`#IdWo1J{Lk9pX3~3$kJfDuV`_5MM3I^ zniikMa&O!wJh*Y!bzR!^zN6OROQzjXC<@oxTx9%tr|FCP#oN2y&B)$;#%0~lV!Zwzjs4ii#s6BQY^CV`F1>c6OkkpylP||NsA2%(kZh z0004WQchCV@6myoh^075wOC{t#>VJI^MKav=S*=M{1>H!f~J%Nb%-1-L^vbL#mWE zO}oQqAwA{=`llDZ9G%ph^Rff*?%PR?PszPq=$OYZCf2`c71ENt*To(uAe?OgDFyb32UUnaKTS23OUtb z%wt-_oR*iDF5u5c41acI*h1oy#PF-L2TjwY-2!Rjt-k=4-$LL8d-6B~b3Mg<_6dF= WZ3>ddEbs&X0000gUPQ6nQGF)=Zqpr8Z<1ONa478Vw^wzhV5cFoPr|Ns9;L2S1G z0004WQchCL?164ChMc#@ zPy_v?jc)&(ij6jN4S4>V(!tk&#JcKWd?k z)fQ6pLK{Gbuh4e74^FAdQO{M&dr+*kHZB!j@!zY zFsB&eu`v&~rJct?Cpz{xw;pVD&4R1t>{*b#ANKTOEEC^Lt&$7DDSD78i%KJwe-~< z4TGv!#xi-7i5i9jYDd&ijDab1H9w%{cCAl%^kn%o29)Kzmbr#PYs9+LBx0DuDU6xS zFu1~)1wh%08VaxdvMBRVI>rj>#BRt4jgeMy8pfQIUvXGckmyaGwHi?tkr+=W7NCL8AV)_G0kjGX?ueb!{5F7(DzUdg?p*N<@s}FDKW?7 k1a7c-MEQCw=Kh=c0r$NOQEq6cY5)KL07*qoM6N<$g1Be9y#N3J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/430/char7E.png b/sagenb/data/jsmath/fonts/msbm10/plain/430/char7E.png deleted file mode 100644 index ab3956668c21f357b2edfbd1fc4f6498ba5244fa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 408 zcmV;J0cZY+P)_LwnY+?5>QxDGJXAWhGaiGjF0Czij!DgYaXaIoN0XoZf z81X9xOg-#>)c76aK2^o=IdZx9dcw#KX)`A6`pZNg4C|^)q@j+XL@f2W?$1qQI9&Up zNn^M&yvH((;qn+U?n)Lh%wZKqPqwLTl0zZciy8{A{n~$!yRj-zxf^<$Bt{&?(U-zk zj6(`}Df)7x8bKD37_F01Tb63jH6w8Mz2TKIq=wO{(NdQ4v%uJ{A~wjFkC`*2IUAH1 zzV_pEF5`IVMGCFE&pkug6e=D(V~0vgsy>^eIsNsgv6Sfuf8hL4Lsu4$p3+ z0Xfq=T^vIy=G0D#7HU=CaSnVklj-;Uw@b@qTr*C-SM+U=`W$M!DNB)I=atqaJu{lt zuY26-Hs!TkHskliqy5j-EKYpCVfw{1t#__;^4l|7Iwftsk{bSBzQ-C_o1M`$zP;F@ z^r3Zc7xU_Gg7u>3eCGtIzCJ&xBsw{IQtsc|fnSu0B=oyu>^F2Cl5ujm!&uUBcS5ez cwzGd2KJ~M2{W;Nx9q2*^Pgg&ebxsLQ0J@QJ&Hw-a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char.data b/sagenb/data/jsmath/fonts/msbm10/plain/50/char.data deleted file mode 100644 index 1028f6b0b..000000000 --- a/sagenb/data/jsmath/fonts/msbm10/plain/50/char.data +++ /dev/null @@ -1,130 +0,0 @@ - msbm10: [ - [5,8,2], - [5,8,2], - [5,9,3], - [5,9,3], - [5,7,2], - [5,7,2], - [5,7,2], - [5,7,2], - [5,8,2], - [5,8,2], - [5,9,3], - [5,9,3], - [5,7,2], - [5,7,2], - [5,9,3], - [5,9,3], - [6,9,3], - [6,9,3], - [6,9,3], - [6,9,3], - [5,10,3], - [5,10,3], - [5,8,2], - [5,8,2], - [6,9,3], - [6,9,3], - [6,9,3], - [6,9,3], - [6,4,0], - [6,7,2], - [7,7,2], - [7,7,2], - [5,7,2], - [5,7,2], - [5,9,3], - [5,9,3], - [5,9,3], - [5,9,3], - [5,9,3], - [5,9,3], - [5,7,2], - [5,7,2], - [5,9,3], - [5,9,3], - [5,8,2], - [4,8,2], - [3,5,1], - [4,5,1], - [5,5,0], - [6,5,0], - [5,5,0], - [6,5,0], - [5,9,3], - [5,9,3], - [5,7,2], - [5,7,2], - [7,4,0], - [7,4,0], - [7,5,1], - [7,5,1], - [7,5,1], - [7,4,0], - [6,5,1], - [6,6,1], - [4,9,2], - [5,5,0], - [5,5,0], - [5,6,1], - [5,5,0], - [5,5,0], - [5,5,0], - [6,6,1], - [6,5,0], - [3,5,0], - [4,6,1], - [6,5,0], - [5,5,0], - [7,5,0], - [5,6,1], - [6,6,1], - [5,5,0], - [6,7,2], - [5,5,0], - [4,6,1], - [5,5,0], - [5,6,1], - [6,6,1], - [7,6,1], - [5,5,0], - [5,5,0], - [5,5,0], - [15,2,-4], - [18,2,-4], - [14,2,-4], - [17,3,-4], - [1,1,-1], - [4,5,0], - [5,6,1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [5,6,1], - [4,7,1], - [6,4,0], - [6,7,1], - [4,7,1], - [5,7,1], - [5,5,1], - [5,5,1], - [5,4,0], - [5,4,0], - [1,5,1], - [3,5,1], - [5,5,1], - [6,3,0], - [6,4,0], - [6,6,1], - [6,9,3], - [6,9,3], - [7,4,0], - [7,4,0], - [6,6,1], - [5,5,1], - [4,5,0], - [4,6,1], - [4,6,1], - [4,4,0] - ] diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char00.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char00.png deleted file mode 100644 index 2744cd49442444f46e9e32bfaef03c8dd4920a3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1c!VDx2-`C&(QqloFA+G=b|4&X%Ua(+6Sy|cH zvuC@yy0&fG_Vnpfpm>Yi(nO###*!evU7Y*|^^wr$&z zlasr;x)v;0@bu|Zpg2==R}WAbV@Z%-FoVOh8)-m}il>WXNX49FjRYX@W)NiL;mKs> nNp)y6GG}J{R>0Pll*-89VZw5ATA}F|pn3*RS3j3^P6#OfqED`UHx3vIVCg!05u0MssI20 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char03.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char03.png deleted file mode 100644 index b66270611aef95d3a3a9adba91471ea6ed290422..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQgQ)4A+G=b|4&X%Ua(+6U|?Wb zSy@+C*S2ljo<4ng_Uu`p)cvT6OrT1}k|4ie28U-i(tsQdPZ!6KiaE&%2^k4160{Q% uxD$cQ!h{6#qy&wiganNcuY`mo24;qsG#1}Z9Xkb}9tKZWKbLh*2~7aobTY&M diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char04.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char04.png deleted file mode 100644 index 388c764e50d8a3a36be5d07577c5b96639641ab4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQqloFA+G=b|L^MRI(znPSy|bF z1q+gslecZ#_Vnpfp!l~-w|@YYF_r}R1v5B2yO9RusCc?KhE&W+PDt=iNJuD6NH9)J o2rvUO%>xq>QZy10k`fpg7Y*|@Za&mH4 zSJ#3C3$|_B_Vnpfpm=tp_!OWr#*!evUFYf>V diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char06.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char06.png deleted file mode 100644 index 737604b1ce9b6b39d84997c8ab440122360709c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQW60^A+G=b|37>7tf8S{a&mH4 zSJ$>}+nzps3KX2SeA6VL8pe_!zhDN3XE)M-97RtT$B>FS$q5PE2?+^|kDf5JiHNc( jTyJb_RcvgW*vQDBtQ1L`CP%(q2tDnm{r-UW|5%Mn9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char07.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char07.png deleted file mode 100644 index 48b01c22d2ba6a9006b4eb38202b235a77403ec8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQqloFA+G=b|37>7?1BXg%F4Ln`L59yAnWP~c(NV6cVb p@CkWlzE|^GWHn!1RL_&pvD3TFEU9K~@&Txv!PC{xWt~$(698WFF=GG# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char08.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char08.png deleted file mode 100644 index 7536778c3c5d660602885fea5c1d20e6d698e1d5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1c!VDx2-`C&(QgQ)4A+G=b|4&X%4h#%juwX%1 zS=rgMXS=$(wr$(?^yyQe)XSLL&wwf!OM?7@862M7NCR?IJzX3_D&{07BxEEcXmBTR uFb2I5<8e6Du<+)IhQ`CqjSDy0Ffe%OvhpQ=u@nSqVDNPHb6Mw<&;$UHt~Brf diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char09.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char09.png deleted file mode 100644 index e6a24817c40a38e722eaaaa2d48a3f8d75a1b308..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1c!VDx2-`C&(QgQ)4A+G=b|37>7?6z&&l9Q9m z%E|%*1G~Dq7A#os^yyQe)Xwq^YCx5YB|(0{3=Yq3qyaf9o-U3d6?2j^5`aLTL6DP& r=P57GTZgpjOh)E*c4p_zlNcEMg;@QTCiaK`)iZdy`njxgN@xNAw$3m6 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char0A.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char0A.png deleted file mode 100644 index 39a58d08e6c59e938994bb1a6c584d5d372f6df7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQqloFA+G=b|L^MR+O}<5U|`_W zr%#iUlNT&laQ5t3pm^y^c}1Wy#*!evUofB)78&qol`;+0O*V|EdT%j diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char0B.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char0B.png deleted file mode 100644 index 9e1c7b5cbef3581f21ee311ae28c66d20528d61b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQgQ)4A+G=b|4&X%Ua(+6U|?Wb zSy@+C*S2ljo<4ng_Uu`p)cvT6OrT1}k|4ie28U-i(tsQdPZ!6KiaE&%2^k4160{Q% vxD$cQ!h{5Ktpp9B+ysrBgoK1724;pV4pxJct_xj(dKf%i{an^LB{Ts5*H$w8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char0C.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char0C.png deleted file mode 100644 index 6faa51a3f32c784a9bbac9dd0536c4735029a18c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQW60^A+G=b|L^MRdiwNfa&q$7 zvu779Sg>u|HlW}F`|p2%Y8Xp`{DK)Ap4~_Ta^yW-978JRBqtf1v$e<+0wAw8`+a9Qt!PC{xWt~$(695E7Er9?4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char0D.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char0D.png deleted file mode 100644 index 0107234eb1000681e214d5ec392c4f74ffafcd3c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQqloFA+G=b|4&X%Ua(+6Sy|cH zvuC@yy0&fG_Vnpfpm>Yi(nO###*!evUtg lcz9AB(gG8hn4OuJ8Pu7WwL%R)iviU#c)I$ztaD0e0suO-E9U?J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char0E.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char0E.png deleted file mode 100644 index c9486a6d914be69750632dcdf297591a5c411326..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQqloFA+G=b|6j0RL2`1kgM-7< zr%$`Oy0&fGcJ}O9pt$Om$!b7lj3q&S!3+-1ZlnP@8lEnWAr*6y6B0BM5)!Ygr+Ar*6y6B0ClkUK#mIWZx@ r+$(`YkfF=Mz<_0^iUC8b0|P_UQkIB4qD_;4S{OWC{an^LB{Ts5kYg{H diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char10.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char10.png deleted file mode 100644 index 5051e25c74c972bc59220d34e91e1eaa1c68a164..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q@)9ULR|m<{~s6_SXNec_Uzeh z+qNxOu;A&_r(IoLKyl3}n>B&T7)yfuf*Bm1-ADs+)ID7sLn`JZConWKwO#qd!e&;^ ttYF>H*f_QEpy!!J#f2ITjlGSG44%JP>^a-@qJUZ$JYD@<);T3K0RT|pGqV5y diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char11.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char11.png deleted file mode 100644 index 4fcb042ca6317413151f72d1050af683d8c5187e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q$C1-LR|m<{~s6_SXNfHZQHi4 zuCAv~pDtLi04O+1YWZoP8pe_!zhDN3XE)M-992&j$B>FS$q5WiAqr{5#t8|GMnVou mIXpaWi`aM={Wy8n@bEAg&tsNP*;NX%j=|H_&t;ucLK6U8-7Db$ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char12.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char12.png deleted file mode 100644 index 33b4ae29596ed00f447bf87b6a6d047af3f3099f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q$C1-LR|m<{~s6_SXNfn)z!6a z+qMM@7Ce3W6exJk_|{sW8pe_!zhDN3XE)M-95qiD$B>FS$q5XNA?$4_>}+h;7!+oU n9!W?j5GqdaFyKl^0Ln2~?_*>>{Kyi77Xmg-4#*!evU;M1%larIn%E|%*1GjD4 zwqU`6vuDpfefktA?(TKl52%c>B*-tA!Qt7BG$6;o)5S5QVoq{Gf<{6@0(U|}fnS1$ zR%${*U}8c72WNtYXlX)%XL^E0iDyDWY61g8rZQ{H_q#uD1NAa^y85}Sb4q9e0247Z AG5`Po diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char15.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char15.png deleted file mode 100644 index 534a79febea7a3675cad0203034da6981850833c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1g!VDz)#5+NhbbwEY>;M1%w{6>2R#ujroZQvb zwP3-5vuDpfefktAZs21g3RK2e666=m;PC858jz#w>EaktF()}8K?4ZA6B2k66A}{2 v5)uNm5;RzYmM&xB>3PY+bF|69l8uca+lJNjw3=NsP$Pq7Y*|@ZU|`_3 zZQB+sSdg5Y+|||f^yyQe6f0Bpf1pank|4ie28U-i(tsRQPZ!6KiaE&%2^k3q2^t9* t{_H_(_#6&3E;O}hXmoCFTzJ-%fx)$gWtz&ys#u@~22WQ%mvv4FO#mzYGj9L@ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char17.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char17.png deleted file mode 100644 index 1974aeba6714b0778215c442ba7edecd80722129..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1c!VDx2-`C&(QgQ)4A+G=b{|^idT(Dq4S65eA zSy^&&^4YUzw{6?@^yyQel)wqjW}r&Ok|4ie28U-i(tsRQPZ!6KiaE&{2?+@r%t_xS tFtI&jVQXVj*zFnE*m$_Pap6`QMh5pxRu+b~&`UrK44$rjF6*2UngIOrGIsy~ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char18.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char18.png deleted file mode 100644 index ecaab8c0153534571ddfbcc89810e126f97ee467..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q~rp8LR|m<|9|%E*|M^-ZQHg5 z1_mZ4CofpApsTCv>C>k`slUoq4M3HQB|(0{3=Yq3qyae^o-U3d6?2jk5;77J5;PJr wxDy#J^T_b>xV_@!$xUVB>Gb2`k>TNCNK|JnmR$cK1E`0=)78&qol`;+0MsrqwEzGB diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char19.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char19.png deleted file mode 100644 index bf52aa3908e5cb73c9e6222eb48067bcd162b3f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q@)9ULR|m<|6f*C*45P&7#O%< z!Gdkuww*nD_UY57K=H}5EBb-T7)yfuf*Bm1-ADs+)I41rLn`JZYa}Ejc(5jkEoLx? sJ#g-TfX0&p0gHqVJV?_x!0?2LA)tjN@X&+KpFkZ9p00i_>zopr0AhAF3;+NC diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char1A.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char1A.png deleted file mode 100644 index 62a137cd7b77d4b1d0f0400b46dbfd576db26ef7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q@)9ULR|m<|KHWsRaREEZQHiM zz`&$&;AH#CQl9j3q&S!3+-1ZlnP@nw~C>Ar*6yHPRCj61W+K*0Axc vaoE+++NgL_qha9{lSaju8x4(n8yFdUtXQrHX2&Q3H8FU)`njxgN@xNAxCS(a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char1C.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char1C.png deleted file mode 100644 index 134f19825a12dd27131c9655e7a08665d1611a5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJy!VDziwSo(Plyrbki0l9V|C5uG9UL4MELhOh z)wONgw!px^r%#^(#TB2~MFN#EmIV0)GdMiEkp|>Qc)B=-RLn_ENJvl6;MPnq2oO$4 cNKIg1;P+=-TYgdFJx~pUr>mdKI;Vst01Nafg8%>k diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char1D.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char1D.png deleted file mode 100644 index 37cf9daabc9cd4fc0a2d24e4ebbeac365e8bf439..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ;!VDyD?o+%6q@)9ULR|m<{~s6_`1I-1nhN*W#LMj6@gA*_F&**}wB|xzopr06<19dH?_b diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char1E.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char1E.png deleted file mode 100644 index 9214d83dc3218c8ad4a43cd02c5c42be22daba21..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^>>$j-3?$8JydD54{s5m4*Z=?jpFMl_>C>kR7Ayd= zx2>$j-3?$8JydD54p#Yx{*Z=?jpFMka!GZ-(pFZvC z>H>1@UvP8*Wf@C?{DK)Ap4~_Ta-=<7978JRBo`zwFbNABgqas z_UyK8+ZHTX@bu|Zpt#}RoQFVVj3q&S!3+-1ZlnP@ik>cxAr*6y6a2XoG?Eh%JQ$M1 m#n{-wlojH28XBiIGBOx@GrO=C|6m6yX7F_Nb6Mw<&;$UMgqas z_UyK8+ZHTX@bu|Zpt#^ZlSM#fj3q&S!3+-1ZlnP@ik>cxAr*6yHM~<35)%9wgdE-^ n90*u*>_ET_u>%jz9bjOve9j^z_ie5eP%(q2tDnm{r-UW|5r8uB diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char22.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char22.png deleted file mode 100644 index 424727fd8bf99e19cb45bf13fc15babc6b360f56..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQgQ)4A+G=b|4&X%E-Nbw3=BMb z_UzNAPrJIh7A#n>ZQC}Wl+o!M0zj3FB|(0{3=Yq3qyafvo-U3d6?2jkGW-)b9v38N yB%~)~^d=-EnCB-X1ac-M6mcdL=;S9bFfkO|X1&Mtx-?&t;ucLK6UK@-<%o diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char23.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char23.png deleted file mode 100644 index 597c4fc09d82650685e39ecdbf7176860f1b264f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQgQ)4A+G=b|4&X%E-NcLd-iN# zU|?5Q*S2lj7A#os^yyQeRL#fPQ-CTNOM?7@862M7NCR>-JzX3_D&{0-toKMrNZ@67 y#KhLNjiIgVI~!ZtQ#LlW$82neix$W*GczYG5&o)nJ2>0RuzCE|z&`g=+Qzbuf6k`njxgN@xNA@8L1+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char25.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char25.png deleted file mode 100644 index b985c8971651382527edc380acb6a8365ef6efb6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQW60^A+G=b|1T>mOHNMSwryKi zSJ#3C3!XlG3KTr{V!|Jw8pe_!zhDN3XE)M-93@W|$B>FS$sW9^3{30_d<>Tp?24J3 kS1n?6?pnpjY|PBe;QfU~D%Irm7NBYdPgg&ebxsLQ04i=RssI20 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char26.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char26.png deleted file mode 100644 index 8b927a62bf6e1c5242f098a429157d6a9574721d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQqloFA+G=b|4&X%K700TSy@?E zSJ%_0PZum$ux;Bmp!n%xu3JE5j3q&S!3+-1ZlnP@TAnVBAr*6y6Ew6FI1&>QJQyAY wwK1@56JcgkJIcVOwwR$UVKWn37#kZy+;f)q(-JY5_^D&{0-tWN*}Zw4V& v9v)ssp11FKd2$Z&^7tI%@Ks^keu6{1-oD!M<_OmpU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char28.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char28.png deleted file mode 100644 index b754b26c6d7ccc09168b9075d3d7b93ac880f786..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQW60^A+G=b|4&X%?&|6~d-m+M zZQB+sSn%}eQ=p)lU%diQ4P!}=UoeBivm0qZj-029V@SoE{+15H5-)-paRB{AirP+hi5m^fE*1^7srr_ImrnL90>`AMhOLJX$b}#sRgTe~DWM4fmBTJB diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char2B.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char2B.png deleted file mode 100644 index 93cf42afddc8d758abad180685dd73ae02022579..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQqloFA+G=b|KGN4TXJ%8S65eA zS=oXG3!XlGdiLyDp!oap6O2G*j3q&S!3+-1ZlnP@>Ygr+Ar*6y6B0BMJa|155)$}; rO!h|%%xxi|Y;8*d7}>(u3>X*^vstS4rZjj1wJ>7Y*|@ZU|`^a z1q-%q+xGP7Q=s6Jg$W)&HH;-ee!&b5&u*jvISQUGjv*Cuk`oeuh@0^t1KYL)h1^32 h4u~)bCJUr8FsPR>C6}w*6$7ee@O1TaS?83{1OV1;Eo1-y diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char2D.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char2D.png deleted file mode 100644 index 4fec8bae9230a4db11fc36864cc5b17bff3cc0cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^EI`b`!VDyJWSz}`lth3}i0l9V{}(J+ux;D6va+(S zuCAv~pPoH?7AUB@c3v`24P!}=UoeBivm0qZj+Cd1V@SoEYi diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char30.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char30.png deleted file mode 100644 index da0af1cb3d1b526e9e750f1a9045e7730cbbea44..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$oi2$Dv*Z=?jpFMjvIXStktgNf6 zYr%pA+qP{33NClL-Uw8~SQ6wH%;50sMjDVKxhQqloFA+G=b{|^idEGsKZPEJ01 z_UwWM3!XlGx^3Gwp!kQ*8YQ4I#*!evUmdKI;Vst08;}g6951J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char33.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char33.png deleted file mode 100644 index 4f4b4e23aee90733746806ab14760ccaa520e4c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ)!VDy*lr>xhQgQ)4A+G=b|4&X%E-NeR>gqas z_H1Ba;DQAUo<4oLZQC}WR6*SV6`)GSk|4ie28U-i(tsQpPZ!6KiaE&-GFBuccylKv kc&8;KaCs*dFVdQ&MBb@0G;+Qb^rhX diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char34.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char34.png deleted file mode 100644 index accb8fe8cf9af81d35156996162eb11ba3fa2c55..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQqloFA+G=b{|^idEGsMP>gw9I zZQFtc3(lTB`}FBkp!gl3U7`U1l7{a1hG#uu12?F&nc)I$ztaD0e0s!l2FXI3J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char35.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char35.png deleted file mode 100644 index e7da61cd09dce6c744592609e6ead0b460e5a483..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQgQ)4A+G=b|1T>m+qP|6U|`_c zvuBf&lNT&l(ACxT^yyQe6!V&e;y{&*B|(0{3=Yq3qyahVo-U3d6?2jk9%LjWB={#J wc<3e+lzJvSFksqb%q1apT14W8!~q6|^b4%E;yhk2fLa(lUHx3vIVCg!0I4@KZU6uP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char36.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char36.png deleted file mode 100644 index cd61d0b30ff4a9317b737d4ab4eac7ccb5d7987e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQW60^A+G=b|37>7?1BXg%F4=; zlarr5eY$PiHlU#R!6`F=Y8Xp`{DK)Ap4~_Ta#TEB978JRBqtgrms zV8PR;Pq%H`1{6GgQK=cIhOs2bFPOpM*^M+HN5#{{F{ENnazX-kLP26;LV*Dn5E~{G kh$SR&q$MOIq$V&hXy-C*;8*Xp1*&K8boFyt=akR{0B_PQ*8l(j diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char38.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char38.png deleted file mode 100644 index bf4dbacfd8a515715538b9e5a45b1f8bef9cd3aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)I!VDxgys+>CQW60^A+G=b|9|@QX<%UBf&~l8 z%F523J-cn&HlU#L>y!^bHH;-ee!&b5&u*lFG_E)I!VDxgys+>CQW60^A+G=b|9|@QX<1oWU|`^a z1q-%q+jjQsS)gEJ;L%2)8pe_!zhDN3XE)M78a!PbLn`JZConK?3t?*$Nng&u*2dz- Z#=zgj#K!gMSSe5qgQu&X%Q~loCIDWoDi{C& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char3A.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char3A.png deleted file mode 100644 index 4b36dcc25b197c7b62f206ee925b1138600ad276..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)Q!VDym7P6%cH6dXK=J=mpFRL8V=M{s3ubV5b|VeQk@s|Q45^rtoS@;6kdVM{=$W9Q l#mR0ol|@oQLPAo4!9s(1;+u&=Pk>4pJYD@<);T3K0RZfWFBt#; diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char3B.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char3B.png deleted file mode 100644 index 10886054b688cc0c48adba6e12a6567a4dcc5afb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)Q!VDy_E)Q!VDyfPNXUJ+0xD+kboFyt=akR{0GGNf82|tP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char3D.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char3D.png deleted file mode 100644 index 6656923ecee2016e738a2553c0dd0e15d54443ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)I!VDxgys+>CQW60^A+G=b|9|@QX<%UBf&~l8 z%F523J-cn&HlU#L>y!^bHH;-ee!&b5&u*jvIg*|(jv*Cuk`ovh&8``+wTUQCW??(V b;Ks(lm(F-EFpYO5P!WTttDnm{r-UW|mH8@U diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char3E.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char3E.png deleted file mode 100644 index d1809d96485b70a2ee347b0ea16e6a84e0d33d92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ)!VDy*lr>xhQqloFA+G=b|2H%=?CR=TuwcQq zZQGtceVUw{eD>^Fpt$#|(!*8HE22WQ%mvv4FO#tEsF8BZd diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char3F.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char3F.png deleted file mode 100644 index 5254ddb96b50eefbe03d7cd29b4eabbf0964e04c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0ghq5(c3uK)l4U$9`o*|TSplase? z+t$_91r%{HC1{7(8A5T-G@yGywnxrzb1` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char40.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char40.png deleted file mode 100644 index 21d89d9b064a4002490e450db005fa46dfa3c1a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c3!VDyzJ5HDkq(lRJLR|m<|KHWsRaRD(oSc02 z?AZki763&Uc3$iSDqt)L@(X5gcy=QV$dUJSaSW-LlbpcN#K0CF%+?mbrtZiV7RL76 efh}x;27}xSCb8gqYmI?Q89ZJ6T-G@yGywp1Fe!Wh diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char41.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char41.png deleted file mode 100644 index d1c243dca85c18da36c8eac2d5845c8b288d2f9f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$oxd5LK*Z=?jCnqOAefl&oFmS^V@SoE igap3Sgp5!T1_tpZOsU6yI@ki$F?hQAxvXVS)*Z=?j2L=WvCntAxbv=Fh zblbLV3l=OWD=Pzv9}WEaktF(+9=KRLmpG%dj+nB`Iq eBaiDdJ_faq%m@36_D2C#F?hQAxvX+0$P3cl)mv@O1TaS?83{1OVpAExrH% diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char46.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char46.png deleted file mode 100644 index eeb652292ced4fcf271375cbb00f9b0adfc82ddb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$oxd5LK*Z=?jCnqOAefsq5*|XcW zZ3_$xT(Dq4Sy@?ER~Jxf+kwprK$VOoL4Lsu4$p3+0XdSME{-7;bCNUsQxgh|*&Zn< gge4?sm?SVTD6L{<-PXSAB2W>7r>mdKI;Vst0O(>auK)l5 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char47.png deleted file mode 100644 index dea71a32494c6cfd10635a07ab37ee26cc50da39..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0gh(g8jpuK)l4KYRA<)2C09lase? z+t$_9wP3-5va&Lu_xhQW60^A+G=b|4&X%Ua(-n)2C0* zo;_PuR@T+k1r%JznQjPF!&nmJ7tG-B>_!?$gQtsQNX49Fk5b;WfTW;=0Iv{+%Z+`9 Z802-B&V70(Uk6mf;OXk;vd$@?2>^4GEHMB8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char49.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char49.png deleted file mode 100644 index 2709c127bf4ebfaa41d63210f278bc9fd4b42e14..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^%s|Y_0wRmzy(a=Gi2$Dv*Z=?jCnqN_Sg>H*wryw6 zo-HdY>+0$P3f?;&(+pI@SQ6wH%;50sMjDVK=;`7ZQZXmlqcp)FsbP@=I|E-j<5_D4 R)m1=A22WQ%mvv4FO#lF`C&T~% diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char4A.png deleted file mode 100644 index 90b65bf1686003502b658cd7fbf817d3e4e31aed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c0!VDzE#FgBDlxToYi0l9V|GT=n7A#n>ZQHh| zPoI{Rl>tR&o$y%*RKQpgxhQqloFA+G=b|4&X%e){z3f&~k< zZQFMC?AfxivaYT!pmVS)*Z=?jCnqPLJ$rV+f(6^Q zZF~CkX<1oWS63HM+@fpl9iTGCk|4ie28U-i(tsRMPZ!6KiaE&|+zAN_E)Q!VDy4F6dwr$&1 zR#tZQ?AflaE}-B%Ps0$P8pe_!zhDN3XE)M-99d5n$B>FS$sXLL2?l`y2?ildNefxn f)YDkm6c`wE#h6}4#%z5CRLJ1z>gTe~DWM4fa;_`l diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char4F.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char4F.png deleted file mode 100644 index 7b334d8293f997dac34390c0a13e0228d872919e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0gh(g8jpuK)l4fBN+4wr$(Gy1LGu zJ)4}IykNnCva&LucmnsIqd;YhB|(0{3=Yq3qyae!o-U3d6?2jk{7Vx&k_{6Al0A|< kl1)+sLPHZ01QHk+G_9E~?wBoU2~^AA>FVdQ&MBb@0O{N>rT_o{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char50.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char50.png deleted file mode 100644 index e2415e2002cca283747afb5caca0970c17d4bc63..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$o=>VS)*Z=?jKYjW%IXU_4*|XcW zZCkKlL0MT@S63HMTx#ZKE1)vQk|4ie28U-i(tsREPZ!6KiaE&|+UW@#iRK9$tQUEB dcs!YS7*sAYbANJc=Lafc@O1TaS?83{1ONo7DxUxV diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char51.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char51.png deleted file mode 100644 index 670ed29cbd4b6fd75d7091c037e4b1d09c5ae1ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ;!VDyD?o+%6q@)9ULR|m<|Nr#q({0p2!#43Bxr;sBqS6uFj#(Nz80~3^CF;n22WQ%mvv4FO#tdFGWP%g diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char52.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char52.png deleted file mode 100644 index c6776d5b563f8c310cc9aeae348511859cba3b5f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$o=>VS)*Z=?jpFMl_>C>ml$;sQc zZCkKlL0MT@S63HMyjH^S5KtLoNswPKgTu2MX+VyQr;B4q#hhdf?&JiHRL%qr-LM1> f-t+_yF>eM2^%~~KHo0CkKy?hBu6{1-oD!MY_UzfR zva+tOt_2Gg00mjLc`gE~VJr#q3ubV5b|VeQk@9qL45^rt>`|J`k(_4Woo2w1Bv71` bkiftooyJu0PkDzhP!)rxtDnm{r-UW|w`V9d diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char54.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char54.png deleted file mode 100644 index f9d7d7351d052bd5892a20b0926b2b209a82e54e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$o(Ey(i*Z=?jZ`-!*?Afym7Az<$ zD@#sJ28zUdJaZhVfUzXVFPOpM*^M+HN5a#^F{ENnGDoRlLV!s?LV`&GL-I5QHU7?1BXgl9Q9S zZQJ(r>C>{ZvaYT!ptxLGunJHaV@Z%-FoVOh8)+ato-U3d6?2j`xD68mk~A2SSPl5f f_!ANY5*Qe?7c+C8e1GK_P#J@#tDnm{r-UW|iUus5 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char56.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char56.png deleted file mode 100644 index 7b36c63b68b6171dfcf71fd09d18b0ffa5820bcb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0gh(g8jpuK)l4U$9_7S6A2BvuBf& zlecZ#_Vnq~va&Lu_!rIKWk6+&B|(0{3=Yq3qyagyo-U3d6?2j`{7VxIl1vg3M3NE` hLQ@hF3KAF?8I*T3{xrC--VLab!PC{xWt~$(697$7FNOdB diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char57.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char57.png deleted file mode 100644 index a7b280d67f67632133cc038d8db025b11a967de1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)M!VDz;D$H~RQqloFA+G=b|37>7?1BXgl9Q9S zZQIt>)%Eo0)3UNMpg2eIM{}Su#*!evUVS)*Z=?jCnqPLJ$rV+f(3zr zflr@4Eh{VQ>gocDi|rO^0V-oG3GxeOaCmkj4akx4ba4!+n3Jr*ZJ3bYmzI#Am6VX6 fm!6=(Bf`L-@R?ch!JV>OKy?hBu6{1-oD!MP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char59.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char59.png deleted file mode 100644 index c1a3a650ade588f4c1304406665513becd6baea4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$oi2$Dv*Z=?jKYjXi!GZ+0$P3JR}el?JL|ED7=pW^j0RBMr!r@pN$vshE@Ok!qNbP?VUE5Cp^?DG3RN bNem3aqKtEARdD(M)iHRw`njxgN@xNAosud5 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char5A.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char5A.png deleted file mode 100644 index 517515e78d5db393792891922c0b014a924bc2d5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$o=>VS)*Z=?jCnqOw+qP}Nf(2*K zo_+fCX<1oWS63HM-0{IeZlE&8k|4ie28U-i(tsQpPZ!6KiaE&|-rNZV25AWiMhOWV gVF3vqCMFCF$~w&I?#I@!1JyBjy85}Sb4q9e0Gx9y7ytkO diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char5B.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char5B.png deleted file mode 100644 index 76727ec51381e29504225e6fe2510a31bdf98388..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^{6Nga!VDx!(`GLRQW60^A+G=b|9|@Q>4F6dwr$&1 zR#w*4)phplS)gDAGvfrH8pe_!zhDN3XE)M-94Sv1$B>FS$q5M_rG{(&-36@#a%pUXO@geCyh3@eNP diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char5C.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char5C.png deleted file mode 100644 index 2c36a265bdd02e8da4753fd9d32690f61b782a34..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^LO{&K!VDyrn@#)=q$C1-LR|m<|9|%E*{4sRE?BUj ztgNi7t83e~Z9u`g09zHH8pe_!zhDN3XE)M-97#_X$B>FS$q5Mw+=YdPNeq{cwK)Wx bwcunB31_l0*gTe~DWM4f<%KLM diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char5D.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char5D.png deleted file mode 100644 index 92596eb93664258984410b048821b0146695f50c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^d_c^^!VDy5E%`7LNQnmcgt-3y|9{)IZBL&*?ds}U zuwcR2vuA-KZ|Z&)0~Iiq1o;IsI6S+N2INS1x;TbZ%t=ltEi6k&C`>3wO$aa(OkiLT X;APzVYwL>;pc)2GS3j3^P6C>kR z7A!b>_AF3j154{+paRB{AirP+hi5m^fE;B{7srr_ImrnL9EE8K2?=IEnlmBLw6riK g!GM9wpo@u3m?Uy{Y7tb>EYwr$(G zy1Je|eOgvlwqU^mp!m)i+<`!4j3q&S!3+-1ZlnP@3Z5>GAr*6yHIlUxI1)J%3ex-% l0#ZX01d@#t5(E+$7<6ASJ>36&f(cM9gQu&X%Q~loCIG35FXI3J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char67.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char67.png deleted file mode 100644 index 7b4107cd6ff3668c525dc3fd5b092d6122ea7387..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c8!VDzudVhQjq!a^uLR|m<|Nr#q)4;$$2M33) zuCB9Z&n{T7AUQd?tgLL?wrxP!7tzexK*fwDL4Lsu4$p3+0XedsE{-7;bCMGh5@rM* q6PR`Efz+9V14kabJaym%1B2>vW@VOVKW70IGI+ZBxvXm7$Fxk(EJkKa>1f SpK~HW1q`09elF{r5}E+qj3%@I diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char69.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char69.png deleted file mode 100644 index d771b34ee45a4e34fda2486e80b9c07f7e3fbc33..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ;!VDyD?o+%6q~rp8LR|m<|9|%ES!HGAz`(!- z3l?nKwvC5}CpkI!>C>k`srSs=j{sFNmIV0)GdMiEkp|>Qd%8G=RLn_!kN^b!-mH^! i3eK!qa_)eJ1_OhrIAdr`C=V-88H1;*pUXO@geCy+crD-n diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char6A.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char6A.png deleted file mode 100644 index e4572d77a75fbd7240b87ea8333eb9c3d9f010f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c8!VDzudVhQjq*MZYLR|m<|9|%ESqBFPWo6~S zz`(MyvIPqk7#bS#@bDxjCqI4q6sTZg=*tg4^^7G!e!&b5&u*jvIntgkjv*Cuk{=`` pJjh8;NJvgdVBI7U(IX+Tl!1FLBSWI8&mEvL22WQ%mvv4FO#sf3FY5pR diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char6B.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char6B.png deleted file mode 100644 index a37af80e090ada22b3bb26e8770eb47a7f590082..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQW60^A+G=b|37>7?1BXgwr$(S z!^4xDoc#3ZQ=s6cD2ppVHH;-ee!&b5&u*jvIdYyZjv*Cul06a<5;zJCfh3dB43-9o f6KQNoY-|kjX^e}W>~*mLs$}qV^>bP0l+XkKI@BxS diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char6C.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char6C.png deleted file mode 100644 index 1302b965e7e5807667df7cfef21f2ac8d78c9ea7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$oi2$Dv*Z=?jCnqOAefqSltnBRB zvkMk1*tTsOQ1HpIoM%8aj3q&S!3+-1ZlnP@GM+AuAr*6y6B4`=61bBS3c^AX5@pTEr9?4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char6D.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char6D.png deleted file mode 100644 index 749651d1bc6164d87820554cbee29c07553800b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$op#Yx{*Z=?jcXf3oCnqmhu;A&_ zr$BDXdQDfLEMrNKUoeBivm0qZj*O>^V@SoEgapH~goGlogaosMgo1D*gZf diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char6F.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char6F.png deleted file mode 100644 index 6e30e98358e45f7d17cfe858f4a995b8e34c4a12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1d!VDz0$i65BQlbGqA+G=b{|^idT(Dq4S6A1z zZQIVCJqr{$(N!n|RKQpg(@6vILDgFD@TG7O%selF{r5}E*?;T|La diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char71.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char71.png deleted file mode 100644 index 2e1a4193383b6c3d443533e6c26b05239d18bd43..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 105 zcmeAS@N?(olHy`uVBq!ia0vp^%s|Y_1S0>+?=u8aoB=)|uK)l4U$9^Skc`?dVFVOp yED7=pW^j0RBMr#m^K@|xshE?TkWj$r%*MdN#&Gug{zZ8}83s>RKbLh*2~7Zp1s&}G diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char72.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char72.png deleted file mode 100644 index c1cd355f28a745863d76d74789346693e0489a7f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$op#Yx{*Z=?jZ`-zQ!GZ-{U0qL~ zJ_T|!9bD^yvWz7`e!&b5&u*jvIU=4ejv*Cuk`ox1(ghNkj`%Psh%vCGGIaGnf6fk+ OXYh3Ob6Mw<&;$TC<|PFH diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char73.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char73.png deleted file mode 100644 index 948bb27bd13dc13dc9a19fe657bef0e29871c99a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ+!VDyx^pj5jDTx4|5ZC|z|0gFWcXf3wSg>H* zwrzodflr@41q#kO{Qoad4P!}=UoeBivm0qZj*zE|V@SoEWRFsh1cLz41O_Gso`a0p TIVDR1fU*ppu6{1-oD!M zR@T+kwP3*lpx|Bh&x?U-7)yfuf*Bm1-ADs+WISCQLn`JZConXHJZE4NO=WIt5n&gY e?s(${1B0>_(<}Gsd>?`87(8A5T-G@yGywppWG)c^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char76.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char76.png deleted file mode 100644 index be122acdc8aa063924dd60883cc83a5613f00afa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q@)9ULR|m<|6f*C*45P&7#O%< z!Gdkuww*nD_UY57K=H}5EBb-T7)yfuf*Bm1-ADs+ls#P>Ln`JZYa}Ejc(5jkEoLy_ peZ<~nZ7^jDi@^?UE`~}ThM<2eod+iU{{mFb;OXk;vd$@?2>@pRGB^ML diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char77.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char77.png deleted file mode 100644 index bcbf24d6447ea76e85a9a107306435e365c9d9bc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q@)9ULR|m<|6f*Cwr$(Cz`(%d zWXNX4AwganO*ganTSjnXuR p%L@AzRWLYbu4HnqSj6BVzz}qcWphnq@fM(Z22WQ%mvv4FO#oigG1>qC diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char78.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char78.png deleted file mode 100644 index 74644f2ab57c0c6759cc32dd34f88c66c7aab375..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)I!VDxgys+>CQlbGqA+G=b|4&X%Ua(-n)2C0n zy1LGuJqr|hnSb# b00ssjUdBTjN>2^~)iHRw`njxgN@xNAsm&`q diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char79.png deleted file mode 100644 index 92cfaabecd38cb0f051ade584318d119185bd825..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 129 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)I!VDxgys+>CQlbGqA+G=b|4&X%Ua(-n)2C0n zy1LGuJqr|hnSb#@SDE2jVe diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char7A.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char7A.png deleted file mode 100644 index 5ccb9e37a9c0b95d63ff375647fde72371f85b5e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0gh5&=FTuK)l4@9OF@G&EFJR(5c3 zID7W&)2B~?f};N296&XUB|(0{3=Yq3qyaf{o-U3d6?2jkxOo#2JQETU(h?FpxDpZs eSS}^;@G!`pV0VS)*Z=?jpFMka!GZ;Wfq}`% z$z5Gt+qP{hD=PzvGklV31uA1K3GxeOaCmkj4akx3ba4!+n3J5q!1OJIoz1M6jZIXH bQ9zu5m!DC|W7dgTKs5}Wu6{1-oD!M hg0NHpfwY7K1_nu0CMkgvEG}%WQZXkvAw40%KOvzsxxhF{ eKp;6Gfq{YN3u8p>tkxu;Dh5wiKbLh*2~7ZJZ7QSy diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/50/char7F.png b/sagenb/data/jsmath/fonts/msbm10/plain/50/char7F.png deleted file mode 100644 index 9c4d8be234108e340939485a8fdc52b10b93880b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^EFjFn3?!rPH~Ru9i2$Dv*Z=?jcXf3=efreF!C~9B zZDnO;XV0Dm3fer>6$h$eED7=pW^j0RBMrzA@pN$vshE?T00i6#35H1tf(#7I2@DG- Tt}5mO$}@Pn`njxgN@xNAZ^|eU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char.data b/sagenb/data/jsmath/fonts/msbm10/plain/60/char.data deleted file mode 100644 index 2b03f73d4..000000000 --- a/sagenb/data/jsmath/fonts/msbm10/plain/60/char.data +++ /dev/null @@ -1,130 +0,0 @@ - msbm10: [ - [6,10,3], - [6,10,3], - [6,10,3], - [6,10,3], - [6,8,2], - [6,8,2], - [6,8,2], - [6,8,2], - [6,10,3], - [6,10,3], - [6,10,3], - [6,10,3], - [6,8,2], - [6,8,2], - [6,10,3], - [6,10,3], - [6,9,3], - [6,9,3], - [6,9,3], - [6,9,3], - [6,12,4], - [6,12,4], - [6,10,3], - [6,10,3], - [6,10,3], - [6,10,3], - [6,11,4], - [6,11,4], - [6,4,0], - [6,8,2], - [7,8,2], - [7,8,2], - [6,8,2], - [6,8,2], - [6,10,3], - [6,10,3], - [6,10,3], - [6,10,3], - [6,10,3], - [6,10,3], - [6,8,2], - [6,8,2], - [6,10,3], - [6,10,3], - [6,8,2], - [4,8,2], - [3,5,1], - [5,5,1], - [6,6,0], - [7,6,0], - [6,6,0], - [7,6,0], - [6,10,3], - [6,10,3], - [6,8,2], - [6,8,2], - [8,4,0], - [8,4,0], - [8,6,1], - [8,6,1], - [8,6,1], - [8,4,0], - [6,6,1], - [6,6,1], - [4,9,2], - [6,6,0], - [5,6,0], - [6,7,1], - [6,6,0], - [6,6,0], - [5,6,0], - [6,7,1], - [7,6,0], - [3,6,0], - [4,7,1], - [7,6,0], - [6,6,0], - [8,6,0], - [6,7,1], - [6,7,1], - [5,6,0], - [6,8,2], - [6,6,0], - [5,7,1], - [6,6,0], - [6,7,1], - [6,7,1], - [8,7,1], - [6,6,0], - [6,6,0], - [6,6,0], - [17,3,-4], - [20,3,-4], - [16,2,-5], - [19,3,-5], - [1,1,-1], - [4,6,0], - [5,7,1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [1,1,-1], - [6,7,1], - [5,7,1], - [6,4,0], - [7,8,1], - [5,8,1], - [5,8,1], - [6,6,1], - [6,6,1], - [6,4,0], - [6,4,0], - [2,5,1], - [3,5,1], - [6,5,1], - [6,2,-1], - [6,4,0], - [6,6,1], - [6,10,3], - [6,10,3], - [8,4,0], - [8,4,0], - [6,6,1], - [6,5,1], - [5,6,0], - [5,7,1], - [5,7,1], - [4,4,0] - ] diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char00.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char00.png deleted file mode 100644 index 9ff959b27a7bf1b231fb58cf858e4997b86f2724..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gLHsTi0l9V{}(J+5EvMkoSgjh z>CZlf^FNjb#-+;efktA^}u;u2v8+sNswPKgTu2MX+Vy;r;B4q#hl~>hNf>U0)ht) x9C&!_K;WqZ7fvxg5fe8w*ueDikkSMphQeE{pX!=sw*$2>c)I$ztaD0e0szR;H{k#P diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char02.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char02.png deleted file mode 100644 index a599426949f8a79779032669c3b56a67ca075883..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gIs`5i0l9V{}(J+P*zr!oSc02 z?AgG;z-`;Mb#-+;efktAHRZxuL7+;;k|4ie28U-i(tsRYPZ!6KiaE&%2^k3q2^v7m yotU7VmXJ}#UNlvx!AXy&H%pSoN0ygIhlhtDCxG=~33E~j$U;w7KbLh*2~7YIYccBp diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char03.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char03.png deleted file mode 100644 index 1a958c9afafc84c4c874ecf02bb8401a493ba38d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gIs`5i0l9V{{sU9&z?QIZQHi8 zvN8t;hXo53baiz-efktAH92|rHK0nyk|4ie28U-i(tsR2PZ!6KiaE&%2^k3q2^t9* z=RJT-T_C$KEkP(bA%o56_8eV_2rDUx84?l7Y+zvEf&~k@ zy1Je|eY$PiHlU!K=*B-lHH;-ee!&b5&u*jvIclCRjv*Cuk`od<5;#%|5)#Td6A}`N oQW6XbQxd{b6F3-)Zc0cnnENw}m&BT11?ph%boFyt=akR{0OfKoNdN!< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char06.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char06.png deleted file mode 100644 index 7cf50a496368cec1e4a17df52ae81c6ad6be4fa8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJx!VDxeUQFf&QqloFA+G=b|4&X%c5rYwd-m*t z1q+@&ecIL4wQburp!ixA->pDpj3q&S!3+-1Zlr;6BrmwSeX?BU8ZCL^)Pt4`njxgN@xNArNJ+t diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char07.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char07.png deleted file mode 100644 index 6ec9f2095ee30bde9fb23067ab381a75e083b122..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJx!VDxeUQFf&QW60^A+G=b{|^idT(Drl*|TT6 zy1Je|eY$PiHjtp&!U;e%j3q&S!3+-1ZlrZlf^FNjb#-+;efktA^}u;u2v8+sNswPKgTu2MX+VySr;B4q#hl~>hNf>U0)ht) z9C&!_K;WqZ7fxL`a3L<~$bkt!wnp5M0|yT@h{ BJlg;O diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char0A.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char0A.png deleted file mode 100644 index d2bf56e783589b8295457e97d71481ef36068050..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gIs`5i0l9V{~a70%F4=;latS$ zJsTJpxNY0EuCA`9PoDy%R{Q@x22{yd666=m;PC858jz#!>EaktF()}8AtNCnK?8`n z6BD%45;Drt6J7*(B_s$JCMI}lCnm6;+GJqBz>v9%<^K6||FS?m3k(cQPELOM z^yz{H3(lTB+tt;zZQC}W)D{!#5THuNk|4ie28U-i(tsRgPZ!6KiaE&%42*q7Y}bs~ s*q*Z}?B2`hvBa>#WUIl34hseb8!wg(ViT@C1uAFoboFyt=akR{0CG<;ivR!s diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char0D.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char0D.png deleted file mode 100644 index ea8d902093160a20d60d49b10ea7b04e9ac94d14..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJx!VDxeUQFf&QqloFA+G=b{|^idJbU)+wr$(W z%E}fjSkTqg_4Mgepm=Nz~JfX=d#Wzp$P!E-7t#) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char0E.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char0E.png deleted file mode 100644 index 7e71cfb8c9dfdbd4358eef466942605d6568646f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gIs`5i0l9V|IeO1yKUPxLqo%| zva;mlMsa#VfCo^_Yz%(MEL$#?{Co%0!r_7V+%~vn7C97(8A5T-G@yGywq5Z#Vw{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char12.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char12.png deleted file mode 100644 index c67ee4eb295ecb35fb5f495b1e6208ee672b21ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q~rp8LR|m<|6f*CmYke?_UzdO z3l=yyI6Qs&blbLVU0q#3smW*LX986+mIV0)GdMiEkp|>wc)B=-RLn_ENXSS}c%6{o yk;>4-C-Cshfdi8c1S~mmDB;42a|a$AU|{fLVTojBoskUG!{F)a=d#Wzp$P!K`#AXk diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char13.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char13.png deleted file mode 100644 index 6861707e5753cd2536413e9ef02e2fed480b3709..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q@)9ULR|m<|6f*Cwr$(C*>>{KyjmoYOjFG7)yfuf*Bm1-ADs+G(24#Ln`JZYiK7VBybcn2rYBi u)v%D~L{froLV#IHYJrDIQUXT;14EoP%l)sGi%$dfFnGH9xvX_UiH{SpN diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char15.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char15.png deleted file mode 100644 index 17c59eddf2b5fc534ab17a0fe6c57ab6a6fbd9e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJz!VDxgS6-9_QgQ)4A+G=b|37>7Y+zvEf&~l8 z%F2?HlecZ#*45SZ^yyQel(tNeE>I<7NswPKgTu2MX+Vytr;B4q#hm1Xgp7oQ1dW6Y ze+?kB6v!@2exQ+>kZ}&k4cBM!G&GqiZnS|pw9vqSf#HM``|;IpxOM>zVDNPHb6Mw< G&;$T}q&RT^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char16.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char16.png deleted file mode 100644 index 1cc16f65280a66069b89f62e4b153f234e03f0d4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gIs`5i0l9V{}(J+ux;D6L^eXgQu&X%Q~loCIBIZF*yJL diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char17.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char17.png deleted file mode 100644 index 90a4b7dbd6dc34b1420d683d87af413a2f5e8e59..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gIs`5i0l9V{}(J+aQ5ukva+(k zz`*3>hNd!wwCse0 z1b)LL4dzXv5?m6eCe4+Qkdl<}Iy_0@hNJ{T!Zp@H?TLOMXE1oW`njxgN@xNAa|1Cx diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char18.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char18.png deleted file mode 100644 index 963bacd4ccc52eab3d874105ebe6267daaff6645..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gIs`5i0l9V{}(J+;NakpoSa-% zR`&Gi)3ayKZrir4tE&qrb#?W=cR-blB|(0{3=Yq3qyae^o-U3d6?2jk7?}CkzICy& wnJKVsjErQK@anOUI20Ts$r7q1A>qZ!5N^-vaaLttEKm=Fr>mdKI;Vst00~hrBLDyZ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char19.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char19.png deleted file mode 100644 index b3dcb37f77ef8dbf4c00bbaef4c070a70e217703..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gIs`5i0l9V{~a70l9Q9m%F3QT zecIL4wP3-5vuDq4+qMlT)wJf_51>lMk|4ie28U-i(tsRIPZ!6KiaE&%3{7PUY24X~ x3B4MOn>1wx>^@o;`cEtE+3lf(1a?bSGwepkl_7AirP+hi5m^fE;a47srr_ImrnOjOWVQ zdd%3^`ph_H_nI~;9_eUS+bP0l+XkK D6G1m0 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char1B.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char1B.png deleted file mode 100644 index d73d0e67bd968138002bb1f67d5b926950c2af00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ-!VDzW)jV7Zq!a^uLR|m<|L@@75EvMkoSa-% zR<>>1wzFr?E?BUjtE=nj)2Be$*kzX%02MQq1o;IsI6S+N2IS~?x;TbZ%t=mQXp-c0 zXxiJ`*tl5u%(Ila2LzIi95gUJI(cD?N>k&)%?wL;7#1#NpSfNPQJ9t#U{I2jz?;Cp Yz;Dg?sI}ks2~Z7#r>mdKI;Vst0AUa)1ONa4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char1D.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char1D.png deleted file mode 100644 index ad01ed37df3e5d3ec1d8b810425e7e30ca341e96..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJx!VDxeUQFf&Qi=gSA+G=b|6j0RfrEoXU|`_3 zZQIVCJ=@jQRaRD(oSgjh=~JL=!rw#DK*fwDL4Lsu4$p3+0XfQ^E{-7;bCMGhW*jhB vtT6Rp;wB|#W@%>U8IfEP%rklB@bEAsK4f_=HdiVWsGPym)z4*}Q$iB}N!K!{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char1E.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char1E.png deleted file mode 100644 index bb690494cba2a326d6226837b5582e3823e6fff8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)H!VDyjYyB_7?1BXgwr$%6 zWJ~S6{SGL_SQ6wH%;50sMjDVK@9E+gQZXkvAtAwlAxVu_E)H!VDyjYyB_7?1BXgwr$%6 zWJ~S6{SGL_SQ6wH%;50sMjDVK?djqeQZXmlAc27?S>Rw#f>Gnlu7qU_9VQG6vM(6p UC4`z60+lg%y85}Sb4q9e04PHz$N&HU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char20.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char20.png deleted file mode 100644 index 5daa88106a1d9ee5652425766caadab2bddc5d71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJx!VDxeUQFf&QqloFA+G=b|95b3C@U*luwcR2 zvuC$$+t$_9_4Mgepm@HQ?p&ZU#*!evUgTe~DWM4fGi)z@ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char21.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char21.png deleted file mode 100644 index d856b57c5351fd9a37ef8ddb5bfab02a3e72a0c0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJx!VDxeUQFf&QgQ)4A+G=b|4&X%c5rYwd-iNs zS65kC*@6WNwr$(?^yyQe)SMd8bf8Mck|4ie28U-i(tsQ_PZ!6KiaE&-G7=Ip^tls& tfH_HwjjcPSO-z)z?bsJCw#|KP41SiZAFu!U*#^|X;OXk;vd$@?2>=|VGr9l( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char22.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char22.png deleted file mode 100644 index 2a19b95e0908c32846b2a08f2cc446cfa26a2ec4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gJOVBi0l9V{~a70l9Q9m%F4EF z+ZGrY*wxjwV8Md3XU{%;`V=Vp?>?6;P%&dkkY6x^!?PP{K#snri(^Q|oaBUr83zx{ zlRJ3f(1Zg42aX*u;O($%HkPn3v68%@WhJS$EY)CxfdKbP0 Hl+XkK=3_a? diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char23.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char23.png deleted file mode 100644 index f606c33ff343d81f189dd21d2312d8a580474272..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gJOVBi0l9V|C5uG%gV|E0|U>V zJ-cn&HU|fXuCA^H3l==}lx vbOK}!UUV zJ-cn&wyv(O1q&8DefktAwb90O22dqqNswPKgTu2MX+Vy)r;B4q#hl~>hNf?uSQJk3 z9m(P0kyYf$P2=Oy(URloQIz93o2kj8!^6Xn;lsMnQ!hjpsExtX)z4*}Q$iB}UkNY8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char28.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char28.png deleted file mode 100644 index e1cfec8b1b3b11463067074327adfb6ff4a29a5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJx!VDxeUQFf&QqloFA+G=b{|^idEGsKpuwcR2 zvuC$$+t$_9_4Mgep!n8XrSpKw7)yfuf*Bm1-ADs+R6SiBLn`JZCnV@6BzW^CawH}s q7%(KMDWv&(CnoTkq$h;yGccHMVBUG7Ch!|j1B0ilpUXO@geCxO*)a+L diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char29.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char29.png deleted file mode 100644 index f2a4441a42617609d3df50295526cc2388b50cd0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJx!VDxeUQFf&QqloFA+G=b{|^idJbU(RS65eA zS=oXG3$|_B_Vnpfp!g&~vnfDjj3q&S!3+-1ZlnP@s-7;6Ar*6y6Z8`jG`vd_fPghA nO@S{-!z>Ia;FF$EuFt^WP{Fd^UftDnm{r-UW|6(27D diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char2A.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char2A.png deleted file mode 100644 index 0bebdb8ffd03e114cab09e8398a561cdb873c02c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gIs`5i0l9V{~a70wr$&X_Uzf@ zgrms zU;&Wp`=ctneV Z3S^2Hch>(f7X>P1@O1TaS?83{1ORYUCv5-# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char2D.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char2D.png deleted file mode 100644 index e05a57a260b852e91c3972cb374101f5f6574379..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^EI`b`!VDyJWSz}`lu&?Ai0l9V|I5nCo<4o*;NY-e z!2%$+7BN_kz diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char2E.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char2E.png deleted file mode 100644 index a1dedcb2df0d5c85e801617d2f317c6abb2665b0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^%s|Y_0wRmzy(a=Gp#Yx{*Z=?jJ2*I$m6a`6u;A&_ zr$DY1OSvCVma!zrFPOpM*^M+HN5s>`F{ENnazbK4LRdlq%OoBLpo;wrI#;T7X949I NJYD@<);T3K0RXX}BXs}( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char2F.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char2F.png deleted file mode 100644 index 7e5ec1f29f3a02da7e30bc640fe97b2840e443c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$73?%Cvt*-$oi2$Dv*Z=?jZ`-ylFfj1x)29v& z4qaVcXV0Dm3chr|`V6Rsu_VYZn8D%MjWm!3PZ!6KiaE&%$;k-`zJ>`2Ladk8@F*}a YaQQJDH+pj;4ycB~)78&qol`;+09Dp2LI3~& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char30.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char30.png deleted file mode 100644 index f5ade0db672fa316590c4039fc73b94eeae8c084..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0gh5&=FTuK)l44-5=UPEK}ka40J) z>+0${d-g0)(3e?K45)^&B*-tA!Qt7BG$2R8)5S5QVoq`b2&NV!B%~%LBpC80CwL_! dc%&pSFz|h6Tx;~S%LJ&F!PC{xWt~$(69AvFDslh- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char31.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char31.png deleted file mode 100644 index e383d76ec9870488ca8984668842a55b255aedf1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)M!VDz;D$H~RQgQ)4A+G=b{|^idT(Dq4Sy`Eb zgF|w1a#vT^)2C0*o;?ecG8Ub33aFB?B*-tA!Qt7BG$2RC)5S5QVovgd2MPKK3CY>X rK*E#}=S&t44^OWT4-bRsA?As{J{-IcRL|h)>gTe~DWM4fdmJ(L diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char32.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char32.png deleted file mode 100644 index 94fad7e5d545f2d127701eb956e039e457a5c250..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0ghiUB?$uK)l44-5?4wryK-a`Mxs zPZum$;Naj;R#w*4)phplS)i=Sqa&_B#f&9Ee!&b5&u*jvISQUGjv*Cuk{_f1VS+|N pLjLNM2O4t^9av-8nyAFg%%JYa{MjL}FA%7f!PC{xWt~$(698E&H9r6V diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char33.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char33.png deleted file mode 100644 index e959399f2b50198b0796952f91def38b406b4e22..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)M!VDz;D$H~RQgQ)4A+G=b|6j0RL0MUugM&k0 zV4$I)VOLkz)2C0*o;?ec`k|Kf52%u{B*-tA!Qt7BG$2RW)5S5QVovgd2MPKK3CY>X qK%$g+(=2NVi5V>oF5Jq@%nVkyS$OkrH*NtcXYh3Ob6Mw<&;$T)pE1Dz diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char34.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char34.png deleted file mode 100644 index c4c733d478d1fcf52e46b0605fce78729beb2d1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gJOVBi0l9V|C5uG0|NuMZQE8> zR_5T~@bu}^1q&8*b#*773|VsLM}e&MboFyt I=akR{07a@gF8}}l diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char35.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char35.png deleted file mode 100644 index d433ddf8c95a573810701fbed8d39e17928465f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gLHsTi0l9V|F>=1_Vnq~va+(| zmd;0Wga&q$7 zvuC@yy0&fG1{8er*XagO4P!}=UoeBivm0q3eV#6kAr*6y6B0ZU5)wEP6B77R19($X p15A@r69jlu6N(cO6Ot1c7egQu&X%Q~loCIF5FG2j3I diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char37.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char37.png deleted file mode 100644 index 3912a09d06d659220a8fa86f67923a065a197c20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJx!VDxeUQFf&QqloFA+G=b|37>7Y+ztuSy|bF z1q-^mx}H9Lx^3Gwp!m8wyL5oc7)yfuf*Bm1-ADsz^>lFzshE?Tkf4#^k<5|6!I_r8 sk-(M0QNWwR5ty9dA()VmkemdKI;Vst0Mhg?_y7O^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char38.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char38.png deleted file mode 100644 index 64e75f7d572e643890de180d3615f2a33024b247..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^96-#%!VDxGA15CMQbGYfA+G=b|4&X%E-NcLd-m+p zr%!=gfpyDufwGJxL4Lsu4$p3+0XZ_BE{-7;bCMGh4H6OxjKs_m3ye(65)%^B5*QeS Wiy1F*9e4>cpTX1B&t;ucLK6Utekdvc diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char39.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char39.png deleted file mode 100644 index cb4946010ec49c32a3f37e0d3bba599d804e2079..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^96-#%!VDxGA15CMQbGYfA+G=b|1T>mOHNLH`t<49 zvuA-^v-8F*Kv~9;AirP+hi5m^fE*c57srr_ImrnL1qKNQg@J-;28Bg}X$c951`G^h W{Y;A81umjMbqt=aelF{r5}E*Q!6xhg diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char3A.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char3A.png deleted file mode 100644 index be04a9123c3ea97201090d7457520b62a1596576..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^96-#*!VDyNv=5yCQqloFA+G=b|95b3ID7VNSy@?f za&lK!*MbELo<4mF6hB{LcO0mUu_VYZn8D%MjWi%f+0(@_q+(8TLPC0aLV`znYJvuD oDIb&2B1aw`PfiCzH8wT|i%RD69jzB{1C=v)y85}Sb4q9e0E(|JSpWb4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char3B.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char3B.png deleted file mode 100644 index a9d74e722949bf87ef1dd505147dca3bf31117cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^96-#*!VDyNv=5yCQqloFA+G=b|4&X%E-Nc@aB%4A z>Nsg$I_bo%kwKxIfJLGpUXO@geCx-v@a_F diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char3C.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char3C.png deleted file mode 100644 index 87c7a989c24d56fa4ef8294104610f3ed55f0b9a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^96-#*!VDyNv=5yCQW60^A+G=b|6j0RL118DSy|cH zvuC@yx}H9L3KZNOqA?AqhOs2bFPOpM*^M+HN7d8CF{ENna)O6PazX+JM`}U=UzllP n0UwuXVuC;_YuD0^h71fY<;?#%xC-6@H86O(`njxgN@xNAO4cp4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char3D.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char3D.png deleted file mode 100644 index f0cab8fccf7e1ece22a97b8d987decf7853bb0aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 128 zcmeAS@N?(olHy`uVBq!ia0vp^96-#%!VDxGA15CMQbGYfA+G=b|4&X%E-NcLd-m+p zr%!=gfpyDufwGJxL4Lsu4$p3+0XZ_BE{-7;bCMGh4GIzpjKsnc3ye&{5)%^B3K$r~ X7Bd;G(<`t5s$=kU^>bP0l+XkKj<6@^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char3E.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char3E.png deleted file mode 100644 index 88be6a05b0c0e17987a28c7df441270ecb4c58af..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0ghasfUeuK)l4-?nXAa&mHDVBp!a zXUodU7A#oM)z$U%=~JLo4_~)4P$gqYkY6x^!?PP{K#sJhi(^Q|oaBTD2?+`Qx(OME ilNge}U14BbAi iZ3*dYVr*Zl0-)^2`7=F$iWy6S{DK)Ap4~_TauhsW978JRBqz)`aNxj& qlLrpW17g9X0|!i!nVh9(8!%{YV7`BC(~Jn9S_V&7KbLh*2~7aQ+c=&8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char42.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char42.png deleted file mode 100644 index 8e8e54280b52e3dd230ad1a065409dd6d93e30f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1h!VDyTUiGX1QqloFA+G=b|1T>m3k(cQPELOM z^y%5NXS=$(7A#l*6xYj&Rst$xED7=pW^j0RBMqd-)5S5QVotJ#cX9$pv3>#vH`}8n fOa{>rD;O9&7+KGz=!-i5l`(j_`njxgN@xNADTpf5 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char43.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char43.png deleted file mode 100644 index 11e55d6bc6eead3c739a7946b1a3a7841558e1fa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ;!VDyD?o+%6q$C1-LR|m<|DT+k{PgM5uCA^H z3l@}>m7P6%7APpM()a_YhOs2bFPOpM*^M+HN5<2|F{ENnasszuvPY;vVnJd;Lvq+e d12#5QHU?c4rsYpHQb0B`c)I$ztaD0e0st2^D? diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char44.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char44.png deleted file mode 100644 index 17018668f156e01618c5f69ad24e06976eae1a64..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0gh(g8jpuK)l44-5=UPEIZ>D|`C% z>9%d#y1Kd+ELZ>(XR4~V0xDxH3GxeOaCmkj4W!4@#WAE}PO^q~aso%Wc_K%-Mtj2a e5H{t*ObkxPS?B$@GVKFU8H1;*pUXO@geCwzp)JAy diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char45.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char45.png deleted file mode 100644 index 56f2dea03e142d263fe18ec03d8c8aa272c49988..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0ghasfUeuK)l4S5{U&d-iN{a`Mxs zPq%H`R#sNl)z!6N!2+OE>9pvjK$VOoL4Lsu4$p3+fwXzLIEGZrNzTyEPUt8wOy~$m kPU!GpP7-Hrdt$`M;Ht!`{r=X=2B1m?Pgg&ebxsLQ0N__K1^@s6 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char46.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char46.png deleted file mode 100644 index bbea6cd312a236835d267c672a894044f89a7a00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1h!VDyTUiGX1QqloFA+G=b|4&X%K701;)2C0j zZQE8>R@T+kwP3*lpm;I&Q&FHY#*!evUva) j1^lc@$!u*0SlAeBgTe~DWM4fPWdir diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char47.png deleted file mode 100644 index f7c1c3cd33d8da0c2d31b6d653be86f1adae4b85..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ;!VDyD?o+%6q~rp8LR|m<{~s6_n4FxvZQHh| zPoH*mbuC!1pscLy?AfzGsoKL+ZUR*@mIV0)GdMiEkp|=_db&7QO=R< pk(`j=k?fbu;JAz_E)M!VDz;D$H~RQbGYfA+G=b|4&X%K700TS6A19 z1q*=O6xExrfU=AwL4Lsu4$p3+0Xb5hE{-7;bCL_njM5SU0t*@i52*!ATR2gHnZe{D Wv%$JM+x`GmF?hQAxvX0wTYhwzLOQ5&=FTuK)l4FDolcPEOvoZQIkQ zPrJIh7A#l*6y#uAB?nZ)SQ6wH%;50sMjDVK=;`7ZQZXmlgEyhT*kOSJBZI6x(}(p+ RzI%X@44$rjF6*2UngHB#Cj|fi diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char4A.png deleted file mode 100644 index 7097ecc2873399130fc93c95ae2932d5020aec2c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c8!VDzudVhQjq$C1-LR|m<|6f*CmYkgY^y$-W z+qNxOu%N4}3nXZN@c~c`V@Z%-FoVOh8)-m}h^LEVNX4Aw1n<-YPB(?EENw3A3{wA? V-rL=GmjKE$c)I$ztaD0e0ssp>D$D=? diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char4B.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char4B.png deleted file mode 100644 index 4a3a5460173ced1c10792cfa7fa7104d9c44e8bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)M!VDz;D$H~RQgQ)4A+G=b{|^idG&D3!PEOvo zZChDc+0&;_ySlm-ELZ@P$~(7F9jKDAB*-tA!Qt7BG$2RG)5S5QVoq{Kes@B`i2`E= qp`$zwPRfiPJH!nPMA{{d7#NaQvT3~g6?zV+n!(f6&t;ucLK6VzNiW|3 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char4C.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char4C.png deleted file mode 100644 index 40ec6690aec426e176e5eabfae9333aa7b03f35f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0gh(g8jpuK)l4S5{U|PEIZ>D|`C% z>9%d#y1Kd+ELZ>(51PA+AE=D6B*-tA!Qt7BG$2RR)5S5QVotIKcR~V3xx+C=9=DTB Z3`SNg65*ONjsg`hc)I$ztaD0e0s!_ZDEm3k(cQPEJ01 z_UzNAPrJIh7A#l*6ldtW{uii>u_VYZn8D%MjWi%f+0(@_q+(9826uvYYJnezRziV~ ohkinVC$r$uhpaqJ2OU>2R9dsY{NtV44ph$I>FVdQ&MBb@0M3svn*aa+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char4E.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char4E.png deleted file mode 100644 index bb4c563088018caad6b7c7781720bfc35918a848..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ;!VDyD?o+%6q!a^uLR|m<|DT+k?BL)K7#R5U z>Cj;P<>0#wD|>FVdQ&MBb@0Q?#)X#fBK diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char51.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char51.png deleted file mode 100644 index 123efef9b8cc45f71656944aba0a40ae880cc9a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJx!VDxeUQFf&QgQ)4A+G=b|9|@QX<%Sra&q#v zZQB+sSkTqgRaRDZ_Uu`pRLV-*9-vCbk|4ie28U-i(m>igT^vIy<|IGR;7%w=*GT1X lZ91bV#lw@?$HSwe$q?bes{XagOAe@#!PC{xWt~$(699@8EAet#R(H4?lpa7(8A5T-G@yGywor1~NSW diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char53.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char53.png deleted file mode 100644 index 0894cec746a880736cc29c2fa243c645acc2e598..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQgQ)4A+G=b{|^idbZ~IkwryK- za`J)&3%a_x%F4=~K79(5N)g=xQps2nbP0l+XkKgj6l} diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char54.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char54.png deleted file mode 100644 index 4cddb6d132bc276c38a94b83a358311cf8d3ac8f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0gh5&=FTuK)l4-?nYr)2C09lasr; zy2{GR7A#l*6b!iX=rB+XV@Z%-FoVOh8)+a7o-U3d6?2k3N_i6uJh+n*Jdzud-ICcD Yj7*q4n@>*+1*&22boFyt=akR{0F$gMJpcdz diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char55.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char55.png deleted file mode 100644 index bf9af022623a475ca4d8be4ce57aa176fc0f5a88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ;!VDyD?o+%6q@)9ULR|m<|DT+keD>_wr%#`5 z+qSK&tgNf6Yr%pAK=ESkr=mb*j3q&S!3+-1ZlnP@vYsxEAr*6yHMBVr3(Pqf9GGr!XNxy==*n8DN4&t;ucLK6TBK`>^p#)%2$ rdYTCdh2@MwM;-Zic$j*45*QfjTUaN@v)+0I)WP8C>gTe~DWM4fa+)wm diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char58.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char58.png deleted file mode 100644 index 4e69bdc935fae9d8a91bf12d5e095399ff734c51..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0ghiUB?$uK)l44-5=+aBxUYPVVaJ zdiwO~*|TTM%F4EF+qPiA0-)@ID&Z4A#f&9Ee!&b5&u*jvISQUGjv*Cul4n>h?oqt7 qxv??XikZ2YlbJdFGz*)$n>T~k9#%88(6vrLwG5uFelF{r5}E+X7%_eT diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char59.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char59.png deleted file mode 100644 index eea984cb7ae7a7427ff4aec2efe18f972063e341..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0gh(g8jpuK)l4PfkvL`t<3xZQIJq z%FdoW+tt;zV8H^Q_-?V-89-%>B|(0{3=Yq3qyae!o-U3d6?2j`xC_!a^a~Oaw0RQ} kv{DihG}03iL_-)DYy_GAxL{+0ca%=WQpi0J)AirP+hi5m^K-xTA978JRBxm^hCU9i>B_wd9 kCM29@c+|kswy1!S!Lgs^TJP8M89zopr0P1cs2><{9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char5B.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char5B.png deleted file mode 100644 index a464130f779501ea4b195b66e37a0f9790a1ee74..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^fC>ly zfq}`%$qN=N01Eo>6#NFNVJr#q3ubV5b|VeQQSfwe45^rtoRE;S!iRX-`7ZZ<@ hmxGxyvxI>W1A~qxlU?z1|}ybmz9-m+qMlTb?VUNKR}g?B|(0{3=Yq3qyagKo-U3d6?2jk5)vM0a2KaB pG>VDyv#}i&a%X1aW77y=V{m9;j%43*{~S;;gQu&X%Q~loCICG!FNy#F diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char5D.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char5D.png deleted file mode 100644 index 27d4bcd31cb7051c16c598eba97a645ad7444d9b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~f!VDxAA9g$hq$C1-LR|m<|G#b9wzFr?mX(!t zb#*ORu;A&_r$E8B4fCXdY8Xp`{DK)Ap4~_Ta-=+6978JRBqw;38YU$q6eVy7CL|aZ c7A7$;hmdKI;Vst05Oy;i2wiq diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char5E.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char5E.png deleted file mode 100644 index 1a14db7e6b07f61f84f131f89ffdc017b1b567da..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^!a&T-!VDyvS7@dHDTx4|5ZC|z|Cg1OZQHhO!GZ-{ zU0r9-o_+fCDNs7S diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char60.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char60.png deleted file mode 100644 index af13420b4e9fc8ddd6f9f00ac852a4301f5473ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 121 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c0!VDzE#FgBDlu&?Ai0l9V{{sU9pFVxs)zx+O z>{%e!|Eu6Zpe$oakY6x^!?PP{K#r)Vi(^Q|oaBUr#DoMkMKx!EmpL2^Oa~dZ`s@^R Q0V-hdboFyt=akR{0Q?gqo&W#< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char61.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char61.png deleted file mode 100644 index 3f383f727b790c2b55c8337f898c6bd8cb8d410b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQW60^A+G=b|1T>mTd-ik)2C0* zo;};u)wONgHlSbxTel2Q4P!}=UoeBivm0qZj-scFV@SoEWDnlNgoFfB1|dcsF9(?e kYYr$(I&t7Y(g6krtUBzh+& sq#Gmzq!=V?ByLFH;4@B0@JMA~aH(X;=Ipe23RKVF>FVdQ&MBb@04okM0RR91 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char67.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char67.png deleted file mode 100644 index 04321f74f848ea67576e5790402bd82b3aba8df4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQtAOdA+G=b|37>7Y*$y8gM)*z zvT|TxprN5*a&mH6S=oXG3$|_B_Vnpfpcgv1VW0|tg9X*RB?`e_S*8W=oX{an^LB{Ts5 DQJ6Cu diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char68.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char68.png deleted file mode 100644 index 2407a94413a2de237d2ae03ceb802c0bc38fcf11..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJy!VDziwSo(PlxToYi0l9V{}(J+ker;nZQHi4 zuCB9Z&jLldIZv$zDqt)L@(X5gcy=QVq}tQPF{ENnGDl%y8Uv$ps9PI@SSSO3CF9yz Twi$_E)H!VDyjYyB_7EDsNlgM&j? zSJ$>}+nzps8WsF=ai)z4*}Q$iB}-q0=# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char6A.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char6A.png deleted file mode 100644 index 78d62b91d7131d380444742354edc622d4d53a94..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1c!VDx2-`C&(Qi=gSA+G=b|37>7EDsNlgM&k0 zU|?BU*|u%lo<4o5tgM`zoD7s*+RYOWRLocs_!@pBjxGh7*a7OIUyk-F(JV$A;63&Ns-w=T7!*&{~Kdu TzrEX1pehDWS3j3^P6wgQu&X%Q~loCII~nD0=_^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char6E.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char6E.png deleted file mode 100644 index fa0ef85a017a1b1c17778c9fe6b9b63a5ce4ef5f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJy!VDziwSo(P6n}tEi0l9V|I5nCy1Kdo0|SBV z+ef}}0Hqj9g8YIR9G=}s19C(>T^vIy<|HSi1tcU0r7$F?u`x0*Yca%Tax`iJbP0l+XkK Dbu1wU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char71.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char71.png deleted file mode 100644 index b4dba66ebe29bbc755faa4f8609ed544197a5d1a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^%s|Y_1S0>+?=u8aJOMr-uK)l4@9OG0d-g1lahGB0 zZ=g71NswPKgTu2MX+RF2r;B4q#hm092?dPKYz!Rd7(+QMR1O1W7(8A5T-G@yGywox C!ysJ% diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char72.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char72.png deleted file mode 100644 index 96ce0f0be13ecca210937c1bb30cd26f165e70c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ)!VDy*lr>xhQbGYfA+G=b|1T>mJA3x*f&~kn zK79)0>I-_;0c9CWg8YIR9G=}s19HSXT^vIy<|G#+CL|=7F$i@zoKav>V&I(3u-3w< RY!grggQu&X%Q~loCIGhfCS(8r diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char73.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char73.png deleted file mode 100644 index f2cfe9eb37345283623b79ffbcb265bf2263d2a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ!!VDxki#Ox~DbWC*5ZC|z{|5#JE?BVO>C>kU z4i0C}o&}1mIwc+fRKQpgu;<{9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char75.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char75.png deleted file mode 100644 index 4f9a6173648dc57350fff253e8c059087791f247..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0gh5&=FTuK)l4-?nYrf&~lCo;_Pu zR+gNc{PgKlpx}?yMH_%>7)yfuf*Bm1-ADs+6g*uVLn`JZdz2=m1$gi#8So~j2qbW( hBzSu#7z72eFzB6O-el9t`yZ&5!PC{xWt~$(6979CE{y;H diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char76.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char76.png deleted file mode 100644 index f0721ca4df3c280db8799bbb827c32d2d0e9de01..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gLHsTi0l9V|C5uG%gV~0K7HEN z)wN*3g0pAOZripED84Y)dpS@UV@Z%-FoVOh8)-m}x~Gd{NX4Aw1coLfg|t%Lw1h%` sw#_pecX+h49=zi-Q!!*Ei-rILLue<<=7b%&(LgN>p00i_>zopr0Ia$)qyPW_ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char77.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char77.png deleted file mode 100644 index 3ffb729a14165bcc3b050fc57cbbd928fc50b3f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gLHsTi0l9V{}(J+ker-cR#x`( z>C>}k&u-hct*fgGC?0z-`v6cGV@Z%-FoVOh8)-m}x~Gd{NX4Aw1P10ZwryXS*uoUp tHbyq2Y_hU$p1qp0c|oBSGjlfsgUegy+u`3crGQ!(JYD@<);T3K0RW?WGBE%E diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char78.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char78.png deleted file mode 100644 index 9cd60b497ce28c2c2508c03a3a7bca15ebcae454..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^96-#%!VDxGA15CMQW60^A+G=b|9|@QX<%UBf&~k< zZQE8>R@T+k1r$sXIx-2UhOs2bFPOpM*^M+HN6OR1F{ENnazcVP5OXj%nX|K{v8ge# ar7;M1GOkwWTl^lViow&>&t;ucLK6UTrzxfY diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char79.png deleted file mode 100644 index cf4dc9cfa7596e074255a844edd08546fd06d9b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^96-#%!VDxGA15CMQW60^A+G=b{|^ideERh1wr$%M zELc!hR@T+k1r)U1s@4ls!&nmJ7tG-B>_!@pBkAel7*a7OIl;p_At8a)sf~qgT8hF! b6$S>;7A7vY*DmjYiWody{an^LB{Ts5S!XIO diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char7A.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char7A.png deleted file mode 100644 index add7797fa2817a1731ca8288f94323891c4c6dc6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0ghiUB?$uK)l4@9OGOR#x7&ZJU^w zSYTk_)2C0*o;{nKoV;Mc0-$X3!|3-w#f&9Ee!&b5&u*jvIdYyZjv*Cuk{{&gCnwB3 paNt1Fu>%K=95`Sg+R-X0!Jy&5)S%?^q6nyx!PC{xWt~$(69Ay{G=2a8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char7B.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char7B.png deleted file mode 100644 index 208d204258d30c47c215b95c070e63b1687f9148..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ)!VDy*lr>xhQgQ)4A+G=b|4&X%E-NcDG&FQ@ za9FTl!PBQtw{6>Y_Uu`p)FKnre4t9kk|4ie28U-i(tsQ(PZ!6KiaE&-G(1uh^h=W; i7D#o+1c=d#Wzp$PzzMlB}* diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char7C.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char7C.png deleted file mode 100644 index 1c58621b2d7576811ebdfbaec8525a51843fa8ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1h!VDyTUiGX1QgQ)4A+G=b|9|@QX<%UB*|TTM z%F4RBx{{NVw{6?DV8H^Q)UTMB9-vCbk|4ie28U-i(tsRUPZ!6KiaE&{=?Muh7#^Cj lwOwOjYcoq{Yco-2WH1wBX<=dKX#px^@O1TaS?83{1OV^fFD3v0 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char7D.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char7D.png deleted file mode 100644 index e5c6313e2c24da4fb9ae84fd60298bfe2e58319d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQgQ)4A+G=b|4&X%e){yOgM-7i zZQB+sSP&Q(c=qhsuC6Yi)KqhUxj>bSB|(0{3=Yq3qyagKo-U3d6?2jwXe1;ga3>}t olrbimv9a;Hvav1XU}aMPs?cB(oAJZ{7Em#Rr>mdKI;Vst0Ne&GumAu6 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char7E.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char7E.png deleted file mode 100644 index 00ac77ec6908f642aff8bf0ddba6d21cf5790f87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p!VDyhI%nMlQgQ)4A+G=b|4&X%e){xjU|`_3 zZQB+sSm5B`aQ5ukuC6Yil)=JZ6M!liOM?7@862M7NCR@@JzX3_D&{0V&`3x~;AT$} nS4c}s_z;kiAkY<%z`(?yxQt1L<%DG}P$`3_tDnm{r-UW|@0>4r diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/60/char7F.png b/sagenb/data/jsmath/fonts/msbm10/plain/60/char7F.png deleted file mode 100644 index 6ac188bc89bc88f653ede34d944dfda95f8e15aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^EFjFn3?!rPH~Ru9i2$Dv*Z=?jFIcdktgI|KIr-_+ zr`xt|JA3vlP;m9+{3xIr#*!evU_E)T!VDxG_jSz%Qi=gSA+G=b|4&X%c5ramwr$&j z1q;reJ!@!aSXNf{^y$;Ct}dYLxBa#zK*fwDL4Lsu4$p3+0XasVE{-7;bCMGh5@sAY za3Js=!x0CwXod+11?CJBpYieVoZ(^QdE@%XL3Iul4Gc&^`KDJMG!n#v{x*0rO L{an^LB{Ts5#i2M^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char01.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char01.png deleted file mode 100644 index 809446e99f74538870c0489d73854b29c6361d2c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)T!VDxG_jSz%QqloFA+G=b|KGN4TXJ%;gM-7< zr%%hu%FdoW+tt+t6mOgJsu`$^u_VYZn8D%MjWi%f%hSa%q+(8TLOKJ}wgQ2ZLR?BW wc^e{lI}STI^*A({Mr>s`QQojoLRNwy_$2eQ^rOc<0Ch2Vy85}Sb4q9e0JIM^XaE2J diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char02.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char02.png deleted file mode 100644 index 5f660bc72ac3d52348498a0f312a5ee9b8550a36..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^>>xG^GmxDAJhKf*sRa0hxc>kD|LN1G3l=O;R#pxS z3`|Z=c5ra$>gp;hD?5Ak?6z&&fC^;Ka|r|0GnNGT1v5B2yO9Run0mT6hE&W+PH13Q z$LY|N%s4@Vd6So{gv1PW6NbuM1;uMz3vQ^ev9h%>Ojy;^$HZ2~xWbJ=aXrV;3AqPn Q01aU9boFyt=akR{0711lO#lD@ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char03.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char03.png deleted file mode 100644 index f5f90c43513185c384e6fb86023ccedbf3b3c8c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^>>xG^GmxDAJhKf*sRa0hxc>kDKQJ)R!NEaUS-GpL z>*>>{$;rtJ7Az<$D?5Ak?6z&&fC?ryc0U8EXDkWw3ubV5b|VeQG4XV945^rtoY26q zj+18&j|>mbn@B~4d6ph)VjCM9U0F_eGjaN|bE+~Jw!5`6GkY_HC^O7AW7TRXI%^Kp O&*16m=d#Wzp$Py!ls5zb diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char04.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char04.png deleted file mode 100644 index 1485d15664d9c7e3821885a317d9ee6d0ecc9898..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)T!VDxG_jSz%Qi=gSA+G=b|9|@QX<1pBva)hl zS65(Q;I?hsl9Q9qo;|x@!2+Oc%pZSmpkl_7AirP+hi5m^fE*o97srr_ImrnP4CmMs z4$fmx@oLoh&cMd@Ol-o0O$-x06tEj{O9)9suq-&mIH#I*)fYD213-NYp00i_>zopr E05*p_E)T!VDxG_jSz%Qi=gSA+G=b|9|@QsiC2vgM&j? zSC_J~a&mI=wr$(ao;|x@!2+Oc|H*<&K*fwDL4Lsu4$p3+0XaIJE{-7;bCMGp7|yY= zm9d#A%(Y`ak=)NBq%)U|hv&>p2SeWp0Zbkq469@qO3azB>NJ!)1NAX@y85}Sb4q9e E0H%F2hyVZp diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char06.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char06.png deleted file mode 100644 index 7a11bcc21977530db0cea4f2d3accfb5ea436174..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)T!VDxG_jSz%Qi=gSA+G=b|L^MRdiwOKgM)*Z zm{?g^Szusba&q$7vu779SOApW^JMW^pkl_7AirP+hi5m^fE-;<7srr_ImrnP4CmMs z4)Q6bi7<42VPm@{!mQ97DypG&gh7NmAtNCnq(O_FVUafLw)Fk6wm^*xp00i_>zopr E0M_E)T!VDxG_jSz%QqloFA+G=b|L^MRN={BzR#q-6 zD|`C%>DjYq7c5u+6#pk4r2|yPSQ6wH%;50sMjDW#>*?YcQZXkvp@HEW3tJeQ7@L9? yb5V?JgVRYjCZ0Eb4s6{T6F68o4cQ!~GBd=uF{eo8tKI}^WbkzLb6Mw<&;$S!{x0$W diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char08.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char08.png deleted file mode 100644 index 1d9489a73731b03f72f836a32337a04074e043e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)T!VDxG_jSz%Qi=gSA+G=b|95b32n-C|wr$&j z1q;reJ!@!aSXNf{^y$;Ct}dYLloU^4pkl_7AirP+hi5m^fE*J~7srr_ImrnL2{R5H zI1qS`;fRA-G{c010&|9m&-fggR2v%i#t5!xVLg!?t~39@0mc*thV_@(CSJFfT?Ew6 N;OXk;vd$@?2>?JhJL3QV diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char09.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char09.png deleted file mode 100644 index 900e93105681349fadd638236bba4e541fd4e938..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)T!VDxG_jSz%QgQ)4A+G=b{|^idT(Dq4a&oeR zgTvFOPs_^6&YnHn)zt-*x;wAtE>I<7NswPKgTu2MX+Vylr;B4q#hl~^2@Fi%cmz() zVpFn|X}BTNaoN#{$A^a}CsT=+hsTG@VVXx2Gqd&tMuvooEb6<}m$(5nGkCiCxvX>xG^GmxDAJhKf*sRa0hxc>kDf5CzUPoF+jR#pxS z3`|Z=c5ra$>gp;hD?5Ak?6z&&fC_}W>xG^GmxDAJhKf*sR#Ikxc>kD-_X!7Ffh=;!9iJB zxvQ(|>C>ml$;k^AEGR20JA3x*wr$&hYJ4p8Ujwx;mIV0)GdMiEkp|?LdAc};RLn_E zXkd89$`ivghlfYz>Pm%q>>fF7jLgidwI+n0F>P$Du4D}elTxu{^w{9^)sTVV*d5l7 UfqCza08L=b%7 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char0C.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char0C.png deleted file mode 100644 index 4c8d197826c7f2a1b490dbeff2e4d60e58314c8b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)L!VDz49!1&#Da8Pv5ZC|z{|5#JE?BVO>C>lW zWo63B%4g4>O-@ek>gw9IZ5vQlEBuNxP%&dkkY6x^!?PP{K#rcLi(^Q|oaBUrgc%G+ z-a0I@ZES25?U0m+;c-aeo)N;3#K^`b7CxPgjV+mtjbTnJYmfNa0$ZR?22WQ%mvv4F FO#noIGxh)g diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char0D.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char0D.png deleted file mode 100644 index 192a62a273238df4068cd613b471449cd6419be4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)L!VDz49!1&#DU|@95ZC|z|37{DR9RWMtgI|B zFtDqu%fZ26+qP}V$;k^AEI51iEKq^&f%-{6^^7G!e!&b5&u*jvIa;1Bjv*Cuk{={7 zFr6zCIC+mVP2IqtV5?K*8=iy*2M!#_Ns&2lK;gsz28M)H%!lnG%;JH%7(8A5T-G@y GGywpxN;$;< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char0E.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char0E.png deleted file mode 100644 index fdac07b07fec0e7b0582665ffc28b2fbb2cb8367..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^>>xG^GmxDAJhKf*sRa0hxc>kD-@(CQ!GZ@tOwq4NSKkIXqX2e#Wm3nbW?19F6zC$LU>JmG~$LV|Wf77N4A&Fpvb?q)dw P^)q<7`njxgN@xNAWOzDR diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char0F.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char0F.png deleted file mode 100644 index 704347045da1a42d2ed68936a234b9f6481db5df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^>>xG^GmxDAJhKf*sRa0hxc>kD-@(BlIXPKOOiWo> zdBK7OU0q#eWo1vFK0SN(?6z&&fC{{2R6>F38B2ovf*Bm1-ADs+%spKkLn`JZCp0ju zzopr0IC8x#Q*>R diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char10.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char10.png deleted file mode 100644 index b6f5da299c911570b1d62bbfe1dd5160f76a14de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^96-#&!VDzWZg{v3NT~$)gt-3y|G%rNYr%pAXV0E> zaBxsoRt^jd+_r67Sy@?fa`MxsPk{Ez_$X?x?akco|r;g1!EsEOiC QU7!IBp00i_>zopr0KO+TSpWb4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char11.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char11.png deleted file mode 100644 index 2f46a43f478499d516601ca087e504e95d2ff42c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^96-#&!VDzWZg{v3NT~$)gt-3y|9`=P1%ZKq4h|06 zwrxvJPF7Y{K700TS65eAS=rO4Pk{tgP(m z)2GVH%3WPu+qP{>PEKC1V8Pk5XMqYPSgXYW)iag^`2{mLJiCzw<&Ai5e%NLelF{r5}E)}&pZ48 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char13.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char13.png deleted file mode 100644 index 58d21ad63a2a56b6f51920555ff5b34572cc7be3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^96-#&!VDzWZg{v3NGS&Rgt-3y|35G=u&k`?>C>lO zU0n_i4%@bEOHNK+uwcR2vuA;_7q0Hu3RKKk666=m;PC858jxe=>EaktF(>&!3IkK0 zmq8?(8nc9ig|~#n4KD{7wzLT|jF_2M?>OYs##ScC$kwKr_E)V!VDyD>7VEYQi=gSA+G=b|KGN4o1vkhgM&j^ zS=rO4PrJIhl9Q9qo;|x@!2+Ocz^NS|-Hatce!&b5&u*jvIgXw#jv*Cuk`o#j&ao*R zoOj^Bfmb|7^j7ll_%QJ~EPTo8(4?En#LUd?%*@=qnLB_pU{a$i>xm>^22VBy&M*Zw Z2GJJwS=E|*ynu!=c)I$ztaD0e0stOUJ8l2~ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char15.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char15.png deleted file mode 100644 index e7689630a2536159a34e191a0269af3f9944e68c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)V!VDyD>7VEYQgQ)4A+G=b|2H%=OioUAaBz6~ z^l4XDS6Nxv*|TRCELZ@Pdilz}2&j^=B*-tA!Qt7BG$6;$)5S5QVoq{G14ADZ8y}k) z8{4-Kg@Xr@ScJSy6A}_c*^^Y+7YKOF(Y4fVXjEi5BE-BYqCti&jC}%|0vp4|XROA5 TXGG)xO=9qL^>bP0l+XkKvWqvp diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char16.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char16.png deleted file mode 100644 index d73747b4a2f549c0389ae9f653035236d13d30c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)T!VDxG_jSz%Qi=gSA+G=b|L^MRa&T}^R#pxS z3@j@vd;0Y0f&~kblase?+Xj@CKXLpfP%&dkkY6x^!?PP{K#rcLi(^Q|oaBUrgc%G+ zcz7LRCLTEOY7N_?jfaljXiQq@$K>F~7;r-~q@j`b1OvmeBsK{isU}IFP6kg`KbLh* G2~7Z)12_5r diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char17.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char17.png deleted file mode 100644 index ce90765062b40f8bd88943367f0a0815d61ec952..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)T!VDxG_jSz%QYryHA+G=b|95b32n-A?D=S;D zU_n<`m!YBI*|TT2ZQGWdoc#3ZQ=ozi6KRLd{DK)Ap4~_Tatu6O978JRBu5-& zV40)Plx)?ZbDAe1p_IW$%(#J(o0)m@#w3Obj3OyvCVUAGn2Z=^Z)f$|_lI#SP%ne0 LtDnm{r-UW|T1Pik diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char18.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char18.png deleted file mode 100644 index 409304243447a5f7400f60954cafd2bd35570539..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^96-#&!VDzWZg{v3NT~<-gt-3y|6fc@%)!CI(9ke2 zF!1Tqr)STeEh{VQ>grmsU_o+n^0sZ;fNCPeH2Hv97)yfuf*Bm1-ADs+tUX;ELn`JZ zCnO}?U^v3VEwLkgim^e#d!6)#f`dYLcyC8YZp$~+NcDK2ck_V26Nw4O3=)?M2beW9 aGBRYk^Ulu>>;DEchQZU-&t;ucLK6V~%|Flp diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char19.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char19.png deleted file mode 100644 index 2aefcc48926e18998bc3869a9d5c069a5e195f12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^96-#&!VDzWZg{v3NT~<-gt-3y|6fc@%)!CI(9ke2 zFmT(pZ3`AG=<4b!D=SM*PCk3~?9-=Dfod8`mI(v3FqQ=Q1v5B2yO9RuSb4fQhE&W+ zzHyX+WsX8qwOb?u^Yxx9tO9xwO diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char1A.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char1A.png deleted file mode 100644 index 88a7ef71ac9c62d612e5450b39eacf136424381a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^96-#&!VDzWZg{v3NT~$)gt-3y|6fc@%)!ASFfj1x z)2G|EZ7VA)OHNK+uwX$~SJ&CIXMqY*8kPkD)iag^`2{mLJiCzwXjWNk$&OHonyoQg?c|BqXFH aBp80QadF<+f8Za`CRt2Ngj2=tW3<}mU6OVSy@W%nIjrzB(g!LEMZ29#lks?iPHiZn4OuJ anHiiHa6epNS(XhniNVv=&t;ucLK6VTBRiJ> diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char1C.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char1C.png deleted file mode 100644 index 5c88f0d549b78908b5205d5c7ff18f67c469c950..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^96-#Z1|gn<3QboT&ZP)3Ozg_= cVKWeBFn!86edX+&H9)ltp00i_>zopr0A$cAr~m)} diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char1F.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char1F.png deleted file mode 100644 index b1384fb47d030be6b81384969a455e40662b2807..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4?3?zm2ODh8@i2$Dv*Z=?jFIcc(+qP|GWo2j2 zo_+fCX>xKhP;m9P_uqhO7)yfuf*Bm1-ADs+q&!_5Ln`JZdn7P48W^1HYJJS37RfWg b!iR|=#D{6|b diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char20.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char20.png deleted file mode 100644 index 8117a5ff5925c3719ea2607fc10d906bd4f35ab0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)L!VDz49!1&#Da8Pv5ZC|z|8Lv2&Ct*=IXPKb zS^4bQvt?yv3l=Qs>gsy>^eIr*Aus6|P%&dkkY6x^!?PP{K#rcLi(^Q|oaBTV7cU+- zFz@7n0|(fS@I2%(5OY6lq9FO~8c@K7@kFRM^ClJv35I3Y*iv^S@uUECGI+ZBxvX_E)L!VDz49!1&#Dd_;85ZC|z{~H<_K7IPMtgI|K zIr;3_vkMk1=<4bMieGX5ycVd8u_VYZn8D%MjWi%f+tbA{q+(8Tg1&zOL(>EXftL(Q wJPTO5ix`+Udk8W!3wyL&ykXJUD0+f{q38sQVq?9e4p19|r>mdKI;Vst09ofTo&W#< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char22.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char22.png deleted file mode 100644 index 2ce875e481a11a2a2317ee88ea978235c5769ffd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^>>xG^GmxDAJhKf*DF*n2xc>kDKQJ)x?Afym7A)xM z>T+;!NKQ^JD=XW!ZQIkQPl2+XK}fRZM82@eY12P8b`U=Y$dFVdQ&MBb@0GEwJ>xG^GmxDAJhKf*sRa0hxc>kDKQJ)R!NFm{f(2*K zo=r|pHZ(Ns>gw9IZChDc+0&;_fePkmH{S-TXDkWw3ubV5b|VeQaqx6;45^rtoRE+Z zao~Vuu^Z!rgVz{TEYuk~ITMr`8jo%+VPxJsk(rsbP0l+XkKsyjX? diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char24.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char24.png deleted file mode 100644 index d9f03565b84851cbb4617be1a02e700644b3d996..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)J!VDy1cJERKQW60^A+G=b|2H%=T(Drl)2C09 zlasr;y2{GRfP%8=Uj=|_7)yfuf*Bm1-ADs+^gLZ0Ln`JZCwO>sCnO{?Fa--FvM3#h wNt?hT!oYgt(vgN3F=hpC7L9{z4jf=$=xb+L5f?IP6;LOGr>mdKI;Vst0D{mkTmS$7 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char25.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char25.png deleted file mode 100644 index 938659f7d28aad0616bcc775387dfb3d636e7b00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)J!VDy1cJERKQqloFA+G=b|6j0RfuW&ca&q$1 zr%%tGJ=@jQRaRC86u%JWx)Z33u_VYZn8D%MjWi%f-_yl0q+(8Tg1&w-1JgAYfk+1B z2rh{mr%y{JG|Xf?5z4NWSjMnv%4uPV2o?zmhCO@Pn44y31p>7)c)I$ztaD0e0s#I6 BGMWGY diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char26.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char26.png deleted file mode 100644 index 7017fcbfe094f03d82a13c74699eaca4a2bf4b37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)J!VDy1cJERKQYryHA+G=b|2H%=3=9l(aBz6~ z^l5T(^4YUz7c5xN)zwv2R<>>1HlTu!RZZ4F^^7G!e!&b5&u*jvIrg3|jv*Cuk`p2< zH#aseZfI<56z-6`gTe~DWM4fmOek; diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char27.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char27.png deleted file mode 100644 index c7ba378d2da6be6837b29b0ef394411429a6e52a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)J!VDy1cJERKQgQ)4A+G=b|L^MRTCiY2U|`_c zvuBf&lecZ#_Vnq~va&Lu)XrUIr+_LMOM?7@862M7NCR@rJzX3_D&{0Vc#)CLz|_Yg zaFapxh9r|j#GGJmi5XKGALTe^^6})PIW!r1Xf`(9JbILIMN=aq!^ipT|4;O^tppmu N;OXk;vd$@?2>`LTJv;ya diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char28.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char28.png deleted file mode 100644 index 06b1e93abb9d725670a706fdc9ec27ea24845dad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)L!VDz49!1&#Dd_;85ZC|z|0^pi2L=Y7J$tsS ztZc!81zlZTPoF*oirc0(O97QJmIV0)GdMiEkp|>wd%8G=RLn_E(D3$7NGMHDNJwBz vVhd)I=r(0^nYE)qqm+%!%w1r0Ln9+Y{zsNpBetw9Ky3`3u6{1-oD!M_E)L!VDz49!1&#Dd_;85ZC|z|0^piKYjYNtgI|K zIr;3_vkMk1=<4bMic1De`wdjaSQ6wH%;50sMjDW#?&;zfQZXkvLEk@tp=knxz)J=t so`jYn2IkF$f+2HmUXWNZp|g>Zp_GZm{fhm6XP_1aPgg&ebxsLQ0CpfTQvd(} diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char2A.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char2A.png deleted file mode 100644 index f088756d279b0777466e81e3e70722c2c2d06201..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^>>xG^GmxDAJhKf*sRa0hxc>kD-@(BlFfcGVIk~K? zY{7yBhK7b+U0qL~K0SN(?6z&&fC^%n7gqq)GnNGT1v5B2yO9RuSa`ZPhE&W+PH13Q z$H~L>xG^GmxDAJhKf*sRa0hxc>kD-@(BlFfj1x)2C%+ zWrl`^$;rtJ7A)xM>NQGnNGT1v5B2yO9Ru7HEYxJ^ayDgR`1OrlRk_8~2B@3C M)78&qol`;+0GwquKL7v# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char2C.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char2C.png deleted file mode 100644 index 94851badfaaccae6af0d02c607a9e145e02e9e8f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)T!VDxG_jSz%QlbGqA+G=b|KGN4o1vj$a&mH6 zS=rgMXMrN|aVvHK6)=_r`2{mLJiCzwFS$q60_2^>I_m|&2aV3bh6 e!%+OtgOS0KhdI{!twtqKC4;A{pUXO@geCwrKr4d) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char2E.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char2E.png deleted file mode 100644 index 90bfbca1fe85f05089db663406d6db40299a1ea3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c0!VDzE#FgBDlth3}i0l9V|GT=nl9Q7cELd>% z?AgG;z^6~20tJuipGgL)VJr#q3ubV5b|VeQk@9qL45^rtoZyj=z@3;7mf#_jkRY6p bkifve|B^9n&&fYbKvfK$u6{1-oD!M<14b$+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char2F.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char2F.png deleted file mode 100644 index 2004cf96a400708f69b571f111f43c73093f86f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0ghq5(c3uK)l4@9OF@G&DSW_H0>M z+0&;_fg%R%CxG${j3q&S!3+-1ZlnP@@}4e^Ar*6y6H+-65)#7_5()(qIJiWCY|#XU aE=C5iON_r}Z4qPvY4mjUb6Mw<&;$Tm>$j-3?$8JydD54l>na**Z=?jJ2*H51_o~1w$0Gc zFgZE->C>lWWn~K%EI51iY*$woP{EOTtMY*A8B2ovf*Bm1-ADs+R6SiBLn`JZKS+9z zlaP?^kPe%&?H86O(`njxgN@xNAWcfBq diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char31.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char31.png deleted file mode 100644 index 55c542e3d571fd5a504130d764a4e7445ca54b79..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^96-#@!VDyjmkZ_sDY*cj5ZC|z{~H<_E?BU@!NDOp zIeFW*ZDnO;XV0GP>gobY-S#wW2C8H%3GxeOaCmkj4am{(ba4!+n3MeALBfiJgydvj w1|dNno*bRDl{`6JJUl!)Sq@GUdm9-UjHfbHr>M_M1nOb%boFyt=akR{0K}OvV*mgE diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char32.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char32.png deleted file mode 100644 index fa1ec0077e0ac16fd82b839a87d9ba17458ab95b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^>>$j-3?$8JydD54l>na**Z=?jJ2*H51_o~1w$0Gc zFgZE->C>lWWn~K%EI51iY*$woP{EOTtMY*A8B2ovf*Bm1-ADs+)ID7sLn`JZKS+9z zlaP?^k)DvCUuq6yr7~=aIn66ELyaM_*MWz@^#cog&lE|Z4h9BKS3j3^P6_!@pqvh%17*a7O`N5;4 z83zxXI~R7~z`0j3Y${>~1{=($PB+}J&Dg-eWRtN014GyoR-M#2GZ}%p7(8A5T-G@y GGywp>p*KDN diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char34.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char34.png deleted file mode 100644 index 51e5894df485ef2be0fab65c570416144e153a67..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^>>xG^GmxDAJhKf*sR#Ikxc>kD-_X$T>C>lyfq`9J zT@DTo3l=O;R#x7&ZCi43^4YUz%gV}tYJBwAHUYITmIV0)GdMiEkp|?LdAc};RLn_E zXkf@=W78AZSmY+oe3+}xNa5fH-G)TgZq9%lt$@ZhE{~gP6M|me<>QIr4CrMrR^Uu; TUb0{s&;$lgS3j3^P6>xG^GmxDAJhKf*sR#Ikxc>kD-_X!-!GZ-(pFTZ% z_N=n9a&mHVS65eHV4#D8!?tbP%F4=sY8Gxi6b016SQ6wH%;50sMjDV~=IP=XQZXkv zp@AXKU?YRao1BCMjqDo-4!qis$UI>?gGa%1#-nE>MIm?)vHe|6d#DC&C U@;Us93eW@wPgg&ebxsLQ0BuG;djJ3c diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char36.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char36.png deleted file mode 100644 index ea6acea9fe7345a77f442957988b52ceb1b3b85f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)T!VDxG_jSz%Qi=gSA+G=b|6j0R!PBQt&z?Q2 ztgPJC)s>u_92gk5ZQHi8vNE7-Jma@_K*fwDL4Lsu4$p3+0Xe#!E{-7;bCMGp82k(_ zGN_#5l8`tgq-L;ThL%r40tcg@Y@)+P7B)t#)qa`Gz8a{J!PC{xWt~$( F697xYHA(;g diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char37.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char37.png deleted file mode 100644 index 39c3f730232f0d265186c5ae83769200f58be0df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)T!VDxG_jSz%Qi=gSA+G=b|95b3c>45dS6A19 z1q+mwm6MZ`&z?QIZQHi8vNE8ouIp_tpkl_7AirP+hi5m^fE+zf7srr_ImrnP41R2E zd;)>f3>zC4HYu}s7_8^wzdRS kN7Yb;XvPz18th37MwU!pIqHKEaktF()}8Awh#ZiOnpGy)7YG kH91h>Hp7Xu1a>C|6%{74!|(Rj0o5{iy85}Sb4q9e0D4v|lK=n! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char3A.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char3A.png deleted file mode 100644 index e2741b87044c8a12bbc6a6a3c72c59c785c33378..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^AT~P-Gmt#obT9x&$p!d?xc>kDf7`ZgXV0EBG&C$L zD+>$^?CR=DPELOM^eIp(WarOFpi0J)AirP+hi5m^fE-Ov7srr_ImrnL2@e>O%G!7o xB3~svI)jTNN3TjaI5ajgG6d~se#Xnuycwv8!PC{xWt~$(698MDHlqLl diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char3B.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char3B.png deleted file mode 100644 index fd1b70a4bbb5bb32271c47130150aedbf35a1ffd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^AT~P-Gmt#obT9x&$p!d?xc>kDKRG#h+qP|ifq{mG zhGk`CPoF;R>gqas_AF3J_{ttFpi0J)AirP+hi5m^fE+DP7srr_ImrnL4-yy}H!-la yT?+^gR+#MBc(!+;smc|B6MpFoUB)U5h774USlQW{S6u|^V(@hJb6Mw<&;$SkDKRG$s(9qDq!C~9B zZDnO;XV0EpuwcQ{r%!=WXF68b097)U1o;IsI6S+N2IS~@x;TbZ%t=mo@E{{0AweVA zH$5T2ke910K_jIgQGk6@Xk$*>CWZwT%n72LoCO-z%nWvt%y+eFGX4WqGkCiCxvXYN!GZ-(pFTZ%_AF4=K8sTcsF<-N$S;_|;n|HeAVk~ r|5CO|X=yw>!E;<}6m&Wy0>l{N4zpIP=DDu|s%7wW^>bP0l+XkKn`AD) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char3F.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char3F.png deleted file mode 100644 index 05a6c7131896b3a3e863f734b297155d76307d2b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^96-#@!VDyjmkZ_sDd_;85ZC|z|8Lv2t*fgmIXO8n zF!1TqrwbM=C@U)iigP_*Cc9?(6KO>W2?;3)3=H%6*!$xI&IkZ?GI+ZBxvX>$j-3?$8JydD54l>na**Z=?jJ2*I;J$v@))29m- zED#eDD=RD8wryK-a&ll`U{_ZcP(fy9WEfCAV@Z%-FoVOh8)+cTo-U3d6?2j!EEmsh xY|K8WB`}dq#md=XjR>>C#+b&$g)=yq8J4W#=;NF++Y+dr!PC{xWt~$(69C1ZGjIR^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char43.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char43.png deleted file mode 100644 index 70b6c8ad068d224e2ee86ecdc2cdb91c7af80a0c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)P!VDyN%Csi{DU|@95ZC|z{~H<_E?BT2IXU_4 z*|S|;T~D7r4Gat{D=TwwaM-qO8&JXfg-H*A>KRLd{DK)Ap4~_Ta`Zi2978JRBquO1 zu9JMr%d?VKhmA*(TS7=;kxWC9gBWvjFvDRcHnq+Kh1o|N85#D(b7;s4Nqh%tW$<+M Kb6Mw<&;$UTIy5N& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char44.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char44.png deleted file mode 100644 index 19d93a3ab3ceb8b09be4c78a07a64f0f2ed76fac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^>>$j-3?$8JydD54=>VS)*Z=?j8yXrqI5;d=uwdJ^ zZDnO;fq{WtU0p!&85%*GfXWz4g8YIR9G=}s19Id%T^vIy<|J!)`z9tN=o^?b2)$v| iXxYu^Jad%+GehNFwwAB=91?&k89ZJ6T-G@yGywqEZ!3rZ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char45.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char45.png deleted file mode 100644 index 475e541e83de452f638047deb372b14bd9751758..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^>>$j-3?$8JydD54l>na**Z=?ji;0PyJ$tsStjxi| zAvrnu>C>l%hK5~TU4emt3l=N@DhLW=*8-|%ED7=pW^j0RBMrz=@^ogTe~DWM4fOein+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char46.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char46.png deleted file mode 100644 index 2692aa39330aa539295199b9577f3da9338760ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ;!VDyD?o+%6q!a^uLR|m<|G#b9HbXzopr0M!RI6aWAK diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char47.png deleted file mode 100644 index 2c7ea436ac1adf69dd3e013d4d902d55f603c3f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^96-#;!VDz;))vSDDU|@95ZC|z{~H<_E?BVO?Afzj zU0qL~K21(e4h#$|D=TwwaM-qO8&E;FS$q5XM z>m=WD@+k72;p92TEx{zQho>Rw9NXK;l07mJG7>YEgjpFF7)Tp1Fzm2qe_6J2R|!xz NgQu&X%Q~loCIHM#H^%?~ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char48.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char48.png deleted file mode 100644 index cf006fbe917ff2540c9221d375869b4f184dad08..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^96-#@!VDyjmkZ_sDY*cj5ZC|z|2sH1l$DhwCntAx zb#2?W?d;jJfq{Vw7AycteGHsl0946X666=m;PC858jvI7>EaktF()}gKU+UFp)jGa kLFlL(pT`}yjc$Pq<%`)2xGWy*0jgv0boFyt=akR{0NH9T!2kdN diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char49.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char49.png deleted file mode 100644 index 0bf581b682d65f88d590d1dad460167ce30f4244..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c8!VDzudVhQjq(lRJLR|m<|L@@7(ACwoZQHiM zz`z9y763(_sBLltDqt)L@(X5gcy=QV$Px5(aSW-Llgv?=mJsCN*m#IRn2~YW`*%MM Q10@+eUHx3vIVCg!0BIv9kN^Mx diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char4A.png deleted file mode 100644 index 02aeff02c53698b5b992e4df42fcae498e8934a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 130 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1c!VDx2-`C&(QW60^A+G=b|37>7Y*|@Za&mH4 zS65(Q;DQAUfP#W?$vr?dj3q&S!3+-1Zlr-Uc)B=-RLn_E;Py>OC`deTK+TVb=UgKX ZgW+#xspFw%{sYx8c)I$ztaD0e0szEeDjNU* diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char4B.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char4B.png deleted file mode 100644 index 16f2a938d173194dcb9c0fe95f9fe1273ce64eab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^96-#@!VDyjmkZ_sDU|@95ZC|z|Cg1OB_}6$b#*;` z`qaU}!O+m~?Af#1wrvXx3|z2a0Z>6;N!w4Ldd89FS$q|-| zby^y4F6d}%yy?W?k>$j-3?$8JydD54xd5LK*Z=?jD=RBII5=$Ew(aTD zr(IoLXV0Du3=CYbU;$8S-?oN(K$VOoL4Lsu4$p3+0Xfp1E{-7;bCNUklM@mWcpcPb i8d!>%ohN4{GBJ2uV0k3*?sP3s8H1;*pUXO@geCyrGA_jc diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char4D.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char4D.png deleted file mode 100644 index 69a3d1d7a082e370116e93298693d8cbb5943179..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^AT~P-Gmt#obT9x&sR#Ikxc>kDKQJ)x>C>lOU0r9- zo;5Ty+_r6-gM&j^Sy^&&va+)Bf&~kJYEDWgBl<=nx@+|Ih0bHbKuK8%x2T~e5o%rs$3QT7TACWhVnIiB4#-sKC_$KdJe K=d#Wzp$Py`PdPUL diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char4E.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char4E.png deleted file mode 100644 index 4db4658a91e906f8f7db8db2a9994e4007b3400f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^93afX3?$7I7w-U4>H$6>uK)l4S5{VDuwX%Qa&lK! z*V(gY4Gj$g0|TEveOgvl=HTG4ZQC}Wnqn>27N8c!k|4ie28U-i(tsQ-PZ!6KiaE(Q zOq=&MH0n;OW@dgKlCN-Zr?AHcD`rl%rMx^{jAx`J92gib-{knAtm>-;)WzWG>gTe~ HDWM4fW*If` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char4F.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char4F.png deleted file mode 100644 index 98f0e30a9e9d4fe54fdbcc7a73f5282129e45eeb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^96-#;!VDz;))vSDDa8Pv5ZC|z{~H<_E?BUjtE=nm z*|SfdK21(eE-Nc@aB$eRZ5vSb6Gs{^P%&dkkY6x^!?PP{K#qZ@i(^Q|oa6)s#&h3# z7}(O8zcI0Svp-W{Tg;G_CeS@IaT4QhM&`*A9FVdQ I&MBb@0Gt6d`Tzg` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char50.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char50.png deleted file mode 100644 index 883fe8b062962dfccd452066129c14b90fa890a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ;!VDyD?o+%6q$C1-LR|m<|9|%ESqBG)ZQHh$ zm6Zhs26lCI0R?3r>3IRwFqQ=Q1v5B2yO9RuNPD_ChE&W+_Tc4AOYrt!d}P9AW-yzv cCs>S$TMR);hH2%uQmrkj~+vpm=Q! PP(OpGtDnm{r-UW|-ZVB| diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char52.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char52.png deleted file mode 100644 index b150851cc1900396e9f383c2787801c1b494a678..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^96-#@!VDyjmkZ_sDU|@95ZC|z|37{D)X>l{IXU_4 z*|XcWZR_gla&T}cD=P~O3|z2a0Z@U4+3Xgedd89FS$q|-| zyBZsH6|XXSEMYO&Ai0`xr(~zXMn1N-r>X~88M@A}-%dKqD+$!W;OXk;vd$@?2>?_a BH6Q>0 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char53.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char53.png deleted file mode 100644 index 3d962c8cf9563d8b6b3a78ae10d4e6fd10f7b3b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!VDxIZ*f=$q*MZYLR|m<|DT+kykNnCr%#`5 z+qSK&tjxi|AuuqotEqW&o@H9RJltYch9U;-1|6DQ1_lxa3=D0lY}dAXTDAeTF?hQAxvX>$j-3?$8JydD54xd5LK*Z=?jpFMka+qP|8U0n+n zEHE@Q3=9l(aBxUYP6kS~SDU;Bs$?t)@(X5gcy=QV$dU1MaSW-Llbmthqcp+8K*%H^ i!9Xa%L0v*yN`fJlg(Wk0+r%88ItEWyKbLh*2~7ZmBr9Y9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char55.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char55.png deleted file mode 100644 index 47992f93bab4d34d1de350b0b4d6b2425b1d8442..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^93afX3?$7I7w-U4(g8jpuK)l4cW`ic`t<3xZQB+s zSaA02*}%ZSuC6Yi_)D*Q(LiO4B|(0{3=Yq3qyaffo-U3d6?2j`yi>gs67&-c8HCQP mVA;*Y++AVG%*?!+iJ75JhSkBSMjv*Cul4k@Si##yl z;sMD62a=ARJa8aO@Zf<14;C`0v^cU-P3 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char57.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char57.png deleted file mode 100644 index 18f85f46a3ee35d758242b0e3e2903505e76401e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^AT|dJGmtd8QrrrpR04cLT>t<7Z)j-v^y$+D3l?nK zw(acMvt?yv4h{~<$;n+^U4emtKm{hJGam!hGnNGT1v5B2yO9Ru7<;-nhE&W+j<^|c zZ9|u0O4G}hr93&DdBS1_1yW0Wy%G{O8JLD7B+NKE;oyM-2ErVQ3=FBaxU2nMpI;8t O&fw|l=d#Wzp$PyEHa%4U diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char58.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char58.png deleted file mode 100644 index b81de078a1a5bba339280035f0547f816563f1b6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^96-#@!VDyjmkZ_sDfIxK5ZC|z|2sH1Jbn69OiXOS zf(6^QZ8J19EGsKJd-iN#U|@1`a#vRuP>n%!|5~6H#*!evUFVdQ&MBb@0Ej?300000 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char5A.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char5A.png deleted file mode 100644 index 3a102d2d066a26370eb78247f814272b5d2c86a2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^>>$j-3?$8JydD54l>na**Z=?jKYjXCSy|b^!C}FI z1zlZTfq{W#Wo609$%cl8XV0DmDwtSd8v#_$SQ6wH%;50sMjDW#<>}%WQZXkv;^w?# z2Lz7pYiVpu^kkf%5qaRiflYG~8JV*gx|yAKXHH^ZnB2>LO=isjbD%B;Pgg&ebxsLQ E01-Ji+5i9m diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char5B.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char5B.png deleted file mode 100644 index ac894f70f92cf6d2052297e0717d6638dc3d1a54..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^B0$W-!VDy93YnGyDTx4|5ZC|z|95qD1qKEtCnqmh zu%N80Y}>YNK*5>GCv|~p7)yfuf*Bm1-ADs+6g*uVLn`JZConK=GhpLLFbwhuHDWe& hIp~zLP>F|wfx+Shlm7|3mIk0&22WQ%mvv4FO#rg6DWm`Z diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char5C.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char5C.png deleted file mode 100644 index 16b4db1ab48d824754ed234aa8b8814bec1a4664..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^l0eMD!VDxk`#VK}lw5#Mi0l9V|IeO1+tt+-7#NtG zoc#3Z(*+9_l$Dij+qMlTl^rhD2vo^f666=m;PC858jz#z>EaktF()~Jfw6BB1Di&I vuc291u~{I?#+z5Vr4BSXJ@qPJ6<}bPuE=s#IjM9uPz!^ntDnm{r-UW|R`W8v diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char5D.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char5D.png deleted file mode 100644 index 13a993276a36dcae94ea65d3424edbfb87a692ba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^!a&T-!VDyvS7@dHDd_;85ZC|z|1VguAUQd?tE;Q5 ztnBRBv)i_9d;0V#Q2g-@wL+jW#*!evU+LETTu(>Z_*gdJ+l9`#oJ&DCGIUpCLgTd3)&t;ucLK6U#?=Ttw diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char5E.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char5E.png deleted file mode 100644 index 15554a3d5a0084293be6725bbe746fcfc71231ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^59%d#7A#m0 z7#NtGoLp8`*45Q@_Uu`p6gT@3bD&Dbk|4ie28U-i(tsRwPZ!6KiaE&%4>Y{JOVb#b wwz{xwPEk1fW?js*YX=S}FbJhQxWF)xp~!}1o9cun6QC9bPgg&ebxsLQ0O7tf8S{Sy@?E zR~L|56uRmYP?oVI$S;_|;n|HeAVYNK=Jufc7;G?j3q&S!3+-1ZlnP@YMw5RAr*6y6BwE{8L%rz@*K(G s@o~_}I&f^lfq-)gabgD!#2jH@uy$mA6goXD52%B|)78&qol`;+03Y8okN^Mx diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char66.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char66.png deleted file mode 100644 index cd4e0d9623bf172a695ff60fa655bc73ec73fe82..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)H!VDyjYyB_C>k`Wl{?aE&z2gmIV0)GdMiEkp|@Gdb&7< zRLn_!keHBg!*p}w!kTCX=IdGPZAWdacrHuGNSu*mk?@oAPe_P3%)qc<5y!J{2ac5j PH8Oa*`njxgN@xNAl;=7( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char68.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char68.png deleted file mode 100644 index 99829d94166c817a51a017443d95b2f392afa579..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^96-#{*~}@0aVkK*fwDL4Lsu4$p3Ybjo_VIEGZrNuF`>;>B|e oY&jEo-te6B;e5#>EWyLe;Bb&-vbXZtQ$U3bp00i_>zopr0GX&WX8-^I diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char69.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char69.png deleted file mode 100644 index 86d9e78284d1e1b230ea431a66f2acda047c8039..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^96-#;!VDz;))vSDDY*cj5ZC|z|8Lv2Ejc;a(9jSl z*45SZ^y$;HXU{HJumC8~v@%qXDFP{<%)&9IS?`Lqu!o0}vfLpckpI{TruVn7`Xp00i_ I>zopr0CLtabpQYW diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char6B.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char6B.png deleted file mode 100644 index f120ec21fd516a7c414bf97e6ca43e3b51741456..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)P!VDyN%Csi{Da8Pv5ZC|z|8Lv2&Ct-$!NDOp zITC>}k&n{T704U4iqPGbs%2*QQ7tG-B>_!@pqvYx07*a7OdB(+y=MGGe rlDc&O2o5nQ&v0ZBZqi^7>fvE%UCX?a`NotJK-CPMu6{1-oD!M>$j-3?$8JydD54xd5LK*Z=?jv#_uzD=R;J`n0U9 z?CjaI$;ruGU0vI@Z39Z_^siX}RLNKpsd}PO=48o#K_=vkEMp;@IP&!at2RVKbLh*2~7aQu`eV5 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char6D.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char6D.png deleted file mode 100644 index c47e2fa47b756c082883d91ed93f245e8e93df2c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^>>$j-3?$8JydD54i2$Dv*Z=?jJ2*H1c~74{O-@c; zuwcQqZQFo?lDZ|CKvBk$AirP+hi5m^fE;;G7srr_Imrph3`}9>0-4WF9XPP&fEGjI fMkYgM4>1M>RmKb923OdCN*O#|{an^LB{Ts5ejO?I diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char6E.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char6E.png deleted file mode 100644 index 3f1cdb2da20aa542c8cd3814387c13ea42649207..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 129 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)Q!VDytR2mdKI;Vst00|%}J^%m! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char6F.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char6F.png deleted file mode 100644 index 586ade5adbc3e543e35520e7145260707c20b135..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)Q!VDyFVdQ&MBb@0K~Q|8~^|S diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char70.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char70.png deleted file mode 100644 index e613fef78f592f80bc48b55fc2b730346dddfd58..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^OhC-W#0(^-crITEq<8{+LR|m<|KHWs_4MgeAY;*q zk6VD^j3q&S!3+-1ZlnP@e4Z|jAr*6y0}^I1wDK_UygTe~DWM4f DqYol$ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char71.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char71.png deleted file mode 100644 index fce496bf84605118a3009f1d6c84f641d06435a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c0!VDzE#FgBD6n}tEi0l9V|GT=n%F4=~K79&g z&$H{U1xhiN1o;IsI6S+N2IL5Ox;TbZ%tFVdQ I&MBb@0H={4b^rhX diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char72.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char72.png deleted file mode 100644 index b116e5a66aaa2a9ae47ef688d2d77d5f999f4f3a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)M!VDz;D$H~RQqloFA+G=b|37>7Y;tmPSy|b( zZQB+sSkTqg_4Mgeptu~*_1{2cj3q&S!3+-1ZlnP@;+`&!Ar*6y6Ve%&wlN62djJ3c diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char73.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char73.png deleted file mode 100644 index 612413fe92f24844a224ba3e4e75afe646fb1759..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^96-#>!VDy1o&{F}Da8Pv5ZC|z{~H<_1_lP6J$tsR zt82l61y7$o-L`F;gM&kIaxzf%xvAMXpkl_7AirP+hi5m^fE;m87srr_Imr)l(mj$n hHqKafEaAWd37|M1GlMW^)e@i*22WQ%mvv4FO#tB$E|>rS diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char74.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char74.png deleted file mode 100644 index 3907a50321cfd9a3defb9d2c1360895c9086d826..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^96-#mb8v82uwcQ{ zr%$`Oy3U?Go1C1itgLKkXb6W|=lytD+yMlfl!~&t;ucLK6VHTrvFs diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char75.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char75.png deleted file mode 100644 index 660aeea10cb60cb69393f2b4578ef51e8fdb257d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^96-#@!VDyjmkZ_sDa8Pv5ZC|z|Cg1OEm*K1IXQXT zwryw6o_+fCX;)X5gM&k0U?5QT*Yd@WfQlJQg8YIR9G=}s19G%IT^vIy<|IGJN%u(A zNY0#h;DE}pW5*uIX{H^Ua6mxjz=3JgrX3K7i;H7pD1E`+e9u)Y8>o%J)78&qol`;+ E04mHpBme*a diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char76.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char76.png deleted file mode 100644 index 9808bde9a8d7e146817efd350125b9653b2069b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^96-#?!VDxgY`rK3q!a^uLR|m<|L@@75EvM^ZQHg5 z3l?;Bb(NKsB_}7JJ$v@))2BdL1Ced(fQlJQg8YIR9G=}s19D6}T^vIy<|NNJ$iVVO zp=q_XLd3kV)Zs)Hz+WgA<3FzWMUv8Y2Xtw>%zeY2NpyyFdSy)sQbn>p#i9$ N!PC{xWt~$(698shJ6-?) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char77.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char77.png deleted file mode 100644 index 2760b2312f9103d33a019b6e2c7fdeea782e32ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^96-#?!VDxgY`rK3q!a^uLR|m<|L@@7aQ5ukz`($# zPoI{Rm34J>Em*K1IXQXTwrxP!RpJW*fQlJQg8YIR9G=}s19HqgT^vIy<|HR1B+Otq z!o$lmCv_nY&z#H7k_s^!Skjr8xes4C$*IW0#WPvmz(UGe!%)OP!i<68jx1-cP7F85 Oat2RVKbLh*2~7Y}f;GAT diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char78.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char78.png deleted file mode 100644 index 433ac78c62bb284963e4f1ef47a830f5d1bb5948..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^AT}!tGmz}_N{9wh(g8jpuK)l4@9OFb3=CYbV8OO+ z+me%$pFVwBR#pZSe;C$R4^+lj666=m;PC858jz#r>EaktF()}8K|>!%c%&wjCnRtH nc?kw#i3uJl3FZk22`mg2rOaN8rq(BcIv6}%{an^LB{Ts5A>%I( diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char79.png deleted file mode 100644 index 431aa1cb0658c0cfa287936bf7810fde6c06ca21..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^AT}!tGmz}_N{9wh(g8jpuK)l44-5?K>gqas_H1%; z@`42m%F4=~K79%lmpEaktF()}e!#g=4A;CAHAT1#Q m$VyBINKfG4N%dghWMa@)XI6YKu9yN;&*16m=d#Wzp$Pzjd@T+D diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char7A.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char7A.png deleted file mode 100644 index 4b2c20f1a3b4bae965eabb2947e902043b6cf29a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^93afX3?$7I7w-U4>H$6>uK)l44-5=kuwcQ{r%#iU zlMM|G9UL6W%F1|nc+Q?ZyKUPx78VwunuPZ0+kjdaOM?7@862M7NCR?IJzX3_D&{07 zFf_*+s~Z%UF-X4QbZEMo&BV;SopFLGv&u@2BMiA5EX&0tmK6XsFnGH9xvXDjYqlarGdELgB@+cu!=xz(FMrZAQS`2{mLJiCzw&C;g=8>?3gqr#a7J~)`hNvi3gYsnE8$i_zp00i_>zopr0OF7>xBvhE diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char7C.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char7C.png deleted file mode 100644 index 7bcdcf8562d7b09a7f4c2325d44f0babc5e6f2ef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ;!VDyD?o+%6q!a^uLR|m<|9|%ESwlm^ZQHh$ zm6bU-I6Qs&G%zr*tE($HITTkHjfoQAXd>tozrN{)-2yWbkzLb6Mw<&;$T#@iM#s diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/70/char7D.png b/sagenb/data/jsmath/fonts/msbm10/plain/70/char7D.png deleted file mode 100644 index db141ab3acf4b85388638618f2235b51b97dbcf2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJx!VDxeUQFf&QYryHA+G=b|95b3NKQ^JD=P~O z3_N@G?1BXg3=IvRK7FdJth{a8HlTt^vuI7Add89FS$q!~- zIB+0T?7)Gfs|OCu3pjA#+`|I`hqg>P*i*>LEWp5!R?WIn`Os2fpcV#CS3j3^P6n3=DCNtkW4MPWlMc!rxM%f&~kd zm6glN%C>FWcJ}Pqz`($+t}dYLQPm~BK*fwDL4Lsu4$p3+0XbHlE{-7;bCMGp8YNj3 zlo&l+8X|Or4=fU6OVDCIbeiEL3xnb0Nt1;-)-oJfvvA!)CZ3+A-X;ZAhd_qf=bWOF Tp($oSQy4s5{an^LB{Ts5={Gsa diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char01.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char01.png deleted file mode 100644 index 5a62275bf3c79eec4341d3b774c73bf3ef08a334..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQi=gSA+G=b|5sL4?&|8=wryKr zV4#?o*x9pZpFVwBR#ujroD7tep5t=}sF<-N$S;_|;n|HeAjjI%#WAE}PI3YR^Eozy zP)k`SU*_PIoDNE?D#=Vr5h4m%jydOMPBM1fB-}7#vGbzE4UK#6?3GdB7GY(WKZRS% TFFx)g&=>|!S3j3^P6gsZE zaCrLksiC1^a&q$7vuDf7$^ruew{6?DV8H^QGWQ1lZ$Mp)B|(0{3=Yq3qyafjo-U3d z6?2jk5)vLHGBjRJC`x6XkZ_(s=%IH5OSq=>geP$}%qqthaw_fg*J1ZG*uchcwSncv l(o?4!cZoIJSflWkVNM&DPw<}wCxE6gc)I$ztaD0e0sz<*L(~8O diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char03.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char03.png deleted file mode 100644 index bd2387c1ccfb5ca57111b739487bf84d462e480d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQtAOdA+G=b|5sL4c5rYI6BFy| z>NFWwqU^mpqf`RRTcoXFqQ=Q1v5B2yO9RuxOloahE&W+ zPDn_2kjBs$%fmB=mxt9MtZD_bN5Us2fs^m9FsLk_(r~4dfpgj>UWZ9jW!Eg{b=lCl kd?~9zL#a^#gCq~bVk^$smd{yN0?lLaboFyt=akR{0Hv`&@c;k- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char04.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char04.png deleted file mode 100644 index 7fdc74f28a4f588c9fa447af7d2e1fcc43394f13..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRO!VDyxin=BMDa8Pv5ZC|z|37{DbislJ4h{~6 zhK6NjWoOTx4GawI>gw9IZ5vSb^Ay{?K*fwDL4Lsu4$p3+0Xb%#E{-7;bCMGh5+0;5 zH2N7t&SX%Dux(&*=j;f*$*IQeP;|ykVba`{93E|k1x%q$t&*$_EDZOY*`&_J#?Je{w#8&E+;&5pZ3^^7G!e!&b5&u*jvIo6&ojv*Cuk`odV z9wad|M)L5?;o;%s;dzrghr6NXTNwL<4=JhwSDBP^6r==&*7zR&QKbLh*2~7a@EIUL1 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char06.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char06.png deleted file mode 100644 index 83695b68e8a01cb42d3f8285d3eafb0e221e5015..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRO!VDyxin=BMDfIxK5ZC|z|BH!e{w#8&JVl)!*Gf^^7G!e!&b5&u*jvIo6&ojv*Cuk`odV z9wad|Mkcs1Gc&U@KWAcN`^LgIA)~`}DigDFi^PPKa&88$f`-qw|G1Gw%@s{hXlM*8i9XODavy3Mxn!&JoYQ;`w=I*WC+!L6E aSQtKsa6h?JDDwem4uhwwpUXO@geCx)A3o3k diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char09.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char09.png deleted file mode 100644 index 74c0ad49dfc384888040647f8f0714e87e42434b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQtAOdA+G=b|2H%=bZ~G`R#xun z>e{w#TVPgsZE zaCrLksiC1^a&q$7vuDf7$^ruew{6?DV8H^QGWQ1lZ$Mp)B|(0{3=Yq3qyaf@o-U3d z6?2jk5)vLHGBjRJC`x6XkZ_(s=%IH5OSq=>geP$}%qqtha!y)pxlzW0RWFq{A)(_* p3}cFa>I0TnQ4B$cxGwQAoPEpvY4?VYen1l$JYD@<);T3K0RYrLM5q7& diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char0B.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char0B.png deleted file mode 100644 index 092a7330af470971e1922a78d8e1ac1a1486d92b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQd$8%A+G=b|2H%=R904YaBvV4 z6YJ{gI(znPa&mHDVBpiIPs_^6wr$(CV8H^QvRTuQz6R=IED7=pW^j0RBMr!L^>lFz zshE?TkdW{ok)iQ24^ND+gjBzSD+9`!?~ZH%DrPJR@(X5gcy=QV$T9YGaSW-Llbn!{@F0gl zP}D)ml*eO3GY8wWB!QC$0y!5d9TbUXnvlShbgkfHzydu#1$l-oo~%;?oV5Ia+8I1u L{an^LB{Ts5*2FeU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char0D.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char0D.png deleted file mode 100644 index d229f083b096e86cda6ae50ef0d6fda9bcd513ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRY!VDzi%Xeu2DU|@95ZC|z|0^piFIcc(+qP{E z4h~&iU1eouXV0Du3=Dkw^l5T(GEhPJjjh2z^^7G!e!&b5&u*jvImVtYjv*Cuk{`@E zz`!y`o6AAOnXQG3k<(~9Bj>U(g@dKRLd{DK)Ap4~_Ta$G%K978JRBqt;! zJV;__oSLx7meFHFs~Cf4UjQ51H4gCw4AnDRnLIWvWb!D`doYV(N=gF5Dov(NBTo%Y hMp4s-8*dceGBkhSOnw~rI1p$cgQu&X%Q~loCIFO*qEF#^%S?$Hd0AE_02-#gOL+0%qaBwIq zD^pfhHZ(L03=CYbV8PR;Pm`0Aw{6>Y_Uu`pvZXWTD*$ydmIV0)GdMiEkp|>Ac)B=- zRLn_ENJw~alR-sdhZ+OtIZ+3#JzX3_ zD&{0VNMvBlGdO9=?DKJoKX*dHhiyzoH>CtNIs9ah=#M_x`jEldxS8WKV;ftVw5f_K a4-bR9FuP>xzO)daAq<|belF{r5}E*83Ol3# diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char12.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char12.png deleted file mode 100644 index a29a24bbe202f7f3237a73087add208e9c5f9336..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQYryHA+G=b{}&SzTd-ikwr$(G zy1EPv4a>^P0s{ljo;{nKoc#3ZQ=o#kGw){u)iag^`2{mLJiCzw diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char15.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char15.png deleted file mode 100644 index 9d1576dbebf4e77ecefb90d271be275fe493edc0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^oIotZ!VDy<*S)L;QYryHA+G=b|5sL4-nMOTx3ii{_?)<-Z1ahznBm~)obVUwiFA~mi@{tTLl39OtO#FtHHPQ7`cO($}z pRzstyvWdtEM(u|)7`8Jq?ElOAWY+nGIY4t6JYD@<);T3K0RTZ5L)`!X diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char16.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char16.png deleted file mode 100644 index a6b28ff92c62e751f0d8721b4feeb97e2b2e07c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQd$8%A+G=b|2H%=EGsK>aB$$^ z;ZasrPEJlfd-iNsSJ%_0PXhx37c5w?ZQC}WvW-f2zXEkJmIV0)GdMiEkp|@0c)B=- zRLn_EXkeVjt1yY%gTe~DWM4fh*Lni diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char17.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char17.png deleted file mode 100644 index 2c2b64222872dcdcd54a5d07faf9637e7c60fa2d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQn~>?A+G=b|2H%=+_r6-va)hl zS65(Qpo4>hn3xz356^-H3(lTBTUJ)~^y$;&gX57|u@PYfN3B7zH$k!PC{xWt~$(698WaKc4^q diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char18.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char18.png deleted file mode 100644 index 023a4f76055c4ab3e99e8dd8763d98f029e8e8b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQYryHA+G=b|37>7Y+zuZp`l?} zSy^&&a#vTEgM-7KRLd{DK)Ap4~_Ta@;&!978JRBqua5 zuH#hLBzq!4OzOaa1D2;v8yK~iSmtmioa%{UQ8VZ$k}9?|@JT4pOif5I4NHhPV9>oZ iBa^9_L3^<}GsCP9?*6$ERx&^n89ZJ6T-G@yGywqDRzHOR diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char19.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char19.png deleted file mode 100644 index 59214c048112f104a461d38edaa3444b938b9c54..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQYryHA+G=b|95b3ID7W2p`qc^ zr%x9wSdg5Y+||{!ZQHi8va-OyK%j!0D;ocR>KRLd{DK)Ap4~_Ta$G%K978JRBquO1 z>lvK9$*^qIC1+U)iL|9<1_m1%U2jMTG+aFuys*)+_wbBTCTHfuK86d{d}L~4XbbaO ixq*p|)oht04@3T2u7h)PU#|fg$l&Sf=d#Wzp$Py#VMD6` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char1A.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char1A.png deleted file mode 100644 index 46fd10fffa905d9d70244f408e246cc7232f1546..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 195 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRa!VDyjJo{k>q*MZYLR|m<|L@@7U}$J~_UzfN zuC4_O7L=8hZQHgjFfcGVIr-_+r$7ZNtBq*MZYLR|m<|L@@7U}$Lg^y$;& zI|R~!>KRLd{DK)Ap4~_Tay&g<978JRBquO1 zuaivZs+F3NRBFgDNhY{KMcSh!Rm(**n>nC!nW{6hGskM7-%JX7y;w9>s~iY8aN*p# m$VmqT4xHS@l)@*#%&@qP>(~~9>oPz?89ZJ6T-G@yGywqojY6sb diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char1C.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char1C.png deleted file mode 100644 index 4b1c2f432d0db5a7d9fa633e863c7fd429d5c5a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!VDxIzg+nZNT~<-gt-3y|NrdSv&qTHhK7d9 z%F2O(fns7}3l=OWD=XW!ZQIkQPrJIhfNE5x?_dRLVJr#q3ubV5b|VeQ(eiY045^rt zoRE-kU#S0DNsTDR>o^U^^7G!e!&b5&u*jvIaZ!7jv*Cuk`odV zB2FGS5IFCGL8Ic7gL{=46B(J0r!3Go9HLBs34Ld$$VGC4PFJyb({`N3{hcR VHG)lI6M?2Mc)I$ztaD0e0syFhJVpQj diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char1E.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char1E.png deleted file mode 100644 index 9dbf3b2e93603bc398d56aff8c362f179bda3290..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^+(693!VDzc+N0J2DTx4|5ZC|z|8Lv2Ejc;)?Afz{ zfq@PV4o{yx1qyEM*X9SRVJr#q3ubV5b|VeQQT23j45^rtoWRh?VsMg6P4dnG6>lcB nV@SoE(fB?giRZ-dvD#wK$vnVWOIC4fFVdQ&MBb@03CNb5dZ)H diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char21.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char21.png deleted file mode 100644 index 0e99be10ae156249b2de05088c2c3b7f80104e08..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRY!VDzi%Xeu2DU|@95ZC|z|2sH17#bP|1_mxz zuwdJ^ZBL&*?ds|(D=RyD_H1%;GEl*{hhJ9!)iag^`2{mLJiCzwbP0l+XkKxX3*{ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char22.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char22.png deleted file mode 100644 index ccfa7adda51b4941aa521a42dc3932ab5aed5d1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQtAOdA+G=b|2H%=6cZEMwryKk zS=rO4PZum$aQ5t32M341z`(AquH@uopqkAUn^}Qc7)yfuf*Bm1-ADs+JUv|;Ln`JZ zCnO|1V0$!mw>6i<4j~D%h8=4XCRsN$HVSh{O570J!R*QA{q`=agCEm`lQ|hVG6xR4 p;Z>4UYf!OVTF#sr*$~6Vz`U8KV&Vt)%RoaJJYD@<);T3K0RTVRLt6j< diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char23.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char23.png deleted file mode 100644 index 5998b838f132550a9b089d8146d1efd515699e25..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQYryHA+G=b|2H%=+_r6-va<4m z1q;reJ=@jQ_4Mh}z`($=va;mlWT1j&u0{KS>KRLd{DK)Ap4~_Tay&d;978JRBqt;! zJV;7-5VLjFWJVS%2bSNP7$y{~WS;Qk0n5hV#SMQ#!-N}r#3pD=UNk9)k@>QYz{v{? mmkuj#%?f2;R-bU1f#L2%?!U1s1ml2aGI+ZBxvXq|^g^LR|m<|8Hn$C?+Q6;NZ~J z)phpl+2rKp1q&7g1_nNT`n0U9Y}>YNKs8I4Kh6VcVJr#q3ubV5b|VeQvG;Uw45^rt zobVuSYZeo;^Y1e=d3bUh*e0YnOpr;Kv{}?=r` f*I3tVV(4I0h~sAOyS^#}XcU8|tDnm{r-UW|sjWh` diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char25.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char25.png deleted file mode 100644 index f4e50a189e6ace712f19e0b61c13a350b55c5d57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRa!VDyjJo{k>q|^g^LR|m<|8Hn$c=qgBF)=X* z2Z!Y3^xl@Ln`JZ zKe)HIn~@{!+zN(3o;L}Tlo=hHTrCbuNJKaz^<+?pqljof9C?VFqQ=Q1v5B2yO9Ru*m=4*hE&W+ zPH1R|HBL7(C=hR$F^7j^61UGL^@g1jjps@?h+Jl2W4m_YK@h9LPMr`&jZF+o>Xc5f ewB;!XGc4)getBWq&22!F7(8A5T-G@yGywo}lt3>4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char27.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char27.png deleted file mode 100644 index a5427bfbff42a8c9625a09f6fe705a1d2c1887c5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQi=gSA+G=b|2H%=+_r6-va<5o zvuC@yx&i|OpFVw>oSa-%RtA){;xUf`DrPJR@(X5gcy=QV$Z_;^aSW-Llbpc7e6FvL z&0sN)&nBw|k7*1WL^^B_Ha9jdKAXfe;bb6#$_$aIQ@A8%1UafWGkHkPc5!cKW>)Xu ZWGE2jOf1|{_ylMegQu&X%Q~loCIH6|I+p+d diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char28.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char28.png deleted file mode 100644 index 04291d1dd5f4651be2f8809a4303fba802c1ede9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRY!VDzi%Xeu2DY*cj5ZC|z|0^picXf3wSg_#f z)2D%ffoIR2O-@cOD=Py^{jxs%6sVH1B*-tA!Qt7BG$2Rc)5S5QVoq|x0}XxugaqzH z2Bt89g9rM2tQuB!Z81?enY4uE(IzI&WkG=p^fs6H* zwrx+JKJDu2Dl02Hd-iN{axzes_1vz0pkl_7AirP+hi5m^fE*J~7srr_Imr*^SZ;1) zWI1&}C7q!o#gJj*89s$cosEr)7e_Lm@HI|s;4&!i6Pm@jP5(LkIXo651!NRk(D3aml%*CL$i2bb^c$5;ib!8gx#X i&Te4PpgOaWhmAqYntjI8EO&LFfefCmelF{r5}E+O$wX=Z diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char2B.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char2B.png deleted file mode 100644 index 66acbf713ea39a808d9cd259ab3b81db2b3cb16b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQtAOdA+G=b|5sL44h#$|D=T~Y z^l4XDm!YBI*|TRI92}C9lecZ#wqU^mpqk!gf(Ae>j3q&S!3+-1ZlnP@E}kxqAr*6y z6A}_0q%kzc^6<}E42US0nKCZboFyt=akR{0RMeLiU0rr diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char2C.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char2C.png deleted file mode 100644 index e30a5f213acf45f8cc143d90bda6086cca75c0ab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^96-#&!VDzWZg{v3NJ#|vgt-3y|NrdSvtnXm4h{~< z$;nTjJ}oON0}6I!bpu};) r%Y<3zWD*b0npF;*Y2hKI4!I1!qBzu7ExEG|sENVT)z4*}Q$iB})&?&e diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char2D.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char2D.png deleted file mode 100644 index 4728c7a91c4612841bb4948d959a0b867450aef7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1e!VDxM{IcYLlyrbki0l9V{~a700s{ljo;|Cq zth{a8wx>^@CMPEY#echcIsuh2mIV0)GdMiEkp|?*dAc};RLn_E&`3yVc)-He_KAUw iEuD=`jd6wq8yiDM9c%8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char2E.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char2E.png deleted file mode 100644 index 06abd931bed0a2aa6043e42c2d5f75a1f4274025..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c8!VDzudVhQjq$C1-LR|m<|Nr#q)4;&MZQHhq ziHUV}btNY!0|j$lvx1Z|mIV0)GdMiEkp|>QdAc};RLn_EU}y?qV@qcxi%xV rbLRxu%oa1T9dBb&*x%6DdXSO9ejCf5P#xzDK*bE6u6{1-oD!MgvUpIgB^^E;5i$i~KYj7j0*u7*ZNhOKirES~OH%m(UZ N@O1TaS?83{1OSd9I79#d diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char31.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char31.png deleted file mode 100644 index 7816622b391f200c902f227fc619923612ead5f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4?3?zm2ODh8@l>na**Z=?jJ2*H51_mlCD~pMV zm6eq(Sg;^DIk~H=>+IRHPoF*oDloSAZw*w>SQ6wH%;50sMjDV~VaBSqx S-}42ipTX1B&t;ucLK6TAHA2P! diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char33.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char33.png deleted file mode 100644 index 2ff38b26af3fff59849297e6c9cd3911eb784765..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4?3?zm2ODh8@tpJ}8*Z=?jJ2*IO+qTWn&`?ZF zEHE%oSy{QPtZc!81Lx!8Xd!~p;>`-cHPA_KbP0l+XkKfto$? diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char35.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char35.png deleted file mode 100644 index 0a460f68fb28596850fd53bf53d16b80396ce0b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQtAOdA+G=b|6j0RfuW(Hn3z~s zSC@l>!?tbP%F42c_&`cE(}V{cg$W4}mQ!yxHYQ*5QaE`nh*d>$$Jv8R%GoD8NqG>(5W;ck n&`PV~XKZY3Y#Ztr71$WWAMiN+i#K!w8p+`4>gTe~DWM4fiP%NC diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char36.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char36.png deleted file mode 100644 index ba8c80671232ddeaffad5865645bba6718a6da95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRO!VDyxin=BMDU|@95ZC|z|1Vguz|hdJtgNi7 ztINT`;q2M7+qP{>PEHOC41D_ZDNw;V=93aY^^7G!e!&b5&u*jvIaZ!7jv*Cuk`odV zB91aJ2|KWaS2Im`(o+Bw;7lz}NSODIO--G_lg+Qx;G_k!$1;Nr>JDEGL>LSieAGEr Uea^B!1)9R(>FVdQ&MBb@0DR6l>Hq)$ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char37.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char37.png deleted file mode 100644 index d58edf7b10bb7d82b2e163e8e93001a1f63fe76e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRO!VDyxin=BMDU|@95ZC|z|1VguVB5BB%F4=T z&z>zSD|2vgNKQ`f>goy%41D_ZDNw-`{*Q`4^^7G!e!&b5&u*jvIkuiIjv*Cuk`odV zB91aJ2}?*=NbKN}khrmIlRi)^eI}2RWYZ~ehLe#BlP=0=95Rz!GUG7wn&k{WS`3B^ Y_3t?MUS5`L3N(np)78&qol`;+0BG1fC;$Ke diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char38.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char38.png deleted file mode 100644 index 082a61270cbd1edddca0fdb3ac65fe6a843415ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CG!VDx?4 zh872d#>EUCo2It;^d=;%d-38;Mnb~c7Y0m04vrTua4dMThGBwJTc`sML-;!Gl@tD? RHUSM_@O1TaS?83{1OUNIJ?;Pi diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char3B.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char3B.png deleted file mode 100644 index 6b81b694ced98801ae5a8129e962e6ddae5a85f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CB!VDzsPca_?Qi=gSA+G=b|95b3=<4b+G&D?3 zPF7Y{e){xjU|?WbS=rgMXMwWrE87)-iWy6S{DK)Ap4~_Ta*RD)978JRBqt;!%s9!w zBy+jZ#mzmtn~|A0dR9o=+MQ37Y;Bm$gJkd_LDz+9B2lE Mr>mdKI;Vst0P!z70RR91 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char3D.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char3D.png deleted file mode 100644 index 5a03f7e90c59b8577483cbfb8fd942bb7c28de85..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CG!VDx?4}%WQZXkv0SMTW+F05G%-Gn( ultUF$*%g+qU|Av|rpq79P-1Xt*Is4_gX;&c_=$eRMx!QkoY=d#Wzp$Pz=@HCVF diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char3F.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char3F.png deleted file mode 100644 index 898313a258193798c9711f6e1eedbad5ef2fd452..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4?3?zm2ODh8@l>na**Z=?jD=RBMefsq5*|QD~ z4%@bE>+0$%D=SM*P7VwVT(DpPP{C7sxn`hx#*!evUt<7zirz#Wo6~Sz`(My zvIPqk7#bROb#*;``ZPH?`Rv)VKm~eyJ&8c|j3q&S!3+-1ZlnP@mYyz-Ar*6y6A~g0 z95`UmxNxt{)W+~v#>def>>df7frJ0YPN@Htt@LOP_e%R}*r$Q=E3?mQ2r^B2| UK4EeHfrc=6y85}Sb4q9e01&=9x&QzG diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char41.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char41.png deleted file mode 100644 index d3179c398e7d30a8d01d1b482c34ebb52eec7417..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4?3?zm2ODh8@tpJ}8*Z=?jD=RCDiHR*(u%N80 z?CH~|$;rvvwrw*sG<0xq2n-DD>gqas_AF3Y{qafaKwXR_L4Lsu4$p3+0XZg~E{-7; zbCMGhEDkWR+~Iamc`heVxroPQ*)kS}lbq}LczDj}YH~W9WSVxFhiA5!h?N`z!;1#4 VFK4$qSOWDkc)I$ztaD0e0swSrIL`n8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char42.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char42.png deleted file mode 100644 index 600ef14e46a71257a4f17a683f0cce0e0fcd8ec2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^96-#;!VDz;))vSDDXjpX5ZC|z{~H<_Dl02@b#;k} zi7i;LAUQcXFfg#Jtjxi|;px+-+qP{xd-g0)nWX&weL!7|B|(0{3=Yq3qyahlo-U3d z6?2j;_Ew8CA3oW)iH)sKf=^(hQe&g?ou>>Fw(4-J9Ai|uvCT;0td0o-gVQ>mZMrk= RcLTLDc)I$ztaD0e0s#9gIuif@ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char43.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char43.png deleted file mode 100644 index 9208386aab3ace59acbbd4a7f9a5901585dd02e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRQ!VDy*XlM2UDXjpX5ZC|z|BH!71i8fvy9)qH#j2$WWj~rNg;6TU@YxWa~ duTl~i7;N&n3LfTMs{)$B;OXk;vd$@?2><|eMDhRt diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char44.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char44.png deleted file mode 100644 index 7cdc59a7b198753efb15ab9c0357ccd05cbad35e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4?3?zm2ODh8@tpJ}8*Z=?jD=RBII5-#@8a{pc zbislJ$;ruLVq#rgU1eoufq{YBwrx9m_AF4@>M|vLpf1LeAirP+hi5m^fE;5_7srr_ zIms4#tC^XZ53ij0mXn8Pj^Ua_g-MBR%pG%t8I;oV873M#K9Z5;;W_KY%`Cyttj5c+ TU4QcrpmqjNS3j3^P6_E)P!VDyN%Csi{DfIxK5ZC|z|0^pi8yXrqI5<3g z`jm%mdKI;Vst0MEQPt^fc4 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char47.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char47.png deleted file mode 100644 index 6e1410071bb815fcbf130846b048f3611fe9e4e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRQ!VDy*XlM2UDfIxK5ZC|z|37{DG&woh(9lp> zS=qtCAuup-+qP|I&z|k->MAQMTd-gOP>ttosmVYsj3q&S!3+-1ZlnP@j-D=#Ar*6y z6CT8!Jb2*1yi*U)95}G0p|Q0w@gWo2f)h=wJUj}MJhK@O_p$b9vr60$Ggy<9kl?ef gjLFL&%)o$w!GAXQ>Jzopr02$0eUjP6A diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char48.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char48.png deleted file mode 100644 index a097386ed7c50c216ca29baec0a726e2e1ef9460..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^AT}opGm!k*u|NSxsR#Ikxc>kD-_X!dSy|b^!QtuC zrwbM=NKQ^JD=X{j>Iw`D+_r7o*|TRsYLq4%1ZrU{3GxeOaCmkj4am{)ba4!+n3H^C zYghJFrnb3nV=gmE+z2-eu{dzzXr`n?(Ms<&=B|p%Ddi728BTTb-#Kx4(|n*l22WQ% Jmvv4FO#t9%J_Y~) diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char49.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char49.png deleted file mode 100644 index a4ed190c6a1933dc4f9e4144dfb9bfad589d2c98..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1k!VDxint!haQYryHA+G=b|2H%=R905*>gp;h zD@#sJUa(++gM-7bP0l+XkKh{!P- diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char4A.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char4A.png deleted file mode 100644 index bf4bead3c96cb95b2b0499236806eedfd996fbc4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ#!VDx+6^wu+gJOVBi0l9V{|yZdySlo{%E}xZ z92P8Cker-+_Uzeh+qOM@`V=T@*Wd6QsF<-N$S;_|;n|HeAV=2I#WAE}PV$2{8R-vv oO4AcK%nuxx>M)1xh*lC0L)Tum8Rk<1e}e4rboFyt=akR{0L2?J$N&HU diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char4B.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char4B.png deleted file mode 100644 index 5eda963ba667c2c7490109906c6072b3cfacb485..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^AT}opGm!k*u|NSxsR#Ikxc>kD-_X#otE($8FtDtw zOj%huIXQX3f&~r^4o{yx-L`Gp*|TSXY8HLEW)0NBSQ6wH%;50sMjDV~>gnPbQZXm_ z#@4K7t9W^=Po=r#BqZECmv?|c<+Mb@6Fy~wmHQY}f}Zj!MQ$@Rn46 p*ot~=s7z9gaA>i1F4(z9gP}>9)k&{{={Zm(gQu&X%Q~loCIH4HFvtJ^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char4D.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char4D.png deleted file mode 100644 index 5d2991302608691ab42bf5a72817056459dc68dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CJ!VDz8OuLW{q;vy(LR|m<|L@@7z{0|!tgO6X z!Gfnxp9Tg7CMPEw8XA_Bm34J>iHV7A+qUiO*|R{Edxa-~G%}V1`2{mLJiCzwqqQbq`PrV@Z%-FoVOh8)-m}m8XkiNX4Aw z8(U{3US(^Wt1WTL%wR*Ab%BAw20cCYi8@l&4Jyv%EFDiSFiiAOMAQMTd-gOP)*{Bxcxvaj3q&S!3+-1ZlnP@ww^AIAr*6y z6CT9fJaFK^yi@Ov9=ITSKww{E;z6divy2LxY8a=?+1QX+#K0WP;GDw9?4GpJoSB)~ d-H@4?;Y|boymw4Ffk1;8JYD@<);T3K0RS32K?MK+ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char50.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char50.png deleted file mode 100644 index 4850e36ff62e95e19926ca97f313bb4293a4ef66..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^96-#;!VDz;))vSDDa8Pv5ZC|z|2sH1Jbn7KtE+3l zf(3?#hGk`Cfq{YBwrx9m_AF3VMalm*P%&dkkY6x^!?PP{K#qo|i(^Q|oa7l7FCI8x zV5@7|*m!pGSq`rX38tNSemo9(%u@_R!xI=7&a|+-;EnW_1L|S$boFyt=akR{08;5R A#Q*>R diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char51.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char51.png deleted file mode 100644 index 2beb833294895a28d0d0170aecea68f172e20829..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRO!VDyxin=BMDfIxK5ZC|z{~H<_1_lP6J$qJJ zSvfg5*}=hK+qP{_pFZvC>MAQMTd-gOP)*{Bxcxvaj3q&S!3+-1ZlnP@Zk{fVAr*6y z6CT9fJaFK^yi@Ov9=ITSKww{E;z6divy2LxY8a=?+1QX+#K4@*;GDw9+@7@3oSB*V my3ztYwzkkdVTUP<%nUmj1^3Ph%5wsm$l&Sf=d#Wzp$Pz`qC|oK diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char52.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char52.png deleted file mode 100644 index bf8179bc5b501698682fa4e9e1e19b3493b00861..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4?3?zm2ODh8@^#Gp`*Z=?ji;0N^1_qXul_@JL zFIcc3IXStjtINT`;px+-+qP{xd-g0)%`Pz&1E3bhk|4ie28U-i(tsQzPZ!6KiaE(Q zwq~g^Gav5TG=YVU?OEuVGX+J39%>U}rW|1q+Ni}aG3Oc&kE&F#usH)mh$N4@MaH|` PK-~_E)L!VDz49!1&#DfIxK5ZC|z|95qD1qKE#Sg;^D zIoZ(A(80k$Sy_48wryw6o-HdYd;0V#P|cOJ@;^W=j3q&S!3+-1ZlnP@mYyz-Ar*6y zAH#Ae3EmY>eX*5+$$+py%sI$jPFfcH1+qP|I&z=QJEaktF()}gUw?gqN2xbw qvPXhhLUI6*NJ;<_2NYbGB^lQLXDt?&7Fh_?z~JfX=d#Wzp$P!X&oL7K diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char55.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char55.png deleted file mode 100644 index 14a9c3eae9e8d33adc9d93ed9dd070f47740b52e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRQ!VDy*XlM2UDa8Pv5ZC|z|0^pimz9+n8X9(W zbtNY!2L=W{efo6Uwryw6o(0MtXnEZMRLocsoOR6=R?l#*!evU{La)i^DR#zopr08KMHyZ`_I diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char57.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char57.png deleted file mode 100644 index 812dc0c54f173fa1860b91c2253d6cb5e5be7302..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CF!VDyfm=>J`Qd$8%A+G=b|5sL4784UoPEKC1 zV1c2b;n}li9UL420|UFdy2{GRo<4oLZQC}WvaSAx*MPbhOM?7@862M7NCR?wJY5_^ zD&{0x6jz;>d}qv~y?eWSdUw);r~{MEEI4pr&Y??3V-FlCo^dnh86z9p<1-@MY;0|* uOlKxHhAd;eZlrK@M`JXDN1?GnP6E*6I>C4|S-D7{xeT7JelF{r5}E+itVpi_ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char58.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char58.png deleted file mode 100644 index e8638cbe00b629a43168ba75684d154151ee298f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4?3?zm2ODh8@l>na**Z=?j8yXrWCntAxbtx+= zmz9+T1_mxzu)x8=VcWKCXV0DmDoAqs*bG$9SQ6wH%;50sMjDV~>gnPbQZXkv!g6x9 z8uQ^Eqp)-~wr@(?Sb2DOq7FGUHLeu$5ona**Z=?jD=RB^b#)~tCmR|X zE?BUjtgI|BF!1Tqr`xt|JA3vlPyuIUw>nTgV@Z%-FoVOh8)-m}p{I*uNX4Aw2+Quo zH0Hx!LfR&=u{}#`(_v#{yDZ7+5Oi3=!@$6wX=08qhtY);MrH=bQqKO)cEd3bcRB_t%KO=0R>$HvC?OqNH7M`pI9mV{M^)Kx~aS3D9A TLseLS`WZZ3{an^LB{Ts5?58DU|@95ZC|z|2sH11O^5!Sg_#i z*|TM3Wrl`^%F4>g$;sQcZF~CkDNuo`FS$q5Y2 ztULtPbn6xT9g%*x0zWl*y&%w2}nF3?;V9HoQ|JftnaRUHx3vIVCg! E07FbPEC2ui diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char5C.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char5C.png deleted file mode 100644 index 28ecebc7fffe6e2919e5a4cc5ee7542f3bee6750..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^azM<&!VDy{gD2$xDfIxK5ZC|z|Cg1OZQHi(?Afzj zU0n_i4uOGz%F4=yhK9+>$qN=Nc>44yP>qkNU?xxtV@Z%-FoVOh8)-m}j;D)bNX4Aw zgocK@JRS|zsnzaB*YF11TbG%5&cRF7wAge)(v*^>)xk407#IYcI9`;Tc8dqf zQy7@a+1WlTF|x5;OnUgOh?$LzeS$)B3s*n~BSXV9)~HWUuT2N)V(@hJb6Mw<&;$U< Cn>LI9 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char5E.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char5E.png deleted file mode 100644 index 6048b48295f4ddee18f7a1e3a3cd151d8c9489dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^GC<7C!VDyf78kt)QgQ)4A+G=b|L^MR+O}<5Sy|cH zvu6VX1Cx`J7c5xt^yyQelrmdY6i_8&NswPKgTu2MX+Vyir;B4q#hm1Xga;blyu67F zjC{syZJSb9+1jqLu(644e8Se2!oHy;DgTe~DWM4fCGjtr diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char61.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char61.png deleted file mode 100644 index 28e2f0098f63344f2f316b9a601308d8793d0730..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)L!VDz49!1&#DY*cj5ZC|z|1Vgu;OyD6$;ruq zfq`9JT~D7rEh{VAwrv|w>iw_Obf8Mck|4ie28U-i(tsQTPZ!6KiaE&-H2f11GJLhu z8JMoI3A|)b;*n_Lm2eO^VVaN-mSB)ml9G@xDItM@VTCm7E|!8HpMiQAJYD@<);T3K F0RXhCHv#|v diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char66.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char66.png deleted file mode 100644 index 0e7030897a1fc3ec3f3989587594f17ff5a8dde0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRQ!3-n=Z@2USDdPa25ZC|z|95qD0eL(;JPQ^q zU}0eq6BAQbR!&Y%4h#$|D=RZJG<0xqID7W&)2C0jZQBM^|1x_@AW#EiNswPKgTu2M zX+VyHr;B4q#T?a6ZoUHs98NcvN5_V~tH14(c8HswQ7A*~KuoWG5O44Ywzdyi6>A_E)L!VDz49!1&#Dct~{5ZC|z|0^pi2L=WL1soh4 zSXfxLZQGWdoNQ=lxM0D8vuDqim6bhx`n0R73#hV^)A<8X9b-w5UoeBivm0qZjYNU0q#< zhK3Ff4uOGz3l=O$PEJ01_AF5LSgi2@pkl_7AirP+hi5m^fE*=H7srr_Imt6FUc4B1 spn>Ox6PE;!#1siDH8BI9gaj|3nsOaB>wMSK%0Sf&p00i_>zopr046svvH$=8 diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char69.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char69.png deleted file mode 100644 index 99b11f935fa62d04fa937f087fb8397e9edf1ca9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^AT~D(GmzZkz^DzRbOU@sT>t<74`e1MCvV%f?d;jJ z3l=P3VPWCn;Sm!Pd;0WgU|^twgM*==VOLidP$laILnWYU#*!evU zkcv6U2@K5lF7GZkG$`0MeL8Ey4ju7=$;%dQg+qP{B7A#<4Vd3H75fc+Td-kk@gM*==VOLidQ1Rm@l;8B2ovf*Bm1-ADs+ zv^`xMLn`JZConMWvwkkIBm5gfWU509-;t#bF-%8}^6^@E?BUD zg@uKOheu3I?CjaIfq{Vz4i1KfhFx7T8)oj75ki^t6gGFgsb4RB_l2Jznn;;Vdqd)ucI9{_Fpe_baS3j3^ HP6WXNX4Aw1R(Hd5L$E2q3Ncm ohr!OxoCiEQI0D3+HmWl)*qvZnuX5UaI#4}>r>mdKI;Vst05gR#8vpg|HCF@GFqQ=Q1v5B2yO9Ru$a%UrhE&W+PDo~83`;jSsX!2kdN diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char6E.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char6E.png deleted file mode 100644 index c45aa7aa69db0b5318baae13815b92d1fb525a90..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^96-#*!VDyNv=5yCQbGYfA+G=b|95b3Sg>G0a&q#v zZQFp{8PC^$1rWMoHW zodSw8mIV0)GdMiEkp|@OdAc};RLn_ENC;?fW@KQgW7znmd*V5u41=eupUXO@geCy^ C(I74W diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char71.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char71.png deleted file mode 100644 index cde23a12eafdb678fb349f45986427e8f9e9b16a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c8!VDzudVhQjq=W)|LR|m<|Nr#q)8ypjvuDqC zb#(!`JYVmZ0%aLXg8YIR9G=}s19AjCT^vIy<|HR1Bow4MIWqMy@cn1ZcJAx!0!lJ? My85}Sb4q9e0BxfuD*ylh diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char72.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char72.png deleted file mode 100644 index 7148d4d030a64bd5b96a1e39eb0d3c6d2c380669..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRZ!VDxewpIlLDY*cj5ZC|z|8Lv2Ejc;)?Afz{ zfq@GaEa>X$Dl02{`t&JK%7bU2I8Y^HNswPKgTu2MX+Vywr;B4q#hl~^2@H(iSPVp& l)GX&56cKjuVNp89z@RdPu{T)h(>tI-22WQ%mvv4FO#mkQE*t;= diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char73.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char73.png deleted file mode 100644 index 645e4f752277a537130eda5042fabc905d5d7db7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRN!VDzWDRTS;QtAOdA+G=b|37>7Y*|^^f&~kb zlan1B9F&!n0|Nua#Kg93+t$_9_4Mgepc>URbKHPh7)yfuf*Bm1-ADs+KRLd{DK)Ap4~_Ta$G!J978JRBquO1 z>lvK9$*^qIC1+U)iL|9<1_m1%U2jMTG+aH^xUkW&_wbxjrU_}{%%`Nx4Ok4e7_H&b gP6$Xyn01hWA@K`Wc46dmCZKr?p00i_>zopr0M~{=)&Kwi diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char77.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char77.png deleted file mode 100644 index c7163cd5c2905904fdbbdee38c55c9bb3d895f5c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 187 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRS!VDz&cWKWCQYryHA+G=b|37>7Y+zuZp`l?} zSy^&&a#vTEgM-7KRLd{DK)Ap4~_Ta$G%K978JRBqua5 zuH#hLBzq!4OzOaa1D2;v8yK~iSmtmioa&L1P&4Q#npJ4Ykhv|0jVG$p`qc^ zr%%hu$^ruew{6>Y_Uzf@KRLd{DK)Ap4~_Ta&$di978JRBqt<1 zn05025X?I$z`5j3!y1ORHcdVr9$|?n-$o@@9vvo!E>VVtf2^C@F4mO*H8Oa*`njxg HN@xNAm3KOr diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char79.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char79.png deleted file mode 100644 index babca949bb77227e842a123f48f1475e1871a770..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CG!VDx?445dSy|b( zZQB9^1G~Dql9Q9qo;?ecYWVFC4phll666=m;PC858jz#o>EaktF(*0UfrftqLz7Wk z7&{wVngU-^LPC1NgMjA=9*kYmQ3etWnr^HNDbrYZmh4~o52%m9)78&qol`;+037`@ Ai~s-t diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char7A.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char7A.png deleted file mode 100644 index c1cf1282e93fa4d781fa6ce3bedd361b7146ca64..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4?3?zm2ODh8@l>na**Z=?jv#_v;iHQXU25#H7 z4JfRvtel*jeD>_w1q&8Defkur;P1{k(|{6;B|(0{3=Yq3qyahFo-U3d6?2jkA}ov3 zn3mdKI;Vst E0Ck`;P5=M^ diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char7B.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char7B.png deleted file mode 100644 index 7e4f5ecf26b8fcaf01bb41796820bf84a18469b6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRZ!VDxewpIlLDfIxK5ZC|z|0gFWpFMk4Sy_48 zwryo)Wr2Z#U0q#bVqyyxEHE@QeERe$P|dH6`>z7EFqQ=Q1v5B2yO9Ru=y|$0hE&W+ zPI!=(aO1#%y_E)P!VDyN%Csi{DfIxK5ZC|z{~H<_CMPE^Sg?SH zheugiIWRD=tgNi7tLy30r`xt|JA3vlP)*&+sKr1nj3q&S!3+-1ZlnP@I-V|$Ar*6y zZ_E)L!VDz49!1&#Da8Pv5ZC|z|2sH11O^6f+qSK% zt4mBw%+S#A?Afym7A$!B^eIsGt3dHPpkl_7AirP+hi5m^fE+_l7srr_Imr)l(i0LM zoO!??q{z#|BlD0=;ZR3oEQ_#`keGEB{2eYC49i4~}s!PC{x JWt~$(69D{jH>Usq diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char7E.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char7E.png deleted file mode 100644 index 53e30da13e2698c9493c25c30a3521155edf881e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)L!VDz49!1&#DU|@95ZC|z|2sH11O^6*iHUV} zb@A}ZY(9rPg*|Q54EO`3#DNuoMphO~2J!46bUoeBivm0qZj4vu(74Fi3%i6IAGAZu!xbFgMnf83bx2pWko%p Ob_P#ZKbLh*2~7YHOEtFu diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/85/char7F.png b/sagenb/data/jsmath/fonts/msbm10/plain/85/char7F.png deleted file mode 100644 index 78c1fde15065ab728d377988469afe9c88b8f71c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^Y#_|S3?zjfeX0ghDgizruK)l44-5<}D=QNd6YJ{g zTCiY&gM)*iq2be~Pq%H`cJ}O9pn|$@Mjk-*j3q&S!3+-1ZlnP@3Z5>GAr*6y6CzF? vIB+%az<~o3P91oVbn3u?!~+Lb-e6$R{?D9qC46o#P%VR}tDnm{r-UW|)5AIk diff --git a/sagenb/data/jsmath/fonts/msbm10/plain/def.js b/sagenb/data/jsmath/fonts/msbm10/plain/def.js deleted file mode 100644 index 947ba3215..000000000 --- a/sagenb/data/jsmath/fonts/msbm10/plain/def.js +++ /dev/null @@ -1,273 +0,0 @@ -jsMath.Img.AddFont(50,{ - msbm10: [ - [5,8,2], [5,8,2], [5,9,3], [5,9,3], [5,7,2], [5,7,2], [5,7,2], [5,7,2], - [5,8,2], [5,8,2], [5,9,3], [5,9,3], [5,7,2], [5,7,2], [5,9,3], [5,9,3], - [6,9,3], [6,9,3], [6,9,3], [6,9,3], [5,10,3], [5,10,3], [5,8,2], [5,8,2], - [6,9,3], [6,9,3], [6,9,3], [6,9,3], [6,4,0], [6,7,2], [7,7,2], [7,7,2], - [5,7,2], [5,7,2], [5,9,3], [5,9,3], [5,9,3], [5,9,3], [5,9,3], [5,9,3], - [5,7,2], [5,7,2], [5,9,3], [5,9,3], [5,8,2], [4,8,2], [3,5,1], [4,5,1], - [5,5,0], [6,5,0], [5,5,0], [6,5,0], [5,9,3], [5,9,3], [5,7,2], [5,7,2], - [7,4,0], [7,4,0], [7,5,1], [7,5,1], [7,5,1], [7,4,0], [6,5,1], [6,6,1], - [4,9,2], [5,5,0], [5,5,0], [5,6,1], [5,5,0], [5,5,0], [5,5,0], [6,6,1], - [6,5,0], [3,5,0], [4,6,1], [6,5,0], [5,5,0], [7,5,0], [5,6,1], [6,6,1], - [5,5,0], [6,7,2], [5,5,0], [4,6,1], [5,5,0], [5,6,1], [6,6,1], [7,6,1], - [5,5,0], [5,5,0], [5,5,0], [15,2,-4], [18,2,-4], [14,2,-4], [17,3,-4], [1,1,-1], - [4,5,0], [5,6,1], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [5,6,1], [4,7,1], - [6,4,0], [6,7,1], [4,7,1], [5,7,1], [5,5,1], [5,5,1], [5,4,0], [5,4,0], - [1,5,1], [3,5,1], [5,5,1], [6,3,0], [6,4,0], [6,6,1], [6,9,3], [6,9,3], - [7,4,0], [7,4,0], [6,6,1], [5,5,1], [4,5,0], [4,6,1], [4,6,1], [4,4,0] - ] -}); - -jsMath.Img.AddFont(60,{ - msbm10: [ - [6,10,3], [6,10,3], [6,10,3], [6,10,3], [6,8,2], [6,8,2], [6,8,2], [6,8,2], - [6,10,3], [6,10,3], [6,10,3], [6,10,3], [6,8,2], [6,8,2], [6,10,3], [6,10,3], - [6,9,3], [6,9,3], [6,9,3], [6,9,3], [6,12,4], [6,12,4], [6,10,3], [6,10,3], - [6,10,3], [6,10,3], [6,11,4], [6,11,4], [6,4,0], [6,8,2], [7,8,2], [7,8,2], - [6,8,2], [6,8,2], [6,10,3], [6,10,3], [6,10,3], [6,10,3], [6,10,3], [6,10,3], - [6,8,2], [6,8,2], [6,10,3], [6,10,3], [6,8,2], [4,8,2], [3,5,1], [5,5,1], - [6,6,0], [7,6,0], [6,6,0], [7,6,0], [6,10,3], [6,10,3], [6,8,2], [6,8,2], - [8,4,0], [8,4,0], [8,6,1], [8,6,1], [8,6,1], [8,4,0], [6,6,1], [6,6,1], - [4,9,2], [6,6,0], [5,6,0], [6,7,1], [6,6,0], [6,6,0], [5,6,0], [6,7,1], - [7,6,0], [3,6,0], [4,7,1], [7,6,0], [6,6,0], [8,6,0], [6,7,1], [6,7,1], - [5,6,0], [6,8,2], [6,6,0], [5,7,1], [6,6,0], [6,7,1], [6,7,1], [8,7,1], - [6,6,0], [6,6,0], [6,6,0], [17,3,-4], [20,3,-4], [16,2,-5], [19,3,-5], [1,1,-1], - [4,6,0], [5,7,1], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [6,7,1], [5,7,1], - [6,4,0], [7,8,1], [5,8,1], [5,8,1], [6,6,1], [6,6,1], [6,4,0], [6,4,0], - [2,5,1], [3,5,1], [6,5,1], [6,2,-1], [6,4,0], [6,6,1], [6,10,3], [6,10,3], - [8,4,0], [8,4,0], [6,6,1], [6,5,1], [5,6,0], [5,7,1], [5,7,1], [4,4,0] - ] -}); - -jsMath.Img.AddFont(70,{ - msbm10: [ - [7,11,3], [7,11,3], [7,13,4], [7,13,4], [7,11,3], [7,11,3], [7,11,3], [7,11,3], - [7,11,3], [7,11,3], [7,13,4], [7,13,4], [7,10,3], [7,10,3], [7,13,4], [7,13,4], - [8,12,4], [8,12,4], [8,12,4], [8,12,4], [7,15,5], [7,15,5], [7,11,3], [7,11,3], - [8,12,4], [8,12,4], [8,12,4], [8,12,4], [8,5,0], [8,9,2], [9,9,2], [9,9,2], - [7,10,3], [7,10,3], [7,13,4], [7,13,4], [7,12,4], [7,12,4], [7,12,4], [7,12,4], - [7,10,3], [7,10,3], [7,13,4], [7,13,4], [7,11,3], [4,11,3], [4,6,1], [6,6,1], - [7,7,0], [8,7,0], [7,7,0], [8,7,0], [7,13,4], [7,13,4], [7,11,3], [7,11,3], - [10,5,0], [10,5,0], [10,7,1], [10,7,1], [10,7,1], [10,5,0], [8,7,1], [8,7,1], - [5,11,2], [8,8,0], [7,7,0], [7,9,1], [7,7,0], [7,7,0], [6,7,0], [8,9,1], - [8,7,0], [4,7,0], [5,8,1], [8,7,0], [7,7,0], [10,7,0], [8,8,1], [8,9,1], - [6,7,0], [8,10,2], [8,7,0], [6,9,1], [7,7,0], [8,8,1], [8,8,1], [10,8,1], - [8,7,0], [8,7,0], [7,7,0], [20,4,-5], [25,4,-5], [19,3,-6], [24,3,-6], [1,1,-1], - [5,7,0], [6,9,1], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [7,8,1], [6,9,1], - [8,5,0], [8,9,1], [6,9,1], [7,9,1], [7,7,1], [7,7,1], [7,5,0], [7,5,0], - [2,6,1], [4,6,1], [7,6,1], [8,3,-1], [8,5,0], [8,7,1], [8,11,3], [8,11,3], - [10,5,0], [10,5,0], [8,8,1], [8,6,1], [6,7,0], [6,8,1], [6,8,1], [5,5,0] - ] -}); - -jsMath.Img.AddFont(85,{ - msbm10: [ - [9,14,4], [9,14,4], [9,14,4], [9,14,4], [9,12,3], [9,12,3], [9,12,3], [9,12,3], - [9,14,4], [9,14,4], [9,14,4], [9,14,4], [9,11,3], [9,11,3], [9,14,4], [9,14,4], - [9,14,5], [9,14,5], [9,14,5], [9,14,5], [9,18,6], [9,18,6], [9,14,4], [9,14,4], - [9,14,4], [9,14,4], [9,15,5], [9,15,5], [9,6,0], [9,10,2], [11,12,3], [11,12,3], - [9,11,3], [9,11,3], [9,14,4], [9,14,4], [9,15,5], [9,15,5], [9,14,4], [9,14,4], - [9,11,3], [9,11,3], [9,14,4], [9,14,4], [8,12,3], [5,12,3], [4,7,1], [6,7,1], - [8,9,0], [9,9,0], [8,9,0], [9,9,0], [9,14,4], [9,14,4], [9,12,3], [9,12,3], - [12,6,0], [12,6,0], [12,8,1], [12,8,1], [12,8,1], [12,6,0], [9,8,1], [9,9,1], - [6,13,2], [9,9,0], [8,9,0], [9,10,1], [9,9,0], [8,9,0], [7,9,0], [9,10,1], - [10,9,0], [5,9,0], [6,10,1], [10,9,0], [8,9,0], [12,9,0], [9,10,1], [9,10,1], - [8,9,0], [9,12,3], [9,9,0], [7,10,1], [8,9,0], [9,10,1], [9,10,1], [12,10,1], - [9,9,0], [9,9,0], [8,9,0], [24,4,-7], [30,4,-7], [23,3,-7], [28,3,-8], [1,1,-1], - [6,9,0], [7,10,1], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [9,10,1], [7,10,1], - [9,6,0], [10,11,1], [6,11,1], [8,11,1], [9,8,1], [9,8,1], [8,6,0], [8,6,0], - [2,7,1], [4,7,1], [9,7,1], [9,4,-1], [9,6,0], [9,8,1], [9,14,4], [9,14,4], - [12,6,0], [12,6,0], [9,9,1], [9,7,1], [7,9,0], [7,10,1], [7,10,1], [6,6,0] - ] -}); - -jsMath.Img.AddFont(100,{ - msbm10: [ - [10,15,4], [10,15,4], [10,17,5], [10,17,5], [10,13,3], [10,13,3], [10,13,3], [10,13,3], - [10,15,4], [10,15,4], [10,17,5], [10,17,5], [10,13,4], [10,13,4], [10,17,5], [10,17,5], - [11,16,5], [11,16,5], [11,16,5], [11,16,5], [10,19,6], [10,19,6], [10,15,4], [10,15,4], - [11,16,5], [11,16,5], [11,17,6], [11,17,6], [11,7,0], [11,13,3], [13,13,3], [13,13,3], - [10,13,4], [10,13,4], [10,17,5], [10,17,5], [10,17,6], [10,17,6], [10,16,5], [10,16,5], - [10,13,4], [10,13,4], [10,17,5], [10,17,5], [9,15,4], [6,15,4], [5,8,1], [7,8,1], - [9,10,0], [11,10,0], [9,10,0], [11,10,0], [10,17,5], [10,17,5], [10,13,3], [10,13,3], - [14,7,0], [14,7,0], [14,9,1], [14,9,1], [14,9,1], [14,7,0], [11,9,1], [11,10,1], - [7,16,3], [10,10,0], [9,10,0], [10,11,1], [10,10,0], [9,10,0], [9,10,0], [11,11,1], - [11,10,0], [6,10,0], [7,12,2], [11,10,0], [9,10,0], [13,10,0], [10,11,1], [11,11,1], - [9,10,0], [11,13,3], [10,10,0], [8,11,1], [9,10,0], [10,11,1], [11,11,1], [14,11,1], - [10,10,0], [10,10,0], [9,10,0], [28,4,-8], [34,4,-8], [27,4,-8], [33,4,-9], [1,1,-1], - [7,10,0], [9,11,1], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [10,11,1], [8,12,1], - [11,7,0], [11,12,1], [7,12,1], [9,12,1], [10,9,1], [10,9,1], [9,7,0], [9,7,0], - [2,8,1], [5,8,1], [10,8,1], [11,5,-1], [11,7,0], [11,10,1], [11,16,5], [11,16,5], - [14,7,0], [14,7,0], [11,11,2], [11,8,1], [8,10,0], [8,11,1], [8,11,1], [7,7,0] - ] -}); - -jsMath.Img.AddFont(120,{ - msbm10: [ - [12,18,5], [12,18,5], [12,20,6], [12,20,6], [12,16,4], [12,16,4], [12,16,4], [12,16,4], - [12,18,5], [12,18,5], [12,20,6], [12,20,6], [12,15,4], [12,15,4], [12,20,6], [12,20,6], - [13,19,6], [13,19,6], [13,19,6], [13,19,6], [12,24,8], [12,24,8], [12,18,5], [12,18,5], - [13,19,6], [13,19,6], [13,20,7], [13,20,7], [13,8,0], [13,15,3], [15,16,4], [15,16,4], - [12,16,5], [12,16,5], [12,21,6], [12,21,6], [12,21,7], [12,21,7], [12,19,6], [12,19,6], - [12,15,4], [12,15,4], [12,20,6], [12,20,6], [10,18,5], [7,18,5], [6,9,1], [8,9,1], - [11,12,0], [13,12,0], [11,12,0], [13,12,0], [12,20,6], [12,20,6], [12,16,4], [12,16,4], - [17,7,-1], [17,7,-1], [17,11,1], [17,11,1], [17,11,1], [17,7,-1], [13,10,1], [13,11,1], - [9,18,3], [12,12,0], [11,12,0], [12,13,1], [12,12,0], [11,12,0], [10,12,0], [13,13,1], - [13,12,0], [7,12,0], [9,14,2], [14,12,0], [11,12,0], [16,12,0], [12,13,1], [13,13,1], - [11,12,0], [13,16,4], [12,12,0], [10,13,1], [11,12,0], [13,13,1], [13,13,1], [17,13,1], - [12,12,0], [12,12,0], [11,12,0], [34,5,-10], [41,5,-10], [33,5,-10], [40,5,-11], [1,1,-1], - [9,12,0], [10,13,1], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [12,13,1], [9,14,1], - [13,8,0], [13,14,1], [8,14,1], [11,14,1], [12,11,1], [12,11,1], [11,9,0], [11,9,0], - [3,9,1], [6,9,1], [12,9,1], [13,5,-2], [13,9,0], [13,11,1], [13,18,5], [13,18,5], - [17,8,0], [17,8,0], [13,13,2], [13,9,1], [10,12,0], [10,13,1], [10,13,1], [8,8,0] - ] -}); - -jsMath.Img.AddFont(144,{ - msbm10: [ - [14,22,6], [14,22,6], [14,24,7], [14,24,7], [14,20,5], [14,20,5], [14,20,5], [14,20,5], - [14,22,6], [14,22,6], [14,24,7], [14,24,7], [14,18,5], [14,18,5], [14,24,7], [14,24,7], - [15,22,7], [15,22,7], [15,22,7], [15,22,7], [14,28,9], [14,28,9], [14,22,6], [14,22,6], - [15,23,7], [15,23,7], [15,24,8], [15,24,8], [15,10,0], [15,18,4], [18,18,4], [18,18,4], - [14,18,5], [14,18,5], [14,24,7], [14,24,7], [14,24,8], [14,24,8], [14,23,7], [14,23,7], - [14,18,5], [14,18,5], [14,24,7], [14,24,7], [12,20,5], [7,20,5], [6,10,1], [10,10,1], - [14,14,0], [16,14,0], [14,14,0], [16,14,0], [14,24,7], [14,24,7], [14,20,5], [14,20,5], - [19,8,-1], [19,8,-1], [19,12,1], [19,12,1], [20,12,1], [19,8,-1], [15,12,1], [15,13,1], - [10,22,4], [15,15,0], [13,14,0], [14,16,1], [14,14,0], [13,14,0], [12,14,0], [15,16,1], - [16,14,0], [8,14,0], [10,16,2], [16,14,0], [13,14,0], [19,14,0], [15,15,1], [15,16,1], - [12,14,0], [15,19,4], [15,14,0], [11,16,1], [13,14,0], [15,15,1], [15,15,1], [20,15,1], - [15,14,0], [15,14,0], [13,14,0], [39,6,-11], [48,6,-11], [38,5,-12], [47,5,-13], [1,1,-1], - [10,14,0], [12,16,1], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [14,15,1], [11,16,1], - [15,10,0], [15,17,1], [10,17,1], [13,17,1], [14,12,1], [14,12,1], [13,10,0], [13,10,0], - [3,10,1], [7,10,1], [14,10,1], [15,6,-2], [15,9,-1], [15,13,1], [15,22,6], [15,22,6], - [20,10,0], [20,10,0], [15,15,2], [15,10,1], [11,14,0], [11,15,1], [11,15,1], [9,9,0] - ] -}); - -jsMath.Img.AddFont(173,{ - msbm10: [ - [17,26,7], [17,26,7], [17,28,8], [17,28,8], [17,22,5], [17,22,5], [17,22,5], [17,22,5], - [17,26,7], [17,26,7], [17,28,8], [17,28,8], [17,22,6], [17,22,6], [17,28,8], [17,28,8], - [18,27,9], [18,27,9], [18,27,9], [18,27,9], [17,34,11], [17,34,11], [17,26,7], [17,26,7], - [18,27,8], [18,27,8], [18,29,10], [18,29,10], [18,12,0], [18,20,4], [21,22,5], [21,22,5], - [17,22,6], [17,22,6], [17,28,8], [17,28,8], [17,28,9], [17,28,9], [17,27,8], [17,27,8], - [17,22,6], [17,22,6], [17,28,8], [17,28,8], [14,24,6], [9,24,6], [7,12,1], [11,12,1], - [16,17,0], [18,17,0], [16,17,0], [18,17,0], [17,28,8], [17,28,8], [17,22,5], [17,22,5], - [23,10,-1], [23,10,-1], [23,14,1], [23,14,1], [24,14,1], [23,10,-1], [18,14,1], [18,16,1], - [12,25,4], [17,17,0], [15,17,0], [17,18,1], [17,17,0], [16,17,0], [14,17,0], [18,18,1], - [19,17,0], [9,17,0], [12,19,2], [19,17,0], [16,17,0], [23,17,0], [17,18,1], [18,18,1], - [15,17,0], [18,22,5], [17,17,0], [13,18,1], [16,17,0], [17,18,1], [18,18,1], [24,18,1], - [17,17,0], [17,17,0], [16,17,0], [47,7,-14], [58,7,-14], [46,5,-15], [56,6,-16], [1,1,-1], - [12,17,0], [14,18,1], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [17,18,1], [13,19,1], - [18,12,0], [18,20,1], [11,21,2], [15,21,2], [17,14,1], [17,14,1], [16,12,0], [16,12,0], - [4,12,1], [8,12,1], [17,12,1], [18,6,-3], [18,11,-1], [18,15,1], [18,26,7], [18,26,7], - [23,12,0], [24,12,0], [18,17,2], [18,12,1], [13,17,0], [14,18,1], [14,18,1], [11,11,0] - ] -}); - -jsMath.Img.AddFont(207,{ - msbm10: [ - [21,30,8], [21,30,8], [21,33,9], [21,33,9], [21,27,6], [21,27,6], [21,27,6], [21,27,6], - [21,30,8], [21,30,8], [21,33,9], [21,33,9], [21,26,7], [21,26,7], [21,33,9], [21,33,9], - [21,33,11], [21,33,11], [21,33,11], [21,33,11], [21,40,13], [21,40,13], [21,30,8], [21,30,8], - [21,33,10], [21,33,10], [21,34,11], [21,34,11], [21,14,0], [21,25,5], [25,27,6], [25,27,6], - [21,27,8], [21,27,8], [21,35,10], [21,35,10], [21,34,11], [21,34,11], [21,32,10], [21,32,10], - [21,26,7], [21,26,7], [21,33,9], [21,33,9], [17,30,8], [10,30,8], [8,14,1], [13,14,1], - [19,21,0], [22,21,0], [19,21,0], [22,21,0], [21,33,9], [21,33,9], [21,27,6], [21,27,6], - [28,12,-1], [28,12,-1], [28,17,1], [28,17,1], [28,17,1], [28,12,-1], [21,17,1], [21,18,1], - [15,30,5], [21,21,0], [19,20,0], [20,22,1], [21,20,0], [19,20,0], [17,20,0], [22,22,1], - [23,20,0], [11,20,0], [14,23,3], [23,20,0], [19,20,0], [27,20,0], [21,21,1], [22,22,1], - [18,20,0], [22,27,6], [21,20,0], [16,22,1], [19,20,0], [21,21,1], [21,21,1], [29,21,1], - [21,20,0], [21,20,0], [19,20,0], [57,8,-17], [69,8,-17], [55,6,-18], [68,8,-19], [1,1,-1], - [15,21,0], [17,22,1], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [20,21,1], [15,22,1], - [21,13,-1], [21,24,1], [13,25,2], [19,25,2], [21,18,2], [21,18,2], [19,15,0], [19,15,0], - [4,14,1], [10,14,1], [20,14,1], [21,8,-3], [21,13,-1], [22,18,1], [21,32,9], [21,32,9], - [28,14,0], [29,14,0], [21,21,3], [21,14,1], [16,20,0], [16,22,1], [16,22,1], [13,13,0] - ] -}); - -jsMath.Img.AddFont(249,{ - msbm10: [ - [24,36,10], [24,36,10], [24,39,11], [24,39,11], [24,31,7], [24,31,7], [24,31,7], [24,31,7], - [24,36,10], [24,36,10], [24,39,11], [24,39,11], [24,30,8], [24,30,8], [24,39,11], [24,39,11], - [25,37,12], [25,37,12], [25,37,12], [25,37,12], [24,47,15], [24,47,15], [24,36,10], [24,36,10], - [25,38,12], [25,38,12], [25,39,13], [25,39,13], [25,15,-1], [25,29,6], [30,31,7], [30,31,7], - [24,31,9], [24,31,9], [24,41,12], [24,41,12], [24,40,13], [24,40,13], [24,38,12], [24,38,12], - [24,30,8], [24,30,8], [24,39,11], [24,39,11], [19,35,9], [12,35,9], [10,16,1], [15,16,1], - [21,24,0], [25,24,0], [21,24,0], [25,24,0], [24,39,11], [24,39,11], [24,31,7], [24,31,7], - [33,13,-2], [33,13,-2], [33,21,2], [33,21,2], [33,21,2], [33,13,-2], [25,19,1], [25,21,1], - [17,36,6], [24,24,0], [22,24,0], [24,25,1], [24,24,0], [22,24,0], [20,24,0], [26,25,1], - [26,24,0], [13,24,0], [17,27,3], [27,24,0], [22,24,0], [32,24,0], [24,25,1], [26,25,1], - [21,24,0], [26,31,7], [24,24,0], [19,25,1], [22,24,0], [25,25,1], [25,25,1], [34,25,1], - [24,24,0], [24,24,0], [22,24,0], [66,9,-20], [81,9,-20], [65,8,-21], [80,8,-23], [1,1,-1], - [17,24,0], [20,25,1], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [24,25,1], [18,26,1], - [25,15,-1], [24,27,1], [15,28,2], [22,28,2], [24,21,2], [24,21,2], [22,17,0], [22,17,0], - [5,16,1], [12,16,1], [24,16,1], [25,9,-4], [25,16,-1], [25,22,2], [25,36,10], [25,36,10], - [33,16,0], [34,16,0], [25,24,3], [25,16,1], [19,24,0], [19,25,1], [19,25,1], [16,16,0] - ] -}); - -jsMath.Img.AddFont(298,{ - msbm10: [ - [29,43,12], [29,43,12], [29,46,13], [29,46,13], [29,38,9], [29,38,9], [29,38,9], [29,38,9], - [29,43,12], [29,43,12], [29,46,13], [29,46,13], [29,37,10], [29,37,10], [29,46,13], [29,46,13], - [30,46,15], [30,46,15], [30,46,15], [30,46,15], [29,56,18], [29,56,18], [29,43,12], [29,43,12], - [30,46,14], [30,46,14], [30,48,16], [30,48,16], [30,19,-1], [30,34,7], [36,37,8], [36,37,8], - [29,38,11], [29,38,11], [29,48,14], [29,48,14], [29,49,16], [29,49,16], [29,45,14], [29,45,14], - [29,37,10], [29,37,10], [29,46,13], [29,46,13], [23,42,11], [14,42,11], [11,19,1], [18,19,1], - [26,29,0], [31,29,0], [26,29,0], [31,29,0], [29,46,13], [29,46,13], [29,38,9], [29,38,9], - [39,16,-2], [39,16,-2], [39,24,2], [39,24,2], [40,24,2], [39,16,-2], [30,24,2], [30,25,1], - [21,43,7], [29,29,0], [26,29,0], [29,30,1], [29,29,0], [27,29,0], [24,29,0], [31,30,1], - [32,29,0], [16,29,0], [20,33,4], [32,29,0], [27,29,0], [38,29,0], [29,30,1], [31,30,1], - [25,29,0], [31,37,8], [29,29,0], [22,30,1], [27,29,0], [30,30,1], [30,30,1], [41,30,1], - [29,29,0], [29,29,0], [27,29,0], [79,11,-24], [98,11,-24], [78,8,-26], [96,10,-27], [1,1,-1], - [21,29,0], [24,30,1], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [28,29,1], [22,31,1], - [30,19,-1], [29,33,1], [18,34,2], [26,34,2], [29,25,2], [29,25,2], [26,21,0], [26,21,0], - [6,19,1], [14,19,1], [29,19,1], [30,11,-5], [30,18,-2], [30,26,2], [30,44,12], [30,44,12], - [40,19,0], [41,19,0], [30,29,4], [30,19,1], [23,29,0], [23,30,1], [23,30,1], [19,19,0] - ] -}); - -jsMath.Img.AddFont(358,{ - msbm10: [ - [34,51,14], [34,51,14], [34,55,15], [34,55,15], [34,46,11], [34,46,11], [34,46,11], [34,46,11], - [34,51,14], [34,51,14], [34,55,15], [34,55,15], [34,44,12], [34,44,12], [34,55,15], [34,55,15], - [36,53,17], [36,53,17], [36,53,17], [36,53,17], [34,67,21], [34,67,21], [34,51,14], [34,51,14], - [36,55,17], [36,55,17], [36,57,19], [36,57,19], [36,22,-1], [36,41,8], [43,44,10], [43,44,10], - [34,45,13], [34,45,13], [34,58,17], [34,58,17], [34,58,19], [34,58,19], [34,53,16], [34,53,16], - [34,44,12], [34,44,12], [34,55,15], [34,55,15], [27,50,13], [16,50,13], [13,24,2], [21,24,2], - [31,34,0], [36,34,0], [31,34,0], [36,34,0], [34,55,15], [34,55,15], [34,46,11], [34,46,11], - [47,19,-3], [47,19,-3], [47,29,2], [47,29,2], [48,29,2], [47,19,-3], [36,28,2], [36,30,1], - [25,52,9], [35,35,0], [31,34,0], [34,36,1], [34,34,0], [32,34,0], [29,34,0], [37,36,1], - [38,34,0], [19,34,0], [24,38,4], [38,34,0], [32,34,0], [46,34,0], [35,35,1], [37,36,1], - [30,34,0], [37,44,9], [35,34,0], [26,36,1], [32,34,0], [35,35,1], [36,35,1], [49,35,1], - [35,34,0], [35,34,0], [32,34,0], [95,14,-28], [116,14,-28], [93,10,-31], [115,12,-33], [1,1,-1], - [25,34,0], [29,37,2], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [34,36,2], [26,38,2], - [36,22,-1], [34,39,1], [21,41,3], [31,41,3], [34,29,2], [34,29,2], [31,25,0], [31,25,0], - [7,24,2], [17,24,2], [34,24,2], [36,12,-6], [36,22,-2], [36,31,2], [36,53,15], [36,53,15], - [47,23,0], [49,23,0], [36,35,5], [36,23,1], [27,34,0], [27,35,1], [27,35,1], [22,22,0] - ] -}); - -jsMath.Img.AddFont(430,{ - msbm10: [ - [41,62,17], [41,62,17], [41,66,18], [41,66,18], [41,55,13], [41,55,13], [41,55,13], [41,55,13], - [41,62,17], [41,62,17], [41,66,18], [41,66,18], [41,52,14], [41,52,14], [41,66,18], [41,66,18], - [43,65,21], [43,65,21], [43,65,21], [43,65,21], [41,80,25], [41,80,25], [41,62,17], [41,62,17], - [43,65,20], [43,65,20], [43,68,23], [43,68,23], [43,27,-1], [43,49,10], [51,53,12], [51,53,12], - [41,53,15], [41,53,15], [41,69,20], [41,69,20], [41,70,23], [41,70,23], [41,65,20], [41,65,20], - [41,52,14], [41,52,14], [41,66,18], [41,66,18], [33,60,15], [20,60,15], [17,28,2], [27,28,2], - [37,41,0], [44,41,0], [37,41,0], [44,41,0], [41,66,18], [41,66,18], [41,55,13], [41,55,13], - [56,23,-3], [56,23,-3], [56,34,2], [56,34,2], [57,34,2], [56,23,-3], [43,34,2], [43,36,1], - [30,61,10], [42,42,0], [37,41,0], [41,44,2], [41,41,0], [38,41,0], [35,41,0], [45,44,2], - [45,41,0], [22,41,0], [29,46,5], [46,41,0], [38,41,0], [55,41,0], [42,43,2], [44,44,2], - [36,41,0], [44,53,11], [42,41,0], [32,43,1], [38,41,0], [42,43,2], [43,43,2], [59,43,2], - [42,41,0], [42,41,0], [38,41,0], [114,16,-34], [140,16,-34], [112,12,-37], [138,14,-40], [1,1,-1], - [30,41,0], [34,44,2], [1,1,-1], [1,1,-1], [1,1,-1], [1,1,-1], [40,43,2], [31,45,2], - [43,26,-2], [41,48,2], [25,49,3], [37,49,3], [41,35,3], [41,35,3], [38,29,0], [38,29,0], - [8,28,2], [20,28,2], [41,28,2], [43,15,-7], [43,26,-3], [43,37,2], [43,62,17], [43,62,17], - [57,28,0], [58,28,0], [43,41,5], [43,27,1], [32,41,0], [33,42,1], [33,42,1], [27,27,0] - ] -}); - diff --git a/sagenb/data/jsmath/jsMath-BaKoMa-fonts.js b/sagenb/data/jsmath/jsMath-BaKoMa-fonts.js deleted file mode 100644 index 661fcff18..000000000 --- a/sagenb/data/jsmath/jsMath-BaKoMa-fonts.js +++ /dev/null @@ -1,428 +0,0 @@ -/* - * jsMath-BaKoMa-fonts.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed to use the BaKoMa fonts and - * their encoding. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2007 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - - -/******************************************************************** - * - * The BaKoMa fonts have a different encoding, so change the characters - * to correspond to the their encoding. - */ - -if (jsMath.browser == "Mozilla" && jsMath.platform != "mac") { - - /* - * Mozilla/PC - */ - jsMath.Update.TeXfontCodes({ - cmr10: [ - 'Γ', 'Δ', 'Θ', 'Λ', - 'Ξ', 'Π', 'Σ', 'Υ', - 'Φ', 'Ψ', 'Ω', 'ff', - 'fi', 'fl', 'ffi', 'ffl', - - 'ı', '', '̀', '́', - '̌', '̆', '̅', '̊', - '̧', 'ß', 'æ', 'œ', - 'ø', 'Æ', 'Œ', 'Ø', - - '̷', '!', '”', '#', - '$', '%', '&', ''', - '(', ')', '*', '+', - ',', '-', '.', '/', - - '0', '1', '2', '3', '4', '5', '6', '7', - '8', '9', ':', ';', '¡', '=', '¿', '?', - - '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', - 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', - - 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', - 'X', 'Y', 'Z', '[', '“', ']', '̂', '̇', - - '‘', 'a', 'b', 'c', 'd', 'e', 'f', 'g', - 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', - - 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', - 'x', 'y', 'z', '–', '—', '̋', '̃', '̈' - ], - - cmmi10: [ - 'Γ', 'Δ', 'Θ', 'Λ', - 'Ξ', 'Π', 'Σ', 'Υ', - 'Φ', 'Ψ', 'Ω', 'α', - 'β', 'γ', 'δ', 'ε', - - 'ζ', 'η', 'θ', 'ι', - 'κ', 'λ', 'μ', 'ν', - 'ξ', 'π', 'ρ', 'σ', - 'τ', 'υ', 'φ', 'χ', - - 'ψ', 'ω', 'ɛ', 'ϑ', - 'ϖ', 'ϱ', 'ς', 'ϕ', - '↼', '↽', '⇀', '⇁', - '', '', '▹', '◃', - - '0', '1', '2', '3', '4', '5', '6', '7', - '8', '9', '.', ',', '<', '/', '>', '⋆', - - '∂', 'A', 'B', 'C', 'D', 'E', 'F', 'G', - 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', - - 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', - 'X', 'Y', 'Z', '♭', '♮', '♯', '⌣', '⌢', - - 'ℓ', 'a', 'b', 'c', 'd', 'e', 'f', 'g', - 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', - - 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', - 'x', 'y', 'z', 'ı', '', '℘', '⃗', '̑' - ], - - cmsy10: [ - '−', '·', '×', '⋆', - '÷', '⋄', '±', '∓', - '⊕', '⊖', '⊗', '⊘', - '⊙', '○', '∘', '∙', - - '≃', '≍', '⊆', '⊇', - '≤', '≥', '≼', '≽', - '∼', '≅', '⊂', '⊃', - '≪', '≫', '≺', '≻', - - '←', '→', '↑', '↓', - '↔', '↗', '↘', '≂', - '⇐', '⇒', '⇑', '⇓', - '⇔', '↖', '↙', '∝', - - '′', '∞', '∈', '∋', - '△', '▽', '̸', '', - '∀', '∃', '¬', '∅', - 'ℜ', 'ℑ', '⊤', '⊥', - - 'ℵ', '', 'ℬ', '', - '', 'ℰ', 'ℱ', '', - 'ℋ', 'ℐ', '', '', - 'ℒ', 'ℳ', '', '', - - '', '', 'ℛ', '', - '', '', '', '', - '', '', '', '∪', - '∩', '⊎', '∧', '∨', - - '⊢', '⊣', '⌊', '⌋', - '⌈', '⌉', '{', '}', - '〈', '〉', '∣', '∥', - '↕', '⇕', '∖', '≀', - - '√', '∐', '∇', '∫', - '⊔', '⊓', '⊑', '⊒', - '§', '†', '‡', '¶', - '♣', '♢', '♡', '♠' - ], - - cmex10: [ - '', '', '', '', - '', '', '', '', - '', '', '', '', - '', '', '', '', - - '', '', '', '', - '', '', '', '', - '', '', '', '', - '', '', '', '', - - '', '', '', '', - '', '', '', '', - '', '', '', '', - '', '', '', '', - - '', '', '', '', - '', '', '', '', - '', '', '', '', - '', '', '', '', - - '', '', '', '', - '', '', '', '', - '', '', '', '', - '', '', '', '', - - '', '', '', '', - '', '', '', '', - '', '', '', '', - '', '', '', '', - - '', '', '', '', - '', '', '', '', - '', '', '', '', - '', '', '', '', - - '', '', '', '', - '', '', '', '', - '', '', '', '', - '', '', '', '' - ] - }); - - /* - * Adjust a few other characters as well - */ - - jsMath.Update.TeXfonts({ - cmr10: {'20': {c: 'ˇ', tclass: 'normal', w: .3}}, - cmmi10: { - '20': {c: '&kappa', tclass: 'normal'}, - '58': {c: '.', tclass: 'normal'}, - '59': {c: ',', tclass: 'normal'}, - '61': {c: '/', tclass: 'cmr10'} - }, - cmsy10: { - '3': {c: '*', tclass: 'normal'}, - '16': {c: '≍'}, - '17': {c: '≡', tclass: 'normal'}, - '25': {c: '≈', tclass: 'normal'}, - '39': {c: '≃'}, - '20': {c: '≤', tclass: 'normal'} - }, - cmex10: {'20': {c: ''}}, - cmti10: {'10': {c: 'Ω', tclass: 'normal'}}, - cmbx10: {'10': {c: 'Ω', tclass: 'normal'}} - }); - -} else { - - jsMath.Font.BaKoMa = [ - '¡', '¢', '£', '¤', '¥', '¦', '§', '¨', - '©', 'ª', '­', '®', '¯', '°', '±', '²', - - '³', '´', 'µ', '¶', '∙', '¸', '¹', 'º', - '»', '¼', '½', '¾', '¿', 'À', 'Á', 'Â', - - 'Ã', '!', '"', '#', '$', '%', '&', '\'', - '(', ')', '*', '+', ',', '-', '.', '/', - - '0', '1', '2', '3', '4', '5', '6', '7', - '8', '9', ':', ';', '<', '=', '>', '?', - - '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', - 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', - - 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', - 'X', 'Y', 'Z', '[', '\\', ']', '^', '_', - - '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g', - 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', - - 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', - 'x', 'y', 'z', '{', '|', '}', '~', 'Ä' - ]; - - jsMath.Update.TeXfontCodes({ - cmr10: jsMath.Font.BaKoMa, - cmmi10: jsMath.Font.BaKoMa, - cmsy10: jsMath.Font.BaKoMa, - cmex10: jsMath.Font.BaKoMa, - cmti10: jsMath.Font.BaKoMa, - cmbx10: jsMath.Font.BaKoMa - }); - - /* - * MSIE corrections - */ - switch (jsMath.browser) { - - case "MSIE": - if (jsMath.platform == "pc") { - /* - * MSIE/PC - */ - jsMath.Browser.msieFontBug = 1; - jsMath.Update.TeXfonts({ - cmr10: {'10': {c: 'Ω', tclass: 'normal'}}, - cmmi10: { - '10': {c: 'Ω', tclass: 'normal'}, - '126': {c: '~'} - }, - cmsy10: { - '10': {c: '⊗', tclass: 'arial'}, - '55': {c: '7'} - }, - cmex10: {'10': {c: 'D'}}, - cmti10: {'10': {c: 'Ω', tclass: 'normal'}}, - cmbx10: {'10': {c: 'Ω', tclass: 'normal'}} - }); - } else { - /* - * MSIE/Mac - */ - jsMath.Update.TeXfonts({ - - cmr10: { - '3': {c: 'L', tclass: 'normal'}, - '5': {c: 'P', tclass: 'normal'}, - '10': {c: 'W', tclass: 'normal'}, - '15': {c: 'ffl', tclass: 'normal'}, - '16': {c: 'ı', tclass: 'normal'}, - '20': {c: 'ˇ', tclass: 'normal'}, - '22': {c: '¯', tclass: 'normal', w: .3}, - '25': {c: 'ß', tclass: 'normal'}, - '26': {c: 'æ', tclass: 'normal'}, - '27': {c: 'œ', tclass: 'normal'} - }, - - cmmi10: { - '3': {c: 'L', tclass: 'italic'}, - '5': {c: 'P', tclass: 'italic'}, - '10': {c: 'W', tclass: 'italic'}, - '15': {c: 'e', tclass: 'italic'}, - '16': {c: 'z', tclass: 'italic'}, - '20': {c: 'k', tclass: 'italic'}, - '22': {c: 'm', tclass: 'italic'}, - '25': {c: 'p', tclass: 'italic'}, - '26': {c: 'r', tclass: 'italic'}, - '27': {c: 's', tclass: 'italic'} - }, - - cmsy10: { - '3': {c: '*', tclass: 'normal'}, - '5': {c: 'Ή', tclass: 'normal'}, - '10': {c: '⊗', tclass: 'normal'}, - '15': {c: '•', tclass: 'normal'}, - '16': {c: '≍', tclass: 'normal'}, - '20': {c: '≤', tclass: 'normal'}, - '22': {c: '≤', tclass: 'normal'}, - '25': {c: '≈', tclass: 'normal'}, - '26': {c: 'Ì', tclass: 'normal'}, - '27': {c: 'É', tclass: 'normal'} - }, - - cmex10: { - '3': {c: 'i'}, - '5': {c: 'k'}, - '10': {c: 'D'}, - '15': {c: 'Â'}, - '16': {c: 'µ'}, - '20': {c: '"'}, - '22': {c: '$'}, - '25': {c: '\''}, - '26': {c: '('}, - '27': {c: ')'} - }, - - cmti10: { - '3': {c: 'L', tclass: 'italic'}, - '5': {c: 'P', tclass: 'italic'}, - '10': {c: 'W', tclass: 'italic'}, - '16': {c: 'ı', tclass: 'italic'}, - '20': {c: '­', tclass: 'italic'}, - '22': {c: '¯', tclass: 'italic', w: .3}, - '25': {c: 'ß', tclass: 'italic'}, - '26': {c: 'æ', tclass: 'italic'}, - '27': {c: 'œ', tclass: 'italic'} - }, - - cmbx10: { - '3': {c: 'L', tclass: 'bold'}, - '5': {c: 'P', tclass: 'bold'}, - '10': {c: 'W', tclass: 'bold'}, - '16': {c: 'ı', tclass: 'bold'}, - '20': {c: '­', tclass: 'bold'}, - '22': {c: '¯', tclass: 'bold', w: .3}, - '25': {c: 'ß', tclass: 'bold'}, - '26': {c: 'æ', tclass: 'bold'}, - '27': {c: 'œ', tclass: 'bold'} - } - }); - } - break; - - case "Mozilla": - if (jsMath.platform == "mac") { - /* - * Mozilla/Mac - */ - jsMath.Update.TeXfonts({ - cmr10: {'10': {c: 'Ω', tclass: 'normal'}}, - cmmi10: {'10': {c: 'Ω', tclass: 'normal'}}, - cmsy10: {'10': {c: '⊗', tclass: 'normal'}}, - cmex10: {'10': {c: 'D'}}, - cmti10: {'10': {c: 'Ω', tclass: 'normal'}}, - cmbx10: {'10': {c: 'Ω', tclass: 'normal'}} - }); - } - break; - - case "Opera": - jsMath.Update.TeXfonts({ - cmr10: { - '10': {c: 'Ω', tclass: 'normal'}, - '20': {c: 'ˇ', tclass: 'normal'} - }, - cmmi10: { - '10': {c: 'Ω', tclass: 'normal'}, - '20': {c: 'κ', tclass: 'normal'} - }, - cmsy10: { - '10': {c: '⊗', tclass: 'normal'}, - '20': {c: '≤', tclass: 'normal'} - }, - cmex10: { - '10': {c: 'D'}, - '20': {c: '"'} - }, - cmti10: { - '10': {c: 'Ω', tclass: 'normal'}, - '20': {c: 'ˇ', tclass: 'normal'} - }, - cmbx10: { - '10': {c: 'Ω', tclass: 'normal'}, - '20': {c: 'ˇ', tclass: 'normal'} - } - }); - break; - - case "Konqueror": - jsMath.Update.TeXfonts({ - cmr10: {'20': {c: 'ˇ', tclass: 'normal'}}, - cmmi10: {'20': {c: 'κ', tclass: 'normal'}}, - cmsy10: {'20': {c: '≤', tclass: 'normal'}}, - cmex10: {'20': {c: '"'}}, - cmti10: {'20': {c: 'ˇ', tclass: 'normal'}}, - cmbx10: {'20': {c: 'ˇ', tclass: 'normal'}} - }); - break; - } - -} - -jsMath.Setup.Styles({ - '.typeset .cmr10': 'font-family: CMR10, serif', - '.typeset .cmbx10': 'font-family: CMBX10, CMR10', - '.typeset .cmti10': 'font-family: CMTI10, CMR10', - '.typeset .cmmi10': 'font-family: CMMI10', - '.typeset .cmsy10': 'font-family: CMSY10', - '.typeset .cmex10': 'font-family: CMEX10', - '.typeset .arial': "font-family: 'Arial unicode MS'" -}); diff --git a/sagenb/data/jsmath/jsMath-autoload.html b/sagenb/data/jsmath/jsMath-autoload.html deleted file mode 100644 index ead6773d5..000000000 --- a/sagenb/data/jsmath/jsMath-autoload.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - diff --git a/sagenb/data/jsmath/jsMath-controls.html b/sagenb/data/jsmath/jsMath-controls.html deleted file mode 100644 index e395ebed0..000000000 --- a/sagenb/data/jsmath/jsMath-controls.html +++ /dev/null @@ -1,467 +0,0 @@ - - - - - - - - - - - - - - - - -
-
-jsMath Options -[help] -

-

- - - - - -
- - - - - - - - - - - - - - - - - - - - - -
Autoselect best font
Show font warnings
Use image alpha channels
Print image-font help
Always use hi-res fonts
Show progress messages
Force asynchronous processing
Don't show page until complete
Show jsMath button
-
- - - - - - - - - - - - - - - - - - - - -
Scale all mathematics to %
-Use native TeX fonts -(download) -
-Use image fonts -( scalable)
-Use images for symbols only
-Use native Unicode fonts
Use Global mode - -
Save settings for - -
- - - - - - -
  - -   - - -  -
- -
-
-
-
-

- - - - - - - diff --git a/sagenb/data/jsmath/jsMath-easy-load.js b/sagenb/data/jsmath/jsMath-easy-load.js deleted file mode 100644 index 20a0dfadd..000000000 --- a/sagenb/data/jsmath/jsMath-easy-load.js +++ /dev/null @@ -1,157 +0,0 @@ -/* - * jsMath-easy-load.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file is used to load jsMath with one easy '); - -} else { - jsMath.Easy.tex2math = - (jsMath.Easy.processSingleDollars || - jsMath.Easy.processDoubleDollars || - jsMath.Easy.processSlashParens || - jsMath.Easy.processSlashBrackets || - jsMath.Easy.processLaTeXenvironments || - jsMath.Easy.fixEscapedDollars || - jsMath.Easy.customDelimiters); - - if (!jsMath.Setup) {jsMath.Setup = {}} - if (!jsMath.Setup.UserEvent) {jsMath.Setup.UserEvent = {}} - jsMath.Setup.UserEvent.onload = function () { - var easy = jsMath.Easy; - if (easy.tex2math) jsMath.Setup.Script("plugins/tex2math.js"); - var i; - if (easy.loadFiles) { - for (i = 0; i < easy.loadFiles.length; i++) - jsMath.Setup.Script(easy.loadFiles[i]); - } - if (easy.loadFonts) { - for (i = 0; i < easy.loadFonts.length; i++) - jsMath.Font.Load(easy.loadFonts[i]); - } - if (easy.macros) { - for (i in easy.macros) { - if (typeof(easy.macros[i]) == 'string') { - jsMath.Macro(i,easy.macros[i]); - } else { - jsMath.Macro(i,easy.macros[i][0],easy.macros[i][1]); - } - } - } - } - document.write(''+"\n"); -} - -jsMath.Easy.onload = function () { - if (jsMath.Easy.loaded) {return} else {jsMath.Easy.loaded = 1} - if (jsMath.Easy.autoloadCheck) jsMath.Autoload.Check(); - if (jsMath.Easy.tex2math) { - jsMath.Synchronize(function () { - if (jsMath.Easy.findCustomSettings) - jsMath.tex2math.Convert(document,jsMath.Easy.findCustomSettings); - if (jsMath.Easy.customDelimiters) { - var s = jsMath.Easy.customDelimiters; - jsMath.tex2math.CustomSearch(s[0],s[1],s[2],s[3]); - jsMath.tex2math.ConvertCustom(); - } - }); - } - (jsMath[jsMath.Easy.method])(); -} - -if (window.addEventListener) {window.addEventListener("load",jsMath.Easy.onload,false)} -else if (window.attachEvent) {window.attachEvent("onload",jsMath.Easy.onload)} -else {window.onload = jsMath.Easy.onload} diff --git a/sagenb/data/jsmath/jsMath-fallback-mac-mozilla.js b/sagenb/data/jsmath/jsMath-fallback-mac-mozilla.js deleted file mode 100644 index bd2d429fe..000000000 --- a/sagenb/data/jsmath/jsMath-fallback-mac-mozilla.js +++ /dev/null @@ -1,107 +0,0 @@ -/* - * jsMath-fallback-mac-mozilla.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed by Mozilla-based browsers on the Mac - * for when the TeX fonts are not available. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - - -/******************************************************************** - * - * Fix the default non-TeX-font characters to work with Mozilla - * - */ - -jsMath.Update.TeXfonts({ - cmmi10: { -// '41': // leftharpoondown -// '43': // rightharpoondown - '44': {c: '˓'}, - '45': {c: '˒'}, - '47': {c: ''}, -// '92': // natural - '126': {c: ''} - }, - - cmsy10: { - '0': {c: '–', tclass: 'normal'}, - '11': {c: '/', tclass: 'normal'}, - '42': {c: '⥣'}, '43': {c: '⥥'}, - '48': {c: '', tclass: 'normal'}, - '93': {c: '∪+'}, - '104': {c: ''}, - '105': {c: ''}, - '109': {c: '⥣'} -//, '116': // sqcup -// '117': // sqcap -// '118': // sqsubseteq -// '119': // sqsupseteq - }, - - cmex10: { - '10': {c: ''}, - '11': {c: ''}, - '14': {c: '/'}, '15': {c: '\\'}, - '28': {c: ''}, - '29': {c: ''}, - '30': {c: '/'}, '31': {c: '\\'}, - '42': {c: ''}, - '43': {c: ''}, - '44': {c: '/'}, '45': {c: '\\'}, - '46': {c: '/'}, '47': {c: '\\'}, - '68': {c: ''}, - '69': {c: ''}, -// '70': // sqcup -// '71': // big sqcup - '72': {ic: .194}, '73': {ic: .444}, - '82': {tclass: 'bigop1cx', ic: .15}, '90': {tclass: 'bigop2cx', ic:.6}, - '85': {c: '∪+'}, - '93': {c: '∪+'} - } - -}); - -jsMath.Setup.Styles({ - '.typeset .symbol': "font-family: Osaka", - '.typeset .arrow1': "font-family: Osaka; position: relative; top: .125em; margin: -1px", - '.typeset .arrow2': "font-family: AppleGothic; font-size: 100%; position:relative; top: .11em; margin:-1px", - '.typeset .bigop1': "font-family: AppleGothic; font-size: 110%; position:relative; top: .9em; margin:-.05em", - '.typeset .bigop1b': "font-family: Osaka; font-size: 140%; position: relative; top: .8em; margin:-.1em", - '.typeset .bigop1c': "font-family: AppleGothic; font-size: 125%; position:relative; top: .85em; margin:-.3em", - '.typeset .bigop1cx': "font-family: 'Apple Chancery'; font-size: 125%; position:relative; top: .7em; margin:-.1em", - '.typeset .bigop2': "font-family: AppleGothic; font-size: 175%; position:relative; top: .85em; margin:-.1em", - '.typeset .bigop2b': "font-family: Osaka; font-size: 200%; position: relative; top: .75em; margin:-.15em", - '.typeset .bigop2c': "font-family: AppleGothic; font-size: 300%; position:relative; top: .75em; margin:-.35em", - '.typeset .bigop2cx': "font-family: 'Apple Chancery'; font-size: 250%; position:relative; top: .7em; margin-left:-.1em; margin-right:-.2em", - '.typeset .delim1b': "font-family: Times; font-size: 150%; position:relative; top:.8em; margin:.01em", - '.typeset .delim2b': "font-family: Times; font-size: 210%; position:relative; top:.8em; margin:.01em", - '.typeset .delim3b': "font-family: Times; font-size: 300%; position:relative; top:.75em; margin:.01em", - '.typeset .delim4b': "font-family: Times; font-size: 400%; position:relative; top:.725em; margin:.01em" -}); - - -/* - * replace \not and \joinrel with better dimensions - */ - -jsMath.Macro('not','\\mathrel{\\rlap{\\kern 3mu/}}'); -jsMath.Macro('joinrel','\\mathrel{\\kern-3mu}'); diff --git a/sagenb/data/jsmath/jsMath-fallback-mac-msie.js b/sagenb/data/jsmath/jsMath-fallback-mac-msie.js deleted file mode 100644 index 97bd15eb1..000000000 --- a/sagenb/data/jsmath/jsMath-fallback-mac-msie.js +++ /dev/null @@ -1,200 +0,0 @@ -/* - * jsMath-fallback-mac-msie.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed by Internet Explorer on the Mac - * for when the TeX fonts are not available. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - - -/******************************************************************** - * - * Fix the default non-TeX-font characters to work with MSIE - * - */ - -jsMath.Update.TeXfonts({ - cmr10: { - '0': {c: 'G', tclass: 'greek'}, - '1': {c: 'D', tclass: 'greek'}, - '2': {c: 'Q', tclass: 'greek'}, - '3': {c: 'L', tclass: 'greek'}, - '4': {c: 'X', tclass: 'greek'}, - '5': {c: 'P', tclass: 'greek'}, - '6': {c: 'S', tclass: 'greek'}, - '7': {c: '¡', tclass: 'greek'}, - '8': {c: 'F', tclass: 'greek'}, - '9': {c: 'Y', tclass: 'greek'}, - '10': {c: 'W', tclass: 'greek'}, - '22': {c: '`', tclass: 'symbol3'} - }, - - cmti10: { - '0': {c: 'G', tclass: 'igreek'}, - '1': {c: 'D', tclass: 'igreek'}, - '2': {c: 'Q', tclass: 'igreek'}, - '3': {c: 'L', tclass: 'igreek'}, - '4': {c: 'X', tclass: 'igreek'}, - '5': {c: 'P', tclass: 'igreek'}, - '6': {c: 'S', tclass: 'igreek'}, - '7': {c: '¡', tclass: 'igreek'}, - '8': {c: 'F', tclass: 'igreek'}, - '9': {c: 'Y', tclass: 'igreek'}, - '10': {c: 'W', tclass: 'igreek'}, - '22': {c: '`', tclass: 'symbol3'} - }, - - cmbx10: { - '0': {c: 'G', tclass: 'bgreek'}, - '1': {c: 'D', tclass: 'bgreek'}, - '2': {c: 'Q', tclass: 'bgreek'}, - '3': {c: 'L', tclass: 'bgreek'}, - '4': {c: 'X', tclass: 'bgreek'}, - '5': {c: 'P', tclass: 'bgreek'}, - '6': {c: 'S', tclass: 'bgreek'}, - '7': {c: '¡', tclass: 'bgreek'}, - '8': {c: 'F', tclass: 'bgreek'}, - '9': {c: 'Y', tclass: 'bgreek'}, - '10': {c: 'W', tclass: 'bgreek'}, - '22': {c: '`', tclass: 'symbol3'} - }, - cmmi10: { - '0': {c: 'G', tclass: 'igreek'}, - '1': {c: 'D', tclass: 'igreek'}, - '2': {c: 'Q', tclass: 'igreek'}, - '3': {c: 'L', tclass: 'igreek'}, - '4': {c: 'X', tclass: 'igreek'}, - '5': {c: 'P', tclass: 'igreek'}, - '6': {c: 'S', tclass: 'igreek'}, - '7': {c: '¡', tclass: 'igreek'}, - '8': {c: 'F', tclass: 'igreek'}, - '9': {c: 'Y', tclass: 'igreek'}, - '10': {c: 'W', tclass: 'igreek'}, - '11': {c: 'a', tclass: 'greek'}, - '12': {c: 'b', tclass: 'greek'}, - '13': {c: 'g', tclass: 'greek'}, - '14': {c: 'd', tclass: 'greek'}, - '15': {c: 'e', tclass: 'greek'}, - '16': {c: 'z', tclass: 'greek'}, - '17': {c: 'h', tclass: 'greek'}, - '18': {c: 'q', tclass: 'greek'}, - '19': {c: 'i', tclass: 'greek'}, - '20': {c: 'k', tclass: 'greek'}, - '21': {c: 'l', tclass: 'greek'}, - '22': {c: 'm', tclass: 'greek'}, - '23': {c: 'n', tclass: 'greek'}, - '24': {c: 'x', tclass: 'greek'}, - '25': {c: 'p', tclass: 'greek'}, - '26': {c: 'r', tclass: 'greek'}, - '27': {c: 's', tclass: 'greek'}, - '28': {c: 't', tclass: 'greek'}, - '29': {c: 'u', tclass: 'greek'}, - '30': {c: 'f', tclass: 'greek'}, - '31': {c: 'c', tclass: 'greek'}, - '32': {c: 'y', tclass: 'greek'}, - '33': {c: 'w', tclass: 'greek'}, -// '41': // leftharpoondown -// '43': // rightharpoondown -// '44': // hook left -// '45': // hook right -// '92': // natural - '94': {c: ''}, - '95': {c: ''} -// '127': // half-circle down accent? - }, - - cmsy10: { - '0': {c: '–', tclass: 'normal'}, - '11': {c: '/', tclass: 'normal'}, - '16': {c: '', tclass: 'normal'}, - '48': {c: ''}, - '93': {c: '∪+'}, - '96': {c: '|', tclass: 'normal'}, - '104': {c: ''}, - '105': {c: ''}, - '109': {c: '⇑'}, - '110': {c: '\\', d:0, tclass: 'normal'} -// '111': // wr -//, '113': // amalg -// '116': // sqcup -// '117': // sqcap -// '118': // sqsubseteq -// '119': // sqsupseteq - }, - - cmex10: { - '10': {c: ''}, - '11': {c: ''}, - '14': {c: '/'}, '15': {c: '\\'}, - '28': {c: ''}, - '29': {c: ''}, - '30': {c: '/'}, '31': {c: '\\'}, - '42': {c: ''}, - '43': {c: ''}, - '44': {c: '/'}, '45': {c: '\\'}, - '46': {c: '/'}, '47': {c: '\\'}, - '68': {c: ''}, - '69': {c: ''}, -// '70': // sqcup -// '71': // big sqcup - '72': {ic: 0}, '73': {ic: 0}, - '82': {tclass: 'bigop1cx', ic: .15}, '90': {tclass: 'bigop2cx', ic:.6}, - '85': {c: '∪+'}, - '93': {c: '∪+'}, -// '96': // coprod -// '97': // big coprod - '98': {c: '︿', h: 0.722, w: .58, tclass: 'wide1'}, - '99': {c: '︿', h: 0.722, w: .58, tclass: 'wide2'}, - '100': {c: '︿', h: 0.722, w: .58, tclass: 'wide3'}, - '101': {c: '~', h: 0.722, w: .42, tclass: 'wide1a'}, - '102': {c: '~', h: 0.8, w: .73, tclass: 'wide2a'}, - '103': {c: '~', h: 0.8, w: 1.1, tclass: 'wide3a'} - } - -}); - -jsMath.Setup.Styles({ - '.typeset .arrow1': "font-family: Osaka; position: relative; top: .125em; margin: -1px", - '.typeset .arrow2': "font-family: Osaka; position: relative; top: .1em; margin:-1px", - '.typeset .bigop1': "font-family: Symbol; font-size: 110%; position:relative; top: .8em; margin:-.05em", - '.typeset .bigop1b': "font-family: Symbol; font-size: 140%; position: relative; top: .8em; margin:-.1em", - '.typeset .bigop1c': "font-family: Osaka; font-size: 125%; position:relative; top: .85em; margin:-.3em", - '.typeset .bigop1cx': "font-family: 'Apple Chancery'; font-size: 125%; position:relative; top: .7em; margin:-.1em", - '.typeset .bigop2': "font-family: Symbol; font-size: 175%; position:relative; top: .8em; margin:-.07em", - '.typeset .bigop2a': "font-family: Baskerville; font-size: 175%; position: relative; top: .65em", - '.typeset .bigop2b': "font-family: Symbol; font-size: 175%; position: relative; top: .8em; margin:-.07em", - '.typeset .bigop2c': "font-family: Osaka; font-size: 230%; position:relative; top: .85em; margin:-.35em", - '.typeset .bigop2cx': "font-family: 'Apple Chancery'; font-size: 250%; position:relative; top: .6em; margin-left:-.1em; margin-right:-.2em", - '.typeset .delim1b': "font-family: Times; font-size: 150%; position:relative; top:.8em", - '.typeset .delim2b': "font-family: Times; font-size: 210%; position:relative; top:.75em;", - '.typeset .delim3b': "font-family: Times; font-size: 300%; position:relative; top:.7em;", - '.typeset .delim4b': "font-family: Times; font-size: 400%; position:relative; top:.65em;", - '.typeset .symbol3': "font-family: Symbol", - '.typeset .wide1': "font-size: 50%; position: relative; top:-1.1em", - '.typeset .wide2': "font-size: 80%; position: relative; top:-.7em", - '.typeset .wide3': "font-size: 125%; position: relative; top:-.5em", - '.typeset .wide1a': "font-size: 75%; position: relative; top:-.5em", - '.typeset .wide2a': "font-size: 133%; position: relative; top: -.15em", - '.typeset .wide3a': "font-size: 200%; position: relative; top: -.05em", - '.typeset .greek': "font-family: Symbol", - '.typeset .igreek': "font-family: Symbol; font-style:italic", - '.typeset .bgreek': "font-family: Symbol; font-weight:bold" -}); diff --git a/sagenb/data/jsmath/jsMath-fallback-mac.js b/sagenb/data/jsmath/jsMath-fallback-mac.js deleted file mode 100644 index e9e18311b..000000000 --- a/sagenb/data/jsmath/jsMath-fallback-mac.js +++ /dev/null @@ -1,29 +0,0 @@ -/* - * jsMath-fallback-mac.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed for when the TeX fonts are not available - * with a browser on the Mac. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -jsMath.Script.Uncompress([ - ['jsMath.Add(jsMath.TeX,{cmr10',':[{c:"Γ",','tclass:"greek"},{c:"&','Delta;",',2,'Theta;",',2,'Lambda;",',2,'Xi;",',2,'Pi;",',2,'Sigma;",',2,'Upsilon;",',2,'Phi;",',2,'Psi;",',2,'Omega;",','tclass:"','greek','"},{c:"','ff','",ic:0.0778,krn:{"39":0.0778,"63":0.0778,"33":0.0778,"41":0.0778,"93":0.0778},lig:{"105":','14,"108":15},','tclass:"normal"},{c',':"fi",',28,':"fl",',28,':"ffi",',28,':"ffl",',28,':"ı',';",a:0,',28,':"j",d:0.2,',28,':"`",',22,'accent','"},{c:"&#','xB4;",',22,44,45,'x2C7;",',22,44,45,'x2D8;",',22,44,'"},{c:"ˉ',';",',22,44,45,'x2DA;",',22,44,45,'x0327;",',28,':"ß",',28,':"æ',38,28,':"œ',38,28,':"ø",',28,':"Æ",',28,':"Œ",',28,':"Ø",',28,':"?",krn:{"108":-0.278,"76":-0.319},',28,':"!",lig:{"96":60},',28,':"”",',28,':"#",',28,':"$",',28,':"%",',28,':"&",',28,':"’",krn:{"63":0.111,"33":0.','111},','lig:{"39":34},',28,':"(",','d:0.2,',28,':")",',105,28,':"*",',28,':"+",','a:0.1,',28,':",",a:-','0.3,d:0.2,','w:0.278,',28,':"-",a:0,lig:{"45":123},',28,':".",a:-0.','25,',28,':"/",',28,':"0",',28,':"1",',28,':"2",',28,':"3",',28,':"4",',28,':"5",',28,':"6",',28,':"7",',28,':"8",',28,':"9",',28,':":",',28,':";",',28,':"¡",',28,':"=",','a:0,d:-0.','1,',28,':"¿",',28,':"?",lig:{"96":62},',28,':"@",',28,':"A','",krn:{"','116','":-0.0278,"','67',165,'79',165,'71',165,'85',165,'81',165,'84','":-0.0833,"','89',177,'86','":-0.111',',"87":-0.',101,28,':"B",',28,':"C",',28,':"D',163,'88',165,'87',165,'65',165,'86',165,'89','":-0.0278','},',28,':"E",',28,':"F',163,'111',177,'101',177,'117','":-0.0833,"114":-0.0833,"97":-0.0833,"65":-0.','111,"79',165,'67',165,'71',165,'81',200,'},',28,':"G",',28,':"H",',28,':"I',163,'73":0.','0278','},',28,':"J",',28,':"K',163,'79',165,'67',165,'71',165,'81',200,'},',28,':"L',163,'84',177,'89',177,'86',181,182,101,28,':"M",',28,':"N",',28,':"O',163,'88',165,'87',165,'65',165,'86',165,'89',200,'},',28,':"P',163,'65',177,'111',165,'101',165,'97',165,'46',177,'44":-0.0833},',28,':"Q",','d:0.1,',28,':"R',163,'116',165,'67',165,'79',165,'71',165,'85',165,'81',165,'84',177,'89',177,'86',181,182,101,28,':"S",',28,':"T',163,'121',165,'101',177,'111',212,'0833,"117":-0.0833','},',28,':"U",',28,':"V",','ic:0.0139,krn:{"','111',177,'101',177,'117',212,'111,"79',165,'67',165,'71',165,'81',200,'},',28,':"W",',332,'111',177,'101',177,'117',212,'111,"79',165,'67',165,'71',165,'81',200,'},',28,':"X',163,'79',165,'67',165,'71',165,'81',200,'},',28,':"Y",ic:0.025,','krn:{"101',177,'111',212,326,'},',28,':"Z",',28,':"[",',291,28,':"“",',28,':"]",',291,28,':"ˆ",',22,44,45,'x2D9;",',22,44,45,'x2018;",lig:{"96":92},',28,':"a','",a:0,krn:{"','118',165,'106":0.','0556,"121',165,'119',200,'},',28,':"b',163,'101','":0.0278,"','111',421,'120',165,'100',421,'99',421,'113',421,'118',165,411,'0556,"121',165,'119',200,'},',28,':"c',408,'104',165,'107',200,'},',28,':"d",',28,':"e",a:0,',28,':"f',26,'12,"102":11,"108":13},',28,':"g",','a:0,d:0.2,ic:0.','0139,krn:{"',411,230,'},',28,':"h',163,'116',165,'117',165,'98',165,'121',165,'118',165,'119',200,'},',28,':"i",',28,40,28,':"k',163,'97','":-0.0556,"','101',165,'97',165,'111',165,'99',200,'},',28,':"l",',28,':"m',408,'116',165,'117',165,'98',165,'121',165,'118',165,'119',200,'},',28,':"n',408,'116',165,'117',165,'98',165,'121',165,'118',165,'119',200,'},',28,':"o',408,'101',421,'111',421,'120',165,'100',421,'99',421,'113',421,'118',165,411,'0556,"121',165,'119',200,'},',28,':"p",a:0,',105,380,421,'111',421,'120',165,'100',421,'99',421,'113',421,'118',165,411,'0556,"121',165,'119',200,'},',28,':"q",a:0,',105,28,':"','r",a:0,',28,':"s",a:0,',28,':"t',163,'121',165,'119',200,'},',28,':"u',408,'119',200,'},',28,':"v",a:0,',332,'97',487,'101',165,'97',165,'111',165,'99',200,'},',28,':"w",a:0,',332,'101',165,'97',165,'111',165,'99',200,'},',28,':"x",a:0,',28,':"y",',458,459,'111',165,'101',165,'97',165,'46',177,'44":-0.0833},',28,':"z",a:0,',28,':"–',';",a:0.1,','ic:0.0278,','lig:{"45":124},',28,':"—',644,645,28,':"˝",',22,44,45,'x2DC;",',22,44,45,'xA8;",',22,44,'"}],cmmi10',1,'ic:0.139',',krn:{"61":-0.0556,"59":-0.111,"58":-0.111,"127":0.','0833},',22,'igreek"},{c:"&',3,'krn:{"127":0.','167},',22,669,5,'ic:0.',230,',krn:{"127":0.','0833},',22,669,7,671,'167},',22,669,9,'ic:0.0757',678,'0833},',22,669,11,'ic:0.0812,krn:{"61',487,'59":-0.0556,"58":-0.0556,"127":0.','0556},',22,669,13,'ic:0.0576',678,'0833},',22,669,15,'ic:0.139',666,'0556},',22,669,17,671,'0833},',22,669,19,'ic:0.11,krn:{"61',487,696,'0556},',22,669,21,'ic:0.0502',678,'0833},',22,669,'alpha',';",a:0,ic:0.','0037',678,230,'},',2,'beta;",','d:0.2,ic:0.','0528',678,'0833},',2,'gamma;",',458,'0556,',2,'delta;",ic:0.0378,krn:{"',696,'0556},',2,'epsilon;",a:0',678,'0556},',22,'lucida"},{c:"ζ",',738,'0738',678,'0833},',2,'eta;",',458,'0359',678,'0556},',2,'theta;",ic:0.',230,678,'0833},',2,'iota;",a:0',678,'0556},',2,'kappa',38,2,'lambda;",',2,'mu',38,'d:0.2',678,230,'},',2,'nu',731,'0637,krn:{"',696,230,'},',2,'xi;",',738,'046',678,101,2,'pi',731,'0359,',2,'rho',38,'d:0.2',678,'0833},',2,'sigma',731,803,'krn:{"59',487,'58":-0.0556','},',2,'tau',731,'113,krn:{"',696,230,'},',2,'upsilon',731,'0359',678,230,'},',2,'phi',644,'d:0.2',678,'0833},',2,'chi',38,'d:0.2',678,'0556},',2,'psi',644,738,'0359',678,101,2,'omega',731,803,2,'epsilon;",a:0',678,'0833},',22,'greek',45,'x3D1;",',671,'0833},',28,':"ϖ',731,230,',',28,':"ϱ',38,'d:0.2',678,'0833},',28,':"ς",',458,'0799',678,'0833},',28,':"ϕ',644,'d:0.2',678,'0833},',28,':"↼",',153,'2,',22,'harpoon',45,'x21BD;",',153,'1,',22,'harpoon',45,'x21C0;",',153,'2,',22,'harpoon',45,'x21C1;",',153,'1,',22,'harpoon',57,'font-size',': 133%; ',58,':.1em; margin:-.2em; left:-.05em\\">&#','x02D3',60,113,22,'lucida',57,913,914,58,916,'x02D2',60,113,22,'lucida',57,913,':50%\\">&#','x25B7',60,22,'symbol',57,913,934,'x25C1',60,22,938,24,'0",',28,':"1",',28,':"2",',28,':"3",',28,':"4",',28,':"5",',28,':"6",',28,':"7",',28,':"8",',28,':"9",',28,121,'3,',28,':",",a:-',116,28,':"<',644,28,':"/",',291,'krn:{"1',487,'65',487,'77',487,'78',487,'89":0.0556,"90":-0.0556},',28,':">',644,28,976,913,934,'x2605',60,'a:0,','tclass:"symbol"},{c:"&#','x2202;",ic:0.0556',678,'0833},',28,':"A",',671,'139','},tclass:"italic"},{c:"','B",ic:0.0502',678,'0833',1010,'C",ic:0.0715,krn:{"61',165,696,'0833',1010,'D",ic:0.',230,678,'0556',1010,'E",ic:0.0576',678,'0833',1010,'F",ic:0.139',666,'0833',1010,'G",',671,'0833',1010,'H",ic:0.0812,krn:{"61',487,696,'0556',1010,'I",ic:0.0785',678,'111',1010,'J",ic:0.0962',666,'167',1010,'K",ic:0.0715,krn:{"61',487,696,'0556',1010,'L",',671,230,1010,'M','",ic:0.109,krn:{"','61',487,696,'0833',1010,'N',1060,'61',177,'61',165,696,'0833',1010,'O",ic:0.',230,678,'0833',1010,'P",ic:0.139',666,'0833',1010,'Q",d:0.2',678,'0833',1010,'R",ic:0.00773',678,'0833',1010,'S",ic:0.0576,krn:{"61',487,696,'0833',1010,'T','",ic:0.139,krn:{"','61',165,696,'0833',1010,'U',1060,'59',181,',"58',181,',"61',487,'127":0.',230,1010,'V",ic:0.222,krn:{"59','":-0.167,"','58',1116,'61',181,1010,'W',1098,'59',1116,'58',1116,'61',181,1010,'X",ic:0.0785,krn:{"61',177,'61',165,696,'0833',1010,'Y",ic:0.222,krn:{"59',1116,'58',1116,'61',181,1010,'Z",ic:0.0715,krn:{"61',487,696,'0833},',22,'italic',45,'x266D;",',22,'symbol2',45,'x266E;",',22,'symbol2',45,'x266F;",',22,'symbol2',57,'position: relative; top',':.5em\\">⌣',60,153,'1,',28,976,1164,':-.3em\\">⌢',60,153,'1,',28,':"ℓ",',671,101,22,938,24,'a",a:0,',22,'italic"},{c:"','b",',22,1185,'c",a:0',678,'0556',1010,'d',163,'89":0.0556,"90',487,'106',181,',"102',1116,1112,'167',1010,'e",a:0',678,'0556',1010,'f",',738,'108,krn:{"',696,'167',1010,'g",',458,'0359',678,230,1010,'h',163,'127',200,1010,'i",',22,1185,'j",',738,'0572,krn:{"59',487,816,1010,'k",ic:0.0315,',22,1185,'l",ic:0.0197',678,'0833',1010,'m",a:0,',22,1185,'n",a:0,',22,1185,'o",a:0',678,'0556',1010,'p",a:0,d:0.2',678,'0833',1010,'q",',458,'0359',678,'0833',1010,582,645,'krn:{"',696,'0556',1010,'s",a:0',678,'0556',1010,'t",',671,'0833',1010,'u",a:0',678,230,1010,'v",a:0,ic:0.0359',678,230,1010,'w",a:0,ic:0.0269',678,'0833',1010,'x",a:0',678,230,1010,'y",',458,'0359',678,'0556',1010,'z",a:0,ic:0.044',678,'0556},',22,'italic',45,'x131;",a:0',678,230,1010,'j",d:0.2',678,'0833},',22,'italic',45,'x2118',38,'d:0.2',678,101,28,976,'position:relative; left: .4em; top: -.8em; ',913,': 50%\\">→',60,'ic:0.154,',1002,'x0311;",ic:0.399,',22,'normal"}],cmsy10:[{c:"−',644,1002,'xB7;",',153,'2,',1002,'xD7',38,22,938,57,58,':.3em\\">*',60,'a:0,',1002,'xF7',38,1002,'x25CA;",',22,'lucida',45,'xB1',644,1002,'x2213;",',1002,'x2295;",',1002,'x2296;",',1002,'x2297;",',1002,'x2298;",',1002,'x2299;",',22,'symbol3',45,'x25EF;",',22,938,57,58,':.25em;\\">°',60,153,'1,',1002,'x2022;",',153,'2,',1002,'x224D',644,1002,'x2261',644,1002,'x2286;",',1002,'x2287;",',1002,'x2264;",',1002,'x2265;",',1002,'x227C;",',1002,'x227D;",',22,938,'"},{c:"~",',153,'2,',28,':"≈',644,'d:-0.1,',1002,'x2282;",',1002,'x2283;",',1002,'x226A;",',1002,'x226B;",',1002,'x227A;",',1002,'x227B;",',1002,'x2190;",',153,'15,',22,'arrow1',45,'x2192;",',153,'15,',22,'arrow1',45,'x2191',';",h:1,',22,'arrow1a',45,'x2193',1435,22,'arrow1a',45,'x2194',38,22,'arrow1',45,'x2197',1435,22,'arrows',45,'x2198',1435,22,'arrows',45,'x2243',644,1002,'x21D0',644,22,'arrow2',45,'x21D2',644,22,'arrow2',45,'x21D1;",h:0.9,',291,22,'arrow2a',45,'x21D3;",h:0.9,',291,22,'arrow2a',45,'x21D4',644,22,'arrow2',45,'x2196',1435,22,'arrows',45,'x2199',1435,22,'arrows',45,'x221D',644,22,938,57,913,914,'margin-right',': -.1em; ',1164,':.4em\\">′',60,'a:0,',22,'lucida',45,'x221E',644,1002,'x2208;",',1002,'x220B;",',1002,'x25B3;",',1002,'x25BD;",',22,938,'"},{c:"/",',22,938,57,913,':50%; ',58,':-.3em; ',1504,':-.2em\\">|&#','x2216',60,'a:0.3,',291,22,'lucida',57,913,': 75%; margin:-.3em\\">≀',60,22,938,57,58,': .86em\\">√',60,'h:0.04,d:0.9,',22,'lucida',45,'x2210;",a:0.4,',1002,'x2207;",',1002,'x222B',1435,291,'ic:0.111,',22,'root',45,'x2294;",',1002,'x2293;",',1002,'x2291;",',1002,'x2292;",',1002,'xA7;",',291,28,':"†",',291,28,':"‡",',291,28,':"¶",a:0.3,',291,22,'lucida',45,'x2663;",',1002,'x2666;",',1002,'x2665;",',1002,'x2660;",',22,938,'"}],cmex10:[{c',104,'h:0.04,d:1.16,n:','16,',22,'delim1"},{c',107,1828,'17,',22,1831,389,1828,'104,',22,1831,394,1828,'105,',22,'delim1',45,1718,'",',1828,'106,',22,'delim1',45,'xF8FB',';",h:0.04,d:','1.16,n:','107,',22,'delim1',45,'xF8EE',1856,1857,'108,',22,'delim1',45,'xF8F9',1856,1857,'109,',22,1831,1731,1828,'110,',22,1831,1734,1828,'111,',22,'delim1',45,'x3008',1856,1857,'68,',22,'delim1c',45,'x3009',1856,1857,'69,',22,'delim1c"},{c',1743,'h:0.7,d:0.15,delim:{','rep:12},',22,'vertical1',1747,1900,'rep:13},',22,'vertical1',45,'x2215',1856,1857,'46,',22,'delim1b',45,1764,1856,1857,'47,',22,'delim1b"},{c',104,'h:0.04,d:1.76,n:','18,',22,'delim2"},{c',107,1924,'19,',22,1927,104,'h:0.04,d:2.36,n:','32,',22,'delim3"},{c',107,1934,'33,',22,1937,389,1934,'34,',22,1937,394,1934,'35,',22,'delim3',45,1718,1856,'2.36,n:','36,',22,'delim3',45,'xF8FB',1856,1956,'37,',22,'delim3',45,'xF8EE',1856,1956,'38,',22,'delim3',45,'xF8F9',1856,1956,'39,',22,'delim3',57,'margin: -.1em','\\">{}{}{",',138,'26,',6,141,'"},{c:"<',172,173,'\\">}
-
-jsMath v -(type fonts) -[help] -

- - - - - - - - - - - - -
- - - - - - - - - - - - - -
-
  - - - - - - - - - - -
- -
-
-
-
-  - -
-
-
-
-
-  - - -
-Click the jsMath button or ALT-click -on mathematics to reopen this panel. -

-
-
",',138,'27,',6,141,'"},{c:"",h:0.','04,d:1.16,n:113,',6,'root',187,'190',189,'925em',191,'04,d:1.76,n:114,',6,194,187,'250',189,'925em',191,'06,d:2.36,n:115,',6,194,187,'320',189,'92em',191,'08,d:2.96,n:116,',6,194,187,'400',189,'92em',191,'1,d:3.75,n:117,',6,194,187,'500',189,'9em',191,'12,d:4.5,n:118,',6,194,187,'625',189,'9em',191,'14,d:5.7,',6,194,'"},{c:"||",h:0.65,d:0.15',',delim:{top:126,','bot:127,rep:119},',6,'vertical2',2,'x25B5;",h:0.','4,delim:{top:120,rep:63},',6,'arrow1b',2,'x25BF;",h:0.','38,delim:{bot:121,rep:63},',6,252,187,'67',189,'35em','; margin-left:-.','5em\\">╭',';",','h:0.1,',6,'symbol',187,'67',189,'35em; margin-right:-.5em\\">&#','x256E',264,265,6,267,187,'67',189,'35em',262,'5em\\">╰',264,265,6,267,187,'67',189,271,'x256F',264,265,6,267,2,249,'5',244,'rep:119},',6,'arrow2b',2,254,'6,d:-0.1,delim:{bot:127,rep:119},',6,302,'"}],cmti10',':[{c:"Γ",',11,'133,',6,'igreek"},{c:"&','Delta;",',6,313,'Theta;",','ic:0.094,',6,313,'Lambda;",',6,313,'Xi;",',11,'153,',6,313,'Pi;",',11,'164,',6,313,'Sigma;",',11,'12,',6,313,'Upsilon;",',11,'111,',6,313,'Phi;",',11,'0599,',6,313,'Psi;",',11,341,6,313,'Omega;",','ic:0.103,',6,'igreek','"},{c:"ff','",ic:0.212,krn:{"39":0.104,"63":0.104,"33":0.104,"41":0.104,"93":0.104},lig:{"105":','14,"108":15},','tclass:"italic"},{c',':"fi','",ic:0.103,',361,':"fl',363,361,':"ffi',363,361,':"ffl',363,361,':"ı",a:0,',11,'0767,',361,':"j",d:0.2,',11,'0374,',361,':"`",',6,'iaccent',2,'xB4;",',11,'0969,',6,384,2,'x2C7;",',11,'083,',6,384,2,'x2D8;",',11,'108,',6,384,2,'x2C9;",',355,6,384,2,'x2DA;",',6,384,'"},{c:"?",','d:0.17,w:0.46,',361,':"ß",',11,'105,',361,':"æ",a:0,','ic:0.0751,',361,':"œ",a:0,',420,361,':"ø",',11,'0919,',361,':"Æ",',11,'12,',361,':"Œ",',11,'12,',361,':"Ø",',318,361,':"?",krn:{"108":-0.','256,"76":-0.321},',361,':"!",','ic:0.124,lig:{"96":','60},',361,':"”",',11,'0696,',361,':"#",',11,'0662,',361,':"$",',361,':"%",',11,'136,',361,':"&",',11,'0969,',361,':"’",',11,'124,','krn:{"63":0.','102,"33":0.102},lig:{"39":34},',361,':"(",d:0.2,',11,'162,',361,':")",d:0.2,',11,'0369,',361,':"*",',11,'149,',361,':"+",a:0.1,',11,'0369,',361,':",",a:-0.3,d:0.2,w:0.278,',361,':"-",a:0,',11,'0283',',lig:{"45":','123},',361,':".",a:-0.25,',361,':"/",',11,'162,',361,':"0",',11,'136,',361,':"1",',11,'136,',361,':"2",',11,'136,',361,':"3",',11,'136,',361,':"4",',11,'136,',361,':"5",',11,'136,',361,':"6",',11,'136,',361,':"7",',11,'136,',361,':"8",',11,'136,',361,':"9",',11,'136,',361,':":",',11,'0582,',361,':";",',11,'0582,',361,':"¡",',11,'0756,',361,':"=",a:0,d:-0.1,',11,'0662,',361,':"¿",',361,':"?",','ic:0.122,','lig:{"96":','62},',361,':"@",',11,'096,',361,':"A",','krn:{"110":-0.0256,"108":-0.0256,"114":-0.0256,"117":-0.0256,"109":-0.0256,"116":-0.0256,"105":-0.0256,"67":-0.0256,"79":-0.0256,"71":-0.0256,"104":-0.0256,"98":-0.0256,"85":-0.0256,"107":-0.0256,"118":-0.0256,"119":-0.0256,"81":-','0.0256,"84','":-0.0767,"','89',571,'86','":-0.102,"','87',575,'101','":-0.0511,"','97',579,'111',579,'100',579,'99',579,'103',579,'113','":-0.0511','},',361,':"B',363,361,':"C",','ic:0.145,',361,':"D",',318,'krn:{"88','":-0.0256,"','87',603,'65',603,'86',603,'89":-0.','0256},',361,':"E",',11,'12,',361,':"F','",ic:0.133,krn:{"','111',571,'101',571,'117','":-0.0767,"114":-0.0767,"97":-0.0767,"','65',575,'79',603,'67',603,'71',603,'81":-0.0256','},',361,':"G",',11,'0872,',361,':"H",',11,'164,',361,':"I",',11,'158,',361,':"J",',11,'14,',361,':"K",',598,'krn:{"79',603,'67',603,'71',603,633,'},',361,':"L",krn:{"84',571,'89',571,'86',575,'87',575,'101',579,'97',579,'111',579,'100',579,'99',579,'103',579,'113',591,'},',361,':"M",',11,'164,',361,':"N",',11,'164,',361,':"O",',318,'krn:{"88',603,'87',603,'65',603,'86',603,610,'0256},',361,':"P',363,'krn:{"65":-0.0767},',361,':"Q",d:0.1,',318,361,':"R",',11,'0387,',569,'0.0256,"84',571,'89',571,'86',575,'87',575,'101',579,'97',579,'111',579,'100',579,'99',579,'103',579,'113',591,'},',361,':"S",',11,'12,',361,':"T',618,'121',571,'101',571,'111',624,'117',571,'65":-0.0767},',361,':"U",',11,'164,',361,':"V",ic:0.','184,krn:{"','111',571,'101',571,'117',624,'65',575,'79',603,'67',603,'71',603,633,'},',361,':"W",ic:0.',764,'65":-0.0767},',361,':"X",',11,'158,krn:{"79',603,'67',603,'71',603,633,'},',361,':"Y",',11,'194',',krn:{"101',571,'111',624,'117',571,'65":-0.0767},',361,':"Z",',598,361,':"[",d:0.1,',11,'188,',361,':"“",',11,'169,',361,':"]",d:0.1,',11,'105,',361,':"ˆ",',11,'0665,',6,384,2,'x2D9;",',11,'118,',6,384,2,'x2018;",',444,'92},',361,':"a','",a:0,ic:0.',376,361,':"b",',11,'0631',800,579,'97',579,'111',579,'100',579,'99',579,'103',579,'113',591,'},',361,':"c',840,'0565',800,579,'97',579,'111',579,'100',579,'99',579,'103',579,'113',591,'},',361,':"d',363,'krn:{"108":','0.0511},',361,':"e',840,'0751',800,579,'97',579,'111',579,'100',579,'99',579,'103',579,'113',591,'},',361,':"f',359,'12,"102":11,"108":13},',361,':"g','",a:0,d:0.2,ic:0.','0885,',361,':"h",',11,376,361,':"i",',11,'102,',361,378,598,361,':"k",',11,400,361,':"l',363,883,'0.0511},',361,':"m',840,376,361,':"n',840,376,'krn:{"39":-0.102},',361,':"o',840,'0631',800,579,'97',579,'111',579,'100',579,'99',579,'103',579,'113',591,'},',361,':"p',910,'0631',800,579,'97',579,'111',579,'100',579,'99',579,'103',579,'113',591,'},',361,':"q',910,'0885,',361,':"r',840,'108',800,579,'97',579,'111',579,'100',579,'99',579,'103',579,'113',591,'},',361,':"s',840,'0821,',361,':"t",',11,'0949,',361,':"u',840,376,361,':"v',840,400,361,':"w',840,400,883,'0.0511},',361,':"x',840,'12,',361,':"y',910,'0885,',361,':"z',840,'123,',361,':"–",a:0.1,ic:0.','0921',492,'124},',361,':"—",a:0.1,ic:0.','0921,',361,':"˝",',560,6,384,2,'x2DC;",',11,'116,',6,384,2,'xA8;",',6,384,'"}],cmbx10',309,6,'bgreek"},{c:"&','Delta;",',6,1062,317,6,1062,'Lambda;",',6,1062,324,6,1062,329,6,1062,334,6,1062,339,6,1062,344,6,1062,349,6,1062,354,6,'bgreek','"},{c:"ff','",ic:0.0778,krn:{"39":0.0778,"63":0.0778,"33":0.0778,"41":0.0778,"93":0.0778},lig:{"105":','14,"108":15},','tclass:"bold"},{c',':"fi",',1096,':"fl",',1096,':"ffi",',1096,':"ffl",',1096,374,1096,378,1096,':"`",',6,'baccent',2,386,6,1111,2,392,6,1111,2,398,6,1111,2,404,6,1111,2,'x2DA;",',6,1111,412,1096,415,1096,419,1096,422,1096,425,1096,429,1096,433,1096,437,1096,440,'278,"76":-0.319},',1096,443,561,'60},',1096,447,1096,451,1096,':"$",',1096,457,1096,461,1096,465,468,'111,"33":0.111},lig:{"39":34},',1096,471,1096,475,1096,479,1096,483,1096,':",",a:-0.3,d:0.2,w:0.278,',1096,':"-",a:0',492,'123},',1096,':".",a:-0.25,',1096,497,1096,501,1096,505,1096,509,1096,513,1096,517,1096,521,1096,525,1096,529,1096,533,1096,537,1096,541,1096,545,1096,549,1096,553,1096,':"¿",',1096,559,561,'62},',1096,564,1096,':"A",krn:{"116','":-0.0278,"','67',1224,'79',1224,'71',1224,'85',1224,'81',1224,'84','":-0.0833,"','89',1236,'86":-0.','111,"87":-0.111},',1096,':"B",',1096,597,1096,':"D",krn:{"88',1224,'87',1224,'65',1224,'86',1224,610,'0278},',1096,613,1096,':"F",krn:{"111',1236,'101',1236,'117','":-0.0833,"114":-0.0833,"97":-0.0833,"65":-0.','111,"79',1224,'67',1224,'71',1224,'81":-0.0278','},',1096,636,1096,640,1096,':"I",krn:{"73":0.0278},',1096,648,1096,':"K",krn:{"79',1224,'67',1224,'71',1224,1271,'},',1096,':"L",krn:{"84',1236,'89',1236,1239,'111,"87":-0.111},',1096,687,1096,691,1096,':"O",krn:{"88',1224,'87',1224,'65',1224,'86',1224,610,'0278},',1096,':"P",krn:{"65',1236,'111',1224,'101',1224,'97',1224,'46',1236,'44":-0.0833},',1096,712,1096,':"R",krn:{"116',1224,'67',1224,'79',1224,'71',1224,'85',1224,'81',1224,'84',1236,'89',1236,1239,'111,"87":-0.111},',1096,743,1096,':"T",krn:{"121',1224,'101',1236,'111',1264,'0833,"117":-0.0833','},',1096,759,1096,763,'0139,krn:{"','111',1236,'101',1236,'117',1264,'111,"79',1224,'67',1224,'71',1224,1271,'},',1096,782,1360,'111',1236,'101',1236,'117',1264,'111,"79',1224,'67',1224,'71',1224,1271,'},',1096,':"X",krn:{"79',1224,'67',1224,'71',1224,1271,'},',1096,':"Y",',11,'025',800,1236,'111',1264,1354,'},',1096,808,1096,811,1096,815,1096,819,1096,823,6,1111,2,829,6,1111,2,835,561,'92},',1096,':"a','",a:0,krn:{"','118',1224,'106":0.','0556,"121',1224,'119":-0.','0278},',1096,':"b",krn:{"101','":0.0278,"','111',1443,'120',1224,'100',1443,'99',1443,'113',1443,'118',1224,1436,'0556,"121',1224,1439,'0278},',1096,':"c',1433,'104',1224,'107":-0.0278},',1096,':"d",',1096,':"e",a:0,',1096,':"f',1094,'12,"102":11,"108":13},',1096,':"g',910,1360,1436,'0278},',1096,':"h",krn:{"116',1224,'117',1224,'98',1224,'121',1224,'118',1224,1439,'0278},',1096,917,1096,378,1096,':"k",krn:{"97":-0.0556,"101',1224,'97',1224,'111',1224,'99":-0.','0278},',1096,':"l",',1096,':"m',1433,'116',1224,'117',1224,'98',1224,'121',1224,'118',1224,1439,'0278},',1096,':"n',1433,'116',1224,'117',1224,'98',1224,'121',1224,'118',1224,1439,'0278},',1096,':"o",a:0',800,1443,'111',1443,'120',1224,'100',1443,'99',1443,'113',1443,'118',1224,1436,'0556,"121',1224,1439,'0278},',1096,':"p",a:0,d:0.2',800,1443,'111',1443,'120',1224,'100',1443,'99',1443,'113',1443,'118',1224,1436,'0556,"121',1224,1439,'0278},',1096,':"q",a:0,d:0.2,',1096,':"r",a:0,',1096,':"s",a:0,',1096,':"t",krn:{"121',1224,1439,'0278},',1096,':"u',1433,1439,'0278},',1096,':"v',840,1360,'97":-0.0556,"101',1224,'97',1224,'111',1224,1505,'0278},',1096,':"w',840,'0139',800,1224,'97',1224,'111',1224,1505,'0278},',1096,':"x",a:0,',1096,':"y',910,1360,'111',1224,'101',1224,'97',1224,'46',1236,'44":-0.0833},',1096,':"z",a:0,',1096,1037,'0278',492,'124},',1096,1042,'0278,',1096,1045,6,1111,2,1050,6,1111,2,'xA8;",',6,1111,'"}]});','jsMath.Setup.Styles({".typeset .','cmr10','":"font-family: ','serif','",".typeset .','italic":"font-style: italic',1663,'bold":"font-weight: bold',1663,'lucida":"font-family: \'Lucida Grande','\'",".typeset .','asymbol','":"font-family: \'Apple ','Symbols\'; ','font-size: ','115','%",".typeset .','cal',1671,'Chancery',1669,'arrows','":"font-family: \'Hiragino Mincho Pro',1669,'arrow1',1681,'\'; ','position: relative; top',': .075em; margin: -1px',1663,'arrow1a',1681,'\'; margin:-.','3em',1663,252,1661,'AppleGothic','; ',1673,'50',1675,'arrow2',1661,'Symbol','; ',1673,'140%; ',1686,': .','1em; margin:-1px',1663,'arrow2a',1661,1703,1663,302,1661,1696,'; ',1673,'67',1675,'harpoon',1661,1696,'; ',1673,'90',1675,267,1681,1669,'symbol2',1681,1691,'2em',1663,'symbol3',1661,1696,1663,'delim1',1661,'Times; ',1673,'133',189,'75em',1663,'delim1b',1681,'\'; ',1673,'133',189,'8em; ',173,1663,'delim1c',1661,1703,'; ',1673,'120',189,'8em',';",".typeset .',141,1661,'Baskerville','; ',1673,'180',189,1747,1663,'delim2b',1681,'\'; ',1673,'190',189,'8em; ',173,1663,'delim2c',1661,1703,'; ',1673,'167',189,'8em',1766,'delim3',1661,1769,'; ',1673,'250',189,'725em',1663,'delim3b',1681,'\'; ',1673,'250',189,'8em; ',173,1663,'delim3c',1661,267,'; ',1673,'240',189,'775em',1766,'delim4',1661,1769,'; ',1673,'325',189,'7em',1663,'delim4b',1681,'\'; ',1673,'325',189,'8em; ',173,1663,'delim4c',1661,1703,'; ',1673,'300',189,'8em',1766,'vertical',1661,'Copperplate',1663,'vertical1',1661,1850,'; ',1673,'85%; margin: .','15em',1766,247,1661,1850,'; ',1673,1857,'17em',1766,'greek',1661,1662,1663,357,1661,1662,'; font-style:italic',1663,1092,1661,1662,'; font-weight:bold',1663,38,1681,'\'; ',1673,'133%; ',1686,': .85em','; margin:-.','05em',1663,1,1661,1769,'; ',1673,'100%; ',1686,': .775em',1766,20,1681,'\'; ',1673,'160%; ',1686,': .7em','; margin:-.1em',1663,14,1661,'Apple Symbols','; ',1673,'125%; ',1686,': .',1747,1908,1766,87,1681,'\'; ',1673,'200%; ',1686,': .8em',1889,'07em',1663,50,1661,1769,'; ',1673,'175%; ',1686,1907,1766,69,1681,'\'; ',1673,'270%; ',1686,': .62em',1908,1663,63,1671,'Symbols\'; ',1673,'250%; ',1686,1907,1889,'17em',1766,111,'":"',1673,'67%; ',1686,':-.8em',1663,116,'":"',1673,'110%; ',1686,':-.5em',1663,121,'":"',1673,'175%; ',1686,':-.32em',1663,127,'":"',1673,'75%; ',1686,1971,1663,132,'":"',1673,'133%; ',1686,': -.15em',1663,'wide3a":"',1673,'200%; ',1686,': -.05em',1663,194,1661,1769,1766,'accent":"',1686,': .02em',1663,384,'":"',1686,2006,'; font-style:italic',1663,1111,'":"',1686,2006,1880,'"});jsMath.noAppleSymbols=(jsMath.BBoxFor("∣").w==jsMath.BBoxFor("<',172,'font-family: ',1912,'\\">∣").w);','if(jsMath.noAppleSymbols){jsMath.Update.TeXfonts({cmsy10:{"','16":{c:"<','span style=\\"position:relative',';top:.','25em; ',1673,'67%\\">⌣<',2026,';top:-.15em;font-size:67%;','margin-left:-','1em\\">⌢',264,6,'normal"},"','22','":{c:"&#','x227A;<',2026,2027,'3em; ',2033,'1em\\">&','mdash',264,6,2037,'23',2039,'x227B;<',2026,2027,2043,2033,2045,'mdash',264,6,2037,'91','":{c:"∪',';"},"92',2039,22,';"},"93',2063,';<',172,1673,'50%; ',2033,'1.1em; ',1686,':-.3em; margin-right:.4em\\">+"},"94',2039,34,';"},"95',2039,40,';"},"96":{c:"|<',2026,'; top:-.15em',262,2045,'ndash',264,6,2037,'109',2039,'x21D1;<',2026,'; top:.','1em',262,'6em\\">⇓',264,'h:0.9,d:0.2,',6,1711,'"}},cmex10:{"85',2063,';<',172,1673,'50%; ',2033,'1.1em; ',1686,2076,'>"},"93',2063,';<',172,1673,'50%; ',2033,'1.1em; ',1686,2076,'>"}}});jsMath.Macro("rightleftharpoons","\\\\unicode{x21CC}");}else{',1659,'harpoon',1661,1912,'; ',1673,'125%"});}','if(jsMath.browser=="','OmniWeb"){jsMath.Update.TeXfonts({cmsy10:{"55":{c:"<',172,1673,'75%; ','position:relative','; left:.3em',2085,262,'3em\\">˫"},"104":{c:"<',2026,2096,'2em',262,'55em\\">〈"},"105":{c:"<',2026,2096,'2em','; margin-right',':-.55em\\">〉"}}});',1659,'arrow2',1661,1703,'; ',1673,'100%; ',1686,': -.',1709,'"});',2024,'22',2039,'x227A;<',2026,2027,'25em',262,'8em',2150,':.2em\\">&ndash',264,6,2037,'23',2039,'x227B;<',2026,2027,'25em',262,'7em',2150,':.',2045,'ndash',264,6,2037,'96":{c:"<',172,'font-size:80%; ',2137,2085,'\\">|<',2026,'; top:-.1em',262,2045,'ndash',264,6,'normal"}}});}}',2132,'Opera"){',1659,14,'":"margin:0pt .12em 0pt 0pt',1766,63,2210,';"});}',2132,'Mozilla','"){jsMath.Setup.Script("jsMath-fallback-mac-','mozilla.js");}',2132,'MSIE',2217,'msie.js");}jsMath.Macro("not","\\\\mathrel{\\\\rlap{\\\\kern 4mu/}}");jsMath.Box.defaultH=0.8;'] -]); diff --git a/sagenb/data/jsmath/jsMath-fallback-pc.js b/sagenb/data/jsmath/jsMath-fallback-pc.js deleted file mode 100644 index dfe675e2e..000000000 --- a/sagenb/data/jsmath/jsMath-fallback-pc.js +++ /dev/null @@ -1,29 +0,0 @@ -/* - * jsMath-fallback-pc.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed for when the TeX fonts are not available - * with a browser on the PC. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -jsMath.Script.Uncompress([ - ['jsMath.Add(jsMath.TeX,{cmr10',':[{c:"Γ",','tclass:"greek"},{c:"&','Delta;",',2,'Theta;",',2,'Lambda;",',2,'Xi;",',2,'Pi;",',2,'Sigma;",',2,'Upsilon;",',2,'Phi;",',2,'Psi;",',2,'Omega;",','tclass:"','greek','"},{c',':"ff','",ic:0.0778,krn:{"39":0.0778,"63":0.0778,"33":0.0778,"41":0.0778,"93":0.0778},lig:{"105":','14,"108":15},','tclass:"normal"},{c',':"fi",',28,':"fl",',28,':"ffi",',28,':"ffl",',28,':"ı',';",a:0,',28,':"j",','d:0.2,',28,':"ˋ",',22,'accent','"},{c:"&#','x2CA;",',22,45,46,'x2C7;",',22,45,46,'x2D8;",',22,45,46,'x2C9;",',22,45,46,'x2DA;",',22,45,46,'x0327;",',28,':"ß",',28,':"æ',38,28,':"œ',38,28,':"ø",',28,':"Æ",',28,':"Œ",',28,':"Ø",',28,':"?",krn:{"108":-0.278,"76":-0.319},',28,':"!",lig:{"96":60},',28,':"”",',28,':"#",',28,':"$",',28,':"%",',28,':"&",',28,':"’",krn:{"63":0.111,"33":0.','111},','lig:{"39":34},',28,':"(",',41,28,':")",',41,28,':"*",',28,':"+",a:0.1,',28,':",",a:-','0.3,d:0.2,','w:0.278,',28,':"-",a:0,lig:{"45":123},',28,':".",a:-0.','25,',28,':"/",',28,':"0",',28,':"1",',28,':"2",',28,':"3",',28,':"4",',28,':"5",',28,':"6",',28,':"7",',28,':"8",',28,':"9",',28,':":",',28,':";",',28,':"¡",',28,':"=",a:0,d:-0.1,',28,':"¿",',28,':"?",lig:{"96":62},',28,':"@",',28,':"A','",krn:{"','116','":-0.0278,"','67',161,'79',161,'71',161,'85',161,'81',161,'84','":-0.0833,"','89',173,'86','":-0.111',',"87":-0.',100,28,':"B",',28,':"C",',28,':"D',159,'88',161,'87',161,'65',161,'86',161,'89','":-0.0278','},',28,':"E",',28,':"F',159,'111',173,'101',173,'117','":-0.0833,"114":-0.0833,"97":-0.0833,"65":-0.','111,"79',161,'67',161,'71',161,'81',196,'},',28,':"G",',28,':"H",',28,':"I',159,'73":0.','0278','},',28,':"J",',28,':"K',159,'79',161,'67',161,'71',161,'81',196,'},',28,':"L',159,'84',173,'89',173,'86',177,178,100,28,':"M",',28,':"N",',28,':"O',159,'88',161,'87',161,'65',161,'86',161,'89',196,'},',28,':"P',159,'65',173,'111',161,'101',161,'97',161,'46',173,'44":-0.0833},',28,':"Q",',41,28,':"R',159,'116',161,'67',161,'79',161,'71',161,'85',161,'81',161,'84',173,'89',173,'86',177,178,100,28,':"S",',28,':"T',159,'121',161,'101',173,'111',208,'0833,"117":-0.0833','},',28,':"U",',28,':"V",','ic:0.0139,krn:{"','111',173,'101',173,'117',208,'111,"79',161,'67',161,'71',161,'81',196,'},',28,':"W",',328,'111',173,'101',173,'117',208,'111,"79',161,'67',161,'71',161,'81',196,'},',28,':"X',159,'79',161,'67',161,'71',161,'81',196,'},',28,':"Y",ic:0.025,','krn:{"101',173,'111',208,322,'},',28,':"Z",',28,':"[",','d:0.1,',28,':"“",',28,':"]",',386,28,':"ˆ",',22,45,46,'x2D9;",',22,45,46,'x2018;",lig:{"96":92},',28,':"a','",a:0,krn:{"','118',161,'106":0.','0556,"121',161,'119',196,'},',28,':"b',159,'101','":0.0278,"','111',417,'120',161,'100',417,'99',417,'113',417,'118',161,407,'0556,"121',161,'119',196,'},',28,':"c',404,'104',161,'107',196,'},',28,':"d",',28,':"e",a:0,',28,':"f',26,'12,"102":11,"108":13},',28,':"g",','a:0,d:0.2,ic:0.','0139,krn:{"',407,226,'},',28,':"h',159,'116',161,'117',161,'98',161,'121',161,'118',161,'119',196,'},',28,':"i",',28,':"j",',41,28,':"k',159,'97','":-0.0556,"','101',161,'97',161,'111',161,'99',196,'},',28,':"l",',28,':"m',404,'116',161,'117',161,'98',161,'121',161,'118',161,'119',196,'},',28,':"n',404,'116',161,'117',161,'98',161,'121',161,'118',161,'119',196,'},',28,':"o',404,'101',417,'111',417,'120',161,'100',417,'99',417,'113',417,'118',161,407,'0556,"121',161,'119',196,'},',28,':"p",a:0,',41,376,417,'111',417,'120',161,'100',417,'99',417,'113',417,'118',161,407,'0556,"121',161,'119',196,'},',28,':"q",a:0,',41,28,':"','r",a:0,',28,':"s",a:0,',28,':"t',159,'121',161,'119',196,'},',28,':"u',404,'119',196,'},',28,':"v",a:0,',328,'97',484,'101',161,'97',161,'111',161,'99',196,'},',28,':"w",a:0,',328,'101',161,'97',161,'111',161,'99',196,'},',28,':"x",a:0,',28,':"y",',454,455,'111',161,'101',161,'97',161,'46',173,'44":-0.0833},',28,':"z",a:0,',28,':"–',';",a:0.1,','ic:0.0278,','lig:{"45":124},',28,':"—',641,642,28,':"˝",',22,45,46,'x2DC;",',22,45,46,'xA8;",',22,45,'"}],cmmi10',1,'ic:0.139',',krn:{"61":-0.0556,"59":-0.111,"58":-0.111,"127":0.','0833},',22,'igreek"},{c:"&',3,'krn:{"127":0.','167},',22,666,5,'ic:0.',226,',krn:{"127":0.','0833},',22,666,7,668,'167},',22,666,9,'ic:0.0757',675,'0833},',22,666,11,'ic:0.0812,krn:{"61',484,'59":-0.0556,"58":-0.0556,"127":0.','0556},',22,666,13,'ic:0.0576',675,'0833},',22,666,15,'ic:0.139',663,'0556},',22,666,17,668,'0833},',22,666,19,'ic:0.11,krn:{"61',484,693,'0556},',22,666,21,'ic:0.0502',675,'0833},',22,666,'alpha',';",a:0,ic:0.','0037',675,226,'},',2,'beta;",','d:0.2,ic:0.','0528',675,'0833},',2,'gamma;",',454,'0556,',2,'delta;",ic:0.0378,krn:{"',693,'0556},',2,'epsilon;",a:0',675,'0556},',22,'lucida',24,':"ζ",',735,'0738',675,'0833},',2,'eta;",',454,'0359',675,'0556},',2,'theta;",ic:0.',226,675,'0833},',2,'iota;",a:0',675,'0556},',2,'kappa',38,2,'lambda;",',2,'mu',38,'d:0.2',675,226,'},',2,'nu',728,'0637,krn:{"',693,226,'},',2,'xi;",',735,'046',675,100,2,'pi',728,'0359,',2,'rho',38,'d:0.2',675,'0833},',2,'sigma',728,802,'krn:{"59',484,'58":-0.0556','},',2,'tau',728,'113,krn:{"',693,226,'},',2,'upsilon',728,'0359',675,226,'},',2,'phi',641,'d:0.2',675,'0833},',2,'chi',38,'d:0.2',675,'0556},',2,'psi',641,735,'0359',675,100,2,'omega',728,802,2,'epsilon;",a:0',675,'0833},',22,'greek',46,'x3D1;",',668,'0833},',22,'lucida',46,'x3D6',728,226,',',22,'lucida',46,'x3F1',38,'d:0.2',675,'0833},',22,'lucida',46,'x3C2;",',454,'0799',675,'0833},',22,'lucida',46,'x3D5',641,'d:0.2',675,'0833},',22,'lucida',46,'x21BC',';",a:0,d:-0.','2,',22,'arrows',46,'x21BD',899,'1,',22,'arrows',46,'x21C0',899,'2,',22,'arrows',46,'x21C1',899,'1,',22,'arrows',24,':\'&#','x02D3',';\',a:0','.1,',22,'symbol"},{c',922,923,'x02D2',925,'.1,','tclass:"symbol"},{c:"&#','x25B9;",',934,'x25C3;",',22,928,':"0",',28,':"1",',28,':"2",',28,':"3",',28,':"4",',28,':"5",',28,':"6",',28,':"7",',28,':"8",',28,':"9",',28,119,'3,',28,':",",a:-',114,28,':"<',641,28,':\'/\',',386,'krn:{"1',484,'65',484,'77',484,'78',484,'89":0.0556,"90":-0.0556},',28,':">',641,28,':"⋆',38,22,'arial',46,'x2202;",ic:0.0556',675,'0833},',28,':"A",',668,'139','},tclass:"italic"},{c:"','B",ic:0.0502',675,'0833',1000,'C",ic:0.0715,krn:{"61',161,693,'0833',1000,'D",ic:0.',226,675,'0556',1000,'E",ic:0.0576',675,'0833',1000,'F",ic:0.139',663,'0833',1000,'G",',668,'0833',1000,'H",ic:0.0812,krn:{"61',484,693,'0556',1000,'I",ic:0.0785',675,'111',1000,'J",ic:0.0962',663,'167',1000,'K",ic:0.0715,krn:{"61',484,693,'0556',1000,'L",',668,226,1000,'M','",ic:0.109,krn:{"','61',484,693,'0833',1000,'N',1050,'61',173,'61',161,693,'0833',1000,'O",ic:0.',226,675,'0833',1000,'P",ic:0.139',663,'0833',1000,'Q",d:0.2',675,'0833',1000,'R",ic:0.00773',675,'0833',1000,'S",ic:0.0576,krn:{"61',484,693,'0833',1000,'T','",ic:0.139,krn:{"','61',161,693,'0833',1000,'U',1050,'59',177,',"58',177,',"61',484,'127":0.',226,1000,'V",ic:0.222,krn:{"59','":-0.167,"','58',1106,'61',177,1000,'W',1088,'59',1106,'58',1106,'61',177,1000,'X",ic:0.0785,krn:{"61',173,'61',161,693,'0833',1000,'Y",ic:0.222,krn:{"59',1106,'58',1106,'61',177,1000,'Z",ic:0.0715,krn:{"61',484,693,'0833},',22,'italic',46,'x266D;",',934,'x266E;",',934,'x266F;",',22,928,':\'&#','x203F',925,',d:-0.1,',22,991,'"},{c:\'−',925,'.1,',934,'xB7',899,'2,',28,':"×',38,28,922,'top:.3em">*',925,',',28,':"÷',38,28,':"◊",',934,'xB1',641,28,':"∓",',934,'x2295;",',934,'x2296;",',934,'x2297;",',934,'x2298;",',934,'x2299;",',934,'x25EF;",',22,991,46,'x2218',899,'1,',22,'symbol2',46,'x2022',899,'2,',934,'x224D',641,22,'symbol2',46,'x2261',641,22,'symbol2',46,'x2286;",',934,'x2287;",',934,'x2264;",',934,'x2265;",',934,'x227C;",',934,'x227D;",',22,928,':"~",a:0,d:-0.2,',28,':"≈',641,'d:-0.1,',934,'x2282;",',934,'x2283;",',934,'x226A;",',934,'x226B;",',934,'x227A;",',934,'x227B;",',934,'x2190;",a:-0.1,',22,'arrow1',46,'x2192;",a:-0.1,',22,'arrow1',46,'x2191',';",a:0.2,d:0',',',22,'arrow1a',46,'x2193',1419,',',22,'arrow1a',46,'x2194;",a:-0.1,',22,'arrow1',46,'x2197',641,22,'arrows',46,'x2198',641,22,'arrows',46,'x2243',641,22,'symbol2',46,'x21D0;",a:-0.1,',22,'arrow2',46,'x21D2;",a:-0.1,',22,'arrow2',46,'x21D1',1419,'.1,',22,'arrow1a',46,'x21D3',1419,'.1,',22,'arrow1a',46,'x21D4;",a:-0.1,',22,'arrow2',46,'x2196',641,22,'arrows',46,'x2199',641,22,'arrows',46,'x221D',641,28,969,': 133%; margin-right: -.1em; ',1150,':.4em">′',925,',',22,'lucida',46,'x221E',641,934,'x2208;",',934,'x220B;",',22,928,969,': 150',971,'2em">&#','x25B3;/{}{}{}|{\',',33,'26,',3,240,270,'position:relative',274,'1em; left:-.05em">}\',',33,'27,',3,240,270,'font-size: ','150%; ','position:relative; top:.','8em','">√\',h:0.','04,d:1.16,n:113,',3,'root',270,289,'220%; ',291,'8em">√\',',33,'114,',3,296,270,289,'310%; ',291,'8em',274,'01em',293,'06,d:2.36,n:115,',3,296,270,289,'400%; ',291,'8em',274,'025em',293,'08,d:2.96,n:116,',3,296,270,289,'490%; ',291,'8em',274,'03em',293,'1,d:3.75,n:117,',3,296,270,289,'580%; ',291,'775em',274,'04em',293,'12,d:4.5,n:118,',3,296,270,289,'750%; ',291,343,';','margin-right',':-.04em',293,'14,d:5.7,',3,296,270,'margin-left',':.02em">||\',h:0.8,d:',0,1,'126,bot:127,rep:119},',3,'normal',5,'x2191',';",h:0.7,d:0,delim:{',1,'120,rep:63},',3,'arrow1a',5,'x2193;",h:0.65,d:',0,'bot:121,rep:63},',3,381,270,363,273,'">◜',';\',h:0.','05,',3,'symbol',270,363,':-.3em">◝',397,'05,',3,400,270,363,273,'">◟',397,'05,',3,400,270,363,':-.3em">◞',397,'05,',3,400,5,'x21D1',377,1,'126,rep:119},',3,381,5,'x21D3',377,'bot:127,rep:119},',3,381,'"}],cmti10',':[{c:"Γ",','ic:0.133,',3,'igreek"},{c:"&','Delta;",',3,455,'Theta;",','ic:0.094,',3,455,'Lambda;",',3,455,'Xi;",ic:0.153,',3,455,'Pi;",ic:0.164,',3,455,'Sigma;",','ic',':0.12,',3,455,'Upsilon;",','ic:0.111,',3,455,'Phi;",','ic:0.0599,',3,455,'Psi;",','ic:0.111,',3,455,'Omega;",','ic:0.103,',3,'igreek','"},{c:"ff','",ic:0.212,krn:{"39":0.104,"63":0.104,"33":0.104,"41":0.104,"93":0.104},lig:{"105":','14,"108":15},','tclass:"italic"},{c',':"fi','",ic:0.103,',496,':"fl',498,496,':"ffi',498,496,':"ffl',498,496,':"ı",a:0,','ic:0.','0767,',496,':"j",d:0.2,','ic:0.0374,',496,':"ˋ",',3,'iaccent',5,'x2CA;",','ic:0.0969,',3,518,5,'x2C7;",','ic:0.083,',3,518,5,'x2D8;",','ic:0.108,',3,518,5,'x2C9;",',490,3,518,5,'x2DA;",',3,518,'"},{c:"?",','d:0.17,w:0.46,',496,':"ß",','ic:0.105,',496,':"æ",a:0,','ic:0.0751,',496,':"œ",a:0,',550,496,':"ø",','ic:0.0919,',496,':"Æ",','ic',474,496,':"Œ",','ic',474,496,':"Ø",',460,496,':"?",krn:{"108":-0.','256,"76":-0.321},',496,':"!",','ic:0.124,lig:{"96":','60},',496,':"”",','ic:0.0696,',496,':"#",ic:0.0662,',496,':"$",',496,':"%",ic:0.136,',496,':"&",','ic:0.0969,',496,':"’",','ic:0.124,','krn:{"63":0.','102,"33":0.102},lig:{"39":34},',496,':"(",d:0.2,','ic:0.162,',496,':")",d:0.2,','ic:0.0369,',496,':"*",ic:0.149,',496,':"+",a:0.1,','ic:0.0369,',496,':",",a:-0.3,d:0.2,w:0.278,',496,':"-",a:0,ic:0.0283',',lig:{"45":','123},',496,':".",a:-0.25,',496,':"/",ic:0.162,',496,':"0",ic:0.136,',496,':"1",ic:0.136,',496,':"2",ic:0.136,',496,':"3",ic:0.136,',496,':"4",ic:0.136,',496,':"5",ic:0.136,',496,':"6",ic:0.136,',496,':"7",ic:0.136,',496,':"8",ic:0.136,',496,':"9",ic:0.136,',496,':":",ic:0.0582,',496,':";",ic:0.0582,',496,':"¡",','ic:0.0756,',496,':"=",a:0,d:-0.1,','ic:0.0662,',496,':"¿",',496,':"?",','ic:0.122,','lig:{"96":','62},',496,':"@",ic:0.096,',496,':"A",','krn:{"110":-0.0256,"108":-0.0256,"114":-0.0256,"117":-0.0256,"109":-0.0256,"116":-0.0256,"105":-0.0256,"67":-0.0256,"79":-0.0256,"71":-0.0256,"104":-0.0256,"98":-0.0256,"85":-0.0256,"107":-0.0256,"118":-0.0256,"119":-0.0256,"81":-','0.0256,"84','":-0.0767,"','89',656,'86','":-0.102,"','87',660,'101','":-0.0511,"','97',664,'111',664,'100',664,'99',664,'103',664,'113','":-0.0511','},',496,':"B',498,496,':"C",','ic:0.145,',496,':"D",',460,'krn:{"88','":-0.0256,"','87',688,'65',688,'86',688,'89":-0.','0256},',496,':"E",ic',474,496,':"F','",ic:0.133,krn:{"','111',656,'101',656,'117','":-0.0767,"114":-0.0767,"97":-0.0767,"','65',660,'79',688,'67',688,'71',688,'81":-0.0256','},',496,':"G",ic:0.0872,',496,':"H",ic:0.164,',496,':"I",ic:0.158,',496,':"J",ic:0.14,',496,':"K",',683,'krn:{"79',688,'67',688,'71',688,717,'},',496,':"L",krn:{"84',656,'89',656,'86',660,'87',660,'101',664,'97',664,'111',664,'100',664,'99',664,'103',664,'113',676,'},',496,':"M",ic:0.164,',496,':"N",ic:0.164,',496,':"O",',460,'krn:{"88',688,'87',688,'65',688,'86',688,695,'0256},',496,':"P',498,'krn:{"65":-0.0767},',496,':"Q",d:0.2,',460,496,':"R",ic:0.0387,',654,'0.0256,"84',656,'89',656,'86',660,'87',660,'101',664,'97',664,'111',664,'100',664,'99',664,'103',664,'113',676,'},',496,':"S",ic',474,496,':"T',702,'121',656,'101',656,'111',708,'117',656,'65":-0.0767},',496,':"U",ic:0.164,',496,':"V",ic:0.','184,krn:{"','111',656,'101',656,'117',708,'65',660,'79',688,'67',688,'71',688,717,'},',496,':"W",ic:0.',831,'65":-0.0767},',496,':"X",ic:0.158,krn:{"79',688,'67',688,'71',688,717,'},',496,':"Y",ic:0.','194',',krn:{"101',656,'111',708,'117',656,'65":-0.0767},',496,':"Z",',683,496,':"[",d:0.1,','ic:0.188,',496,':"“",','ic:0.169,',496,':"]",d:0.1,','ic:0.105,',496,':"ˆ",','ic:0.0665,',3,518,5,'x2D9;",','ic:0.118,',3,518,5,'x2018;",',573,'92},',496,':"a','",a:0,ic:0.',511,496,':"b",ic:0.0631',864,664,'97',664,'111',664,'100',664,'99',664,'103',664,'113',676,'},',496,':"c',899,'0565',864,664,'97',664,'111',664,'100',664,'99',664,'103',664,'113',676,'},',496,':"d',498,'krn:{"108":','0.0511},',496,':"e',899,'0751',864,664,'97',664,'111',664,'100',664,'99',664,'103',664,'113',676,'},',496,':"f',494,'12,"102":11,"108":13},',496,':"g','",a:0,d:0.2,ic:0.','0885,',496,':"h",ic:0.',511,496,':"i",ic:0.102,',496,513,683,496,':"k",',531,496,':"l',498,940,'0.0511},',496,':"m',899,511,496,':"n',899,511,'krn:{"39":-0.102},',496,':"o',899,'0631',864,664,'97',664,'111',664,'100',664,'99',664,'103',664,'113',676,'},',496,':"p',967,'0631',864,664,'97',664,'111',664,'100',664,'99',664,'103',664,'113',676,'},',496,':"q',967,'0885,',496,':"r',899,'108',864,664,'97',664,'111',664,'100',664,'99',664,'103',664,'113',676,'},',496,':"s',899,'0821,',496,':"t",ic:0.0949,',496,':"u',899,511,496,':"v',899,'108,',496,':"w',899,1068,940,'0.0511},',496,':"x',899,'12,',496,':"y',967,'0885,',496,':"z',899,'123,',496,':"–",a:0.1,ic:0.','0921',607,'124},',496,':"—",a:0.1,ic:0.','0921,',496,':"˝",',647,3,518,5,'x2DC;",','ic:0.116,',3,518,5,'xA8;",',3,518,'"}],cmbx10',452,3,'bgreek"},{c:"&','Delta;",',3,1112,459,3,1112,'Lambda;",',3,1112,'Xi;",',3,1112,'Pi;",',3,1112,472,3,1112,477,3,1112,481,3,1112,485,3,1112,489,3,'bgreek','"},{c:"ff','",ic:0.0778,krn:{"39":0.0778,"63":0.0778,"33":0.0778,"41":0.0778,"93":0.0778},lig:{"105":','14,"108":15},','tclass:"bold"},{c',':"fi",',1146,':"fl",',1146,':"ffi",',1146,':"ffl",',1146,509,1146,513,1146,':"ˋ",',3,'baccent',5,520,3,1161,5,525,3,1161,5,530,3,1161,5,535,3,1161,5,'x2DA;",',3,1161,543,1146,546,1146,549,1146,552,1146,555,1146,558,1146,562,1146,566,1146,569,'278,"76":-0.319},',1146,572,648,'60},',1146,576,1146,':"#",',1146,':"$",',1146,':"%",',1146,585,1146,588,590,'111,"33":0.111},lig:{"39":34},',1146,593,1146,596,1146,':"*",',1146,601,1146,':",",a:-0.3,d:0.2,w:0.278,',1146,':"-",a:0',607,'123},',1146,':".",a:-0.25,',1146,':"/",',1146,':"0",',1146,':"1",',1146,':"2",',1146,':"3",',1146,':"4",',1146,':"5",',1146,':"6",',1146,':"7",',1146,':"8",',1146,':"9",',1146,':":",',1146,':";",',1146,638,1146,641,1146,':"¿",',1146,646,648,'62},',1146,':"@",',1146,':"A",krn:{"116','":-0.0278,"','67',1274,'79',1274,'71',1274,'85',1274,'81',1274,'84','":-0.0833,"','89',1286,'86":-0.','111,"87":-0.111},',1146,':"B",',1146,682,1146,':"D",krn:{"88',1274,'87',1274,'65',1274,'86',1274,695,'0278},',1146,':"E",',1146,':"F",krn:{"111',1286,'101',1286,'117','":-0.0833,"114":-0.0833,"97":-0.0833,"65":-0.','111,"79',1274,'67',1274,'71',1274,'81":-0.0278','},',1146,':"G",',1146,':"H",',1146,':"I",krn:{"73":0.0278},',1146,':"J",',1146,':"K",krn:{"79',1274,'67',1274,'71',1274,1321,'},',1146,':"L",krn:{"84',1286,'89',1286,1289,'111,"87":-0.111},',1146,':"M",',1146,':"N",',1146,':"O",krn:{"88',1274,'87',1274,'65',1274,'86',1274,695,'0278},',1146,':"P",krn:{"65',1286,'111',1274,'101',1274,'97',1274,'46',1286,'44":-0.0833},',1146,784,1146,':"R",krn:{"116',1274,'67',1274,'79',1274,'71',1274,'85',1274,'81',1274,'84',1286,'89',1286,1289,'111,"87":-0.111},',1146,':"S",',1146,':"T",krn:{"121',1274,'101',1286,'111',1314,'0833,"117":-0.0833','},',1146,':"U",',1146,830,'0139,krn:{"','111',1286,'101',1286,'117',1314,'111,"79',1274,'67',1274,'71',1274,1321,'},',1146,849,1410,'111',1286,'101',1286,'117',1314,'111,"79',1274,'67',1274,'71',1274,1321,'},',1146,':"X",krn:{"79',1274,'67',1274,'71',1274,1321,'},',1146,862,'025',864,1286,'111',1314,1404,'},',1146,872,1146,875,1146,878,1146,881,1146,884,3,1161,5,889,3,1161,5,894,648,'92},',1146,':"a','",a:0,krn:{"','118',1274,'106":0.','0556,"121',1274,'119":-0.','0278},',1146,':"b",krn:{"101','":0.0278,"','111',1492,'120',1274,'100',1492,'99',1492,'113',1492,'118',1274,1485,'0556,"121',1274,1488,'0278},',1146,':"c',1482,'104',1274,'107":-0.0278},',1146,':"d",',1146,':"e",a:0,',1146,':"f',1144,'12,"102":11,"108":13},',1146,':"g',967,1410,1485,'0278},',1146,':"h",krn:{"116',1274,'117',1274,'98',1274,'121',1274,'118',1274,1488,'0278},',1146,':"i",',1146,513,1146,':"k",krn:{"97":-0.0556,"101',1274,'97',1274,'111',1274,'99":-0.','0278},',1146,':"l",',1146,':"m',1482,'116',1274,'117',1274,'98',1274,'121',1274,'118',1274,1488,'0278},',1146,':"n',1482,'116',1274,'117',1274,'98',1274,'121',1274,'118',1274,1488,'0278},',1146,':"o",a:0',864,1492,'111',1492,'120',1274,'100',1492,'99',1492,'113',1492,'118',1274,1485,'0556,"121',1274,1488,'0278},',1146,':"p",a:0,d:0.2',864,1492,'111',1492,'120',1274,'100',1492,'99',1492,'113',1492,'118',1274,1485,'0556,"121',1274,1488,'0278},',1146,':"q",a:0,d:0.2,',1146,':"r",a:0,',1146,':"s",a:0,',1146,':"t",krn:{"121',1274,1488,'0278},',1146,':"u',1482,1488,'0278},',1146,':"v',899,1410,'97":-0.0556,"101',1274,'97',1274,'111',1274,1554,'0278},',1146,':"w',899,'0139',864,1274,'97',1274,'111',1274,1554,'0278},',1146,':"x",a:0,',1146,':"y',967,1410,'111',1274,'101',1274,'97',1274,'46',1286,'44":-0.0833},',1146,':"z",a:0,',1146,1088,'0278',607,'124},',1146,1093,'0278,',1146,1096,3,1161,5,1101,3,1161,5,'xA8;",',3,1161,'"}]});','jsMath.Setup.Styles({".typeset .','cmr10','":"font-family',': serif','",".typeset .','italic":"font-style: italic',1712,'bold":"font-weight: bold',1712,'lucida',1710,': \'lucida sans unicode','\'",".typeset .','arial','":"font-family: \'Arial unicode MS',1720,'cal',1710,': \'Script MT\', \'Script MT Bold\', cursive',1712,'arrows',1722,1720,'arrow1',1722,1720,381,1722,'\'; ',291,'05em;left:-.',419,274,419,1712,'arrow2',1722,'\'; ',271,'top',273,';",".typeset .','arrow3',1722,'\'; margin:.1em',1712,400,1722,1720,'symbol2',1722,1720,'delim1','":"font-family: \'Times New Roman\'; font-','size: ','133%; ',291,'7em',1712,'delim1a','":"font-family: \'Lucida sans unicode\'; font-size: ','133%; ',291,'8em',1712,'delim1b',1722,'\'; font-size: ','133%; ',291,'8em',1712,240,1761,1762,'180%; ',291,'75em',1712,251,1768,'180%; ',291,'8em',1712,36,1722,1775,'180%; ',291,'8em',1712,'delim3',1761,1762,'250%; ',291,'725em',1712,'delim3a',1768,'250%; ',291,343,1712,'delim3b',1722,1775,'250%; ',291,'8em',1712,'delim4',1761,1762,'325%; ',291,'7em',1712,'delim4a',1768,'325%; ',291,343,1712,'delim4b',1722,1775,'325%; ',291,'8em',1712,11,1710,': Symbol; ',291,'2em',1712,'greek',1710,': \'Times New Roman',1720,492,1761,'style:italic',1712,1142,1761,'weight:bold',1712,48,1722,1775,'130','%; position: relative; top',': .7em; margin:-.05em',1712,106,1722,1775,'110',1862,': .85em',1749,124,1722,1775,'180',1862,': .6em',1712,60,1722,1775,'85',1862,': 1em',1712,54,1722,1775,'230',1862,1877,'; margin:-.05em',1712,154,1722,1775,'185',1862,': .75em',1712,170,1722,1775,'275',1862,': .',394,1712,64,1722,1775,'185',1862,1884,274,'1em',1712,212,'":"',289,'67',1862,':-.5em',1749,217,'":"',289,'110',1862,':-.2em',1749,222,'":"',289,'175%;",".typeset .',227,1761,1762,'75',1862,1923,1712,231,1761,1762,'133',1862,1930,1712,235,1761,1762,'200',1862,273,1712,296,1722,'\'; ',356,':-.075em',1712,'accent',1722,'\'; ',291,'05em; left:.15em',1712,518,1722,'\'; ',291,1967,'; font-','style:italic',1712,1161,1722,'\'; ',291,1967,1974,1856,'"});','if(jsMath.browser=="','Mozilla"){','jsMath.Update.TeXfonts({cmex10:{"','48":{c:""},"49":{c:""},"50":{c:""},"51":{c:""},"52":{c:""},"53":{c:""},"54":{c:""},"55":{c:""},"56":{c:""},"57":{c:""},"58":{c:""},"59":{c:""},"60":{c:""},"61":{c:""},"62":{c:""},"64":{c:""},"65":{c:""},"66":{c:""},"67":{c:""}}});',1708,'accent',1710,': Arial unicode MS; ',291,'05em; left:.05em"})}',1985,'MSIE"){jsMath.Browser.msieFontBug=1;',1987,'63":{','c:\'|\'}}})}jsMath.Macro("not","\\\\mathrel{\\\\rlap{\\\\kern 3mu/}}");jsMath.Macro("bowtie","\\\\mathrel\\\\triangleright\\\\kern-6mu\\\\mathrel\\\\triangleleft");jsMath.Box.defaultH=0.8;'] -]); \ No newline at end of file diff --git a/sagenb/data/jsmath/jsMath-fallback-symbols.js b/sagenb/data/jsmath/jsMath-fallback-symbols.js deleted file mode 100644 index 8db31f49d..000000000 --- a/sagenb/data/jsmath/jsMath-fallback-symbols.js +++ /dev/null @@ -1,28 +0,0 @@ -/* - * jsMath-fallback-symbols.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed to use image fonts for symbols - * but standard native fonts for letters and numbers. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -jsMath.Script.Uncompress([ - ['jsMath.','Add(','jsMath.Img',',{','UpdateTeXFonts',':function(_1){for(var _2 in _1){for(var _3 in _1[_2]){',0,'TeX[_2][_3',']=_1[_2][_3];',0,7,'].tclass="i"+_2;}}}});',2,'.',4,'({cmr10',':{"33":{c:"!",lig:{"96":60}},"35":{c:"#"},"36":{c:"$"},"37":{c:"%"},"38":{c:"&"},"40":{c:"(",d:0.2},"41":{c:")",d:0.2},"42":{c',':"*",d:-0.3},"','43":{c:"+",a:0.1},"44":{c:",",a:-0.3','},"45":{c:"-",a:0',',lig:{"45":123}},"46":{c:".",a:-0.25},"47":{c',':"/"},"','48":{c:"0','"},"49":{c:"1"},"50":{c:"2"},"51":{c:"3"},"52":{c:"4"},"53":{c:"5"},"54":{c:"6"},"55":{c:"7"},"56":{c:"8"},"57":{c:"9"},"58":{c:":"},"59":{c:";"},"61":{c:"=",a:0,d:-0.1},"63":{c:"?",lig:{"96":62}},"64":{c:"@"},"65":{c:"A",krn:{"116','":-0.0278,"','67',24,'79',24,'71',24,'85',24,'81',24,'84":-0.0833,"89":-0.0833,"86":-0.111,"87":-0.111}},"','66":{c:"B','"},"','67":{c:"C',37,'68":{c:"D','",krn:{"','88',24,'87',24,'65',24,'86',24,'89','":-0.0278}},"','69":{c:"E',37,'70":{c:"F",','krn:{"111":-0.0833,"101":-0.0833,"117":-0.0833,"114":-0.0833,"97":-0.0833,"65":-0.111,"79":-0.0278,"67":-0.0278,"71":-0.0278,"81":-0.0278}},"','71":{c:"G',37,'72":{c:"H',37,'73":{c:"I',41,'73','":0.0278}},"','74":{c:"J',37,'75":{c:"K',41,'79',24,'67',24,'71',24,'81',51,'76":{c:"L",krn:{"',35,'77":{c:"M',37,'78":{c:"N',37,'79":{c:"O',41,'88',24,'87',24,'65',24,'86',24,'89',51,'80":{c:"P",','krn:{"65":-0.','0833,"111',24,'101',24,'97',24,'46":-0.0833,"44":-0.0833}},"','81":{c:"Q",d:','1},"82":{c:"R',41,'116',24,'67',24,'79',24,'71',24,'85',24,'81',24,35,'83":{c:"S',37,'84":{c:"T',41,'121',24,'101":-0.0833,"111":-0.0833,"114":-0.0833,"97":-0.0833,"65":-0.0833,"117":-0.0833}},"','85":{c:"U',37,'86":{c:"V",ic:0.','0139,',55,'87":{c:"W",ic:0.','0139,',55,'88":{c:"X",','krn:{"79',24,'67',24,'71',24,'81',51,'89":{c:"Y",ic:0.','025',',krn:{"',125,'90":{c:"Z',37,'91":{c:"[",d:0.1','},"93":{c:"]",d:0.1','},"97":{c:"a','",a:0,krn:{"','118',24,'106":0.0556,"121',24,'119',51,'98":{c:"b",','krn:{"101":0.0278,"111":0.0278,"120":-0.0278,"100":0.0278,"99":0.0278,"113":0.0278,"118":-0.0278,"106":0.0556,"121":-0.0278,"119":-0.0278}},"','99":{c:"c',152,'104',24,'107',51,'100":{c:"d',37,'101":{c:"e",a',':0},"102":{c:"f",ic:0.0778,krn:{"39":0.0778,"63":0.0778,"33":0.0778,"41":0.0778,"93":0.0778},lig:{"105":12,"102":11,"108":13}},"103":{c:"g",a:0,d:0.2,ic:0.0139,krn:{"106":0.0278}},"104":{c:"h",krn:{"116',24,'117',24,'98',24,'121',24,'118',24,'119',51,'105":{c:"i"},"106":{c:"j",d:','1},"107":{c:"k',41,'97','":-0.0556,"','101',24,'97',24,'111',24,'99',51,'108":{c:"l',37,'109":{c:"m',152,'116',24,'117',24,'98',24,'121',24,'118',24,'119',51,'110":{c:"n',152,'116',24,'117',24,'98',24,'121',24,'118',24,'119',51,'111":{c:"o",a:0,',160,'112":{c:"p",a:0,d:0.2,',160,'113":{c:"q",a:0,d:','1','},"114":{c:"r",a:0','},"','115":{c:"s",a:0','},"116":{c:"t',41,'121',24,'119',51,'117":{c:"u',152,'119',51,'118":{c:"v','",a:0,ic:0.','0139',145,'97',186,'101',24,'97',24,'111',24,'99',51,'119":{c:"w',245,'0139',145,'101',24,'97',24,'111',24,'99',51,'120":{c:"x",a:0','},"121":{c:"y','",a:0,d:0.2,ic:0.','0139',145,'111',24,'101',24,'97',24,102,'122":{c:"z",a:0','}},cmmi10:{"65":{c:"A',41,'127":0.139}},"',36,'",ic:0.','0502,','krn:{"127":0.0833}},"',38,287,'0715',145,'61',24,'59":-0.0556,"58":-0.0556,"127":0.','0833}},"','68":{c:"D',287,'0278',',krn:{"127":0.0556}},"',52,287,'0576,',289,54,'ic:0.139',',krn:{"61":-0.0556,"59":-0.111,"58":-0.111,"127":0.',297,56,'",',289,58,287,'0812',145,'61',186,296,'0556}},"','73":{c:"I",ic:0.','0785',145,'127":0.111}},"',64,287,'0962',308,'167}},"75":{c:"K',287,'0715',145,'61',186,296,320,'76":{c:"L",','krn:{"127":0.0278}},"',78,287,'109',145,'61',186,296,297,80,287,'109',145,'61":-0.0833,"61',24,296,297,'79":{c:"O',287,300,',',289,94,'ic:0.139',308,297,103,'0.2,',289,'82":{c:"R',287,'00773,',289,119,287,'0576',145,'61',186,296,297,'84":{c:"T",ic:0.','139',145,'61',24,296,297,126,287,'109',145,'59":-0.111,"58":-0.111,"61',186,'127',63,128,'222',',krn:{"59":-0.167,"58":-0.167,"61":-0.111}},"',131,'139',396,134,'ic:0.0785',145,'61":-0.0833,"61',24,296,297,143,'222',396,147,287,'0715',145,'61',186,296,297,'97":{c:"a",a:0},"98":{c:"b',37,'99":{c:"c",a:0',301,167,41,'89":0.0556,"90',186,'106":-0.111,"102":-0.167,"127":0.167}},"101":{c:"e",a:0',301,'102":{c:"f",d:','0.2,ic:0.','108',145,296,'167}},"103":{c:"g',272,'0359,',338,'104":{c:"h',41,'127',51,182,429,'0572',145,'59',186,'58":-0.',320,'107":{c:"k',287,'0315},"',195,287,'0197,',289,'109":{c:"m",a:0},"110":{c:"n",a:0},"111":{c:"o",a:0',301,227,289,'113":{c:"q',272,'0359,',289,'114":{c:"r',245,300,145,296,320,233,301,'116":{c:"t",',289,'117":{c:"u",a:0,',338,'118":{c:"v',245,'0359,',338,'119":{c:"w',245,'0269,',289,270,',',338,'121":{c:"y',272,'0359',301,'122":{c:"z',245,'044',145,'127":0.0556}}},cmsy10:{"0":{c:"−",a:0.1}},cmti10:{"33":{c:"!",lig:{"96":60}},"35":{c:"#",ic:0.0662},"37":{c:"%",ic:0.136},"38":{c:"&",ic:0.0969},"40":{c:"(",d:',429,'162},"41":{c:")",d:',429,'0369},"42":{c:"*",ic:0.149},"43":{c:"+",a:0.1,ic:0.0369},"44":{c:",",a:-0.3,d:0.2,w:0.278},"45":{c:"-",a:0,ic:0.0283',20,':"/",ic:0.162},"',22,'",ic:0.136},"','49":{c:"1',503,'50":{c:"2',503,'51":{c:"3',503,'52":{c:"4',503,'53":{c:"5',503,'54":{c:"6',503,'55":{c:"7',503,'56":{c:"8',503,'57":{c:"9',503,'58":{c:":",ic:0.0582},"59":{c:";",ic:0.0582},"61":{c:"=",a:0,d:-0.1,ic:0.0662},"63":{c:"?",ic:0.122,lig:{"96":62}},"64":{c:"@",ic:0.096},"65":{c:"A",','krn:{"110":-0.0256,"108":-0.0256,"114":-0.0256,"117":-0.0256,"109":-0.0256,"116":-0.0256,"105":-0.0256,"67":-0.0256,"79":-0.0256,"71":-0.0256,"104":-0.0256,"98":-0.0256,"85":-0.0256,"107":-0.0256,"118":-0.0256,"119":-0.0256,"81":-','0.0256,"84','":-0.0767,"','89',525,'86','":-0.102,"','87',529,'101":-0.0511,"97":-0.0511,"111":-0.0511,"100":-0.0511,"99":-0.0511,"103":-0.0511,"113":-0.0511}},"',36,'",ic:0.103','},"',38,287,'145},"','68":{c:"D','",ic:0.094,krn:{"88":-0.0256,"87":-0.0256,"65":-0.0256,"86":-0.0256,"89":-0.0256}},"',52,'",ic:0.12},"',54,'ic:0.133',145,'111',525,'101',525,'117','":-0.0767,"114":-0.0767,"97":-0.0767,"','65',529,'79":-0.0256,"67":-0.0256,"71":-0.0256,"81":-0.0256}},"',56,287,'0872},"',58,'",ic:0.164},"',321,'158},"',64,287,'14},"75":{c:"K',287,'145',145,554,76,'84',525,'89',525,'86',529,'87',529,532,78,559,80,559,'79":{c:"O',540,94,'ic:0.103',145,'65":-0.0767}},"',103,429,'094},"82":{c:"R',287,'0387,',523,'0.0256,"84',525,'89',525,'86',529,'87',529,532,119,542,379,'133',145,'121',525,'101',525,'111',551,'117',525,588,126,559,128,'184',145,'111',525,'101',525,'117',551,'65',529,554,131,'184',145,588,134,'ic:0.158',145,554,143,'194',145,'101',525,'111',551,'117',525,588,147,287,538,149,',ic:0.188',150,',ic:0.105},"97":{c:"a',245,'0767},"',159,'ic:0.0631',145,532,'99":{c:"c',245,'0565',145,532,167,534,145,'108":0.0511}},"','101":{c:"e',245,'0751',145,532,'102":{c:"f',287,'212',145,'39":0.104,"63":0.104,"33":0.104,"41":0.104,"93":0.104},lig:{"105":12,"102":11,"108":13}},"103":{c:"g',272,'0885},"','104":{c:"h',287,658,'105":{c:"i',287,'102},"106":{c:"j",d:',429,538,'107":{c:"k',287,'108},"',195,534,145,671,'109":{c:"m',245,658,'110":{c:"n',245,'0767',145,'39":-0.102}},"111":{c:"o',245,'0631',145,532,'112":{c:"p',272,'0631',145,532,'113":{c:"q',272,683,'114":{c:"r',245,'108',145,532,'115":{c:"s',245,'0821},"116":{c:"t',287,'0949},"117":{c:"u',245,658,'118":{c:"v',245,694,'119":{c:"w',245,'108',145,671,'120":{c:"x',245,'12},"121":{c:"y',272,683,'122":{c:"z',245,'123}},cmbx10',16,':"*"},"',18,',d:0.2,w:0.278},"45":{c:"-",a:0',20,':"/"},"',22,23,24,'67',24,'79',24,'71',24,'85',24,'81',24,35,36,37,38,37,'68":{c:"D',41,'88',24,'87',24,'65',24,'86',24,'89',51,52,37,54,55,56,37,58,37,'73":{c:"I',41,'73',63,64,37,'75":{c:"K',41,'79',24,'67',24,'71',24,'81',51,76,35,78,37,80,37,'79":{c:"O',41,'88',24,'87',24,'65',24,'86',24,'89',51,94,95,'0833,"111',24,'101',24,'97',24,102,103,'1},"82":{c:"R',41,'116',24,'67',24,'79',24,'71',24,'85',24,'81',24,35,119,37,'84":{c:"T',41,'121',24,125,126,37,128,'0139,',55,131,'0139,',55,134,'krn:{"79',24,'67',24,'71',24,'81',51,143,'025',145,125,147,37,149,150,'},"97":{c:"a',152,'118',24,'106":0.0556,"121',24,'119',51,159,160,'99":{c:"c',152,'104',24,'107',51,167,37,'101":{c:"e",a',170,24,'117',24,'98',24,'121',24,'118',24,'119',51,182,'1},"107":{c:"k',41,'97',186,'101',24,'97',24,'111',24,'99',51,195,37,'109":{c:"m',152,'116',24,'117',24,'98',24,'121',24,'118',24,'119',51,'110":{c:"n',152,'116',24,'117',24,'98',24,'121',24,'118',24,'119',51,225,160,227,160,229,'1',231,'},"',233,'},"116":{c:"t',41,'121',24,'119',51,'117":{c:"u',152,'119',51,'118":{c:"v',245,'0139',145,'97',186,'101',24,'97',24,'111',24,'99',51,'119":{c:"w',245,'0139',145,'101',24,'97',24,'111',24,'99',51,270,'},"121":{c:"y',272,'0139',145,'111',24,'101',24,'97',24,102,282,'}}});if(',0,'browser=="MSIE"&&',0,'platform=="mac"){','jsMath.Setup.Styles({".typeset .math":"font-style: normal",".typeset .typeset":"font-style: normal",".typeset .icmr10":"font-family: ','Times','",".typeset .icmmi10":"font-family: ',1020,'; font-style: italic",".typeset .icmbx10":"font-family: ',1020,'; font-weight: bold",".typeset .icmti10":"font-family: ',1020,'; font-style: italic"});}','else{',1019,'serif',1021,1030,1023,1030,1025,1030,1027,0,'Add(',2,',{symbols:[0,','1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,','34,39,60,62,92,94,95,96',',123,124,125,126,127',']});',2,'.SetFont',15,':',2,'.symbols',',cmmi10:[0,',1042,'33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,','91,92,93,94,95,96',1044,'],cmsy10:[',1042,1054,'65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122',1044,'],cmex10:["all"],cmti10:',2,1051,'.concat(36),cmbx10:',2,1051,'});',2,'.LoadFont("cm-fonts");'] -]); diff --git a/sagenb/data/jsmath/jsMath-fallback-unix.js b/sagenb/data/jsmath/jsMath-fallback-unix.js deleted file mode 100644 index 543c1fdee..000000000 --- a/sagenb/data/jsmath/jsMath-fallback-unix.js +++ /dev/null @@ -1,29 +0,0 @@ -/* - * jsMath-fallback-unix.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed for when the TeX fonts are not available - * with a browser under Unix. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -jsMath.Script.Uncompress([ - ['jsMath.Add(jsMath.TeX,{cmr10',':[{c:"Γ",','tclass:"greek"},{c:"&','Delta;",',2,'Theta;",',2,'Lambda;",',2,'Xi;",',2,'Pi;",',2,'Sigma;",',2,'Upsilon;",',2,'Phi;",',2,'Psi;",',2,'Omega;",','tclass:"','greek','"},{c',':"ff','",ic:0.0778,krn:{"39":0.0778,"63":0.0778,"33":0.0778,"41":0.0778,"93":0.0778},lig:{"105":','14,"108":15},','tclass:"normal"},{c',':"fi",',28,':"fl",',28,':"ffi",',28,':"ffl",',28,':"&#','x131',';",a:0,',28,':"j",d:0.2,',28,37,'x60;",',22,'accent','"},{c:"&#','xB4;",',22,46,47,'x2C7;",',22,46,47,'x2D8;",',22,46,24,':"ˉ',';",',22,46,47,'x2DA;",',22,46,47,'x0327;",',28,37,'xDF;",',28,37,'xE6',39,28,37,'x153',39,28,37,'xF8;",',28,37,'xC6;",',28,37,'x152;",',28,37,'xD8;",',28,':"?",krn:{"108":-0.278,"76":-0.319},',28,':"!",lig:{"96":60},',28,37,'x201D;",',28,':"#",',28,':"$",',28,':"%",',28,':"&",',28,37,'x2019;",krn:{"63":0.111,"33":0.','111},','lig:{"39":34},',28,':"(",','d:0.2,',28,':")",',117,28,':"*",',28,':"+",a',':0.1,',28,':",",a:-','0.3,d:0.2,','w:0.278,',28,':"-",a:0,lig:{"45":123},',28,':".",a:-0.','25,',28,':"/",',28,':"0",',28,':"1",',28,':"2",',28,':"3",',28,':"4",',28,':"5",',28,':"6",',28,':"7",',28,':"8",',28,':"9",',28,':":",',28,':";",',28,37,'xA1;",',28,':"=",','a:0,d:-0.','1,',28,37,'xBF;",',28,':"?",lig:{"96":62},',28,':"@",',28,':"A','",krn:{"','116','":-0.0278,"','67',179,'79',179,'71',179,'85',179,'81',179,'84','":-0.0833,"','89',191,'86','":-0.111',',"87":-0.',113,28,':"B",',28,':"C",',28,':"D',177,'88',179,'87',179,'65',179,'86',179,'89','":-0.0278','},',28,':"E",',28,':"F',177,'111',191,'101',191,'117','":-0.0833,"114":-0.0833,"97":-0.0833,"65":-0.','111,"79',179,'67',179,'71',179,'81',214,'},',28,':"G",',28,':"H",',28,':"I',177,'73":0.','0278','},',28,':"J",',28,':"K',177,'79',179,'67',179,'71',179,'81',214,'},',28,':"L',177,'84',191,'89',191,'86',195,196,113,28,':"M",',28,':"N",',28,':"O',177,'88',179,'87',179,'65',179,'86',179,'89',214,'},',28,':"P',177,'65',191,'111',179,'101',179,'97',179,'46',191,'44":-0.0833},',28,':"Q",d:1,',28,':"R',177,'116',179,'67',179,'79',179,'71',179,'85',179,'81',179,'84',191,'89',191,'86',195,196,113,28,':"S",',28,':"T',177,'121',179,'101',191,'111',226,'0833,"117":-0.0833','},',28,':"U",',28,':"V",','ic:0.0139,krn:{"','111',191,'101',191,'117',226,'111,"79',179,'67',179,'71',179,'81',214,'},',28,':"W",',345,'111',191,'101',191,'117',226,'111,"79',179,'67',179,'71',179,'81',214,'},',28,':"X',177,'79',179,'67',179,'71',179,'81',214,'},',28,':"Y",ic:0.025,','krn:{"101',191,'111',226,339,'},',28,':"Z",',28,':"[",','d',125,28,37,'x201C;",',28,':"]",','d',125,28,37,'x2C6;",',22,46,47,'x2D9;",',22,46,47,'x2018;",lig:{"96":92},',28,':"a','",a:0,krn:{"','118',179,'106":0.','0556,"121',179,'119',214,'},',28,':"b',177,'101','":0.0278,"','111',438,'120',179,'100',438,'99',438,'113',438,'118',179,428,'0556,"121',179,'119',214,'},',28,':"c',425,'104',179,'107',214,'},',28,':"d",',28,':"e",a:0,',28,':"f',26,'12,"102":11,"108":13},',28,':"g",','a:0,d:0.2,ic:0.','0139,krn:{"',428,244,'},',28,':"h',177,'116',179,'117',179,'98',179,'121',179,'118',179,'119',214,'},',28,':"i",',28,41,28,':"k',177,'97','":-0.0556,"','101',179,'97',179,'111',179,'99',214,'},',28,':"l",',28,':"m',425,'116',179,'117',179,'98',179,'121',179,'118',179,'119',214,'},',28,':"n',425,'116',179,'117',179,'98',179,'121',179,'118',179,'119',214,'},',28,':"o',425,'101',438,'111',438,'120',179,'100',438,'99',438,'113',438,'118',179,428,'0556,"121',179,'119',214,'},',28,':"p",a:0,',117,393,438,'111',438,'120',179,'100',438,'99',438,'113',438,'118',179,428,'0556,"121',179,'119',214,'},',28,':"q",a:0,',117,28,':"','r",a:0,',28,':"s",a:0,',28,':"t',177,'121',179,'119',214,'},',28,':"u',425,'119',214,'},',28,':"v",a:0,',345,'97',504,'101',179,'97',179,'111',179,'99',214,'},',28,':"w",a:0,',345,'101',179,'97',179,'111',179,'99',214,'},',28,':"x",a:0,',28,':"y",',475,476,'111',179,'101',179,'97',179,'46',191,'44":-0.0833},',28,':"z",a:0,',28,37,'x2013',';",a:0.1,','ic:0.0278,','lig:{"45":124},',28,37,'x2014',662,663,28,37,'x2DD;",',22,46,47,'x2DC;",',22,46,47,'xA8;",',22,46,'"}],cmmi10',1,'ic:0.139',',krn:{"61":-0.0556,"59":-0.111,"58":-0.111,"127":0.','0833},',22,'igreek"},{c:"&',3,'krn:{"127":0.','167},',22,689,5,'ic:0.',244,',krn:{"127":0.','0833},',22,689,7,691,'167},',22,689,9,'ic:0.0757',698,'0833},',22,689,11,'ic:0.0812,krn:{"61',504,'59":-0.0556,"58":-0.0556,"127":0.','0556},',22,689,13,'ic:0.0576',698,'0833},',22,689,15,'ic:0.139',686,'0556},',22,689,17,691,'0833},',22,689,19,'ic:0.11,krn:{"61',504,716,'0556},',22,689,21,'ic:0.0502',698,'0833},',22,689,'alpha',';",a:0,ic:0.','0037',698,244,'},',2,'beta;",','d:0.2,ic:0.','0528',698,'0833},',2,'gamma;",',475,'0556,',2,'delta;",ic:0.0378,krn:{"',716,'0556},',2,'epsilon;",a:0',698,'0556},',22,'symbol"},{c',':"ζ",',758,'0738',698,'0833},',2,'eta;",',475,'0359',698,'0556},',2,'theta;",ic:0.',244,698,'0833},',2,'iota;",a:0',698,'0556},',2,'kappa',39,2,'lambda;",',2,'mu',39,'d:0.2',698,244,'},',2,'nu',751,'0637,krn:{"',716,244,'},',2,'xi;",',758,'046',698,113,2,'pi',751,'0359,',2,'rho',39,'d:0.2',698,'0833},',2,'sigma',751,824,'krn:{"59',504,'58":-0.0556','},',2,'tau',751,'113,krn:{"',716,244,'},',2,'upsilon',751,'0359',698,244,'},',2,'phi',662,'d:0.2',698,'0833},',2,'chi',39,'d:0.2',698,'0556},',2,'psi',662,758,'0359',698,113,2,'omega',751,824,2,'epsilon;",a:0',698,'0833},',22,'greek',47,'x3D1;",',691,'0833},',28,37,'x3D6',751,244,',',28,37,'x3F1',39,'d:0.2',698,'0833},',28,37,'x3C2;",',475,'0799',698,'0833},',28,37,'x3D5',662,'d:0.2',698,'0833},',28,37,'x21BC',';",a:0,d:-0.','2,',22,'harpoon',47,'x21BD',916,'1,',22,'harpoon',47,'x21C0',916,'2,',22,'harpoon',47,'x21C1',916,'1,',22,'harpoon',24,60,'font-size: 133%; ',61,':-.1em; margin:-.2em; left:-.05em\\">&#','x02D3',63,'a',125,22,'symbol"},{c:"&#','x25B7',63,22,948,958,'x25C1',63,22,775,':"0",',28,':"1",',28,':"2",',28,':"3",',28,':"4",',28,':"5",',28,':"6",',28,':"7",',28,':"8",',28,':"9",',28,133,'3,',28,':",",a:-',128,28,':"<',662,28,136,'krn:{"1',504,'65',504,'77',504,'78',504,'89":0.0556,"90":-0.0556},',28,':">',662,28,60,958,'x2605',63,'a:0,','tclass:"symbol"},{c:"&#','x2202;",ic:0.0556',698,'0833},',28,':"A",',691,'139','},tclass:"italic"},{c:"','B",ic:0.0502',698,'0833',1024,'C",ic:0.0715,krn:{"61',179,716,'0833',1024,'D",ic:0.',244,698,'0556',1024,'E",ic:0.0576',698,'0833',1024,'F",ic:0.139',686,'0833',1024,'G",',691,'0833',1024,'H",ic:0.0812,krn:{"61',504,716,'0556',1024,'I",ic:0.0785',698,'111',1024,'J",ic:0.0962',686,'167',1024,'K",ic:0.0715,krn:{"61',504,716,'0556',1024,'L",',691,244,1024,'M','",ic:0.109,krn:{"','61',504,716,'0833',1024,'N',1074,'61',191,'61',179,716,'0833',1024,'O",ic:0.',244,698,'0833',1024,'P",ic:0.139',686,'0833',1024,'Q",d:0.2',698,'0833',1024,'R",ic:0.00773',698,'0833',1024,'S",ic:0.0576,krn:{"61',504,716,'0833',1024,'T','",ic:0.139,krn:{"','61',179,716,'0833',1024,'U',1074,'59',195,',"58',195,',"61',504,'127":0.',244,1024,'V",ic:0.222,krn:{"59','":-0.167,"','58',1130,'61',195,1024,'W',1112,'59',1130,'58',1130,'61',195,1024,'X",ic:0.0785,krn:{"61',191,'61',179,716,'0833',1024,'Y",ic:0.222,krn:{"59',1130,'58',1130,'61',195,1024,'Z",ic:0.0715,krn:{"61',504,716,'0833},',22,'italic',47,'x266D;",',22,'symbol2',47,'x266E;",',22,'symbol2',47,'x266F;",',22,'symbol2',47,'x2323',916,'1,',28,37,'x2322',916,'1,',28,37,'x2113;",',691,113,22,775,':"a",a:0,',22,'italic"},{c:"','b",',22,1195,'c",a:0',698,'0556',1024,'d',177,'89":0.0556,"90',504,'106',195,',"102',1130,1126,'167',1024,'e",a:0',698,'0556',1024,'f",',758,'108,krn:{"',716,'167',1024,'g",',475,'0359',698,244,1024,'h',177,'127',214,1024,'i",',22,1195,'j",',758,'0572,krn:{"59',504,837,1024,'k",ic:0.0315,',22,1195,'l",ic:0.0197',698,'0833',1024,'m",a:0,',22,1195,'n",a:0,',22,1195,'o",a:0',698,'0556',1024,'p",a:0,d:0.2',698,'0833',1024,'q",',475,'0359',698,'0833',1024,599,663,'krn:{"',716,'0556',1024,'s",a:0',698,'0556',1024,'t",',691,'0833',1024,'u",a:0',698,244,1024,'v",a:0,ic:0.0359',698,244,1024,'w",a:0,ic:0.0269',698,'0833',1024,'x",a:0',698,244,1024,'y",',475,'0359',698,'0556',1024,'z",a:0,ic:0.044',698,'0556},',22,'italic',47,'x131;",a:0',698,244,1024,'j",d:0.2',698,'0833},',22,'italic',47,'x2118',39,'d:0.2',698,113,28,60,'position:relative; left: .4em; top: -.8em; font-size: 50%\\">→',63,'ic:0.154,',1016,'x0311;",ic:0.399,',22,'normal"}],cmsy10:[{c',37,'x2212',662,1016,'xB7',916,'2,',1016,'xD7',39,22,948,61,':.2em\\">*',63,'a:0,',1016,'xF7',39,1016,'x25CA;",',1016,'xB1',662,1016,'x2213;",',1016,'x2295;",',1016,'x2296;",',1016,'x2297;",',1016,'x2298;",',1016,'x2299;",',1016,'x25EF;",',22,948,61,':.25em;\\">°',63,166,'1,',1016,'x2022',916,'2,',1016,'x224D',662,1016,'x2261',662,1016,'x2286;",',1016,'x2287;",',1016,'x2264;",',1016,'x2265;",',1016,'x227C;",',1016,'x227D;",',22,775,':"~",',166,'2,',28,37,'x2248',662,'d:-0.1,',1016,'x2282;",',1016,'x2283;",',1016,'x226A;",',1016,'x226B;",',1016,'x227A;",',1016,'x227B;",',1016,'x2190',916,'15,',22,'arrows"},{c:"&#','x2192',916,'15,',22,1431,'x2191',';",h:1,',22,1431,'x2193',1438,22,1431,'x2194',39,22,1431,'x2197',1438,22,1431,'x2198',1438,22,1431,'x2243',662,1016,'x21D0',662,22,1431,'x21D2',662,22,1431,'x21D1;",h:0.9,d',125,22,1431,'x21D3;",h:0.9,d',125,22,1431,'x21D4',662,22,1431,'x2196',1438,22,1431,'x2199',1438,22,1431,'x221D',662,22,948,940,'margin-right',': -.1em; position: relative; top:.4em\\">′',63,'a:0,',1016,'x221E',662,1016,'x2208;",',1016,'x220B;",',1016,'x25B3;",',1016,'x25BD;",',22,775,136,22,948,'font-size:50%; ',61,':-.3em; ',1493,':-.2em\\">|",a:0,',28,37,'x2200;",',1016,'x2203;",',1016,'xAC',916,'1,',22,'symbol1',47,'x2205;",',1016,'x211C;",',1016,'x2111;",',1016,'x22A4;",',1016,'x22A5;",',1016,'x2135;",',22,775,':"A',177,'48":0.194},',22,'cal"},{c:"','B",ic:0.0304',',krn:{"48":0.','139},',22,1547,'C",ic:0.0583',1549,'139},',22,1547,'D",ic:0.',244,1549,'0833},',22,1547,'E",ic:0.0894',1549,113,22,1547,'F",ic:0.0993',1549,113,22,1547,'G",',758,'0593',1549,113,22,1547,'H",ic:0.00965',1549,113,22,1547,'I",ic:0.0738',1549,244,'},',22,1547,'J",',758,'185',1549,'167},',22,1547,'K",ic:0.0144',1549,'0556},',22,1547,'L',177,'48":0.139},',22,1547,'M',177,'48":0.139},',22,1547,'N",ic:0.147',1549,'0833},',22,1547,'O",ic:0.',244,1549,113,22,1547,'P",ic:0.0822',1549,'0833},',22,1547,'Q",d:0.2',1549,113,22,1547,'R',177,'48":0.0833},',22,1547,'S",ic:0.075',1549,'139},',22,1547,'T",ic:0.254',1549,244,'},',22,1547,'U",ic:0.0993',1549,'0833},',22,1547,'V",ic:0.0822',1549,244,'},',22,1547,'W",ic:0.0822',1549,'0833},',22,1547,'X",ic:0.146',1549,'139},',22,1547,'Y",ic:0.0822',1549,'0833},',22,1547,'Z",ic:0.0794',1549,'139},',22,'cal',47,'x22C3;",',1016,'x22C2;",',1016,'x228E;",',1016,'x22C0;",',1016,'x22C1;",',1016,'x22A2;",',1016,'x22A3;",',22,'symbol2',47,'xF8F0;",','a:',128,28,37,'xF8FB;",','a:',128,28,37,'xF8EE;",','a:',128,28,37,'xF8F9;",','a:',128,28,':"{",',117,28,':"}",',117,28,37,'x3008;",','a:',128,28,37,'x3009;",','a:',128,28,':"|",d',125,22,'vertical"},{c',':"||",','d:0,',22,'vertical',47,'x2195',1438,'d:0.15,',22,1431,'x21D5;",a:0.2,d',125,22,1431,'x2216;",','a:0.3,d',125,28,37,'x2240;",',22,948,61,': .8em\\">√',63,'h:0.04,d:0.9,',28,37,'x2210;",a:0.4,',1016,'x2207;",',1016,'x222B',1438,'d',125,'ic:0.111,',22,'root',47,'x2294;",',1016,'x2293;",',1016,'x2291;",',1016,'x2292;",',1016,'xA7;",d',125,28,37,'x2020;",d',125,28,37,'x2021;",d',125,28,37,'xB6;",a:0.3,d',125,28,37,'x2663;",',1016,'x2666;",',1016,'x2665;",',1016,'x2660;",',22,'symbol"}],cmex10:[{c',116,'h:0.04,d:1.16,n:','16,',22,'delim1"},{c',119,1812,'17,',22,1815,402,1812,'104,',22,1815,409,1812,'105,',22,'delim1',47,'xF8F0",',1812,'106,',22,'delim1',47,1704,1812,'107,',22,'delim1',47,1709,1812,'108,',22,'delim1',47,1714,1812,'109,',22,1815,1718,1812,'110,',22,1815,1721,1812,'111,',22,'delim1',47,1725,1812,'68,',22,'delim1c',47,1730,1812,'69,',22,'delim1c',24,':"|",','h:0.7,d:0,delim:{rep:','12},',22,1737,1738,1879,'13},',22,1737,136,1812,'46,',22,'delim1b',47,1752,1812,'47,',22,'delim1b','"},{c:"(",','h:0.04,d:1.76,n:','18,',22,'delim2',24,119,1900,'19,',22,'delim2',1899,'h:0.04,d:2.36,n:','32,',22,'delim3"},{c',119,1911,'33,',22,1914,402,1911,'34,',22,1914,409,1911,'35,',22,'delim3',47,1699,1911,'36,',22,'delim3',47,1704,1911,'37,',22,'delim3',47,1709,1911,'38,',22,'delim3',47,1714,1911,'39,',22,1914,1718,1911,'40,',22,1914,1721,1911,'41,',22,'delim3',47,1725,1911,'42,',22,'delim3c',47,1730,1911,'43,',22,'delim3c',24,136,1911,'44,',22,'delim3b',47,1752,1911,'45,',22,'delim3b',1899,'h:0.04,d:2.96,','n:48,',22,'delim4"},{c',119,1989,'n:49,',22,1992,402,1989,'n:50,',22,1992,409,1989,'n:51,',22,'delim4',47,1699,1989,'n:52,',22,'delim4',47,1704,1989,'n:53,',22,'delim4',47,1709,1989,'n:54,',22,'delim4',47,1714,1989,'n:55,',22,1992,1718,1989,'n:56,',22,1992,1721,1989,'n:57,',22,'delim4',47,1725,1989,22,'delim4c',47,1730,1989,22,'delim4c',24,136,1989,22,'delim4b',47,1752,1989,22,'delim4b',24,136,1900,'30,',22,'delim2b',47,1752,1900,'31,',22,'delim2b',47,'xF8EB;",h:0.8,d:0.15,delim:{top:48,bot:64,rep:66},',22,'delim',24,':"&'], - ['#xF8F6',';",h:0.8,d:0.15,delim:{','top:','49,bot:65,rep:67','},tclass:"delim"},{c:"&#','xF8EE',1,2,'50,bot:52,rep:54',4,'xF8F9',1,2,'51,bot:53,rep:55',4,'xF8F0',1,'bot:52,rep:54',4,'xF8FB',1,'bot:53,rep:55',4,'xF8EF',1,2,'50,rep:54',4,'xF8FA',1,2,'51,rep:55',4,'xF8F1',1,2,'56,mid:60,bot:58,rep:62',4,'xF8FC',1,2,'57,mid:61,bot:59,rep:62',4,'xF8F3',1,'top:56,bot:','58,rep:62',4,'xF8FE',1,'top:57,bot:','59,rep:62',4,'xF8F2',1,'rep:63',4,'xF8FD',1,'rep:119',4,'xF8F4',1,'rep:62},tclass:"delim"},{c:"|",','h:0.65,d:0,delim:{top:','120,bot:121',',rep:63},tclass:"','vertical','"},{c:"&#','xF8ED',1,45,'59,rep:62',4,'xF8F8',1,50,'58,rep:62',4,'xF8EC',1,'rep:66',4,'xF8F7',1,'rep:67',4,'x3008;",','h:0.04,d:1.76,n:','28',',tclass:"','delim2c',68,'x3009;",',88,'29',90,91,68,'x2294',';",h:0,d:1,n:','71',90,'bigop1',68,'x2294',';",h:0.1,d:1.5,tclass:"','bigop2',68,'x222E',';",h:0,d:1.11,ic:0.095,n:','73',90,'bigop1c',68,'x222E;",h:0,d:2.22,ic:0.222',90,'bigop2c',68,'x2299',100,'75',90,103,68,'x2299',106,107,68,'x2295',100,'77',90,103,68,'x2295',106,107,68,'x2297',100,'79',90,103,68,'x2297',106,107,68,'x2211',100,'88',90,'bigop1a',68,'x220F',100,'89',90,153,68,'x222B',110,'90',90,113,68,'x222A',100,'91',90,'bigop1b',68,'x2229',100,'92',90,171,68,'x228E',100,'93',90,171,68,'x2227',100,'94',90,103,68,'x2228',100,'95',90,103,68,'x2211;",h:0.1,d:1.6',90,'bigop2a',68,'x220F',106,199,68,'x222B;",h:0,d:2.22,ic:0.222',90,117,68,'x222A',106,'bigop2b',68,'x2229',106,211,68,'x228E',106,211,68,'x2227',106,107,68,'x2228',106,107,68,'x2210',100,'97',90,153,68,'x2210',106,199,68,'xFE3F;",h:0.','722,w:0.65,n:99',90,'wide1',68,239,'85,w:1.1,n:100',90,'wide2',68,239,'99,w:1.65',90,'wide3',68,'x2053;",h:0.','722,w:0.75,n:102',90,'wide1a',68,254,'8,w:1.35,n:103',90,'wide2a',68,254,'99,w:2',90,'wide3a','"},{c:"[",',88,'20',90,'delim2','"},{c:"]",',88,'21',90,272,68,'xF8F0;",',88,'22',90,272,68,'xF8FB;",',88,'23',90,272,68,'xF8EE;",',88,'24',90,272,68,10,'",',88,'25',90,272,'"},{c:"{",',88,'26',90,272,'"},{c:"}",',88,'27',90,272,'"},{c:"",h:0.','04,d:1.16,n:113',90,'root',313,'190',315,'925em',317,'04,d:1.76,n:114',90,320,313,'250',315,'925em',317,'06,d:2.36,n:115',90,320,313,'320',315,'92em',317,'08,d:2.96,n:116',90,320,313,'400',315,'92em',317,'1,d:3.75,n:117',90,320,313,'500',315,'9em',317,'12,d:4.5,n:118',90,320,313,'625',315,'9em',317,'14,d:5.7',90,320,'"},{c:"||",',64,'126,bot:127',',rep:119},tclass:"',67,68,'x25B5;",h:0.','45,delim:{',2,'120',66,'arrow1',68,'x25BF;",h:0.',376,'bot:121',66,380,313,'67',315,'35em; margin-','left:-.5em\\">&#','x256D',';",h:0.','1',90,'symbol',313,'67',315,390,'right:-.5em\\">&#','x256E',393,'1',90,396,313,'67',315,390,391,'x2570',393,'1',90,396,313,'67',315,390,401,'x256F',393,'1',90,396,68,375,'5,delim:{',2,'126',372,'arrow2',68,382,429,'bot:127',372,433,'"}],cmti10:[{c:"Γ",ic:0.133,','tclass:"igreek"},{c:"&','Delta;",',441,'Theta;",','ic:0.094,',441,'Lambda;",',441,'Xi;",ic:0.153,',441,'Pi;",ic:0.164,',441,'Sigma;",ic',':0.12,',441,'Upsilon;",ic:0.111,',441,'Phi;",ic:0.0599,',441,'Psi;",ic:0.111,',441,'Omega;",ic:0.103',90,'igreek','"},{c:"ff','",ic:0.212,krn:{"39":0.104,"63":0.104,"33":0.104,"41":0.104,"93":0.104},lig:{"105":','14,"108":15},','tclass:"italic"},{c',':"fi','",ic:0.103,',468,':"fl',470,468,':"ffi',470,468,':"ffl',470,468,':"ı",a:0,','ic:0.','0767,',468,':"j",d:0.2,','ic:0.0374,',468,':"`",','tclass:"iaccent"},{c:"&#','xB4;",ic:0.0969,',489,'x2C7;",ic:0.083,',489,'x2D8;",','ic:0.108,',489,'x2C9;",ic:0.103,',489,'x2DA;",tclass:"','iaccent','"},{c:"?",','d:0.17,w:0.46,',468,':"ß",','ic:0.105,',468,':"æ",a:0,','ic:0.0751,',468,':"œ",a:0,',508,468,':"ø",','ic:0.0919,',468,':"Æ",','ic',454,468,':"Œ",','ic',454,468,':"Ø",',445,468,':"?",krn:{"108":-0.','256,"76":-0.321},',468,':"!",','ic:0.124,lig:{"96":','60},',468,':"”",','ic:0.0696,',468,':"#",ic:0.0662,',468,':"$",',468,':"%",ic:0.136,',468,':"&",','ic:0.0969,',468,':"’",','ic:0.124,','krn:{"63":0.','102,"33":0.102},lig:{"39":34},',468,':"(",d:0.2,','ic:0.162,',468,':")",d:0.2,','ic:0.0369,',468,':"*",ic:0.149,',468,':"+",a:0.1,','ic:0.0369,',468,':",",a:-0.3,d:0.2,w:0.278,',468,':"-",a:0,ic:0.0283',',lig:{"45":','123},',468,':".",a:-0.25,',468,':"/",ic:0.162,',468,':"0",ic:0.136,',468,':"1",ic:0.136,',468,':"2",ic:0.136,',468,':"3",ic:0.136,',468,':"4",ic:0.136,',468,':"5",ic:0.136,',468,':"6",ic:0.136,',468,':"7",ic:0.136,',468,':"8",ic:0.136,',468,':"9",ic:0.136,',468,':":",ic:0.0582,',468,':";",ic:0.0582,',468,':"¡",','ic:0.0756,',468,':"=",a:0,d:-0.1,','ic:0.0662,',468,':"¿",',468,':"?",','ic:0.122,','lig:{"96":','62},',468,':"@",ic:0.096,',468,':"A",','krn:{"110":-0.0256,"108":-0.0256,"114":-0.0256,"117":-0.0256,"109":-0.0256,"116":-0.0256,"105":-0.0256,"67":-0.0256,"79":-0.0256,"71":-0.0256,"104":-0.0256,"98":-0.0256,"85":-0.0256,"107":-0.0256,"118":-0.0256,"119":-0.0256,"81":-','0.0256,"84','":-0.0767,"','89',614,'86','":-0.102,"','87',618,'101','":-0.0511,"','97',622,'111',622,'100',622,'99',622,'103',622,'113','":-0.0511','},',468,':"B',470,468,':"C",','ic:0.145,',468,':"D",',445,'krn:{"88','":-0.0256,"','87',646,'65',646,'86',646,'89":-0.','0256},',468,':"E",ic',454,468,':"F','",ic:0.133,krn:{"','111',614,'101',614,'117','":-0.0767,"114":-0.0767,"97":-0.0767,"','65',618,'79',646,'67',646,'71',646,'81":-0.0256','},',468,':"G",ic:0.0872,',468,':"H",ic:0.164,',468,':"I",ic:0.158,',468,':"J",ic:0.14,',468,':"K",',641,'krn:{"79',646,'67',646,'71',646,675,'},',468,':"L",krn:{"84',614,'89',614,'86',618,'87',618,'101',622,'97',622,'111',622,'100',622,'99',622,'103',622,'113',634,'},',468,':"M",ic:0.164,',468,':"N",ic:0.164,',468,':"O",',445,'krn:{"88',646,'87',646,'65',646,'86',646,653,'0256},',468,':"P',470,'krn:{"65":-0.0767},',468,':"Q",d:1,',445,468,':"R",ic:0.0387,',612,'0.0256,"84',614,'89',614,'86',618,'87',618,'101',622,'97',622,'111',622,'100',622,'99',622,'103',622,'113',634,'},',468,':"S",ic',454,468,':"T',660,'121',614,'101',614,'111',666,'117',614,'65":-0.0767},',468,':"U",ic:0.164,',468,':"V",ic:0.','184,krn:{"','111',614,'101',614,'117',666,'65',618,'79',646,'67',646,'71',646,675,'},',468,':"W",ic:0.',789,'65":-0.0767},',468,':"X",ic:0.158,krn:{"79',646,'67',646,'71',646,675,'},',468,':"Y",ic:0.','194',',krn:{"101',614,'111',666,'117',614,'65":-0.0767},',468,':"Z",',641,468,':"[",d:0.1,','ic:0.188,',468,':"“",','ic:0.169,',468,':"]",d:0.1,','ic:0.105,',468,':"ˆ",ic:0.0665,',489,'x2D9;",ic:0.118,',489,'x2018;",',531,'92},',468,':"a','",a:0,ic:0.',483,468,':"b",ic:0.0631',822,622,'97',622,'111',622,'100',622,'99',622,'103',622,'113',634,'},',468,':"c',851,'0565',822,622,'97',622,'111',622,'100',622,'99',622,'103',622,'113',634,'},',468,':"d',470,'krn:{"108":','0.0511},',468,':"e',851,'0751',822,622,'97',622,'111',622,'100',622,'99',622,'103',622,'113',634,'},',468,':"f',466,'12,"102":11,"108":13},',468,':"g','",a:0,d:0.2,ic:0.','0885,',468,':"h",ic:0.',483,468,':"i",ic:0.102,',468,485,641,468,':"k",',495,468,':"l',470,892,'0.0511},',468,':"m',851,483,468,':"n',851,483,'krn:{"39":-0.102},',468,':"o',851,'0631',822,622,'97',622,'111',622,'100',622,'99',622,'103',622,'113',634,'},',468,':"p',919,'0631',822,622,'97',622,'111',622,'100',622,'99',622,'103',622,'113',634,'},',468,':"q',919,'0885,',468,':"r',851,'108',822,622,'97',622,'111',622,'100',622,'99',622,'103',622,'113',634,'},',468,':"s',851,'0821,',468,':"t",ic:0.0949,',468,':"u',851,483,468,':"v',851,'108,',468,':"w',851,1020,892,'0.0511},',468,':"x',851,'12,',468,':"y',919,'0885,',468,':"z',851,'123,',468,':"–",a:0.1,ic:0.','0921',565,'124},',468,':"—",a:0.1,ic:0.','0921,',468,':"˝",',605,489,'x2DC;",ic:0.116,',489,'xA8;",tclass:"',500,'"}],cmbx10:[{c:"&Gamma',';",tclass:"bgreek"},{c:"&','Delta',1056,'Theta',1056,'Lambda',1056,'Xi',1056,'Pi',1056,'Sigma',1056,'Upsilon',1056,'Phi',1056,'Psi',1056,'Omega;",tclass:"bgreek"},{c:"ff','",ic:0.0778,krn:{"39":0.0778,"63":0.0778,"33":0.0778,"41":0.0778,"93":0.0778},lig:{"105":','14,"108":15},','tclass:"bold"},{c',':"fi",',1078,':"fl",',1078,':"ffi",',1078,':"ffl",',1078,481,1078,485,1078,':"`',';",tclass:"baccent"},{c:"&#','xB4',1092,'x2C7',1092,'x2D8',1092,'x2C9',1092,499,'baccent',501,1078,504,1078,507,1078,510,1078,513,1078,516,1078,520,1078,524,1078,527,'278,"76":-0.319},',1078,530,606,'60},',1078,534,1078,':"#",',1078,':"$",',1078,':"%",',1078,543,1078,546,548,'111,"33":0.111},lig:{"39":34},',1078,551,1078,554,1078,':"*",',1078,559,1078,':",",a:-0.3,d:0.2,w:0.278,',1078,':"-",a:0',565,'123},',1078,':".",a:-0.25,',1078,':"/",',1078,':"0",',1078,':"1",',1078,':"2",',1078,':"3",',1078,':"4",',1078,':"5",',1078,':"6",',1078,':"7",',1078,':"8",',1078,':"9",',1078,':":",',1078,':";",',1078,596,1078,599,1078,':"¿",',1078,604,606,'62},',1078,':"@",',1078,':"A",krn:{"116','":-0.0278,"','67',1195,'79',1195,'71',1195,'85',1195,'81',1195,'84','":-0.0833,"','89',1207,'86":-0.','111,"87":-0.111},',1078,':"B",',1078,640,1078,':"D",krn:{"88',1195,'87',1195,'65',1195,'86',1195,653,'0278},',1078,':"E",',1078,':"F",krn:{"111',1207,'101',1207,'117','":-0.0833,"114":-0.0833,"97":-0.0833,"65":-0.','111,"79',1195,'67',1195,'71',1195,'81":-0.0278','},',1078,':"G",',1078,':"H",',1078,':"I",krn:{"73":0.0278},',1078,':"J",',1078,':"K",krn:{"79',1195,'67',1195,'71',1195,1242,'},',1078,':"L",krn:{"84',1207,'89',1207,1210,'111,"87":-0.111},',1078,':"M",',1078,':"N",',1078,':"O",krn:{"88',1195,'87',1195,'65',1195,'86',1195,653,'0278},',1078,':"P",krn:{"65',1207,'111',1195,'101',1195,'97',1195,'46',1207,'44":-0.0833},',1078,742,1078,':"R",krn:{"116',1195,'67',1195,'79',1195,'71',1195,'85',1195,'81',1195,'84',1207,'89',1207,1210,'111,"87":-0.111},',1078,':"S",',1078,':"T",krn:{"121',1195,'101',1207,'111',1235,'0833,"117":-0.0833','},',1078,':"U",',1078,788,'0139,krn:{"','111',1207,'101',1207,'117',1235,'111,"79',1195,'67',1195,'71',1195,1242,'},',1078,807,1331,'111',1207,'101',1207,'117',1235,'111,"79',1195,'67',1195,'71',1195,1242,'},',1078,':"X",krn:{"79',1195,'67',1195,'71',1195,1242,'},',1078,820,'025',822,1207,'111',1235,1325,'},',1078,830,1078,833,1078,836,1078,839,1078,':"ˆ',1092,'x2D9',1092,846,606,'92},',1078,':"a','",a:0,krn:{"','118',1195,'106":0.','0556,"121',1195,'119":-0.','0278},',1078,':"b",krn:{"101','":0.0278,"','111',1409,'120',1195,'100',1409,'99',1409,'113',1409,'118',1195,1402,'0556,"121',1195,1405,'0278},',1078,':"c',1399,'104',1195,'107":-0.0278},',1078,':"d",',1078,':"e",a:0,',1078,':"f',1076,'12,"102":11,"108":13},',1078,':"g',919,1331,1402,'0278},',1078,':"h",krn:{"116',1195,'117',1195,'98',1195,'121',1195,'118',1195,1405,'0278},',1078,':"i",',1078,485,1078,':"k",krn:{"97":-0.0556,"101',1195,'97',1195,'111',1195,'99":-0.','0278},',1078,':"l",',1078,':"m',1399,'116',1195,'117',1195,'98',1195,'121',1195,'118',1195,1405,'0278},',1078,':"n',1399,'116',1195,'117',1195,'98',1195,'121',1195,'118',1195,1405,'0278},',1078,':"o",a:0',822,1409,'111',1409,'120',1195,'100',1409,'99',1409,'113',1409,'118',1195,1402,'0556,"121',1195,1405,'0278},',1078,':"p",a:0,d:0.2',822,1409,'111',1409,'120',1195,'100',1409,'99',1409,'113',1409,'118',1195,1402,'0556,"121',1195,1405,'0278},',1078,':"q",a:0,d:0.2,',1078,':"r",a:0,',1078,':"s",a:0,',1078,':"t",krn:{"121',1195,1405,'0278},',1078,':"u',1399,1405,'0278},',1078,':"v',851,1331,'97":-0.0556,"101',1195,'97',1195,'111',1195,1471,'0278},',1078,':"w',851,'0139',822,1195,'97',1195,'111',1195,1471,'0278},',1078,':"x",a:0,',1078,':"y',919,1331,'111',1195,'101',1195,'97',1195,'46',1207,'44":-0.0833},',1078,':"z",a:0,',1078,1040,'0278',565,'124},',1078,1045,'0278,',1078,':"˝',1092,'x2DC',1092,1053,1102,'"}]});','jsMath.Setup.Styles','({".typeset .math','":"font-style: ','normal','",".typeset .','italic',1622,1625,1624,'bold":"','font-weight: bold',1624,'cmr10','":"font-family: ','serif',1624,'cal',1633,'cursive',1624,'arrows','":"",".typeset .',380,1641,433,1641,'harpoon','":"font-size: ','125%",".typeset .',396,1641,'symbol2',1641,'delim1',1647,'133',315,'75em',1624,'delim1b',1647,'133',315,'8em; margin',': -.1em',1624,'delim1c',1647,'120',315,'8em',';",".typeset .',272,1647,'180',315,1657,1624,'delim2b',1647,'190',315,1663,': -.1em',1624,91,1647,'167',315,'8em',1671,'delim3',1647,'250',315,'725em',1624,'delim3b',1647,'250',315,1663,': -.1em',1624,'delim3c',1647,'240',315,'775em',1671,'delim4',1647,'325',315,'7em',1624,'delim4b',1647,'325',315,1663,': -.1em',1624,'delim4c',1647,'300',315,'8em',1671,'delim',1641,67,1641,'greek',1641,464,1622,1625,1624,'bgreek":"',1630,1624,103,1647,'133%; ','position: relative; top',': .85em; margin:-.05em',1624,153,1647,'100%; ',1745,': .775em',1671,171,1647,'160%; ',1745,': .7em','; margin:-.1em',1624,113,1647,'125%; ',1745,': .',1657,1759,1671,107,1647,'200%; ',1745,': .',1663,':-.07em',1624,199,1647,'175%; ',1745,1758,1671,211,1647,'270%; ',1745,': .62em',1759,1624,117,1647,'250%; ',1745,1758,'; margin:-.17em',1671,242,1647,'67%; ',1745,':-.8em',1624,247,1647,'110%; ',1745,':-.5em',1624,252,1647,'175%; ',1745,':-.32em',1624,257,1647,'75%; ',1745,1807,1624,262,1647,'133%; ',1745,': -.15em',1624,267,1647,'200%; ',1745,': -.05em',1624,320,1641,'accent":"',1745,': .02em',1624,500,'":"',1745,1837,'; font-style: ',1625,1624,1102,'":"',1745,1837,'; ',1630,'"});',1620,'();jsMath.Macro("not','","\\\\mathrel{\\\\','rlap{\\\\kern 4mu/}}");jsMath.Macro("joinrel',1855,'kern-2mu}");jsMath.Box.DelimExtend=jsMath.Box.DelimExtendRelative;jsMath.Box.defaultH=0.8;'] -]); \ No newline at end of file diff --git a/sagenb/data/jsmath/jsMath-global-controls.html b/sagenb/data/jsmath/jsMath-global-controls.html deleted file mode 100644 index 0c5ffe7c1..000000000 --- a/sagenb/data/jsmath/jsMath-global-controls.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - - - -
- - - -
- - - - - - - - - -
-
- - - diff --git a/sagenb/data/jsmath/jsMath-global.html b/sagenb/data/jsmath/jsMath-global.html deleted file mode 100644 index 1732662f2..000000000 --- a/sagenb/data/jsmath/jsMath-global.html +++ /dev/null @@ -1,414 +0,0 @@ - - - -jsMath Global Frame - - - - - - - - diff --git a/sagenb/data/jsmath/jsMath-loader-omniweb4.js b/sagenb/data/jsmath/jsMath-loader-omniweb4.js deleted file mode 100644 index 051110eaf..000000000 --- a/sagenb/data/jsmath/jsMath-loader-omniweb4.js +++ /dev/null @@ -1,39 +0,0 @@ -/* - * jsMath-loader-omniweb4.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file synchronizes the jsMath-loader.html file with - * the actual loading of the source javascript file. - * OmniWeb 4 has a serious bug where the loader file is run - * several times (and out of sequence), which plays havoc - * with the Start() and End() calls. - * - * --------------------------------------------------------------------- - * - * Copyright 2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -if (window.jsMath.Autoload) { - jsMath.Autoload.Script.endLoad(); -} else { - if (!window.phase2) { - jsMath.Script.Start(); - window.phase2 = 1; - } else { - jsMath.Script.End(); - jsMath.Script.endLoad(); - } -} \ No newline at end of file diff --git a/sagenb/data/jsmath/jsMath-loader-post.html b/sagenb/data/jsmath/jsMath-loader-post.html deleted file mode 100644 index 0de7cb983..000000000 --- a/sagenb/data/jsmath/jsMath-loader-post.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - diff --git a/sagenb/data/jsmath/jsMath-loader.html b/sagenb/data/jsmath/jsMath-loader.html deleted file mode 100644 index ae9c81ed2..000000000 --- a/sagenb/data/jsmath/jsMath-loader.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - diff --git a/sagenb/data/jsmath/jsMath-msie-mac.js b/sagenb/data/jsmath/jsMath-msie-mac.js deleted file mode 100644 index cf19f76f0..000000000 --- a/sagenb/data/jsmath/jsMath-msie-mac.js +++ /dev/null @@ -1,53 +0,0 @@ -/* - * jsMath-msie-mac.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed for use with MSIE on the Mac. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - - -/* - * MSIE crashes if it changes the page too quickly, so we add a - * delay between processing math entries. Unfortunately, this really - * slows down math in MSIE on the mac. - */ - -jsMath.Add(jsMath,{ - - msieProcess: jsMath.Process, - msieProcessBeforeShowing: jsMath.ProcessBeforeShowing, - - Process: function () { - // we need to delay a bit before starting to process the page - // in order to avoid an MSIE display bug - jsMath.Message.Set("Processing Math: 0%"); - setTimeout('jsMath.msieProcess()',jsMath.Browser.delay); - }, - - ProcessBeforeShowing: function () { - // we need to delay a bit before starting to process the page - // in order to avoid an MSIE display bug - setTimeout('jsMath.msieProcessBeforeShowing()',5*jsMath.Browser.delay); - } - -}); - -jsMath.Browser.delay = 75; // hope this is enough of a delay! diff --git a/sagenb/data/jsmath/jsMath-old-browsers.js b/sagenb/data/jsmath/jsMath-old-browsers.js deleted file mode 100644 index 35dcf189a..000000000 --- a/sagenb/data/jsmath/jsMath-old-browsers.js +++ /dev/null @@ -1,58 +0,0 @@ -/* - * jsMath-old-browsers.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed by older versions of some browsers - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -jsMath.Add(jsMath.HTML,{ - /* - * Use the blank GIF image for spacing and rules - */ - Blank: function (w,h,d,isRule) { - var style = ''; - if (isRule) { - if (h*jsMath.em < 1.5) {h = '1px'} else {h = jsMath.HTML.Em(h)} - style = 'border-top:'+h+' solid;'; h = 0; - } - if (d == null) {d = 0} - style += 'width:'+this.Em(w)+'; height:'+this.Em(h+d)+';'; - if (d) {style += 'vertical-align:'+this.Em(-d)} - return ''; - } -}); - -if (jsMath.browser == 'Konqueror') { - - jsMath.Package(jsMath.Box,{Remeasured: function() {return this}}); - - jsMath.Add(jsMath.HTML,{ - Spacer: function (w) { - if (w == 0) {return ''}; - return '' - + ' '; - } - }); - - jsMath.Browser.spaceWidth = this.EmBoxFor('     ').w/5; - -} - -jsMath.styles['.typeset .spacer'] = ''; diff --git a/sagenb/data/jsmath/jsMath.js b/sagenb/data/jsmath/jsMath.js deleted file mode 100644 index fb981d879..000000000 --- a/sagenb/data/jsmath/jsMath.js +++ /dev/null @@ -1,51 +0,0 @@ -/***************************************************************************** - * - * jsMath: Mathematics on the Web - * - * This jsMath package makes it possible to display mathematics in HTML pages - * that are viewable by a wide range of browsers on both the Mac and the IBM PC, - * including browsers that don't process MathML. See - * - * http://www.math.union.edu/locate/jsMath - * - * for the latest version, and for documentation on how to use jsMath. - * - * Copyright 2004-2008 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - *****************************************************************************/ - -if (!window.jsMath) {jsMath = {}} -if (!jsMath.Script) {jsMath.Script = {}} - -jsMath.Script.Uncompress = function (data) { - for (var k = 0; k < data.length; k++) { - var d = data[k]; var n = d.length; - for (var i = 0; i < n; i++) {if (typeof(d[i]) == 'number') {d[i] = d[d[i]]}} - data[k] = d.join(''); - } - eval(data.join('')); -} - -//start = new Date().getTime(); -jsMath.Script.Uncompress([ - ['if(!','window.','jsMath','||!',1,'jsMath.','loaded','){var ','jsMath_old','=',1,2,';',0,'document.','getElementById','||!',14,'childNodes||!',14,'createElement','){','alert("','The',' mathematics ','on this page requires W3C DOM support in its JavaScript. Unfortunately, your ','browser',' doesn\'t seem to have this.")}','else{',1,2,'={version:"3.6c",document:document,','window',':',32,',','platform',':(','navigator.',36,'.match(/','Mac/)?"mac":',38,36,40,'Win/)?"pc":"unix"),','sizes',':[50,60,70,85,100,120,144,173,207,249],styles:{".math','":{"font-family":"serif","font-style":"normal","font-weight":"normal','"},".typeset',48,'","line-height":"normal','","text-indent":"0px','","white-space":"','normal','"},".typeset .',54,48,'"},"div','.typeset','":{"text-align":"','center",margin:"1em 0px"},"span',59,60,'left',49,' span',60,'left",border',':"0px",margin:"0px','",padding',':"0px"},"a .typeset img, .typeset a img','":{border:"0px','","border-bottom":"','1px solid',' blue;"},".typeset .size0','":{"font-size":"','50','%"},".typeset .','size1',76,'60',78,'size2',76,'70',78,'size3',76,'85',78,'size4',76,'100',78,'size5',76,'120',78,'size6',76,'144',78,'size7',76,'173',78,'size8',76,'207',78,'size9',76,'249',78,'cmr10','":{"font-family":"jsMath-',115,', serif',55,'cmbx10',116,120,', ',2,'-cmr10',55,'cmti10',116,127,', ',2,125,55,'cmmi10',116,134,55,'cmsy10',116,138,55,'cmex10',116,142,55,'textit','":{"font-family":"','serif","','font-style":"italic',55,'textbf',147,'serif","font-weight":"bold',55,'link":{"','text-decoration":"none',55,'error',76,'90%","',149,'","background-color','":"#FFFFCC',70,':"1px','",border:"',74,' #CC0000',55,'blank','":{display:"','inline-block','",overflow:"','hidden',166,'0px none",width:"0px",height:"0px',55,'spacer',171,172,'"},"#','jsMath_hiddenSpan":{','visibility:"hidden",position:"absolute",','top:"0px",left:"0px',51,52,181,'jsMath_message','":{position:"fixed",bottom:"','1px",left:"2px',162,'":"#E6E6E6','",border:"solid 1px #959595",margin:"0px",padding:"','1px 8px','","z-index":"','102','",color:"black","font-size":"','small",width:"auto','"},"#jsMath_panel',189,'1.75em",right:"1.5em',70,':".8em 1.6em',162,'":"#DDDDDD',166,'outset 2px',195,'103",','width:"auto',197,'10pt","font-style":"',54,199,' .disabled":{color:"#888888',199,' .infoLink',76,'85%"},"#jsMath_panel *":{"','font-size":"inherit","font-style":"inherit","font-family":"inherit',51,199,' div":{"','background-color":"inherit",color:"inherit"},"#jsMath_panel ','span":{"',224,'td',72,70,69,'","',224,'tr',72,70,69,'","',224,'table',72,70,69,162,'":"inherit",color:"inherit",height:"auto",',210,181,'jsMath_button',189,'1px",right:"2px',162,'":"white',193,'0px 3px 1px 3px',195,'102",color:"black","',156,'","font-size":"x-',198,'",cursor:"hand"},"#',247,' *":{padding:"0px",border',69,51,'","',220,181,'jsMath_global":{"',149,181,'jsMath_noFont',' .message":{"text-align":"center",padding:".8em 1.6em",border:"3px solid #DD0000","background-color":"#FFF8F8",color:"#AA0000","font-size":"',198,181,'jsMath_noFont .link":{padding:"0px 5px 2px 5px',166,'2px outset',162,'":"#E8E8E8',197,'80%",',210,259,'jsMath_PrintWarning',271,'x-',198,'"},"@media print":{"#',247,171,'none',181,'jsMath_Warning',171,'none"}},"@media screen":{"#',283,171,'none"}}},Element',':function(','a','){return ',5,14,15,'("jsMath_"+a)},','BBoxFor',298,'a','){this.','hidden.innerHTML','=\'<','span class="','typeset"><',311,'scale">\'+a+"";var b={w:this.',174,'.offsetWidth',',h:this.',174,'.offsetHeight','};this.',309,'="";return b},EmBoxFor',298,'b){var a=',5,'Global.cache.R;if(!a[this.em]){a[this.em]={}}if(!a[this.em][b]){var c=this.BBoxFor(b);','a[this.em][b]={w:c.w/this.em,h:c.h/this.em}}return a[this.em][b]},','EmBoxForItalics',298,324,5,326,'if(b.match(/|class=\\"(icm|italic|igreek|iaccent)/i)){c.w=c.Mw=','this.BBoxFor','(b+',5,'Browser.','italicString',').w-',5,337,'italicCorrection','}',327,'Init',':function(){','if(',5,'Setup.inited','!=1){',0,5,349,'){',5,'Setup.','Body()}if(',5,349,'!=1){if(',5,349,'==-100','){return}',22,'It looks like ',2,' failed to set up properly (error code "+',5,349,'+"). I will try to keep going, but it could get ugly.");',5,349,'=1}}this.em=this.CurrentEm();','var a=',5,'Global.cache','.B;',0,'a[this.em]){a[this.em]={};','a[this.em].','bb=',334,'("x");var c=',381,'bb.h;',381,'d=',334,'("x"+',5,'HTML.Rule(1,','c/',5,'em)).h-c;if(',5,337,338,'){',381,'ic=',5,305,'(',5,337,338,').w}}',5,337,342,'=',381,'ic;var g=',381,'bb;var e=g.h;var f=',381,'d;this.h=(e-f)/this.em;this.d=f/this.em;this.hd=this.h+','this.d;this.',356,'TeXfonts','();var b=this.EmBoxFor(\'<',311,115,'">M\').w/2;this.TeX.M_height=b*(26/14);this.TeX.h=this.h;this.TeX.d=',419,'TeX.hd=this.hd;this.Img.Scale();',0,'this.initialized',308,356,'Sizes','();this.','Img.UpdateFonts()}this.p_height=(','this.TeX.cmex10[0].','h+',435,'d)/0.85;',429,'=1},ReInit',346,'if(this.','em!=this.CurrentEm()){this.Init()}},CurrentEm',346,375,334,'(\'\').','w/27;if(a>0',300,'a}return ',334,'(\'\').w/13},Loaded',346,'if(',8,7,'b=["Process","ProcessBeforeShowing","ProcessElement","ConvertTeX","ConvertTeX2","ConvertLaTeX","ConvertCustom","CustomSearch","Synchronize","Macro","document"];','for(var a=0;a<','b','.length;a++){','if(',8,'[b[a]]){','delete ',8,'[b[a]]}}}if(',8,'){this.Insert(',2,',',8,')}',8,'=null;',5,6,'=1},Add',298,'c,a){for(var b in a){','c[b]=a[b]}},Insert',298,486,'if(c[b]&&typeof(a[b])=="object"&&(','typeof(c[b])=="','object"||',491,'function")){this.Insert(c[b],a[b])}',28,'c[b]=a[b]}}},Package',298,'b,a',475,'b.prototype,a)}};',5,'Global={isLocal:1,cache:{','T:{},D:{},R:{},B',':{}},ClearCache',346,5,377,'={',503,':{}}},GoGlobal',298,324,'String(',5,1,'location',');var d=(',5,'isCHMmode','?"#":"?");if(b){a=a.replace(/\\?.*/,"")+"?"+b}',5,'Controls.','Reload(',5,'root+"',2,'-global.html"+d+escape(a))},Init',346,'if(',5,'Controls.cookie.','global=="always"&&!',5,'noGoGlobal','){if(',38,'accentColorName',364,0,5,32,'){',5,32,'=',32,'}',5,522,6,'=1;',5,522,'defaults.hiddenGlobal=null;this.GoGlobal(',5,522,'SetCookie(2))}},Register',346,375,5,1,'parent;',0,5,519,'){',5,519,'=(',5,1,516,'.protocol','=="mk:")}try{',0,5,519,308,'Domain()}if(a.',2,'&&a.',5,'isGlobal){a.',5,'Register(',5,32,')}}catch(b){',5,534,'=1}},Domain',346,'if(',38,'appName=="Microsoft Internet Explorer"&&',5,36,'=="mac"&&',38,'userProfile','!=null',364,'if(',5,14,'all&&!',5,1,'opera',364,'if(',32,'==parent',364,'var b=',5,14,'domain',';try{while(true){try{if(parent.',14,'title',601,'){return}}','catch(a){}',0,14,618,'.match(/\\..*\\./)){break}',5,14,618,'=',5,14,618,'.replace(/^[^.]*\\./,"")}}',624,5,14,618,'=b}};',5,'Script={request:null,Init',346,'if(!(',5,531,'asynch&&',5,531,'progress',')){if(',1,'XMLHttpRequest','){try{','this.request','=new ',654,'}catch(c){}if(',656,'&&',5,'root.match','(/^file:\\/\\//)){try{',656,'.open("GET",',5,525,5,'js",false);',656,'.send(null)}catch(','c){',656,'=null;if(',1,'postMessage&&',1,'addEventListener',308,'mustPost','=1;',5,1,679,'("message",',5,'Post.','Listener,false)}}}}',0,656,'&&',1,'ActiveXObject','&&!this.',681,7,'a=["MSXML2.XMLHTTP.5','.0","MSXML2.XMLHTTP','.4',699,'.3',699,'","Microsoft.XMLHTTP"];','for(var b=0;b<','a.length&&!',656,';b++){try{',656,'=new ',694,'(a[b])}catch(c){}}}}',0,656,'||',5,356,'domainChanged',308,'Load=this.delayedLoad;this.needsBody=1}},Load',298,'b,a){','if(a){',5,'Message.Set("Loading "+','b);',5,'Script.','Delay(1);',5,'Script.Push(','this,"xmlRequest",b',');',5,731,5,'Message',',"Clear")}',28,5,731,732,')}},xmlRequest',298,'url){','this.blocking','=1;try{',656,666,'url,false);',656,672,'err){',746,'=0;if(',5,'Translate.','restart&&',5,'Translate.asynchronous){return""}throw Error("jsMath can\'t load the file \'"+url+"\'\\','nMessage: "+err.message)}if(',656,'.status',601,'&&(',656,763,'>=400||',656,763,'<0)){',746,'=0;if(',5,757,'restart&&',5,760,'nError status: "+',656,763,')}',0,'url','.match(/\\.js$/)){','return(',656,'.responseText',')}var tmpQueue','=this.queue;this.queue','=[];',5,1,'eval(',656,788,');',746,'=0;','this.queue=this.queue.concat(','tmpQueue);this.Process();return""},cancelTimeout:30*1000,blocking:0,cancelTimer:null,needsBody:0,queue:[],Synchronize',298,'a,b','){if(typeof(','a)!="string"){',5,731,'null,a,b)}',28,5,731,5,32,',"eval",a)}},Push',298,'a,c,b',308,'queue[','this.queue.length',']=[a,c,b];if(!(',746,'||(this.needsBody&&!',5,14,'body))){this.Process()}},Process',346,'while(',819,'&&!',746,7,'c=this.queue[0];this.queue=this.queue.slice(1);',375,'this.SaveQueue();var b=c[0];var e=c[1];var d=c[2];if(b){b[e](d)}',28,'if(e){e(d)}}this.','RestoreQueue','(a)}},SaveQueue',346,'var a',790,'=[];return a},',837,298,'a){',800,'a)},delayedLoad',298,'a',308,'Push(','this,"','startLoad','",a)},',853,298,'a',7,'b=',5,14,20,'("iframe");b','.style.visibility="',174,'";b.style.','position="absolute";','b','.style.width="','0px";b','.style.height="','0px";if(',5,14,'body.firstChild','){',5,14,'body.insertBefore(b,',5,14,875,')}',28,5,14,'body','.appendChild(','b)}',746,'=1;this.','url=a;if(a','.substr(0,',5,'root.length',')==',5,'root){a=a.substr(',5,895,')}',5,725,'a);this.cancelTimer=setTimeout("',5,728,'cancelLoad','()",this.cancelTimeout);',442,681,'){','b.src=',5,688,853,'(a,b)}',28,'if(a',785,912,5,525,2,'-loader.html"}',28,912,'this.url}}},','endLoad',298,'a){if(this.cancelTimer){clearTimeout(this.cancelTimer);this.cancelTimer=null}',5,688,928,'();',5,737,'.Clear();if(a!="cancel"){',746,'=0;this.Process','()}},Start',346,'this.tmpQueue',790,'=[]},End',346,800,942,');',471,942,'},',907,298,'b,',930,'if(b==null){b','="Can\'t load file"}if(a==null){a=2000}',5,737,'.Set(b);setTimeout(\'',5,728,928,'("cancel")\',a)},Delay',298,'a){',746,'=1;setTimeout("',5,728,'endDelay','()",a)},',971,346,746,939,'()},','imageCount',':0,WaitForImage',298,'b){',746,891,978,'++;',442,'img==null',308,'img=[]}',375,'new Image',433,'img[this.img.length]=a;a.onload=function(){if(--',5,728,978,'==0){',5,728,971,'()}};a.onerror=a.onload;a.onabort=a.onload;a.src=b},Uncompress',298,'data){for(var k=0;k\'+b[65].c','+"");b.hd=a.h;b.d=',5,1551,'+',5,392,'b.hd)+"").h-b.hd;b.h=b.hd-b.d;','if(c=="',134,'"){b.skewchar=','127}',28,1559,138,1561,'48}}},',421,346,465,5,1531,467,'if(',5,1531,'[a]){this.TeXfont(',5,1531,'[a])}}},Sizes',346,5,'TeXparams','=[];var b;var a;for(a=0;a<',5,46,467,5,1583,'[a]={}}for(b in ',5,'TeX',804,5,'TeX[b])!="object"){for(a=0;a<',5,46,467,5,1583,'[a][b]=',5,46,'[a]*',5,'TeX[b]/100}}}},Styles',298,'a){',0,'a){a=',5,'styles;a[".typeset .scale"]={"font-size":',5,531,'scale+"%"};this.stylesReady=1}',5,731,852,'AddStyleSheet','",a);if(',5,337,'styleChangeDelay','){',5,731,5,'Script,"Delay",1)}},StyleString',298,'e',7,'a={},f;for(f in e){if(typeof e[f]==="string"){a[f]=e[f]}',28,'if(f',893,'1)==="@"){a[f]=','this.StyleString(','e[f])}',28,'if(e[f]!=null',7,'d=[];for(var c in e[f]){if(e[f][c]!=null){d[d.length]=c+": "+e[f][c]}}a[f]=d.join("; ")}}}}var b="";for(f in a){b+=f+" {"+a[f]+"}\\n"}return b},',1619,298,'d',7,'b=',5,14,1356,'head")[0];if(',324,1637,'d);if(',5,14,'createStyleSheet){b.insertAdjacentHTML("beforeEnd",\'<','span style="display:','none">x")}',28,'var c=',5,14,20,'("style");c.type="text/css";c',888,5,14,1145,'(a));b',888,'c)}}',28,0,5,'noHEAD){',5,'noHEAD=1;',22,'Document is missing its section. Style sheet can\'t be created without it.")}}},Body',346,442,'inited',364,'this.inited=-','1;',5,356,'Hidden();',1685,'2;',5,337,1167,1685,'3;if(',5,531,170,'){',5,737,'.Blank()}',1685,'4;',5,356,'Styles();',1685,'5;',5,522,1167,1685,'6;',5,731,5,'Setup,"User","pre-font");',1685,'7;',5,731,5,'Font,"Check");if(',5,'Font.register.length){',5,731,5,'Font,"LoadRegistered")}this.inited=1},User',298,'a){if(',5,'Setup.UserEvent[a',']){(',5,1735,'])()}},UserEvent:{"pre-font":null,onload:null}};',5,'Update={',421,298,'d){for(var a in d){for(var b in d[a]){for(var c in d[a][b]){',5,'TeX[a][b][c]=d[a][b][c]}}}},TeXfontCodes',298,'c){',1301,705,'c[a].',1361,5,'TeX[a][b].c=c[a][b]}}}};',5,'Browser={allowAbsolute:1,allowAbsoluteDelim:0,','separateSkips',':0,valignBug:0,operaHiddenFix:"",','msieCenterBugFix',':"",','msieInlineBlockFix',':"",msieSpaceFix:"",imgScale:1,renameOK:1,',1623,':0,delay:1,version:0,','TestSpanHeight',346,5,309,'=\'<','span style="\'+this.block','+\';height:2em;width:','1px">\';var b=',5,'hidden.firstChild;',375,1309,';this.','spanHeightVaries','=(b',319,'>=a',319,'&&b',319,'>0);','this.spanHeightTooBig','=(b',319,'>a',319,');',5,309,'=""},','TestInlineBlock',346,'this.block="display',':-','moz-inline-box";','this.hasInlineBlock','=',5,'BBoxFor(\'\').w>0;if','(',1801,'){',5,'styles[".typeset',' .',170,'"].display="-',1800,471,5,1810,' .spacer"].display','}',28,1798,':',172,'";',1801,'=',5,1804,1805,'(!',1801,623,'this.block+=";overflow:',174,'";',375,5,305,'("x").h;this.mozInlineBlockBug=',5,1804,'+";height:"+a+\'px;width:1px','">x','<',1770,'+";height:"+a+"px;width:1px;vertical-align:-"+a+\'px',451,'h>2*a;this.widthAddsBorder=',5,1804,'+\';overflow:',174,';height:1px;width:10px',';border-left:','10px solid',451,'w>10;','this.msieBorderBug','=',5,1804,1842,1843,'\').h!=',5,1804,1842,1854,74,1843,'\').h;','this.blankWidthBug=',1858,'||',5,1804,1771,'0px',451,'h==0},','TestRenameOK',346,5,309,'="";',375,5,1775,'a.setAttribute("name","','jsMath_test','");this.renameOK=(',5,14,'getElementsByName("',1890,'").length>0);',5,309,1795,'TestStyleChange',346,5,309,'=\'x\';var b=',5,1775,375,'b',316,';',5,356,1619,'({"#',1890,'":"font-size:200%"});this.',1623,'=(b',316,'==a);',5,309,1795,'VersionAtLeast',298,324,1407,'this.version',').split(".");','b=',1407,'b',1931,'if(b[1]==null){b[1]="0"}return a[0]>b[0]||(a[0]==b[0]&&a[1]>=b[1])},Init',346,5,26,'="unknown";this.',1796,433,1765,433,1881,433,1900,433,'MSIE',433,'Mozilla',433,'Opera',433,'OmniWeb',433,'Safari',433,'Konqueror();if(','this.allowAbsoluteDelim','){',5,'Box.DelimExtend=',5,'Box.DelimExtendAbsolute;',5,'Box.Layout=',5,'Box.LayoutAbsolute}',28,5,'Box.DelimExtend=',5,'Box.DelimExtendRelative;',5,'Box.Layout=',5,'Box.LayoutRelative}',442,1757,'){',5,'HTML.Place=',5,'HTML.','PlaceSeparateSkips',';',5,'Typeset.prototype.','Place=',5,1989,1986,'}},MSIE',346,442,1779,'&&!',1787,'){',5,26,'="MSIE";if(',5,36,'=="pc"){this.','IE7=(',1,654,601,');','this.quirks','=(',5,14,'compatMode=="BackCompat");this.msieStandard6=!',2012,695,'IE7;',1960,891,1757,'=1',';this.buttonCheck=1;this.','msieBlankBug=1;this.','msieAccentBug',891,'msieRelativeClipBug','=1;this.msieDivWidthBug=1;this.',1254,891,'msieIntegralBug',891,'waitForImages',891,'msieAlphaBug','=!this.IE7;this.','alphaPrintBug',2037,1759,'="position:relative; ";this.',1761,'=" display:',172,';";this.msieTeXfontBaselineBug=!',2012,';',1858,'=',1872,'1;this.msieSpaceFix=\'x";',5,'EmBoxFor=',5,328,'}',28,'if(',5,36,'=="mac"){this.msieAbsoluteBug',891,'msieButtonBug',2029,2025,'quirks=1;',5,356,'Script("',2,'-msie-mac.js");',5,'Parser.prototype.macros.angle=["Replace","ord",\'\',"',54,'"];',5,2096,'width="42em";',5,531,'printwarn=0}}',5,2060,'not',2062,2078,'kern3mu/}}");',5,'Macro("angle","\\\\raise1.','84pt','{\\\\kern2.5mu\\\\rlap{\\\\scriptstyle/}\\\\','kern.5pt\\\\','rule{.4em}{-','1.5pt}{1.84pt}\\\\kern2.5mu}")}},',1951,346,'if(',5,174,'.ATTRIBUTE_NODE&&',5,1,'directories){',5,26,'="',1951,'";if(',5,36,2006,2038,'=1}',1960,'=1;',5,2103,'cursor=',5,2138,'cursor="pointer",',5,2060,'not',2062,2078,'kern3mu/}}");',5,2226,'34pt',2228,2230,'1pt}{1.34pt}\\\\kern2.5mu}");if(',38,'vendor=="Firefox"){',1930,'=',38,'vendorSub}',28,'if(',38,'userAgent.match(" Firefox/([0-9.]+)([a-z ]|$)")){',1930,'=RegExp.$1}}',442,1926,'("3.0")){this.mozImageSizeBug=1}}},',1955,346,'if(',38,'accentColorName){',5,26,'="',1955,'";','this.allowAbsolute','=',1801,';',1960,'=',2296,';this.valignBug=!',2296,2024,1174,'=1;',5,'noChangeGlobal=1;',0,1801,'){jsMath.'], - ['Setup','.Script','("','jsMath','-old-browsers.js','")}}},Opera',':function(){','if(this.','spanHeightTooBig){',3,'.browser="','Opera";','var b=','navigator.userAgent.match','("Opera 7");','this.allowAbsolute=0;this.','delay=10;','this.','operaHiddenFix="[Processing]";if(b){',3,'.Setup.Script','("',3,4,'")}','var a=','navigator.appVersion.match','(/^(\\d+\\.\\d+)/);if(a){','this.version=a','[1]}else{',17,'vesion=0}',17,'operaAbsoluteWidthBug=',17,'operaLineHeightBug=(a[1]>=9.5&&a[1]<9.6)}},Safari',6,'if(',26,'(/Safari\\//)){',3,10,'Safari";if(navigator.vendor','.match(/','Google/)){',3,10,'Chrome"}',25,13,'("Safari/([0-9]+)");a=(a)?a[1]:400;',28,';',3,'.TeX.','axis_height','+=0.05;',17,'allowAbsoluteDelim=','a>=125;',17,'safariIFRAMEbug=a>=312&&a<412;',17,'safariButtonBug=a<412;',17,'safariImgBug=1;',17,'textNodeBug=1;',17,'buttonCheck=a<500;',17,'styleChangeDelay=1;',3,'.Macro("not","\\\\mathrel{\\\\rlap{\\\\kern3.25mu/}}")}},','Konqueror',6,'if(','navigator.product','&&',77,'.match("',74,'")){',3,10,74,'";',15,58,'0;if(',13,'(/',74,'\\/(\\d+)\\.(\\d+)/)){if(RegExp.$1<3||(RegExp.$1==3&&RegExp.$2<3)){',17,'separateSkips=1;',17,'valignBug=1;',3,20,'("',3,4,'")}}',3,'.Add(',3,'.styles,{".typeset .cmr10":"','font-family: ',3,'-','cmr10, ',3,' cmr10',', serif','",".typeset .','cmbx10":"',108,3,'-cmbx10, ',3,' cmbx10, ',3,'-',111,3,113,115,'cmti10":"',108,3,'-cmti10, ',3,' cmti10, ',3,'-',111,3,113,115,'cmmi10":"',108,3,'-cmmi10, ',3,' cmmi10',115,'cmsy10":"',108,3,'-cmsy10, ',3,' cmsy10',115,'cmex10":"',108,3,'-cmex10',', ',3,' cmex10"});',3,'.Font.testFont','="',3,157,', ',3,' cmex10"}}};',3,'.Font={testFont:"',3,157,'",fallback:"symbol",register:[],message:"No ',3,' TeX fonts ','found -- using',' image fonts instead','.
\\nThese may be slow and might not print well.
\\nUse the ',3,' control panel to get additional information','.",','extra_message',':\'Extra',175,'not found:
Using',177,'. This may be slow and might not print well.
\\nUse the ',3,180,'.\',','print_message',':"To print higher-resolution math symbols, click the
\\nHi-Res Fonts for Printing button on the ',3,' control panel.
\\n",','alpha_message',':"If the math symbols print as black boxes, turn off image alpha channels
\\nusing the Options pane of the ',3,194,'Test1',':function(','c,','f,d,e){if(f==null){f=124}if(d==null){d=2}if(e==null){e=""}var b=jsMath.BBoxFor(\'\'+jsMath.TeX[c][f].c+"");var a=jsMath.BBoxFor(\'\'+jsMath.TeX[c][f].c+"");return(','b.w>d*a.w&&b.h!=0)},Test2',200,'c,',202,'a.w>d*b.w&&b.h!=0)},CheckTeX',6,25,3,'.BBoxFor(\'<','span style="','font-family: \'+',3,162,'+\', serif">\'+',3,54,'cmex10[1','].c+"");',3,'.nofonts=((a.w*3>a.h||a.h==0)&&!this.Test1("cmr10','",null,null,"',3,'-"));if(!',3,'.nofonts){','return}','if(',3,'.browser!="Mozilla"||(',3,'.platform','=="mac"&&(!',3,'.Browser.VersionAtLeast(','1.5)||',3,236,'3)))||(',3,233,'!="mac"&&!',3,236,'3))){a=',3,'.BBoxFor(\'<',212,108,'CMEX10, serif">\'+',3,54,'cmex10[1',220,3,222,'"));if(!',3,227,3,20,'("',3,'-BaKoMa-fonts.js")}}},Check',6,25,3,'.Controls.','cookie;',17,'CheckTeX();if(',3,227,'if(a.autofont','||a','.font=="tex"){','a.font=',17,'fallback;if(a.warn){',3,'.nofontMessage=1;a.warn=0;',3,269,'SetCookie(0);if','(',3,'.window.NoFontMessage','){',3,288,'()}else{','this.Message(this.','message)}}}}else{',275,'){a.font="tex"}if(a',277,'return}}if(',3,'.noImgFonts){','a.font="unicode"}if(a','.font=="unicode','"){',3,20,'("',3,'-fallback','-"+',3,233,'+".js");',3,'.Box.TeXnonfallback=',3,'.Box.TeX',';',3,316,'=',3,'.Box.TeXfallback;return}','if(!a.print&&a.printwarn){',17,'PrintMessage','((',3,'.Browser.','alphaPrintBug&&',3,269,'cookie.alpha)?',17,191,'+',17,195,':',17,191,')}if(',3,328,'waitForImages){',3,1,'.Push(',3,1,',"WaitForImage",',3,'.blank)}if(a.font=="symbol"){',3,20,'("',3,308,'-symbols.js");',3,'.Box.TeXnonfallback=',3,316,';',3,316,'=',3,322,3,'.Img.SetFont','({cmr10:["all"],cmmi10:["all"],cmsy10:["all"],cmex10:["all"],cmbx10:["all"],cmti10:["all"]});',3,'.Img.LoadFont','("cm-fonts")},Message',200,'a){if(',3,'.Element("Warning',82,228,12,3,'.Setup.DIV("','Warning','",{});b.innerHTML=\'
\'+a','+\'
<',212,'float:left; ','margin: 8px ','0px 0px 20px">',3,399,'<',212,391,'20px 0px 0px; float:right">


\'},',410,6,25,3,378,'");if(a','){a.style.display="none"}},',325,200,376,3,'.Element("','PrintWarning',82,228,12,3,383,429,385,387,'+\'',3,'\';if(!',3,'.Global.','isLocal&&!',3,'.noShowGlobal){a',502,'+=\'Global \'}if(a.offsetWidth<30){a.style.width="auto"}if(!','this.cookie','.button',423,'MoveButton',6,3,'.fixedDiv.style.','left=','document.body.','scrollLeft+"px";',3,637,'top=',639,'scrollTop+',639,'clientHeight+"px";',3,637,'width=',639,'clientWidth+"px"},GetCookie',6,'if(','this.defaults','==null){',655,'={}}',3,105,655,',',631,');',17,'userSet={};var c=',3,'.document.cookie',';if(',3,'.window.location','.protocol.match(',17,561,')){c=',17,'localGetCookie','();',17,'isLocalCookie','=1}if(c',43,3,'=([^;]+)/)){var d=unescape(RegExp.$1).split(/,/);for(',12,'0;b\'},Blank',1071,'b,f,i,g){var a','="";var e="";','if(g){e+="border-left',':"+this.Em(','b)+" solid;";if(',1151,'widthAddsBorder){b=0}}if(b==0){if(',1151,'blankWidthBug){if(',1151,'quirks','){e+="width:1px',';";a=\'<',1163,'right:-1px">\'}else{if(!g',1178,';margin-right:-1px;"}}}}else{e+="width',1170,'b)+";"}if(i==null){i=0}if(f){var c=this.Em(f+i);if(g&&f*jsMath.em<=1.5){c="1.5px";f=1.5/jsMath.em}e+="height:"+c+";"}if(',1151,'mozInlineBlockBug){i=-f}if(',1151,'msieBorderBug&&!g){i-=jsMath.d}if(i){e+="','vertical-align:"+','this.Em(-i)}return a+\'\'},Rule',1071,'a,b){if(b==null){b','=jsMath.TeX.default_rule_thickness}',1129,'Blank(a,b,0,1)},Class',1071,'a,b){return\'\'+b+""},Place',1071,'b,a,d){',1120,'a)<0.0001){a=0}',1120,'d)<0.0001){d=0}if(a||d){var c=\'<','span style="position',': relative',';\';if(a){c+=" margin-left',1170,'a)+";"}if(d){c+=" top:"+this.Em(-d)+";"}b=c',1201,'>"}return b},PlaceSeparateSkips',1071,'e',',g,f,i,a,h){if(Math.abs(g)<0.0001){g=0}if(Math.abs(f)<0.0001){f=0}','if(f){var d=0;var c=0;','var b="";if(','i!=null){c=','a-h;d=i;b=" width',1170,'a-i)+";"}e=','this.Spacer','(d-c)+\'<',1209,1210,'; top:\'+this.Em(-f)+";left',1170,'c',')+";"+b+\'">\'+',1225,'(-d)+e+',1225,'(c)+""}if(g){e=',1225,'(g)+e}return e},PlaceAbsolute',1071,'d',1218,'var c',1168,1220,1151,'msieRelativeClipBug&&',1221,1225,'(-i);g+=i;e=',1225,'(a-h)}if(',1151,'operaAbsoluteWidthBug){b=" width: "+this.Em(h+2)}d=\'<',1209,':absolute; ',1164,'g)+"; top',1170,'f',1232,'c+d+e+" ";','return d},','Absolute',1071,'b,a,c,e,f){if(f!="none"){',1120,'f)<0.0001){f=0}b=\'<',1209,1255,'top:\'+','jsMath.HTML.','Em(f)+\'; left:0em;">\'+b+" "}if(e=="none"){e=0}b+=this.Blank(a,c-e,e);if(',1151,'msieAbsoluteBug){b=\'<',1209,':relative',';">\'+b+""}b=\'<',1209,1276,';\'+',1151,'msieInlineBlockFix',1201,'>";return b}};','jsMath.Box','=function(c,f,a,b,e){','if(e==null','){e=jsMath.d}this.type="typeset";this.w=a;this.h=b;this.d=e;this.bh=b;this.bd=e;this.x=0;this.y=0;this.mw=0;this.Mw=a;this.html=f;this.format=c};jsMath.Add(',1285,',{defaultH:0,Null',1089,'return new ',1285,'("null","",0,0,0)},Text',1071,'l,k,b,m,j,i){var g=','jsMath.Typeset.AddClass(','k,l);g=','jsMath.Typeset.','AddStyle(','b,m,g);var c','=jsMath.EmBoxFor(','g);var e=',1299,'TeX(b,m);var h=((k=="cmsy10"||k=="cmex10")?c.h-e.h:e.d*c.h/e.hd);var f=new ',1285,'("text",l,c.w,c.h-h,h);f.style=b;f.size=m;f.tclass=k;if(i!=null){f.d=i*e.scale}else{f.d=0}if(j==null||j==1){f.h=0.9*e.M_height}else{f.h=1.1*e.x_height+e.scale*j}return f},TeX',1071,'g,a,d,b){var h=',1095,'a][g];if(h.d==null){h.d=0}if(h.h==null){h.h=0}if(h.img!=null&&h.c!=""){this.TeXIMG(a,g,',1299,'StyleSize(d,b))}var f=',1299,'TeX(d,b).scale;var e=new ',1285,'("text",h.c,h.w*f,h.h*f,h.d*f);e.style=d;e.size=b;if(h.tclass){e.tclass=h.tclass;if(h.img){e.bh=h.img.bh;e.bd=h.img.bd}else{e.bh=f*jsMath.h;e.bd=f*jsMath.d}}else{e.tclass=a;e.bh=f*',1095,'a].h;e.bd=f*',1095,'a].d;if(',1151,'msieFontBug&&','e','.html.match(/&#/)){','e','.html+=\'x\'}}return e},TeXfallback',1071,'b,f,e,o){var m=',1095,'f][b];if(!m.tclass){m.tclass=f}if(m.img!=null){',1129,'TeXnonfallback(b,f,e,o)}if(m.h!=null&&m.a==null){m.a=m.h-1.1*jsMath.TeX.x_height}var n=m.a;var l=m.d;var k=this.Text(m.c,m.tclass,e,o,n,l);var g=',1299,'TeX(e,o).scale;if(m.bh!=null){k.bh=m.bh*g;k.bd=m.bd*g}else{var j=k.bd+k.bh;var i=',1297,'k.tclass,k.html);i=',1299,1300,'e,o,i);k.bd',1302,'i+',1271,'Blank(1,j)).h-j;k.bh=j-k.bd;if(g==1){m.bh=k.bh;m.bd=k.bd}}if(jsMath.',1323,'k',1325,'k',1327,'>\'}return k},TeXIMG',1071,'f,a,t){var o=',1095,'f][a];if(o.img.size!=null&&o.img.size==t&&o.img.best!=null&&o.img.best==','jsMath.Img.best','){return}var g=(',1069,'.scale!=1);var b=',1356,'+t-4;if(b<0){b=0;g=1','}else{if(','b>=','jsMath.Img.fonts','.length){','b=',1364,'.length-1',';g=1}}var s=',1069,'[',1364,'[b]];var k=s[f][a];var i=1/',1069,'.w[',1364,'[b]];if(b!=',1356,'+t-4){if(o.w!=null){i=o.w/k[0]}else{i*=',1364,'[t]/',1364,'[4]*',1364,'[',1356,']/',1364,'[b]}}var p=k[0]*i;var l=k[1]*i;var n=-k[2]*i;var q;var j=(o.w==null||Math.abs(o.w-p)<0.01)?"":" margin-right:"+',1271,'Em(o.w-p)+";";var e="";a=',1069,'.HexCode[a];if(!g&&!',1127,'scaleImg){if(',1151,'mozImageSizeBug||2*p"}else{',1440,'m+\'" ',1192,1151,1444,'+\'" />\'}o.tclass="normal";o.img.bh=l+n;o.img.bd=-n;o.img.size=t;o.img.best=',1356,'},Space',1071,'a){return ','new jsMath.Box("html",',1271,'Spacer(a),a,0,0)},Rule',1071,'a,c){if(c==null){c',1196,'var b=',1271,'Rule(a,c);return ',1456,'b,a,c,0)},GetChar',1071,'b,a){var d=',1095,'a][b];','if(d.img!=null){this.TeXIMG(a,b',',4)}if(d.tclass','==null){d.','tclass=a}if(!d.computedW){d.w',1302,1297,'d.tclass,d.c)).w',';if(d.h',1473,'h=',1285,'.defaultH}if(','d.d',1473,'d=0}d.computedW=1}',1262,'DelimBestFit',1071,'e,j,d,g){if(j==0&&d==0){return null}var i;var f;d','=jsMath.TeX.fam[','d];var a=(g.charAt(1)=="S");var b=(g.charAt(0)=="S");while(j!=null){i=',1095,'d][j];if(i.h==null){i.h=',1285,1482,'i.d==null){i.d=0}f=i.h+i.d;if(i.delim','){return[j,d',',"",e]}if(a&&0.5*f>=e',1497,',"SS",0.5*f]}if(b&&0.7*f>=e',1497,',"S",0.7*f]}if(f>=e||i.n==null',1497,',"T",f]}j=i.n}return null},DelimExtendRelative',1071,'k,x,r,A,e){var s=',1095,'r][x];var q','=this.GetChar(s.delim.','top?s','.delim.top',':s.delim.rep,r);var ','b',1509,'rep,r);var p',1509,'bot?s','.delim.bot',1512,'f=',1297,'b.tclass,b.c);','var l=b.w;var v=b.h+b.d;var g;var d;var m;var o;var u;var t;if(s','.delim.mid){var ','z',1509,'mid,r);t','=Math.ceil((k-(','q.h+q.d)-(','z.h+z.d)-(p.h+p.d))/(2*(b.h+b.d',')));k=2*','t*(b.h+b.d)+(q.h+q.d)+(','z.h+z.d)+(p.h+p.d);if(e){g=0}else{g=k/2+A}d=g;m=',1271,'Place(',1297,'q.tclass,q.c),0,g-q.h',')+',1271,1535,1297,'p.tclass,p.c),-(','q.w+p.w)/2,g-(k-p.d))+',1271,1535,1297,'z.tclass,z.c),-(p.w+z.w)/2,g-(k+z.h-z.d)/2);o=(l-z','.w)/2;if(Math.abs(o)<0.0001){o=0}if(o){m+=jsMath.HTML.Spacer(o)}g-=q.h+q.d+b.h;for(u=0;uv[E]){v[E]=o[C].h}if(o[C].d>x[E]){x[E]=o[C].d}if(C>=g',1365,'g[C]=o[C].w',1362,'o[C].w>g[C]){',1715,'}}if(o[C].bh>f){f=o[C].bh}if(o[C].bd>m){m=o[C].bd}}}if(l[J','.length]==null){','l[J.length]=0}if(f==e){f=0}if(m==e){m=0}var a=G','*(jsMath.hd-0.01)*','L;var u=(p||1)*L/6;var t="";var n=0;var I=0;var s;var F;var q;var r;var c;var b;for(C=0;C0){r=',1285,'.SetList(c,"T",z);t+=',1271,1535,'r.html,I,0);I=g[C]-r.w+k[C]}else{I+=k[C]}}s=-k[g',1368,'];q=(v',1368,')*u+l[0];for(E=0;Eq[A]){q[A]=g[v].h}if(g[v].d>s[A]){s[A]=g[v].d}if(v>=c',1365,'c[v]=g[v].w',1362,'g[v].w>c[v]){',1765,'}}}}if(f[E',1720,'f[E.length]=0}l=(q',1368,')*p+f[0];for(A=0;A")}if(!h.match(/\\$|\\\\\\(/)){',1129,'Text(this.safeHTML(h),"normal","T",l).Styled()}var e=0;var d=0;var g;var f="";var a=[];var b,j;while(e/g,">")}','return ','a},Set',1,'c,b,a',',d){if(','c&&c.type){if(c','.type=="','typeset"){',5,'c}if(c',11,'mlist"){','c.mlist.','Atomize','(b,a);',5,17,'Typeset','(b,a)}if(c',11,'text"){c=this.Text(c.text,c.tclass,b,a,c.ascend||null,c.descend||null);if(d!=0){c','.Styled()}',5,'c}c=this','.TeX(','c.c,c.font,b,a);if(d!=0){c',26,5,'c}',5,3,'Box.Null','()},SetList',1,'d,f,c){var a=[];var g;','for(var b=0;b<','d.length;b++){g=d[b];if(g',11,12,'g=',3,'mItem','.',22,'(g)}a[a','.length]=','g}','var e=','new ',3,22,'(a);',5,'e.',22,'(f,c)}});',3,'Package(',3,'Box,{Styled',':function(){','if(this.','format=="text"){','this.html','=',3,22,'.AddClass(','this.tclass',',',68,');',68,'=',3,22,'.AddStyle(','this.style',',this.size,',68,');delete ',73,';delete ',82,';this.format="html"}',5,'this},','Remeasured',65,66,'w>0','){var a=','this.w;this.w=',3,'EmBoxFor(',68,').w;',66,'w','>this.Mw){this.Mw=this.w','}a=this.w/a;if(Math.abs(a-1)>0.05){this.h*=a;this.d*=a}}',5,'this}});',3,46,'=function(a',',b','){this.type','=a;',3,'Add(this,b)};',3,'Add(',3,46,',{Atom',1,'b,a){',5,'new ',3,46,'(b,{','atom:1,nuc:a})},','TextAtom',1,'e,h,c,b,g','){var f=','new ',3,46,'(e',',{atom:1,nuc:{type:"','text",text:h,tclass:c}});if(b','!=null){f.nuc.','ascend=b}if(g',139,'descend=g}',5,'f},TeXAtom',1,'b,d,a){',5,'new ',3,46,'(b',137,'TeX",c:d,font:a}})},Fraction',1,'b,a,f,d,e,c){',5,'new ',3,46,'("fraction",{from:b,num:a,den:f,','thickness',':d,left:e,right:c})},Space',1,'a){',5,'new ',3,46,'("space",{w:a})},',22,1,'a){',5,'new ',3,46,'("ord",{',128,'HTML',1,'a){',5,'new ',3,46,'("html",{html:a})}});',3,'mList','=function(d,a,b,c){','if(d){','this.mlist','=d}else{',191,'=[]}','if(c==null){c','="T"}if(b==null){b=4}','this.data','={openI:null,overI:null,overF:null,font:a,','size:b,style:c','};this.init={',199,'}};',3,'Package(',3,188,',{Add',1,'a){return(',191,'[','this.mlist.length',']=a)},Get',1,'a){',5,191,'[a]},Length',65,5,212,'},Last',65,'if(',212,'==0){',5,'null}',5,191,'[',212,'-1]},Range',1,'b,',2,'a==null){a=',212,'}',5,'new ',3,188,'(',191,'.slice(b,a+1))},Delete',1,'d,c){',195,'=d}if(',191,'.splice){',191,'.splice(d,c-d+1)}else{var a=[];',40,212,';b++){if(bc){a[a',50,191,'[b]}}',191,'=a}},Open',1,'d){var c=this.Add(new ',3,46,'("boundary",{','data:',197,'}));var a=',197,';',197,'={};for(var b in a){',197,'[b]=a[b]}delete ',197,'.overI',87,197,'.overF;',197,'.openI','=',212,'-1;if(d!=null){c.left=d}',5,'c},Close',1,'c){if(c!=null){c=new ',3,46,267,'right:c})}var e;','var b=',197,283,';var f=',197,'.overI;var ','g=',197,281,197,'=',191,'[b].data;if(f){e=',3,46,'.Fraction(','g.name,{','type:"mlist",mlist:this.Range(','b+1,f-1)},{',312,'f)},g.',161,',g.left,g.right);if(c',96,'new ',3,188,'([',191,'[b],e,c]);e=',3,46,'.Atom("inner",{type:"mlist",mlist:a})}}else{var d=b+1;if(c){this.Add(c);d--}e=',3,46,'.Atom((c)?"inner":"ord",{',312,'d)})}this.Delete(b,this.Length());',5,'this.Add(e)},Over',65,295,197,300,'c=',197,281,'var a=',3,46,310,'c.name,{',312,'open+1,b-1)},{',312,'b)},c.',161,',c.left,c.right);',191,'=[a]},',18,1,248,'var a;var e="";',82,'=d;this.size=c;',40,212,';b++){a=',191,'[b];a.delta=0;if(a',11,'choice"){',191,'=this.',18,'.choice(',82,',a,b,',191,');b--}else{',66,18,'[a.type]){var g=this.',18,'[a.type];g(',82,83,'a,e,this,b)}}e=a}if(a&&a',11,'bin"){a','.type="ord"}','if(',212,'>=2&&a',11,'boundary"&&',191,'[0].type=="boundary"){this.','AddDelimiters','(d,c)}},',394,1,'b,q){var p=-10000;var g=p;var k=p;for(var f=0;f<',212,';f++){var j=',191,'[f];if(j.atom||j',11,'box"){g','=Math.max(','g,j.nuc.h+j.nuc.y);k',405,'k,j.nuc.d-j.nuc.y)}}',52,3,'TeX;var l=',3,22,29,'b,q).','axis_height',';var o',405,'g-l,k+l);var n',405,'Math.floor(e.integer*o/500)*e.delimiterfactor,e.integer*(2*o-e.delimitershortfall))/e.integer;var c=',191,'[0];var m=',191,'[',212,'-1];c.nuc=',3,'Box.Delimiter(','n,c.left,b);m.nuc=',3,429,'n,m.right,b);c.type="open";c.atom=1',87,'c.left;m.type="close";m.atom=1',87,'m.right},',22,1,'c,a){',295,'new ',3,22,'(',191,');',5,'b.',22,'(c,a)}});',3,'Add(',3,188,'.prototype.',18,',{style',1,'d,c,a,e,b){b.','style=a.style},size',1,460,'size=a.size},phantom',1,8,'){var d=','a.nuc=',3,'Box.Set(','a.phantom',',c,b);if(a.h){d.',92,'();d.html=',3,'HTML.Spacer','(d.w)}else{d.html="",d.w=d.Mw=d.mw=0}if(!a.v){','d.h=d.d=0','}d.bd=d.bh=0',87,471,';a.type="box"},','smash',1,8,467,468,3,470,'a.smash',',c,b',').Remeasured();',478,87,490,482,'raise',1,8,'){',468,3,470,'a.nuc,','c,b);var d=a.raise;','a.nuc.html','=',3,'HTML.Place(',506,',0,d,a.nuc.mw,a.nuc.Mw,a.nuc.w);a.nuc.h+=d;a.nuc.d-=d;a','.type="ord";','a.atom=1},lap',1,'d,c,a){',52,3,470,504,'d,c',492,'var b=[e];if(a.lap=="llap"){e.x=-e.w}','else{if(a.lap=="','rlap"){b[1]=',3,'mItem.Space','(-e.w)}',523,'ulap"){e.y=e.d;e.h=e.d=0}',523,'dlap"){e.y=-e.h;e.h=e.d=0}}}}',468,3,'Box.SetList(','b,d,c);if(a.lap=="ulap"||a.lap=="dlap"){a.nuc.h=a.nuc.d=0}a.type="box";delete a.atom},bin',1,'d,b,a,e){if(e&&e.type){var c=e.type;if(c=="bin"||c=="op"||c=="rel"||c=="open"||c=="punct"||c==""||(c=="',391,'e.left!="")){a.type="ord"}}else{a',386,'jsMath.mList.prototype.Atomize.SupSub(','d,b,a)},rel',1,8,9,'d.type&&','d',11,'bin"){d',386,541,8,')},close',1,8,9,546,'d',11,'bin"){d',386,541,8,')},punct',1,8,9,546,'d',11,'bin"){d',386,541,8,')},open',1,8,'){',541,8,')},inner',1,8,'){',541,8,')},','vcenter',1,8,467,3,470,504,'c,b);',52,3,22,29,'c,b);d.y=e.',416,'-(d.h-d.d)/2;',468,'d;a',512,541,8,')},','overline',1,'d,c,a){var ','g=',3,22,29,'d,c);',52,3,470,504,3,22,'.PrimeStyle(','d),c',492,295,'g','.default_rule_thickness',298,3,'Box.Rule(e.w,b);f.x=-f.w;f.y','=e.h+3*b;',468,3,'Box.SetList([','e,f],d,c);a.nuc.','h+=b;a',512,541,'d,c,a)},','underline',1,611,'g=',3,22,29,'d,c);',52,3,470,504,3,22,623,'d),c',492,295,'g',628,298,3,631,'=-e.d-3*b-b;',468,3,635,636,'d+=b;a',512,541,640,'radical',1,'b,m,g',467,3,22,29,'b,m);var k=',3,22,623,'b);var f=',3,470,'g.nuc,k,m',492,'var l=d',628,';var c=l;if(b=="D"||b=="D\'"){c=d.x_height}var a=l+c/4;',52,3,429,'f.h+f.d+a+l,[0,2,112,3,112],b,1);if(e.d>f.h+f.d+a){a=(a+e.d-f.h-f.d)/2}e.y=f.h+a;var j=',3,'Box.Rule(','f.w,l);j.y=e.y-l/2;j.h+=3*l/2;f.x=-f.w;var i=',3,22,'.UpStyle(',3,22,701,'b));','var h=',3,470,'g.root||null,i,m',492,'if(g.root){h.y=0.55*(f.h+f.d+3*l+a)-f.d;e.x',405,'h.w-(11/18)*e.w,0);j.x=(7/18)*e.w;h.x=-(h.w+j.x)}g.nuc=',3,635,'e,h,j,f],b,m);g',512,541,'b,m,g)},accent',1,'b,q,j',132,3,22,29,'b,q);var m=',3,22,623,'b);var i=',3,470,'j.nuc,m,q);var o=i.w;var p;var k;var d=0;if(j.nuc',11,'TeX"){','k=',3,'TeX[j.nuc.font];if(k[j.nuc.c].krn&&k.skewchar){p=k[j.nuc.c].krn[k.skewchar]}d=k[j.nuc.c].ic;if(d==null){d=0}}if(p==null){p=0}var l=j.accent[2];',52,3,'TeX.fam[j.accent[1]];k=',3,'TeX[e];while(k[l].n&&k[k[l].n].w<=o){l=k[l].n}var n=Math.min(i.h,f.x_height);if(j.nuc',11,735,706,3,46,'.Atom("ord",j.nuc);h.sup=j.sup;h.sub=j.sub;h.delta=0;',541,'b,q,h);n+=(h.nuc.h-i.h);i=j.nuc=h.nuc',87,'j.sup',87,'j.sub}var g=',3,'Box',29,'l,e,b,q);g.y=i.h-n;g.x=-i.w+p+(o-g.w)/2;if(',3,'Browser.msieAccentBug){g.html+=',3,476,'(0.1);g.w+=0.1;g.Mw+=0.1}if(k[l].ic||d){g.x+=(d-(k[l].ic||0))*f.scale}j.nuc=',3,635,'i,g],b,q);if(j.nuc.w!=i.w',96,3,526,'(i.w-j.nuc.w);j.nuc=',3,635,'j.nuc,a],b,q)}j',512,541,'b,q,j)},op',1,'c,n,i',132,3,22,29,'c,n);var h;i.delta=0;var m=(c','.charAt(0)=="','D");if(i.limits==null&&m){i.limits=1}if(i.nuc',11,735,295,3,'TeX[i.nuc.font][','i.nuc.c];if(m&&b.n){i.nuc.c=b.n;b=',3,791,'b.n]}h=i.nuc=',3,470,'i.nuc,c,n',');if(b.ic){i.delta=b.ic*f.scale;if(i.limits||!i.sub||',3,'Browser.msieIntegralBug','){h=i.nuc=',3,635,'h,',3,526,'(i.delta)],c,n)}}h.y=-((h.h+h.d)/2-h.d-f.',416,');if(Math.abs(h.y)<0.0001){h.y=0}}if(!h){h=i.nuc=',3,470,798,').',92,'()}if(i.limits){',52,'h.w;var k=h.w;var d=[h];var j=0;var l=0;if(i.sup){var g=',3,470,'i.sup,',3,22,701,'c),n',492,'g.x=((h.w-g.w)/2+i.delta/2)-k;j=f.big_op_spacing5;e',405,'e,g.w);k+=g.x+g.w;g.y=h.h+g.d+h.y+Math.max(f.big_op_spacing1,f.big_op_spacing3-g.d);d[d',50,'g',87,'i.sup}if(i.sub',96,3,470,'i.sub,',3,22,'.DownStyle(','c),n',492,'a.x=((h.w-a.w)/2-i.delta/2)-k;l=f.big_op_spacing5;e',405,'e,a.w);k+=a.x+a.w;a.y=-h.d-a.h+h.y-Math.max(f.big_op_spacing2,f.big_op_spacing4-a.h);d[d',50,'a',87,'i.sub}if(e>h.w){h.x=(e-h.w)/2;k+=h.x}if(ke;c--){f.mlist[c+1]=f.mlist[c]}f.mlist[e+1]=',3,526,'(h[d.nuc.c])}}}}',541,'a,j,g)},fraction',1,'x,n,c){var A=',3,22,29,'x,n);var l=0;if(c.',161,'!=null){l=c.',161,857,'c.from.match(/over/)){l=A',628,'}}var s=(x',785,'D");var g=(x=="D")?"T":(x=="D\'")?"T\'":',3,22,701,'x);var q=(s)?"T\'":',3,22,840,'x);var f=',3,470,'c.num,g,n',492,52,3,470,'c.den,q,n',492,'var k;var j;var i;var o;var m;var h=(s)?A.delim1:A.delim2;var b=[',3,429,'h,c.left,x)];var y=',3,429,'h,c.right,x);if(f.w0){n+=f;m-=f}}i.',92,'();a.',92,'();i.y=n;a.y=-m;i.x=k.delta;if(i.w+i.x>a.w){i.x-=a.w;k.nuc=',3,635,'j,a,i],e,w)}else{a.x-=(i.w+i.x);k.nuc=',3,635,'j,i,a],e,w)}delete k.sup',87,'k.sub}});',3,22,110,112,'="typeset";',191,'=a};',3,'Add(',3,22,',{upStyle:{D:"S",T:"S","','D\'":"S\'","T\'":"S\'",S:"SS','",SS:"SS","','S\'":"SS\'","SS\'":"SS\'"},','downStyle:{D:"S\'",T:"S\'","',1091,'\'",SS:"SS\'","',1093,'UpStyle',1,'a){',5,'this.upStyle[a]},DownStyle',1,'a){',5,'this.downStyle[a]},PrimeStyle',1,2,'a',1044,'a',1046,5,'a}',5,'a+"\'"},StyleValue',1,'b,',2,'b=="S"||b=="S\'"){',5,'0.7*a}if(b=="SS"||b=="SS\'"){',5,'0.5*a}',5,'a},StyleSize',1,'b,a){if(b=="S"||b=="S\'"){a=Math.max(0,a-2)}else{if(b=="SS"||b=="SS\'"){a=Math.max(0,a-4)}}return ','a},TeX',1,1128,3,'TeXparams[a]},AddStyle',1,8,'){if(c=="S"||c=="S\'"){b',405,'0,b-2)}else{if(c=="SS"||c=="SS\'"){b',405,'0,b-4)}}if(b!=4){a=\'\'+a+""}',5,'a},AddClass',1,'a,b){if(a!=""&&a!="normal"){b=',3,'HTML.Class(a,b)}',5,'b}});',3,'Package(',3,22,',{DTsep:{ord',':{op:1,bin:2,rel:3,inner:1},','op',':{ord:1,op:1',',rel:3,inner:1},bin:{ord:2,op:2,open:2,inner:2},rel:{ord:3,op:3,open:3,inner:3},open:{},close',1154,'punct',1156,',rel:1,open:1,close',':1,punct:1,inner:1','},inner',1156,',bin:2,rel:3,open',1162,'}},SSsep:{ord:{op:1},op',1156,'},bin:{},rel:{},open:{},close:{op:1},punct:{},inner:{op:1}},sepW:["","thinmuskip","medmuskip","thickmuskip"],','GetSeparation',1,'a,d,b){if(a&&a.atom&&d.atom){var c=this.DTsep;if(b',785,'S"){c=this.SSsep}',52,'c[a.type];if(e&&e[d.type]!=null){',5,3,'TeX[this.sepW[e[d.type]]]}}',5,'0},',22,1,248,82,360,'var g=-10000;this.w=0;this.mw=0;this.Mw=0;this.h=g;this.d=g;this.bh=this.h;this.bd=this.d;this.tbuf="";this.tx=0;',73,'="";','this.cbuf','="";this.hbuf="";this.hx=0;var a=null;var f;this.x=0;','this.dx=0;',40,212,';b++){f=a;a=',191,'[b];switch(a.type){case"size":','this.FlushClassed();','this.size=a.size;','a=f;break;case"','style":',1198,'if(',82,1044,82,1046,82,'=a.style+"\'"}else{',82,'=a.style}',1200,'space":if(typeof(a.w)=="object"){if(',82,1044,'1)=="S"){a.w=0.5*a.w[0]/18',857,82,785,'S"){a.w=0.7*a.w[0]/18}else{a.w=a.w[0]/18}}}this.dx+=a.w-0;',1200,'html":',1198,'if(this.hbuf==""){this.hx=this.','x}','this.hbuf+=','a.html;a=f;break;default:if(!a.atom&&a.type!="box"){break}a.nuc.x+=this.dx+this.',1170,'(f,a,',82,');','if(a.nuc.x||a.nuc.y){','a.nuc',26,1192,'this.x=this.x+this.w;',66,'x','+a.nuc.x+a.nuc.','mw','\'+b.html+"";','b.h+=b.y;b.d-=b.y;b.x=0;b.y=0','},PlaceSeparateSkips',1,'b){if(b.y',467,'b.Mw-b.w;var c=b.mw;var a=b.Mw-b.mw;b.html=',3,476,'(c-d)+\'<',1348,'; top:\'+',3,1351,'(-b.y)+";left:"+',3,1351,'(d)+"; width:"+',3,1351,'(a)+\';">\'+',3,476,'(-c)+b.html+',3,476,'(d)+""}if(b.x){b.html=',3,476,'(b.x)+b.html}',1356,'}});',3,'Parse',189,52,'new ',3,'Parser','(d,a,b,c);e.Parse();',5,'e};',3,1393,189,'this.string=d;this.i=0;',191,'=new ',3,188,'(null,a,b,c)};',3,'Package(',3,1393,',{cmd:"\\\\",open:"{",close:"}",letter:/[a-z]/i,number:/[0-9]/,scriptargs:/^((math|text)..|mathcal|[hm]box)$/,mathchar:{"!":[5,0,33],"(":[4,0,40],")":[5,0,41],"*":[2,2,3],"+":[2,0,43],",":[6,1,59],"-":[2,2,0],".":[0,1,58],"/":[0,1,61],":":[3,0,58],";":[6,0,59],"<":[3,1,60],"=":[3,0,61],">":[3,1,62],"?":[5,0,63],"[":[4,0,91],"]":[5,0,93],"|":[0,2,106]},special:{"~":"Tilde","^":"HandleSuperscript",_:"HandleSubscript"," ":"Space","\\01','":"Space","\\','t',1411,'r',1411,'n":"Space","\'":"Prime","%":"HandleComment","&":"HandleEntry","#":"Hash"},mathchardef:{braceld:[0,3,122],bracerd:[0,3,123],bracelu:[0,3,124],braceru:[0,3,125],alpha:[0,1,11],beta:[0,1,12],gamma:[0,1,13],delta:[0,1,14],epsilon:[0,1,15],zeta:[0,1,16],eta:[0,1,17],theta:[0,1,18],iota:[0,1,19],kappa:[0,1,20],lambda:[0,1,21],mu:[0,1,22],nu:[0,1,23],xi:[0,1,24],pi:[0,1,25],rho:[0,1,26],sigma:[0,1,27],tau:[0,1,28],upsilon:[0,1,29],phi:[0,1,30],chi:[0,1,31],psi:[0,1,32],omega:[0,1,33],varepsilon:[0,1,34],vartheta:[0,1,35],varpi:[0,1,36],varrho:[0,1,37],varsigma:[0,1,38],varphi:[0,1,39],Gamma:[7,0,0],Delta:[7,0,1],Theta:[7,0,2],Lambda:[7,0,3],Xi:[7,0,4],Pi:[7,0,5],Sigma:[7,0,6],Upsilon:[7,0,7],Phi:[7,0,8],Psi:[7,0,9],Omega:[7,0,10],aleph:[0,2,64],imath:[0,1,123],jmath:[0,1,124],ell:[0,1,96],wp:[0,1,125],Re:[0,2,60],Im:[0,2,61],partial:[0,1,64],infty:[0,2,49],prime:[0,2,48],emptyset:[0,2,59],nabla:[0,2,114],surd:[1,2,112],top:[0,2,62],bot:[0,2,63],triangle:[0,2,52],forall:[0,2,56],exists:[0,2,57],neg:[0,2,58],lnot:[0,2,58],flat:[0,1,91],natural:[0,1,92],sharp:[0,1,93],clubsuit:[0,2,124],diamondsuit:[0,2,125],heartsuit:[0,2,126],spadesuit:[0,2,127],coprod:[1,3,96],bigvee:[1,3,87],bigwedge:[1,3,86],biguplus:[1,3,85],bigcap:[1,3,84],bigcup:[1,3,83],intop:[1,3,82],prod:[1,3,81],sum:[1,3,80],bigotimes:[1,3,78],bigoplus:[1,3,76],bigodot:[1,3,74],ointop:[1,3,72],bigsqcup:[1,3,70],smallint:[1,2,115],triangleleft:[2,1,47],triangleright:[2,1,46],bigtriangleup:[2,2,52],bigtriangledown:[2,2,53],wedge:[2,2,94],land:[2,2,94],vee:[2,2,95],lor:[2,2,95],cap:[2,2,92],cup:[2,2,91],ddagger:[2,2,122],dagger:[2,2,121],sqcap:[2,2,117],sqcup:[2,2,116],uplus:[2,2,93],amalg:[2,2,113],diamond:[2,2,5],bullet:[2,2,15],wr:[2,2,111],div:[2,2,4],odot:[2,2,12],oslash:[2,2,11],otimes:[2,2,10],ominus:[2,2,9],oplus:[2,2,8],mp:[2,2,7],pm:[2,2,6],circ:[2,2,14],bigcirc:[2,2,13],setminus:[2,2,110],cdot:[2,2,1],ast:[2,2,3],times:[2,2,2],star:[2,1,63],propto:[3,2,47],sqsubseteq:[3,2,118],sqsupseteq:[3,2,119],parallel:[3,2,107],mid:[3,2,106],dashv:[3,2,97],vdash:[3,2,96],leq:[3,2,20],le:[3,2,20],geq:[3,2,21],ge:[3,2,21],lt:[3,1,60],gt:[3,1,62],succ:[3,2,31],prec:[3,2,30],approx:[3,2,25],succeq:[3,2,23],preceq:[3,2,22],supset:[3,2,27],subset:[3,2,26],supseteq:[3,2,19],subseteq:[3,2,18],"in":[3,2,50],ni:[3,2,51],owns:[3,2,51],gg:[3,2,29],ll:[3,2,28],not:[3,2,54],sim:[3,2,24],simeq:[3,2,39],perp:[3,2,63],equiv:[3,2,17],asymp:[3,2,16],smile:[3,1,94],frown:[3,1,95],Leftrightarrow:[3,2,44],Leftarrow:[3,2,40],Rightarrow:[3,2,41],leftrightarrow:[3,2,36],leftarrow:[3,2,32],gets:[3,2,32],rightarrow:[3,2,33],to:[3,2,33],mapstochar:[3,2,55],leftharpoonup:[3,1,40],leftharpoondown:[3,1,41],rightharpoonup:[3,1,42],rightharpoondown:[3,1,43],nearrow:[3,2,37],searrow:[3,2,38],nwarrow:[3,2,45],swarrow:[3,2,46],minuschar:[3,2,0],hbarchar:[0,0,22],lhook:[3,1,44],rhook:[3,1,45],ldotp:[6,1,58],cdotp:[6,2,1],colon:[6,0,58],"#":[7,0,35],"$":[7,0,36],"%":[7,0,37],"&":[7,0,38]},delimiter:{"(":[0,0,40,3,0],")":[0,0,41,3,1],"[":[0,0,91,3,2],"]":[0,0,93,3,3],"<":[0,2,104,3,10],">":[0',',2,105,3,11],"\\\\','lt":[0',',2,104,3,10],"\\\\','gt":[0,2,105,3,11],"/":[0,0,47,3,14],"|":[0,2,106,3,12],".":[0,0,0,0,0],"\\\\":[','0,2,110,3,15],"\\\\','lmoustache":[4,3,122,3,64],"\\\\rmoustache":[5,3,123,3,65],"\\\\lgroup":[4,6,40,3,58],"\\\\rgroup":[5,6,41,3,59],"\\\\arrowvert','":[0,2,106,3,','60],"\\\\Arrowvert":[0,2,107,3,61],"\\\\bracevert',1423,'62],"\\\\Vert":[0,2,107,3,13],"\\\\|":[0,2,107,3,13],"\\\\vert',1423,'12],"\\\\uparrow":[3,2,34,3,120],"\\\\downarrow":[3,2,35,3,121],"\\\\updownarrow":[3,2,108,3,63],"\\\\Uparrow":[3,2,42,3,126],"\\\\Downarrow":[3,2,43,3,127],"\\\\Updownarrow":[3,2,109,3,119],"\\\\backslash":[',1421,'rangle":[5',1417,'langle":[4',1419,'rbrace":[5,2,103,3,9],"\\\\lbrace":[4,2,102,3,8],"\\\\}":[5,2,103,3,9],"\\\\{":[4,2,102,3,8],"\\\\rceil":[5,2,101,3,7],"\\\\lceil":[4,2,100,3,6],"\\\\rfloor":[5,2,99,3,5],"\\\\lfloor":[4,2,98,3,4],"\\\\lbrack":[0,0,91,3,2],"\\\\rbrack":[0,0,93,3,3]},macros:{displaystyle',':["HandleStyle","','D"],textstyle',1435,'T"],scriptstyle',1435,'S"],scriptscriptstyle',1435,'SS"],rm',':["HandleFont",','0],mit',1443,'1],oldstyle',1443,'1],cal',1443,'2],it',1443,'4],bf',1443,'6],font',':["Extension","','font"],left:"HandleLeft",right:"HandleRight",arcsin',':["NamedOp",0],','arccos',1457,'arctan',1457,'arg',1457,'cos',1457,'cosh',1457,'cot',1457,'coth',1457,'csc',1457,'deg',1457,'det',':"NamedOp",','dim',1457,'exp',1457,'gcd',1477,'hom',1457,'inf',1477,'ker',1457,'lg',1457,'lim',1477,'liminf',':["NamedOp",null,\'lim','inf\'],limsup',1495,'sup\'],ln',1457,'log',1457,'max',1477,'min',1477,'Pr',1477,'sec',1457,'sin',1457,'sinh',1457,'sup',1477,'tan',1457,'tanh',1457,588,':["HandleAtom","',588,'"],',609,1521,609,'"],',641,1521,641,'"],over',':"HandleOver",','overwithdelims',1532,'atop',1532,'atopwithdelims',1532,'above',1532,'abovewithdelims',1532,'brace',':["HandleOver','","\\\\{","\\\\}"],brack',1544,'","[","]"],choose',1544,'","(",")"],overbrace',':["Extension","leaders"],','underbrace',1550,'overrightarrow',1550,'underrightarrow',1550,'overleftarrow',1550,'underleftarrow',1550,'overleftrightarrow',1550,'underleftrightarrow',1550,'overset',':["Extension","underset-overset"],','underset',1566,'llap',':"HandleLap",','rlap',1570,'ulap',1570,'dlap',1570,'raise:"RaiseLower",lower:"RaiseLower",moveleft',':"MoveLeftRight",','moveright',1578,'frac:"Frac",root:"Root",sqrt:"Sqrt",hbar',':["Macro","\\\\','hbarchar\\\\kern-.5em h"],ne',1582,'not="],neq',1582,'not="],notin',1582,'mathrel{\\\\','rlap{\\\\kern2mu/}}\\\\in"],cong',1582,1589,'lower2mu{\\\\mathrel{{\\\\rlap{=}\\\\raise6mu\\\\sim}}}}"],bmod',1582,'mathbin{\\\\rm mod}"],pmod',1582,'kern 18mu ({\\\\rm mod}\\\\,\\\\,#1)",1],"int":["Macro","\\\\intop\\\\nolimits"],oint',1582,'ointop\\\\nolimits"],doteq',1582,'buildrel\\\\textstyle.\\\\over="],ldots',1582,'mathinner{\\\\','ldotp\\\\ldotp\\\\ldotp}"],cdots',1582,1603,'cdotp\\\\cdotp\\\\cdotp}"],vdots',1582,1603,'rlap{\\\\raise8pt{.\\\\rule 0pt 6pt 0pt}}\\\\rlap{\\\\raise4pt{.}}.}"],ddots',1582,1603,'kern1mu\\\\raise7pt{\\\\rule 0pt 7pt 0pt .}\\\\kern2mu\\\\raise4pt{.}\\\\kern2mu\\\\raise1pt{.}\\\\kern1mu}"],joinrel',1582,1589,'kern-4mu}"],relbar',1582,1589,'smash-}"],Relbar',1582,'mathrel="],bowtie',1582,'mathrel\\\\triangleright\\\\joinrel\\\\mathrel\\\\triangleleft"],models',1582,'mathrel|\\\\joinrel="],mapsto',1582,1589,'mapstochar\\\\','rightarrow}"],rightleftharpoons',1582,588,'{\\\\',1589,'rlap{\\\\raise3mu{\\\\rightharpoonup}}}\\\\leftharpoondown}"],hookrightarrow',1582,'lhook','\\\\joinrel\\\\rightarrow','"],hookleftarrow',1582,'leftarrow\\\\joinrel\\\\','rhook"],Longrightarrow',1582,'Relbar\\\\joinrel\\\\','Rightarrow"],','longrightarrow',1582,'relbar',1637,'"],longleftarrow',1582,1640,'relbar"],Longleftarrow',1582,'Leftarrow\\\\joinrel\\\\','Relbar"],longmapsto',1582,1589,1628,'minuschar',1637,'}"],longleftrightarrow',1582,'leftarrow',1637,'"],','Longleftrightarrow',1582,1654,1644,'iff:["Macro","\\\\;\\\\',1666,'\\\\;"],mathcal',':["Macro","{\\\\','cal #1}",1],mathrm',1673,'rm #1}",1],mathbf',1673,'bf #1}",1],','mathbb',1673,1678,'mathit',1673,'it #1}",1],textrm',1582,'mathord{\\\\hbox{#1}}",1],textit',1582,'mathord{\\\\class{','textit','}{\\\\hbox{#1}}}",1],','textbf',1582,1688,1691,1690,'pmb',1582,'rlap{#1}\\\\kern1px{#1}",1],TeX:["Macro","T\\\\kern-.1667em\\\\lower.5ex{E}\\\\kern-.125em X"],limits:["Limits",1],nolimits:["Limits",0],",":["Spacer",1/6],":":["Spacer",1/6],">":["Spacer",2/9],";":["Spacer",5/18],"!":["Spacer",-1/6],enspace:["Spacer",1/2],quad:["Spacer",1],qquad:["Spacer",2],thinspace:["Spacer",1/6],negthinspace:["Spacer",-1/6],hskip:"Hskip",kern:"Hskip",rule:["Rule","colored"],space:["Rule","blank"],big',':["MakeBig","','ord",0.85],Big',1699,'ord",1.15],bigg',1699,'ord",1.45],Bigg',1699,'ord",1.75],bigl',1699,'open",0.85],Bigl',1699,'open",1.','15],biggl',1699,1710,'45],Biggl',1699,1710,'75],bigr',1699,'close",0.85],Bigr',1699,'close",1.','15],biggr',1699,1721,'45],Biggr',1699,1721,'75],bigm',1699,'rel",0.85],Bigm',1699,'rel",1.15],biggm',1699,'rel",1.45],Biggm',1699,'rel",1.75],mathord',1521,'ord"],mathop',1521,'op"],mathopen',1521,'open"],mathclose',1521,'close"],mathbin',1521,'bin"],mathrel',1521,'rel"],mathpunct',1521,'punct"],mathinner',1521,'inner"],','mathchoice',1455,1753,'"],buildrel:"BuildRel",hbox:"HBox",text:"HBox",mbox:"HBox",fbox',1455,'fbox"],strut:"Strut",mathstrut',1582,'vphantom{(}"],phantom:["Phantom",1,1],vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["MathAccent",[7,0,19]],grave'], - [':["MathAccent",[','7,0,','18]],ddot',0,1,'127]],tilde',0,1,'126]],bar',0,1,'22]],breve',0,1,'21]],check',0,1,'20]],hat',0,1,'94]],vec',0,'0,1,126]],dot',0,1,'95]],widetilde',0,'0,3,101]],widehat',0,'0,3,98]],_:["Replace","ord","_","normal",-0.4,0.1]," ":["Replace","','ord"," ","normal','"],angle:["Macro","\\\\kern2.5mu\\\\raise1.54pt{\\\\rlap{\\\\scriptstyle \\\\char{cmsy10}{54}}\\\\kern1pt\\\\rule{.45em}{-1.2pt}{1.54pt}\\\\kern2.5mu}"],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix','","(",")","c"],','cases:["Matrix","\\\\{",".",["l","l"],null,2],eqalign',':["Matrix",null,null,["','r","l"],[5/18],3,"D"],displaylines',34,'c"],null,3,"D"],cr:"','HandleRow','","\\\\":"',38,'",newline:"',38,'",noalign:"','HandleNoAlign','",eqalignno',34,'r","l","r"],[5/8,3],3,"D"],','leqalignno',34,47,'begin:"Begin",end:"End",tiny',':["HandleSize",','0],Tiny',52,'1],scriptsize',52,'2],small',52,'3],normalsize',52,'4],large',52,'5],Large',52,'6],LARGE',52,'7],huge',52,'8],Huge',52,'9],dots:["Macro","\\\\ldots"],newcommand',':["Extension","','newcommand"],','newenvironment',72,73,'def',72,73,'color',72,'HTML"],','href',72,'HTML"],"class":["Extension","',82,'style',72,82,'cssId',72,82,'unicode',72,82,'bbox',72,'bbox"],require:"Require","char":"Char"},','environments',':{array:"Array",matrix',':["Array','",null,null,"c"],pmatrix',101,32,'bmatrix',101,'","[","]","c"],Bmatrix',101,'","\\\\{","\\\\}","c"],vmatrix',101,'","\\\\vert","\\\\vert","c"],Vmatrix',101,'","\\\\Vert","\\\\Vert","c"],cases',101,'","\\\\{",".","ll",null,2],eqnarray:["','Array",null,null,"rcl",[5/18,5/18],3,"D','"],"eqnarray*":["',116,'"],equation:"Equation","equation*":"Equation",align',72,'AMSmath','"],"align','*":["Extension","AMSmath"],','aligned',72,121,'"],','multline',72,121,'"],"',128,123,'split',72,121,'"],gather',72,121,'"],"gather',123,'gathered',72,121,'"]},AddSpecial',':function(','a){for(var b in a){','jsMath.Parser.prototype','.special[',148,'[b]]=a[b]}},Error',146,'a){this.i=','this.string','.length;','if(a','.error){this.error=a','.error}','else{if(!','this',157,'}}},nextIsSpace',':function(){','return ','this.string.charAt(this.i',').match(/[ \\n\\r\\t]/)},trimSpaces',146,'a){if(typeof(a)!="string"){',164,'a}',164,'a.replace(/^\\s+|\\s+$/g',',"")},','Process',146,'a){var ','c=','this.mlist.data',';a','=jsMath.Parse(','a,c.font,c.size,c.style);if(a','.error){this.Error(','a);','return null','}if(a.mlist.Length()==','0){',184,185,'1','){var b=','a.mlist.','Last();if(','b.atom&&b.type=="ord"&&b.nuc&&!b.sub&&!b.sup&&(b.nuc.type=="text"||b.nuc.type=="TeX")){',164,'b.nuc}}return{type:"mlist",mlist:a.mlist}},GetCommand',':function(){var ','a=/^([a-z]+|.) ?/i;var b=a.exec(','this.string.slice(this.i','));if(b){this.i+=b[1].length;',164,'b[1]}','this.i++;','return" "},GetArgument',146,'b,d){while','(this.nextIsSpace()){this.i','++}','if(this.','i>=',154,'.length){','if(!d){','this.Error("','Missing',' argument for "+b)}',184,'}if(',165,')==this.close){',212,213,'Extra close brace','")}',184,'}if(',165,')==this.cmd){',202,164,'this.cmd+','this.GetCommand','()}if(',165,')!=this.open){',164,165,'++)}var a=++this.i;var e=1;var f="";','while(this.i0){e--;this.i+=2}}}',247,'if(',198,436,'d.length)==d){f=',165,'+d','.length);','if(f.match(/[^a-z]/i)||!d.match(/[a-z]/i)){var a=',154,'.slice(g,this.i-1);this.i+=d',155,164,'a}}}this.i++}}}}',213,406,408,'+d+" for "+b);',184,'},','ProcessUpto',146,'b,c',264,'this.GetUpto','(b,c);',267,268,269,'GetEnd',146,'c){var a="";var b="";while(b!=c){a+=',466,'("begin{"+c+"}","end");',267,268,'b=','this.GetArgument(this.cmd','+"end");',267,324,164,'a},Space',':function(){},','Prime',146,'d',190,'this.mlist.',192,'b==null||(!b.atom&&b','.type!="box"&&','b','.type!="frac")){','b=','this.mlist.Add(jsMath.mItem.','Atom("ord",{type:null}))}','if(b.sup){',213,'Prime causes double exponent',': use braces to clarify");return','}var a','="";while(d=="\'"){a+=this.cmd+"prime";d',381,'d=="\'"){this.i++}}b.sup=this.',174,'(a);b.sup.isPrime=1},RaiseLower',146,176,'b','=this.GetDimen(this.cmd+','a,1);',267,'}var c','=this.ProcessScriptArg','(',230,'a);',267,'}if(a=="lower"){b=-b}','this.mlist.Add(new jsMath.mItem("','raise",{nuc:c,raise:b}))},MoveLeftRight',146,'b){var ','a',512,'b,1);',267,'}var c',516,'(',230,'b);',267,'}if(b=="moveleft"){a=-a}',497,'Space(a','));',497,'Atom("ord",c));',497,'Space(-a))},Require',146,176,'b=',479,409,267,'}b=','jsMath.Extension','.URL(b);if(','jsMath.Setup.','loaded[b]){return}','this.Extension(null,[','b])},Extension',146,'a,b){','jsMath.Translate','.restart=1;if(a','!=null){','delete ',148,'[b[1]||"macros"][a]}',551,'.Require(b[0],',559,'.asynchronous',');throw"restart"},Frac',146,525,'a','=this.ProcessArg(this.cmd+','b);',267,'}var c',573,'b);',267,'}',497,'Fraction("over",a,c))},Sqrt',146,525,'d=',291,230,'b);',267,503,573,'b);',267,'}var c=jsMath.mItem.Atom("','radical",a);','if(d!=""){c.root=this.',174,'(d);',267,'}}',490,'Add(c)},','Root',146,525,'d=this.',462,'(',230,'b,"of");',267,503,573,'b);',267,594,595,'c.root=d;',490,602,'BuildRel',146,176,'b=this.',462,'(',230,'a,"over");',267,'}var d',573,'a);',267,594,'op",d);c.limits=1;c.sup=b;',490,602,'MakeBig',146,337,'c=d[0];var b=d[1]*jsMath.p_height;var e','=this.GetDelimiter(this.cmd+','a);',267,'}',497,'Atom(c,','jsMath.Box.Delimiter(','b,e,"T")))},Char',146,'b',264,479,'+b);',267,'}var c=',479,'+b);',267,'}if(!',365,'[a]){',365,'[a]=[];',555,'jsMath.Font.URL(a',')])}else{',497,'Typeset(','jsMath.Box.TeX(c-0,a,',178,'.style,',178,'.size)))}},Matrix',146,'b,h){var e=',178,';var a=',479,'+b);',267,'}var g=','new jsMath.','Parser(a','+this.cmd+"\\\\",null,','e.size,h[5]||"T");g.matrix=b;g.row=[];g.table=[];g.rspacing=[];g.Parse();if(g',182,'g);return}g.',38,'(',528,'var d','=jsMath.Box.','Layout(e.size,g.table,h[2]||null,h[3]||null,g.rspacing,h[4]||null);if(h[0]&&h[1]){',417,648,'d.h+d','.d-jsMath.hd/4,this.delimiter[','h[0]],"T");var c=',648,'d.h+d',698,'h[1]],"T");d',693,'SetList([','f,d,c],e.style,e.size)}',497,'Atom((h','[0]?"inner":"ord"),','d))},HandleEntry',146,'b){if(!this.matrix){this.Error(b','+" can only appear in a matrix or array");return}if(',178,'.openI!=null',264,490,'Get(',178,'.openI);if','(a.left){',213,214,408,'+"right','")}else{',213,257,'")}}if(',178,'.overI',561,490,'Over()}var d=',178,';',490,'Atomize(','d.style,d.size);','var c=',490,669,739,'c.entry=d.entry;delete d.entry;if(!c.entry){c.entry={}}this.row[','this.row.length',']=c;this.mlist=',683,'mList(null,null,d.size,d.style)},',38,146,'a,c){var b;if(!this.matrix){','this.Error(this.cmd+a',713,'a=="\\\\"){b=',291,230,'a);',267,'}if(b){b=',348,'b,',230,'a,0,1)}}this.HandleEntry(a);if(!c||',745,'>1||this.row[0].format!="null"){this.table[this.table.length]=this.row}if(b){','this.rspacing[this.table.length',']=b}this.row=[]},',44,146,'b',264,479,'+b);',267,656,'a.replace(/^.*(vskip|vspace)([^a-z])/i,"$2");if(c.length==a',211,'return}var ','e=',348,'c,',230,'RegExp.$1,0,1);',267,'}',766,']=(',766,']||0)+e},Array',146,'b,c){var ','e=c[2];var i=c[3];if(!e){e=',479,'+"begin{"+b+"}");',267,'}}e=e.replace(/[^clr]/g,"");e=e.split("");var g=',178,678,'c[5]||"T";var k=this.GetEnd(b);',267,'}',417,683,'Parser(k',685,'g.size,a);f.matrix=b;f.row=[];f.table=[];f.rspacing=[];f.Parse();if(f',182,'f);return}f.',38,'(',528,'var h',693,'Layout(g.size,f.table,e,i,f.rspacing,c[4],c[6],c[7]);if(c[0]&&c[1]){var d=',648,'h.h+h',698,'c[0]],"T");var j=',648,'h.h+h',698,'c[1]],"T");h',693,705,'d,h,j],g.style,g.size)}',497,'Atom((c',709,'h))},Begin',146,176,'b=',479,409,267,'}if(b.match(/[^a-z*]/i)){this.Error(\'Invalid environment name "\'+b+\'"\');return}if(!this.',99,'[b]){this.Error(\'Unknown environment "\'+b+\'"\');return',656,'this.',99,'[b];if(typeof(','c',')=="string"){','c=[c]}this[c[0]](b,c.slice(1))},End',146,176,'b=',479,409,267,'}',752,'+"{"+b+"} without matching',408,'+"begin")},Equation',146,'b',264,'this.GetEnd(b);',267,'}',154,'=a+',198,');this.i=0},Spacer',146,'b,a){',497,538,'-0))},Hskip',146,525,'a',512,'b);',267,'}',497,538,'))},HBox',146,176,'c=',479,409,267,'}var b',693,'InternalMath(c,',178,'.size);',497,669,'b))},Rule',146,'b,f){var a',512,528,267,'}var e',512,528,267,'}var g',512,528,267,'}e+=g;var c;if(e!=0){e=Math.max(1.05/jsMath.em,e)}if(e==0||a==0||f=="blank"){c=','jsMath.HTML.','Blank(a,e)}else{c=',910,'Rule(a,e)}if(g){c=\'\'+c','+""}',497,669,683,'Box("html",c,a,e-g,g)))},Strut',196,'a=',178,'.size;var b',693,'Text("","normal","T",a).Styled();b.bh=b.bd=0;b.h=0.8;b.d=0.3;b.w=b.Mw=0;',497,669,'b))},Phantom',146,791,'a',573,'b);',267,'}',522,'phantom",{phantom:a,v:c[0],h:c[1]}))},Smash',146,791,'a',573,'b);',267,'}',522,'smash",{smash:a}))},MathAccent',146,'b,',176,'e',573,'b);',267,'}var d','=jsMath.mItem.','Atom("accent",e);d.accent=a[0];',490,'Add(d)},NamedOp',146,'c,f){var b=(c.match(/[^acegm-su-z]/))?1:0;var g=(c.match(/[gjpqy]/))?0.2:0;if(f[1]){c=f[1]}var e',956,'TextAtom("','op",c,',365,'.fam[0],b,g);if(f[0]!=null){e.limits=f[0]}',490,'Add(e)},Limits',146,'a,c',190,490,'Last();if(!b||b.type!="op"){',752,'+" is allowed only on operators");return}b.limits=c[0]},Macro',146,'b,d){var e=d[0];if(d[1]){var a=[];for(var c=0;cb',211,213,'Illegal ','macro parameter ','reference");',184,'}e=this.AddArgs(',986,'f),b[g-1]);f=""}}else{f+=g}}}',164,986,'f)},AddArgs',146,'b,a){if(','a.match(/^[a-z]/i)&&b.match(/(^|[^\\\\])(\\\\\\\\)*\\\\[a-z]+$/i)){b+=" "}',164,'b+a},Replace',146,558,497,'TextAtom(','b[0],b[1],b[2','],b[3]))},Hash',146,'a){',213,'You can\'t use \'',1007,'character #\' in math mode")},Tilde',146,'a){',497,963,30,'"))},HandleLap',146,176,624,261,'();',267,'}b=',522,'lap",{nuc:b,lap:a}))},HandleAtom',146,791,'a',573,'b);',267,'}',497,'Atom(c[0],a))},HandleMathCode',146,'a,b','){this.HandleTeXchar(',1025,'])},HandleTeXchar',146,'b,a,c){if(b==7&&',178,'.font',561,'a=',178,'.font}a=',365,'.fam[a];if(!',365,'[a]){',365,'[a]=[];',555,666,')])}else{',497,'TeXAtom(',365,'.atom[b],c,a))}},','HandleVariable',146,'a',1059,'7,1,','a.charCodeAt(0))},','HandleNumber',146,'a',1059,1,1088,'HandleOther',146,'a){',497,963,'ord",a,"normal"))},HandleComment',196,'a;',238,'a=',165,241,'a=="\\r"||a=="\\n"){return}}},HandleStyle',146,558,178,'.style=b[0];',522,'style",{style:b[0]}))},HandleSize',146,558,178,'.size=b[0];',522,'size",{size:b[0]}))},HandleFont',146,868,178,'.font=a[0]},HandleCS',196,'b=',231,'();',267,'}',208,'macros[b]){var a=this','.macros',842,'a',844,'a=[a]}this[a[0]](b,a.slice(1','));return}',208,'mathchardef','[','b]){this.HandleMathCode(b,this.',1139,'[b]);return}if(',326,230,1141,'delimiter[',230,'b].slice(0,3',1137,213,'Unknown control sequence \'"+',230,'b+"\'")},HandleOpen',163,490,'Open()},HandleClose',163,'if(',178,'.openI==null){',213,222,'");',778,'a=',490,'Get(',178,720,'(!a||a.left==null){',490,'Close()}else{',213,222,' or missing',408,725,'");return}},HandleLeft',146,176,'b',642,'a);',267,'}',490,'Open(b)},HandleRight',146,525,'c',642,'b);',267,503,'=',490,'Get(',178,720,'(a&&a.left',561,490,'Close(c)}else{',213,'Extra open brace or missing',408,'+"left")}},HandleOver',146,558,'if(',178,731,561,213,'Ambiguous use of',408,409,'return}',178,731,'=',490,'Length();',178,'.overF={name:a};if(b.length>0){',178,'.overF.','left=',326,'b[0]];',178,1228,'right=',326,'b[1]]}',245,'a.match(/withdelims$/)){',178,1228,'left',642,'a);',267,'}',178,1228,'right',642,'a);',267,'}}else{',178,1228,'left=null;',178,1228,1234,'null}}if(a.match(/^above/)){',178,1228,'thickness',512,'a,1);',267,1252,178,1228,'thickness=null}},HandleSuperscript',196,'a=',490,192,178,731,'==',490,'Length()){a=null}if(a==null||(!a.atom&&a',493,'a',495,'a=',497,498,'if(a.sup){if(a.sup.isPrime){a=',497,498,'else{',213,'Double exponent',502,'}}a.sup',516,'("superscript");',267,'}},HandleSubscript',196,'a=',490,192,178,731,'==',490,'Length()){a=null}if(a==null||(!a.atom&&a',493,'a',495,'a=',497,498,'if(a.sub){',213,'Double subscripts',502,'}a.sub',516,'("subscript");',267,'}},Parse',196,'b;',238,'b=',165,241,'this.mathchar[',1141,'mathchar[b])}',245,'this',149,'b]){this[this',149,'b]](b)}else{',208,'letter','.test(b)){this.',1083,'(b)}else{',208,'number',1338,1089,1340,'this.',1095,'(b)}}}}}if(',178,'.openI!=null',264,490,'Get(',178,720,'(a.left){',213,214,408,725,726,213,257,'")}}if(',178,731,561,490,'Over()}},Atomize',196,'a=',490,'init;if(!this.error){',490,738,'a.style,a.size)}},Typeset',196,'f=',490,'init;var ',606,'typeset=',490,669,'f.style,f',892,267,'\'\'+this.error',916,'if(d.format=="null"){return""}d.Styled().Remeasured();var e=0;var c=0;if(d.bh>d.h&&','d.bh>jsMath.h+0.001){','e=1}if(d.bd>d.d&&d.bd>jsMath.d+0.001){e=1}if(d.h>jsMath.h||d.d>jsMath.d){c=1}var b=d.html;if(e){if(','jsMath.Browser.','allowAbsolute){var g=0;if(',1391,'g=jsMath.h-d.bh}b=',910,'Absolute(b,d.w,jsMath.h,0,g)}',245,1393,'valignBug){','b=\'\'+b',916,159,1393,'operaLineHeightBug',264,910,'Em(Math.max(0,d.bd-jsMath.hd)/3);',1402,')+"; position:relative; top:"+a+"; vertical-align:"+a+\'">\'+b+""}}}c=1}if(c){b+=',910,'Blank(0,d.h+0.05,d.d+0.05)}return\'\'+b+""}});',148,'.AddSpecial({cmd:"HandleCS",open:"HandleOpen",close:"HandleClose"});','jsMath.Add(jsMath,{','Macro',146,176,'c=',148,1132,';c[a]=["Macro"];for(var b=1;b=0){','c=c.replace(/&','lt;/g,"<");',1570,'gt;/g,">");',1570,'quot;/g,\'"\');',1570,'amp;/g,"&")}',164,'c},',1568,146,1558,'b.nodeValue',561,'if(b.nodeName!=="#comment"){',164,1583,'}',164,1583,'.replace(/^\\[CDATA\\[((.|\\n)*)\\]\\]$/,"$1")}if(',1559,'===0){return" "}var c="";for(var a=0;a<',1559,';a++){c+=this.',1568,'(',1561,'a])}',164,'c},ResetHidden',146,'a){a.innerHTML=\'\'+',1393,'operaHiddenFix;a','.className','="";','jsMath.hidden','=a.firstChild;if(!jsMath.BBoxFor("x").w){','jsMath.hidden=jsMath.hiddenTop','}jsMath.ReInit()},ConvertMath',146,'c,b,',176,606,1556,'(b);this.ResetHidden(b);if(d.match(/^\\s*\\\\nocache([^a-zA-Z])/)){a=true;d=d.replace(/\\s*\\\\nocache/,"")}',606,'Parse(c,d,a);b',1606,'="typeset";b.innerHTML=d},',1518,146,'c){','this.restart','=0;if(!c',1606,'.match(/(^| )math( |$)/)){',778,'a=(c',1606,'.toLowerCase','().match(/(^| )nocache( |$)/)!=null);try{var d=(c.tagName',1632,'()=="div"?"D":"T");this.ConvertMath(d,c,a);c.onclick=jsMath.Click.CheckClick;c.ondblclick=jsMath.Click.CheckDblClick}catch(e){if(c.alt',190,'c.alt;b=b.replace(/&/g,"&").replace(//g,">");c.innerHTML=b;c',1606,'="math";if(a){c',1606,'+=" nocache"}}',1610,'}},','ProcessElements',146,'b){',1496,'blocking=','1;if(b>=','this.element','.length||this.cancel){this.','ProcessComplete','();',208,'cancel){','jsMath.Message.','Set("',174,' Math: Canceled");',1656,'Clear()}',1496,1648,'0;',1496,174,'()}else{var a=',1496,'SaveQueue();','this.ProcessElement(this.element[','b]);if(',1625,'){',1496,1497,'this,"',1644,'",b);',1496,'RestoreQueue(a);',1496,1648,'0;setTimeout("',1496,174,'()",',1393,'delay)}else{',1496,1680,'b++;var c=Math.floor(100*b/',1650,449,'jsMath.Message.Set("Processing Math',': "+c+"%");setTimeout("',559,'.',1644,'("+b+")",',1393,'delay)}}},',1500,146,'a','){if(!jsMath.initialized){jsMath.Init()}this.element','=this.GetMathElements(','a);',1496,1648,'1;this.cancel=0;this',568,'=1;',1694,': 0%",1);setTimeout("',559,'.',1644,'(0)",',1393,'delay)},',1512,146,1017,'a==null',1705,1706,'b);a=0}this',568,'=0;while(a<',1650,211,1670,'a]);if(',1625,'){','jsMath.Synchronize','("',559,'.',1512,'(null,"+a+")");',1496,174,'();return}a++}this.',1652,'(1)},ProcessOne',146,'a',1705,'=[a];this.',1512,'(null,0)},GetMathElements',146,'d){var b=[];var a;',212,'d=','jsMath.document','}if(typeof(d',844,'d=',1757,'.getElementById(d)}if(!','d.getElementsByTagName','){',184,656,1763,'("div','");for(a=0;a=0;a--){b[a].removeAttribute("name")}}',1610,';',1650,'=[];',1625,'=null;if(!c){',1694,': Done");',1656,'Clear()}',1656,'UnBlank();if(',1393,'safariImgBug&&(',1508,'font=="symbol"||',1508,'font=="image")){',208,'timeout){clearTimeout(this.timeout)}this.timeout=setTimeout("','jsMath.window.resizeBy','(-1,0); ',1825,'(1,0); ',559,'.timeout = null",2000)}},Cancel',163,559,'.cancel=1;if(',1496,'cancelTimer){',1496,'cancelLoad()}}};',1417,'ConvertTeX',146,'a){',1496,'Push(jsMath.tex2math,"',1839,1501,'ConvertTeX2',146,'a){',1496,1843,1846,1501,'ConvertLaTeX',146,'a){',1496,1843,1853,1501,'ConvertCustom',146,'a){',1496,1843,1860,1501,'CustomSearch',146,'c,b,a,d){',1496,1497,'null,function(){jsMath.tex2math.',1867,'(c,b,a,d)})},tex2math:{',1839,485,1846,485,1853,485,1860,485,1867,':function(){}}});',1736,'=',1496,'Synchronize;try{if(','window.parent','!=window&&window.jsMathAutoload){',1889,'.jsMath=jsMath;',1757,'=',1889,'.document;jsMath.window=',1889,'}}catch(err){}',1533,'Register();jsMath.Loaded();jsMath.Controls.GetCookie();',553,'Source();',1533,'Init();',1496,'Init();',553,'Fonts();if(',1757,'.body){',553,'Body()}',553,'User("onload")}};'] - -]); -//end = new Date().getTime(); -//alert(end-start); diff --git a/sagenb/data/jsmath/local/macros.js b/sagenb/data/jsmath/local/macros.js deleted file mode 100644 index 974fba98b..000000000 --- a/sagenb/data/jsmath/local/macros.js +++ /dev/null @@ -1,17 +0,0 @@ -/* - * local/macros.js - * - * Use jsMath.Macro() to declare your own local macro definitions here, - * and add "local/macros.js" to the loadFiles array in easy/load.js so - * that they will be loaded automatically when jsMath is used. - * - * See http://www.math.union.edu/locate/jsMath/authors/macros.html - * for details on defining macros for jsMath. - */ - -// -// Examples: -// -// jsMath.Macro('R','{\\bf R}'); -// jsMath.Macro('red','\\color{red}{#1}',1); -// diff --git a/sagenb/data/jsmath/plugins/CHMmode.js b/sagenb/data/jsmath/plugins/CHMmode.js deleted file mode 100644 index 1bab915f0..000000000 --- a/sagenb/data/jsmath/plugins/CHMmode.js +++ /dev/null @@ -1,85 +0,0 @@ -/* - * CHMmode.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes jsMath work with MicroSoft's HTML Help system - * from within .chm files (compiled help archives). - * - * This file should be loaded BEFORE jsMath.js. - * - * --------------------------------------------------------------------- - * - * Copyright 2006-2007 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -if (!window.jsMath) {window.jsMath = {}} -if (!jsMath.Controls) {jsMath.Controls = {}} -if (!jsMath.Controls.cookie) {jsMath.Controls.cookie = {}} - -jsMath.isCHMmode = 1; - -jsMath.noChangeGlobal = 1; -jsMath.noShowGlobal = 1; -jsMath.noImgFonts = 1; -jsMath.Controls.cookie.global = 'always'; -jsMath.Controls.cookie.hiddenGlobal = 1; - -if (window.location.protocol == "mk:") { - - /* - * Work around bug in hh.exe that causes it to run at 100% CPU - * and not exit if the page is reloaded after an IFRAME is used - * to load the controls file, so fake it using XMLHttpRequest. - * Load the data into a DIV instead of an IFRAME, and make sure - * that the styles are correct for it. Change the GetPanel() - * call to hide the other panel and open the correct one. - */ - - jsMath.Controls.Init = function () { - this.controlPanels = jsMath.Setup.DIV("controlPanels"); - if (!jsMath.Browser.msieButtonBug) {this.Button()} - else {setTimeout("jsMath.Controls.Button()",500)} - } - - jsMath.Controls.Panel = function () { - jsMath.Translate.Cancel(); - jsMath.Setup.AddStyleSheet({ - '#jsMath_options': jsMath.styles['#jsMath_panel'], - '#jsMath_options .disabled': jsMath.styles['#jsMath_panel .disabled'], - '#jsMath_options .infoLink': jsMath.styles['#jsMath_panel .infoLink'] - }); - if (this.loaded) {this.panel = jsMath.Element("panel"); this.Main(); return} - var html = jsMath.Script.xmlRequest(jsMath.root+"jsMath-controls.html"); - var body = (html.match(/([\s\S]*)<\/body>/))[1]; - this.controlPanels.innerHTML = body; - var script = (body.match(/ - - - -
- -

jsMath Image Mode Test Page

- -If you see typeset mathematics below, then jsMath Image Mode is working. If you see -TeX code instead, jsMath Image Mode is not working for you. -

- -


- - -
-\left(\, \sum_{k=1}^n a_k b_k \right)^2 \le -\left(\, \sum_{k=1}^n a_k^2 \right) \left(\, \sum_{k=1}^n b_k^2 \right) -
-

- -

-\warning{       jsMath image mode is not working!       } -
- - -
-

-If the mathematics does not show up properly, you may not have not -installed the jsMath -image fonts file correctly. Follow the instructions on the linked -page. -

- -Once you have jsMath working, go on to the sample -page to see if easy/load.js is configured properly. - -

- - - - - - -

-


- - - -
- - - - - - -
[HOME]jsMath web pages
-Created: 14 Feb 2007
- -Last modified: Jun 16, 2007 8:56:17 AM - -
-Comments to: dpvc@union.edu
-
 
-
- - - diff --git a/sagenb/data/jsmath/test/index.html b/sagenb/data/jsmath/test/index.html deleted file mode 100644 index 559d9e4fd..000000000 --- a/sagenb/data/jsmath/test/index.html +++ /dev/null @@ -1,114 +0,0 @@ - - -jsMath (Test): jsMath Test Page - - - - - - - - -
- - -
jsMath (Test)
-
-

- - - - - - - -

-Warning: jsMath -requires JavaScript to process the mathematics on this page.
-If your browser supports JavaScript, be sure it is enabled. -
-
- - -
- -
- -
- -

jsMath Test Page

- -If you see typeset mathematics below, then jsMath is working. If you see -TeX code instead, jsMath is not working for you. -

- -


- - -
-\left(\, \sum_{k=1}^n a_k b_k \right)^2 \le -\left(\, \sum_{k=1}^n a_k^2 \right) \left(\, \sum_{k=1}^n b_k^2 \right) -
-

- -

-\warning{       jsMath is not working!       } -
- - -
-

- -Once you have jsMath working properly, view the image mode test page to make sure that the -image fallback mode is working as well. - -

- - - - - - -

-


- - - -
- - - - - - -
[HOME]jsMath web pages
-Created: 14 Feb 2007
- -Last modified: Feb 12, 2009 6:14:47 PM - -
-Comments to: dpvc@union.edu
-
 
-
- - - diff --git a/sagenb/data/jsmath/test/jsMath40.jpg b/sagenb/data/jsmath/test/jsMath40.jpg deleted file mode 100644 index db5379477e1447bee1e9230fb5229e43b8eec859..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1953 zcmbV|cT|&E8pgl$z`%qq)qoTckP-q(SjHeALvR!jQ6o5P2mvBZ0V&GRbPY(!AdWb= z2Sh-msZ_y2qzE!NA}EQ38bFGpYeM}L$Tvav%-KJ8_qq4J=e_5-_r1UOLT{i+K*__6 z<_5rEFu+|l07wd)^N9+Mjb}u&9GpxIchMpkA*=(85H>SRpJ++2r07#9R@SmdQ za`NB60K`{M7QedxVJgWQKp@~q#1^Wo%ug~8Kq{kD3~ctIRlOOQ9jDa@X?Z1BL+847 z^+N+`7#bgNy4vx9{C)9zKVCj~qQlKh6wd1&4&P zPsYTaiHlE2JbV7aKQ3}IGA~`uzw*n~f@{AP-YhLEzg2O&vZ}tJv8nlfOY4J<&aS83 zJn02NqI>45<4Jtm>sEglRKi&ZsiMM@bjg-$cU zMmsH@9b2T$6fUJ?P{m$U+=kI>gTXd)=_{$CxM`@PVPpi%rw=Um8vBm4+#FT2Krg?r z&FSQ)Iy|HbZKrZe*%~Dk;5cQn$gWUM)X zkICvAKZvQF2X^{r(OSWR=}oKlS79pm+#2e_Tr6hCvP}J2lUiySfd>VxDyTRo?xN?0 zI&Rez#52U^ojeo-gmBZ6RhuMpU3i_n<;N1zKfms;xp$HOhgWOM^~0CVvxdh#>uREH z-RZ*Vm{y&7*fM@YRcHDK{B|lMfU}3N?%O4}`XipxdA4+{HF12+6VJR%({0dTJEqxB z(RO$plr!7o0RicP4QDV@!k=~pag+N&i$}0qN$xKl)u(=sqp%Vq9qB0%-#w4p1&rvv z93I9-n)E@yorh^?e&%XwGAHSPEB8r!U3ZDEE9|fW;5aiWzvuvb#!Rnudcwi}X=85I zBVSQ<*g6C#jBeg{E?gjO=FaYS&8f)oga=sEbGi@PGPUj&N+~A^V2@N@Pn`ecL73fW z5k~Bpy~o6VLCG_`-ji6@UPdoiLcjGN4=~dksEpRETg(9Pqy*|THyZ*N#lnYE74Mfs zR-CoCv%KysJ=G~(2NiRoE3$SO0@O|h9Upf|UVT5Gw=X*QYFzG-RKJCThI#Znohn)T zziikINVjcJHvhRtQ5c}p(+Wy%jJ*>qx&Hin)jNV?ZQ^bJPac(Xo~Pq2?l|Fz6`F`t zT$9u^85D=cS9DOv;3-fZKv8gy`MQ1{Z4FQTPeTugJMSODO*nXe-u)Z*QHWt|* zdFSGZ$Iek+?pov*$u1yc-BQY*zYb>vXIj=@rdfx7S3B5JABE0WoLl~XUA$hEaXjR(by)RFNwZ-_0;E!j2RqkfIK>7iw;;G=4=l`BGOR}M~udRy=`N_U~n zVCeb$$J=ae#5}*vyYRcb^6Jsid-~rVdp?r6Q{EbbaN6D@5v=|S>WFw*+WnlB0DOmK zO+~J7VfP11OAX3ZHJsLE(_vCIyynJRI^9p93}*#$CA`&SkjscD?~@4p26va9OH2Hg zTj5ceg5(d5G(CP+^uqsX=A-rorkr8U`M)bU**Ti8yCwHYvEsJtlRWu^JLY;;?)UBw zE{~WJvxY8>^ELV8n|o)(RT)*78`TgX=BG5QZQ>x{lgDESm?pxCr;3H7$)4;+N|LQ; mLc3<|euRo&$12I1!`RVG>eaqY_DOZ`eWGO~KO2gGhW`YyvRs=0 diff --git a/sagenb/data/jsmath/test/sample.html b/sagenb/data/jsmath/test/sample.html deleted file mode 100644 index 4497e7a35..000000000 --- a/sagenb/data/jsmath/test/sample.html +++ /dev/null @@ -1,165 +0,0 @@ - - -jsMath (Test): jsMath Sample Page - - - - - - - - - -
- -

jsMath Sample Page

- -This is a sample file showing you how to use jsMath to display mathematics -in your web pages. Be sure you have followed the installation -instructions before loading this file. Also, you may need to edit the -jsMath/easy/load.js file to set the root URL for where jsMath -can be found on your web site. The rest of this document gives examples of -how to enter mathematics in your pages. Depending on the settings in -jsMath/easy/load.js, not all of the mathematics below will be -processed by jsMath. Experiment with the settings in that file to see how -they work. -

- -


-

- -

Some mathematics using tex2math

- -The easiest way to enter mathematics is to use jsMath's tex2math -plugin to identify the mathematics in your document by looking for \rm\TeX-like math delimiters. Here are some math -equations using those markers. Some inline math: $\sqrt{1-x^2}$ or \(ax^2+bx+c\), -and some displayed math: -$$\int {1\over x}\,dx = \ln(x)+C$$ -and -\[\sum_{i=1}^n i = {n(n+1)\over 2}.\] -Note that the first of these will not be processed unless you have enabled -processSingleDollars in jsMath/easy/load.js, -which is disabled by default. That is because a single dollar sign can -appear in normal text (as in "That will cost from $3.50 to -$5.00 to repair"), and you don't want jsMath to try to typeset -the "3.50 to " as mathematics. -

- -If you enable processSingleDollars, you might also want to -enable fixEscapedDollars, so that it is possible to enter -dollar signs by preceding them with a backslash. Here's one that you can -use to see the results of these settings: \$ (an escaped dollar) and $x+1$ -(not escaped). -

- -It is also possible to use your own custom delimiters for marking the -mathematics within your pages. If you uncomment the customDelimiters -array in jsMath/easy/load.js, then the following math will be -typeset by jsMath: some inline math [math]\sin(2\pi x)[/math] and some -display math [display]x={-b\pm \sqrt{b^2-4ac}\over 2a}.[/display] -You may change the delimiters to nearly anything you want, but they can not -look like HTML tags, since some browsers will eliminate unknown tags, and -jsMath doesn't get to look for the custom delimiters until after the -browser has interpreted the page. -

- -

-You can prevent the tex2math plugin from processing a portion -of a page by enclosing it in a tag that is of -CLASS="tex2math_ignore". Often, that tag will be a -DIV or SPAN, but it can be anything. This -paragraph is wrapped in a DIV tag with -CLASS="tex2math_ignore", and so no math delimiters will be -processed: $f\colon X\to Y$, \(x^2 \gt 5\), $$1\over 1+x^2$$ and -\[\matrix{a& b\cr c& d}.\] -Note that this includes the processing of escaped dollars (\$) and -custom delimiters ([math]a \mapsto a^2[/math]) as well. -This makes it possible to produce examples of how to enter mathematics on -your site, for instance. -
-

-JsMath will automatically ignore the text within -PRE tags, so you can easily enter examples that way as well: -

-   $f\colon X\to Y$, \(x^2 \gt 5\),
-   $$1\over 1+x^2$$ and \[\matrix{a& b\cr c& d}.\]
-
-

- -Note that since the < and > symbols are used to denote HTML tags, -these can be hard to incorporate into your \rm\TeX -code. Often, putting spaces around the < or > will make it work, but -it is probably better to use \lt and \gt instead. -Also note that the tex2math plugin does not allow any HTML -tags to be within the math delimiters, with the exception of -<BR>, which is ignored. -

- -See the tex2math -documentation for more information. -

- -


-

- -

Mathematics without tex2math

-

- -If you are not using tex2math, then you will need to enclose -your mathematics within SPAN or DIV tags that -are of CLASS="math". Use a SPAN for in-line math -and a DIV for displayed math. For instance, P = (x_1,\ldots,x_n) and -

- A = \left\lgroup\matrix{a_{11}& \cdots& a_{1m}\cr - \vdots& \ddots& \vdots\cr - a_{n1}& \cdots& a_{nm}\cr}\right\rgroup. -
-

-


-

-

More information

-

- -See the jsMath -example files for more examples of using jsMath. There are several extensions -to \rm\TeX that allow jsMath to interact better -with HTML. These provide features such as colored text, tagging mathematics -with CSS styles, and so on. -

- -More information is available from the jsMath author's -documentation site. JsMath also has a home page at -SourceForge, and that includes public forums -for jsMath where you can ask the jsMath user community for help. -

- - - diff --git a/sagenb/data/jsmath/uncompressed/def.js b/sagenb/data/jsmath/uncompressed/def.js deleted file mode 100644 index 0b5b6a199..000000000 --- a/sagenb/data/jsmath/uncompressed/def.js +++ /dev/null @@ -1,1442 +0,0 @@ -jsMath.Img.AddFont(50,{ - cmr10: [ - [5,5,0], [6,6,0], [6,6,1], [5,6,0], [5,5,0], [6,5,0], [5,5,0], [6,5,0], - [5,5,0], [6,5,0], [5,5,0], [5,5,0], [4,5,0], [4,5,0], [6,5,0], [6,5,0], - [2,4,0], [3,6,2], [3,2,-3], [3,2,-3], [3,2,-3], [3,2,-3], [4,2,-3], [4,3,-3], - [3,3,2], [4,6,1], [5,5,1], [6,5,1], [4,5,1], [7,5,0], [7,6,1], [6,7,1], - [2,2,-1], [2,6,0], [3,3,-2], [6,7,2], [4,7,1], [6,7,1], [6,7,1], [2,3,-2], - [3,8,2], [3,8,2], [4,4,-2], [6,6,1], [2,3,2], [2,1,-1], [2,1,0], [4,8,2], - [4,6,1], [3,5,0], [4,5,0], [4,6,1], [4,5,0], [4,6,1], [4,6,1], [4,6,1], - [4,6,1], [4,6,1], [2,4,0], [2,6,2], [2,6,2], [6,3,0], [3,6,2], [3,5,0], - [6,6,1], [6,6,0], [5,5,0], [5,6,1], [5,5,0], [5,5,0], [5,5,0], [6,6,1], - [6,5,0], [3,5,0], [4,6,1], [6,5,0], [5,5,0], [7,5,0], [6,5,0], [6,6,1], - [5,5,0], [6,7,2], [6,6,1], [4,6,1], [5,5,0], [6,6,1], [6,6,1], [8,6,1], - [6,5,0], [6,5,0], [4,5,0], [2,8,2], [4,3,-2], [2,8,2], [3,2,-3], [2,2,-3], - [2,3,-2], [4,5,1], [4,6,1], [3,5,1], [4,6,1], [3,5,1], [3,5,0], [4,6,2], - [4,5,0], [2,5,0], [3,7,2], [4,5,0], [2,5,0], [6,4,0], [4,4,0], [4,5,1], - [4,6,2], [4,6,2], [3,4,0], [3,5,1], [3,6,1], [4,5,1], [4,5,1], [5,5,1], - [4,4,0], [4,6,2], [3,4,0], [4,1,-1], [7,1,-1], [3,2,-3], [3,1,-4], [3,2,-3] - ], - cmmi10: [ - [6,5,0], [6,6,0], [6,6,1], [5,6,0], [6,5,0], [7,5,0], [6,5,0], [5,5,0], - [5,5,0], [5,5,0], [6,5,0], [5,5,1], [5,7,2], [4,6,2], [4,6,1], [3,5,1], - [4,7,2], [4,6,2], [4,6,1], [3,5,1], [4,5,1], [4,6,1], [4,6,2], [4,4,0], - [4,7,2], [4,5,1], [4,6,2], [4,5,1], [4,5,1], [4,5,1], [5,7,2], [5,6,2], - [5,7,2], [5,5,1], [3,5,1], [4,6,1], [6,5,1], [4,6,2], [3,5,1], [5,6,2], - [7,3,-1], [7,3,1], [7,3,-1], [7,3,1], [2,3,-1], [2,3,-1], [4,5,1], [4,5,1], - [4,5,1], [3,4,0], [4,4,0], [4,6,2], [4,6,2], [4,6,2], [4,6,1], [4,6,2], - [4,6,1], [4,6,2], [2,1,0], [2,3,2], [5,5,1], [4,8,2], [5,5,1], [4,4,0], - [4,7,1], [6,6,0], [6,5,0], [6,6,1], [6,5,0], [6,5,0], [6,5,0], [6,6,1], - [7,5,0], [4,5,0], [5,6,1], [7,5,0], [5,5,0], [8,5,0], [7,5,0], [6,6,1], - [6,5,0], [6,7,2], [6,6,1], [5,6,1], [5,5,0], [6,6,1], [6,6,1], [8,6,1], - [6,5,0], [6,5,0], [6,5,0], [3,7,1], [3,8,2], [3,8,2], [7,3,0], [7,3,0], - [3,6,1], [4,5,1], [3,6,1], [4,5,1], [4,6,1], [4,5,1], [4,7,2], [4,6,2], - [4,6,1], [3,6,1], [4,7,2], [4,6,1], [2,6,1], [6,5,1], [4,5,1], [4,5,1], - [5,6,2], [4,6,2], [4,5,1], [3,5,1], [3,6,1], [4,5,1], [4,5,1], [5,5,1], - [4,5,1], [4,6,2], [4,5,1], [3,5,1], [4,6,2], [5,6,2], [5,2,-3], [5,2,-3] - ], - cmsy10: [ - [5,1,-1], [2,2,-1], [5,4,0], [4,4,0], [6,5,1], [4,4,0], [6,5,0], [6,6,2], - [6,6,1], [6,6,1], [6,6,1], [6,6,1], [6,6,1], [7,8,2], [4,4,0], [4,4,0], - [6,4,0], [6,4,0], [5,6,1], [5,6,1], [5,6,1], [5,6,1], [5,6,1], [5,6,1], - [6,3,0], [6,4,0], [5,5,1], [5,5,1], [7,5,1], [7,5,1], [5,5,1], [5,5,1], - [7,3,0], [7,3,0], [3,7,2], [3,7,2], [7,3,0], [7,7,2], [7,7,2], [6,4,0], - [7,5,1], [7,5,1], [5,7,2], [5,7,2], [7,5,1], [7,7,2], [7,7,2], [6,5,1], - [2,4,0], [7,5,1], [5,5,1], [5,5,1], [6,6,0], [6,6,2], [5,8,2], [1,4,0], - [4,6,1], [4,5,0], [5,3,0], [4,7,1], [5,7,1], [5,6,1], [6,5,0], [6,5,0], - [4,5,0], [6,7,1], [5,6,1], [4,6,1], [6,5,0], [4,6,1], [6,6,1], [5,6,1], - [6,6,1], [6,5,0], [6,6,1], [6,6,1], [5,6,1], [8,6,1], [8,7,1], [6,6,1], - [6,6,1], [6,6,1], [6,6,1], [5,6,1], [6,6,0], [6,6,1], [5,6,1], [8,6,1], - [6,5,0], [6,6,1], [6,5,0], [5,6,1], [5,6,1], [5,6,1], [5,6,1], [5,6,1], - [4,5,0], [4,5,0], [3,8,2], [2,8,2], [3,8,2], [2,8,2], [3,8,2], [3,8,2], - [3,8,2], [2,8,2], [2,8,2], [3,8,2], [3,8,2], [5,8,2], [4,8,2], [2,6,1], - [6,8,7], [5,5,0], [6,6,1], [4,8,2], [5,5,0], [5,5,0], [5,6,1], [5,6,1], - [3,7,2], [3,7,2], [3,7,2], [5,7,2], [6,7,1], [6,8,2], [6,7,1], [6,7,1] - ], - cmex10: [ - [3,10,9], [3,10,9], [3,10,9], [2,10,9], [4,10,9], [2,10,9], [4,10,9], [2,10,9], - [4,10,9], [4,10,9], [3,10,9], [3,10,9], [2,6,5], [3,6,5], [4,10,9], [4,10,9], - [4,14,13], [3,14,13], [5,18,17], [4,18,17], [4,18,17], [2,18,17], [4,18,17], [3,18,17], - [4,18,17], [3,18,17], [5,18,17], [5,18,17], [5,18,17], [5,18,17], [7,18,17], [7,18,17], - [6,22,21], [4,22,21], [4,22,21], [3,22,21], [5,22,21], [3,22,21], [5,22,21], [3,22,21], - [5,22,21], [5,22,21], [5,22,21], [5,22,21], [9,22,21], [9,22,21], [6,14,13], [6,14,13], - [6,14,13], [5,14,13], [5,14,13], [3,14,13], [5,14,13], [3,14,13], [3,6,5], [3,6,5], - [6,8,7], [4,8,7], [6,8,7], [4,8,7], [4,14,13], [6,14,13], [4,4,3], [3,6,5], - [6,14,13], [5,14,13], [3,6,5], [5,6,5], [4,14,13], [4,14,13], [6,8,7], [8,11,10], - [5,9,8], [7,17,16], [8,8,7], [11,11,10], [8,8,7], [11,11,10], [8,8,7], [11,11,10], - [7,8,7], [7,8,7], [5,9,8], [6,8,7], [6,8,7], [6,8,7], [6,8,7], [6,8,7], - [10,11,10], [9,11,10], [7,17,16], [8,11,10], [8,11,10], [8,11,10], [8,11,10], [8,11,10], - [7,8,7], [9,11,10], [5,3,-3], [9,2,-4], [12,2,-4], [4,2,-4], [7,2,-4], [11,2,-4], - [4,14,13], [2,14,13], [4,14,13], [3,14,13], [4,14,13], [3,14,13], [4,14,13], [4,14,13], - [8,10,9], [8,14,13], [8,18,17], [8,22,21], [6,14,13], [6,6,5], [8,6,5], [4,6,5], - [4,6,5], [4,6,5], [5,3,2], [5,3,2], [5,3,0], [5,3,0], [6,6,5], [6,6,5] - ], - cmbx10: [ - [5,5,0], [7,5,0], [6,6,1], [6,5,0], [6,5,0], [7,5,0], [6,5,0], [6,5,0], - [6,5,0], [6,5,0], [6,5,0], [6,5,0], [5,5,0], [5,5,0], [7,5,0], [7,5,0], - [2,4,0], [3,6,2], [3,2,-3], [4,2,-3], [4,2,-3], [4,2,-3], [4,2,-3], [4,2,-3], - [4,3,2], [4,6,1], [6,5,1], [7,5,1], [4,5,1], [8,5,0], [8,6,1], [6,7,1], - [3,2,-1], [2,5,0], [4,3,-2], [7,7,2], [4,7,1], [7,7,1], [6,6,1], [2,3,-2], - [3,8,2], [3,8,2], [4,4,-2], [6,6,1], [2,4,2], [3,1,-1], [2,2,0], [4,8,2], - [4,6,1], [4,5,0], [4,5,0], [4,6,1], [4,5,0], [4,6,1], [4,6,1], [4,6,1], - [4,6,1], [4,6,1], [2,4,0], [2,6,2], [2,6,2], [6,3,0], [4,6,2], [4,5,0], - [6,6,1], [6,5,0], [6,5,0], [6,6,1], [6,5,0], [6,5,0], [5,5,0], [6,6,1], - [7,5,0], [3,5,0], [4,6,1], [6,5,0], [5,5,0], [8,5,0], [7,5,0], [6,6,1], - [6,5,0], [6,7,2], [6,6,1], [5,6,1], [6,5,0], [6,6,1], [6,6,1], [9,6,1], - [6,5,0], [6,5,0], [5,5,0], [3,8,2], [4,3,-2], [2,8,2], [4,2,-3], [2,2,-3], - [2,3,-2], [4,5,1], [5,6,1], [4,5,1], [5,6,1], [4,5,1], [4,5,0], [4,6,2], - [5,5,0], [2,5,0], [3,7,2], [5,5,0], [3,5,0], [7,4,0], [5,4,0], [4,5,1], - [5,6,2], [5,6,2], [4,4,0], [3,5,1], [3,6,1], [5,5,1], [5,5,1], [6,5,1], - [5,4,0], [5,6,2], [4,4,0], [5,2,-1], [9,2,-1], [4,2,-3], [4,1,-4], [4,2,-3] - ], - cmti10: [ - [5,5,0], [6,6,0], [6,6,1], [5,6,0], [6,5,0], [6,5,0], [6,5,0], [6,5,0], - [6,5,0], [6,5,0], [6,5,0], [7,7,2], [6,7,2], [6,7,2], [8,7,2], [8,7,2], - [3,5,1], [4,6,2], [4,2,-3], [4,2,-3], [4,2,-3], [4,2,-3], [4,2,-3], [5,3,-3], - [3,3,2], [6,7,2], [6,5,1], [6,5,1], [4,5,1], [7,5,0], [8,6,1], [6,7,1], - [3,2,-1], [3,6,0], [4,3,-2], [6,7,2], [5,6,1], [6,7,1], [6,7,1], [3,3,-2], - [4,8,2], [3,8,2], [5,4,-2], [6,5,1], [2,3,2], [3,1,-1], [2,1,0], [5,8,2], - [4,6,1], [4,5,0], [4,6,1], [4,6,1], [4,7,2], [4,6,1], [4,6,1], [5,6,1], - [4,6,1], [4,6,1], [3,4,0], [3,6,2], [3,6,2], [6,3,0], [4,6,2], [4,6,0], - [6,6,1], [5,6,0], [6,5,0], [6,6,1], [6,5,0], [6,5,0], [6,5,0], [6,6,1], - [6,5,0], [4,5,0], [5,6,1], [7,5,0], [5,5,0], [8,5,0], [6,5,0], [6,6,1], - [6,5,0], [6,7,2], [6,6,1], [5,6,1], [6,5,0], [6,6,1], [7,6,1], [8,6,1], - [6,5,0], [7,5,0], [5,5,0], [4,8,2], [5,3,-2], [4,8,2], [4,2,-3], [3,2,-3], - [3,3,-2], [4,5,1], [4,6,1], [4,5,1], [4,6,1], [4,5,1], [5,7,2], [4,6,2], - [4,6,1], [3,6,1], [4,7,2], [4,6,1], [3,6,1], [6,5,1], [5,5,1], [4,5,1], - [4,6,2], [4,6,2], [4,5,1], [3,5,1], [3,6,1], [4,5,1], [4,5,1], [5,5,1], - [4,5,1], [4,6,2], [4,5,1], [4,1,-1], [8,1,-1], [5,2,-3], [4,2,-3], [4,2,-3] - ] -}); - -jsMath.Img.AddFont(60,{ - cmr10: [ - [5,6,0], [7,6,0], [6,7,1], [6,6,0], [5,6,0], [6,6,0], [6,6,0], [6,6,0], - [6,6,0], [6,6,0], [6,6,0], [6,6,0], [5,6,0], [5,6,0], [7,6,0], [7,6,0], - [2,4,0], [3,6,2], [3,2,-4], [4,2,-4], [4,2,-4], [4,2,-4], [4,1,-4], [4,2,-4], - [3,3,2], [4,7,1], [6,5,1], [6,5,1], [4,6,1], [7,6,0], [8,7,1], [6,7,1], - [3,2,-2], [2,6,0], [3,3,-3], [7,8,2], [4,7,1], [7,7,1], [6,7,1], [2,3,-3], - [3,8,2], [3,8,2], [4,4,-2], [6,6,1], [2,3,2], [3,1,-1], [2,1,0], [4,8,2], - [4,7,1], [4,6,0], [4,6,0], [4,7,1], [4,6,0], [4,7,1], [4,7,1], [4,7,1], - [4,7,1], [4,7,1], [2,4,0], [2,6,2], [2,6,2], [6,2,-1], [4,6,2], [4,6,0], - [6,7,1], [6,6,0], [6,6,0], [6,7,1], [6,6,0], [6,6,0], [5,6,0], [6,7,1], - [6,6,0], [3,6,0], [4,7,1], [6,6,0], [5,6,0], [8,6,0], [6,6,0], [6,7,1], - [5,6,0], [6,8,2], [6,7,1], [4,7,1], [6,6,0], [6,7,1], [6,7,1], [9,7,1], - [6,6,0], [6,6,0], [5,6,0], [3,8,2], [4,3,-3], [2,8,2], [4,2,-4], [2,2,-4], - [2,3,-3], [4,5,1], [5,7,1], [4,5,1], [5,7,1], [4,5,1], [3,6,0], [4,6,2], - [5,6,0], [2,6,0], [3,8,2], [5,6,0], [3,6,0], [7,4,0], [5,4,0], [4,5,1], - [5,6,2], [5,6,2], [3,4,0], [3,5,1], [3,6,1], [5,5,1], [5,5,1], [6,5,1], - [5,4,0], [5,6,2], [4,4,0], [4,1,-2], [8,1,-2], [4,2,-4], [4,2,-4], [4,2,-4] - ], - cmmi10: [ - [6,6,0], [7,6,0], [6,7,1], [6,6,0], [7,6,0], [8,6,0], [7,6,0], [6,6,0], - [6,6,0], [6,6,0], [7,6,0], [5,5,1], [5,8,2], [5,6,2], [4,7,1], [4,5,1], - [4,8,2], [4,6,2], [4,7,1], [3,5,1], [5,5,1], [5,7,1], [5,6,2], [5,4,0], - [4,8,2], [5,5,1], [5,6,2], [5,5,1], [5,5,1], [5,5,1], [5,8,2], [5,6,2], - [6,8,2], [5,5,1], [4,5,1], [5,7,1], [7,5,1], [5,6,2], [4,5,1], [5,6,2], - [8,4,-1], [8,4,1], [8,4,-1], [8,4,1], [2,3,-1], [2,3,-1], [4,6,1], [4,6,1], - [4,5,1], [4,4,0], [4,4,0], [4,6,2], [4,6,2], [4,6,2], [4,7,1], [4,6,2], - [4,7,1], [4,6,2], [2,1,0], [2,3,2], [6,6,1], [4,8,2], [6,6,1], [4,4,0], - [5,7,1], [6,6,0], [7,6,0], [7,7,1], [7,6,0], [7,6,0], [7,6,0], [7,7,1], - [8,6,0], [4,6,0], [6,7,1], [8,6,0], [6,6,0], [9,6,0], [8,6,0], [6,7,1], - [7,6,0], [6,8,2], [7,7,1], [6,7,1], [6,6,0], [7,7,1], [7,7,1], [9,7,1], - [7,6,0], [7,6,0], [6,6,0], [3,7,1], [3,8,2], [3,8,2], [8,2,-1], [8,3,-1], - [4,7,1], [4,5,1], [4,7,1], [4,5,1], [5,7,1], [4,5,1], [5,8,2], [4,6,2], - [5,7,1], [3,7,1], [5,8,2], [5,7,1], [3,7,1], [7,5,1], [5,5,1], [4,5,1], - [5,6,2], [4,6,2], [4,5,1], [4,5,1], [3,7,1], [5,5,1], [4,5,1], [6,5,1], - [5,5,1], [4,6,2], [4,5,1], [3,5,1], [4,6,2], [5,6,2], [5,2,-4], [6,2,-4] - ], - cmsy10: [ - [6,2,-1], [2,2,-1], [6,4,0], [4,4,0], [6,6,1], [4,4,0], [6,6,0], [6,6,2], - [6,6,1], [6,6,1], [6,6,1], [6,6,1], [6,6,1], [8,8,2], [4,4,0], [4,4,0], - [6,4,0], [6,4,0], [6,8,2], [6,8,2], [6,8,2], [6,8,2], [6,8,2], [6,8,2], - [6,2,-1], [6,4,0], [6,6,1], [6,6,1], [8,6,1], [8,6,1], [6,6,1], [6,6,1], - [8,4,0], [8,4,0], [4,8,2], [4,8,2], [8,4,0], [8,8,2], [8,8,2], [6,4,0], - [8,6,1], [8,6,1], [5,8,2], [5,8,2], [8,6,1], [8,8,2], [8,8,2], [6,5,1], - [3,5,0], [8,5,1], [5,6,1], [5,6,1], [7,6,0], [7,6,2], [6,8,2], [1,4,0], - [5,7,1], [4,6,0], [5,3,0], [4,8,1], [6,7,1], [6,7,1], [6,6,0], [6,6,0], - [5,6,0], [7,7,1], [6,7,1], [5,7,1], [7,6,0], [5,7,1], [7,7,1], [5,7,1], - [7,7,1], [7,6,0], [7,7,1], [6,7,1], [6,7,1], [9,7,1], [9,8,1], [7,7,1], - [6,7,1], [7,7,1], [7,7,1], [6,7,1], [7,6,0], [7,7,1], [6,7,1], [9,7,1], - [7,6,0], [6,8,2], [7,6,0], [5,6,1], [5,6,1], [5,6,1], [5,6,1], [5,6,1], - [5,6,0], [5,6,0], [4,8,2], [3,8,2], [4,8,2], [3,8,2], [4,8,2], [4,8,2], - [3,8,2], [3,8,2], [2,8,2], [3,8,2], [4,10,3], [5,10,3], [4,8,2], [2,6,1], - [7,9,8], [6,6,0], [7,7,1], [4,8,2], [5,5,0], [5,5,0], [6,8,2], [6,8,2], - [3,8,2], [4,8,2], [4,8,2], [5,8,2], [6,8,2], [6,8,2], [6,7,1], [6,8,2] - ], - cmex10: [ - [4,11,10], [3,11,10], [4,11,10], [2,11,10], [4,11,10], [3,11,10], [4,11,10], [3,11,10], - [4,11,10], [4,11,10], [4,11,10], [3,11,10], [2,6,5], [4,6,5], [5,11,10], [5,11,10], - [5,16,15], [4,16,15], [6,20,19], [5,20,19], [5,20,19], [3,20,19], [5,20,19], [3,20,19], - [5,20,19], [3,20,19], [5,20,19], [5,20,19], [6,20,19], [5,20,19], [8,20,19], [8,20,19], - [7,25,24], [5,25,24], [5,25,24], [3,25,24], [6,25,24], [3,25,24], [6,25,24], [3,25,24], - [6,25,24], [6,25,24], [6,25,24], [6,25,24], [10,25,24], [10,25,24], [7,16,15], [7,16,15], - [7,16,15], [5,16,15], [6,16,15], [3,16,15], [6,16,15], [3,16,15], [4,6,5], [3,6,5], - [6,9,8], [5,9,8], [6,9,8], [5,9,8], [5,16,15], [6,16,15], [5,4,3], [3,6,5], - [7,16,15], [5,16,15], [4,6,5], [5,6,5], [5,16,15], [4,16,15], [7,9,8], [9,13,12], - [5,10,9], [8,19,18], [9,9,8], [12,13,12], [9,9,8], [12,13,12], [9,9,8], [12,13,12], - [8,9,8], [8,9,8], [5,10,9], [7,9,8], [7,9,8], [7,9,8], [7,9,8], [7,9,8], - [12,13,12], [10,13,12], [8,19,18], [9,13,12], [9,13,12], [9,13,12], [9,13,12], [9,13,12], - [8,9,8], [10,13,12], [6,2,-4], [10,3,-4], [13,3,-4], [5,2,-4], [8,2,-4], [12,2,-4], - [4,16,15], [2,16,15], [5,16,15], [3,16,15], [5,16,15], [3,16,15], [5,16,15], [5,16,15], - [9,11,10], [9,16,15], [9,20,19], [9,25,24], [6,16,15], [6,6,5], [9,6,5], [5,6,5], - [5,6,5], [5,6,5], [5,3,2], [5,3,2], [5,3,0], [5,3,0], [6,6,5], [6,6,5] - ], - cmbx10: [ - [6,6,0], [8,6,0], [7,7,1], [7,6,0], [6,6,0], [7,6,0], [7,6,0], [7,6,0], - [7,6,0], [7,6,0], [7,6,0], [6,6,0], [5,6,0], [5,6,0], [8,6,0], [8,6,0], - [3,4,0], [4,6,2], [3,2,-4], [4,2,-4], [4,2,-4], [4,2,-4], [4,1,-4], [5,2,-4], - [4,3,2], [5,7,1], [7,5,1], [7,5,1], [5,6,1], [9,6,0], [10,7,1], [7,7,1], - [3,2,-2], [3,6,0], [4,4,-2], [8,8,2], [5,7,1], [8,7,1], [7,7,1], [3,4,-2], - [4,8,2], [3,8,2], [4,4,-2], [7,8,2], [2,4,2], [3,2,-1], [2,2,0], [5,8,2], - [5,7,1], [4,6,0], [5,6,0], [5,7,1], [5,6,0], [5,7,1], [5,7,1], [5,7,1], - [5,7,1], [5,7,1], [2,4,0], [2,6,2], [3,6,2], [7,4,0], [4,6,2], [4,6,0], - [7,7,1], [7,6,0], [7,6,0], [7,7,1], [7,6,0], [6,6,0], [6,6,0], [7,7,1], - [7,6,0], [4,6,0], [5,7,1], [7,6,0], [6,6,0], [9,6,0], [7,6,0], [7,7,1], - [6,6,0], [7,8,2], [7,7,1], [5,7,1], [7,6,0], [7,7,1], [7,7,1], [10,7,1], - [7,6,0], [7,6,0], [6,6,0], [3,8,2], [5,4,-2], [2,8,2], [4,2,-4], [2,2,-4], - [2,4,-2], [5,5,1], [5,7,1], [4,5,1], [5,7,1], [4,5,1], [4,6,0], [5,6,2], - [5,6,0], [3,6,0], [4,8,2], [5,6,0], [3,6,0], [8,4,0], [5,4,0], [5,5,1], - [5,6,2], [5,6,2], [4,4,0], [4,5,1], [4,7,1], [5,5,1], [5,5,1], [7,5,1], - [5,4,0], [5,6,2], [4,4,0], [5,1,-2], [10,1,-2], [4,2,-4], [4,2,-4], [4,2,-4] - ], - cmti10: [ - [6,6,0], [7,6,0], [7,7,1], [6,6,0], [7,6,0], [7,6,0], [7,6,0], [7,6,0], - [6,6,0], [7,6,0], [7,6,0], [8,8,2], [6,8,2], [7,8,2], [9,8,2], [9,8,2], - [3,5,1], [4,6,2], [4,2,-4], [5,2,-4], [5,2,-4], [5,2,-4], [5,1,-4], [6,2,-4], - [3,3,2], [6,8,2], [6,5,1], [6,5,1], [5,6,1], [8,6,0], [9,7,1], [7,7,1], - [3,2,-2], [3,6,0], [5,3,-3], [7,8,2], [6,7,1], [7,7,1], [7,7,1], [3,3,-3], - [5,8,2], [4,8,2], [5,4,-2], [7,6,1], [2,3,2], [3,1,-1], [2,1,0], [5,8,2], - [5,7,1], [4,6,0], [5,7,1], [5,7,1], [4,8,2], [5,7,1], [5,7,1], [5,7,1], - [5,7,1], [5,7,1], [3,4,0], [3,6,2], [3,6,2], [7,2,-1], [4,6,2], [5,6,0], - [7,7,1], [6,6,0], [6,6,0], [7,7,1], [7,6,0], [6,6,0], [6,6,0], [7,7,1], - [7,6,0], [5,6,0], [5,7,1], [7,6,0], [5,6,0], [9,6,0], [7,6,0], [7,7,1], - [6,6,0], [7,8,2], [6,7,1], [6,7,1], [7,6,0], [7,7,1], [7,7,1], [9,7,1], - [7,6,0], [7,6,0], [6,6,0], [4,8,2], [5,3,-3], [4,8,2], [5,2,-4], [3,2,-4], - [3,3,-3], [5,5,1], [4,7,1], [4,5,1], [5,7,1], [4,5,1], [5,8,2], [4,6,2], - [5,7,1], [3,7,1], [4,8,2], [5,7,1], [3,7,1], [7,5,1], [5,5,1], [5,5,1], - [5,6,2], [4,6,2], [4,5,1], [4,5,1], [3,7,1], [5,5,1], [4,5,1], [6,5,1], - [5,5,1], [5,6,2], [4,5,1], [5,1,-2], [9,1,-2], [5,2,-4], [5,2,-4], [5,2,-4] - ] -}); - -jsMath.Img.AddFont(70,{ - cmr10: [ - [6,7,0], [8,8,0], [8,9,1], [7,8,0], [7,7,0], [8,7,0], [7,7,0], [8,8,0], - [7,7,0], [8,7,0], [7,8,0], [7,8,0], [6,8,0], [6,8,0], [9,8,0], [9,8,0], - [3,5,0], [4,8,3], [3,2,-5], [4,2,-5], [4,2,-5], [4,2,-5], [5,1,-5], [5,3,-5], - [4,4,3], [5,9,1], [7,6,1], [8,6,1], [5,8,2], [9,7,0], [10,9,1], [8,9,1], - [3,2,-2], [2,8,0], [4,4,-3], [8,9,2], [5,9,1], [8,9,1], [8,9,1], [3,4,-3], - [4,11,3], [3,11,3], [5,5,-3], [8,7,1], [3,4,2], [3,2,-1], [2,2,0], [5,11,3], - [5,8,1], [5,7,0], [5,7,0], [5,8,1], [5,7,0], [5,8,1], [5,8,1], [5,8,1], - [5,8,1], [5,8,1], [2,5,0], [2,7,2], [2,8,3], [8,3,-1], [5,8,3], [5,8,0], - [8,9,1], [8,8,0], [7,7,0], [7,9,1], [8,7,0], [7,7,0], [7,7,0], [8,9,1], - [8,7,0], [4,7,0], [5,8,1], [8,7,0], [6,7,0], [9,7,0], [8,7,0], [8,9,1], - [7,7,0], [8,10,2], [8,8,1], [5,9,1], [7,7,0], [8,8,1], [8,8,1], [11,8,1], - [8,7,0], [8,7,0], [6,7,0], [3,11,3], [5,4,-3], [2,11,3], [4,2,-5], [2,2,-5], - [2,4,-3], [5,6,1], [6,8,1], [5,6,1], [6,8,1], [5,6,1], [4,8,0], [5,8,3], - [6,7,0], [3,7,0], [4,10,3], [6,7,0], [3,7,0], [9,5,0], [6,5,0], [5,6,1], - [6,7,2], [6,7,2], [4,5,0], [4,6,1], [4,8,1], [6,6,1], [6,6,1], [8,6,1], - [6,5,0], [6,8,3], [5,5,0], [5,1,-2], [10,1,-2], [5,2,-5], [5,2,-5], [4,2,-5] - ], - cmmi10: [ - [8,7,0], [8,8,0], [8,9,1], [7,8,0], [8,7,0], [9,7,0], [9,7,0], [8,8,0], - [7,7,0], [7,7,0], [8,8,0], [7,6,1], [6,10,2], [6,8,3], [5,9,1], [4,6,1], - [5,10,3], [5,8,3], [5,9,1], [4,6,1], [6,6,1], [6,8,1], [6,8,3], [6,5,0], - [5,10,3], [6,6,1], [6,8,3], [6,6,1], [6,6,1], [6,6,1], [6,10,3], [6,8,3], - [7,10,3], [7,6,1], [5,6,1], [6,9,1], [9,6,1], [6,7,2], [5,7,2], [7,8,3], - [10,4,-2], [10,4,1], [10,4,-2], [10,4,1], [3,3,-2], [3,3,-2], [5,7,1], [5,7,1], - [5,6,1], [5,5,0], [5,5,0], [5,8,3], [5,7,2], [5,8,3], [5,8,1], [5,8,3], - [5,8,1], [5,8,3], [2,2,0], [3,4,2], [7,7,1], [5,11,3], [7,7,1], [5,5,0], - [6,9,1], [8,8,0], [8,7,0], [8,9,1], [9,7,0], [8,7,0], [8,7,0], [8,9,1], - [9,7,0], [5,7,0], [7,8,1], [9,7,0], [7,7,0], [11,7,0], [9,7,0], [8,9,1], - [8,7,0], [8,10,2], [8,8,1], [7,9,1], [8,7,0], [8,8,1], [8,8,1], [11,8,1], - [9,7,0], [8,7,0], [8,7,0], [4,9,1], [4,11,3], [4,11,3], [10,3,-1], [10,3,-1], - [4,9,1], [5,6,1], [5,8,1], [5,6,1], [6,8,1], [5,6,1], [6,11,3], [5,8,3], - [6,8,1], [3,8,1], [5,10,3], [6,8,1], [3,8,1], [9,6,1], [6,6,1], [5,6,1], - [6,7,2], [5,7,2], [5,6,1], [5,6,1], [4,8,1], [6,6,1], [5,6,1], [7,6,1], - [6,6,1], [5,8,3], [5,6,1], [3,6,1], [5,8,3], [7,8,3], [7,3,-5], [7,2,-5] - ], - cmsy10: [ - [7,1,-2], [2,3,-1], [7,5,0], [5,5,0], [8,7,1], [5,5,0], [8,7,0], [8,7,2], - [8,7,1], [8,7,1], [8,7,1], [8,7,1], [8,7,1], [10,11,3], [5,5,0], [5,5,0], - [8,5,0], [8,5,0], [7,9,2], [7,9,2], [7,9,2], [7,9,2], [7,9,2], [7,9,2], - [8,3,-1], [8,5,0], [7,7,1], [7,7,1], [10,7,1], [10,7,1], [7,7,1], [7,7,1], - [10,5,0], [10,5,0], [5,9,2], [5,9,2], [10,5,0], [10,9,2], [10,9,2], [8,5,0], - [10,7,1], [10,7,1], [6,9,2], [6,9,2], [10,7,1], [10,9,2], [10,9,2], [8,6,1], - [3,6,0], [10,6,1], [6,7,1], [6,7,1], [9,8,0], [9,8,3], [7,11,3], [2,5,0], - [6,8,1], [5,7,0], [7,4,0], [5,9,1], [8,9,1], [7,9,1], [8,7,0], [8,7,0], - [6,7,0], [8,9,1], [7,9,1], [6,9,1], [8,7,0], [6,9,1], [9,8,1], [7,10,2], - [9,8,1], [8,7,0], [9,9,2], [8,9,1], [7,9,1], [12,9,1], [11,9,1], [8,9,1], - [8,8,1], [8,10,2], [9,8,1], [7,9,1], [8,8,0], [8,8,1], [7,8,1], [11,8,1], - [9,7,0], [8,9,2], [8,7,0], [7,7,1], [7,7,1], [7,7,1], [7,7,1], [7,7,1], - [6,7,0], [6,7,0], [5,11,3], [3,11,3], [5,11,3], [3,11,3], [5,11,3], [5,11,3], - [4,11,3], [3,11,3], [2,11,3], [4,11,3], [5,11,3], [6,11,3], [5,11,3], [3,7,1], - [9,11,10], [8,7,0], [8,8,1], [5,11,3], [7,6,0], [7,6,0], [8,9,2], [7,9,2], - [4,11,3], [4,11,3], [4,11,3], [6,9,2], [8,10,2], [8,10,2], [8,9,1], [8,10,2] - ], - cmex10: [ - [5,13,12], [4,13,12], [4,13,12], [3,13,12], [5,13,12], [3,13,12], [5,13,12], [3,13,12], - [5,13,12], [5,13,12], [4,13,12], [4,13,12], [2,8,7], [5,8,7], [6,13,12], [6,13,12], - [6,19,18], [5,19,18], [7,25,24], [6,25,24], [6,25,24], [3,25,24], [6,25,24], [4,25,24], - [6,25,24], [4,25,24], [7,25,24], [7,25,24], [7,25,24], [7,25,24], [10,25,24], [10,25,24], - [8,31,30], [6,31,30], [6,31,30], [4,31,30], [7,31,30], [4,31,30], [7,31,30], [4,31,30], - [7,31,30], [7,31,30], [7,31,30], [7,31,30], [13,31,30], [13,31,30], [8,19,18], [8,19,18], - [9,19,18], [6,19,18], [7,19,18], [4,19,18], [7,19,18], [4,19,18], [4,8,7], [4,8,7], - [8,11,10], [6,11,10], [8,10,9], [6,10,9], [6,20,19], [8,20,19], [6,5,4], [4,8,7], - [9,19,18], [6,19,18], [5,8,7], [6,8,7], [6,19,18], [5,19,18], [8,11,10], [11,15,14], - [7,13,12], [10,24,23], [11,11,10], [15,15,14], [11,11,10], [15,15,14], [11,11,10], [15,15,14], - [10,11,10], [9,11,10], [7,13,12], [8,11,10], [8,11,10], [8,11,10], [8,11,10], [8,11,10], - [14,15,14], [13,15,14], [10,24,23], [11,15,14], [11,15,14], [11,15,14], [11,15,14], [11,15,14], - [9,11,10], [13,15,14], [7,3,-5], [12,3,-5], [16,3,-5], [6,2,-6], [10,2,-6], [15,2,-6], - [5,19,18], [3,19,18], [6,19,18], [4,19,18], [6,19,18], [4,19,18], [6,19,18], [6,19,18], - [11,13,12], [11,19,18], [11,25,24], [11,31,30], [8,19,18], [8,8,7], [11,7,6], [6,8,7], - [6,7,6], [6,7,6], [6,5,3], [6,5,3], [6,4,0], [6,4,0], [8,7,6], [8,7,6] - ], - cmbx10: [ - [7,7,0], [9,7,0], [9,8,1], [8,7,0], [8,7,0], [9,7,0], [8,7,0], [9,7,0], - [8,7,0], [9,7,0], [8,7,0], [8,7,0], [7,7,0], [7,7,0], [10,7,0], [10,7,0], - [3,5,0], [4,7,2], [4,3,-5], [5,3,-5], [5,2,-5], [5,2,-5], [5,2,-5], [6,3,-5], - [5,3,2], [6,8,1], [8,6,1], [9,6,1], [6,8,2], [11,7,0], [12,8,1], [9,9,1], - [4,3,-2], [3,8,0], [5,4,-3], [9,9,2], [6,9,1], [9,9,1], [9,9,1], [3,4,-3], - [4,11,3], [4,11,3], [5,5,-3], [9,9,2], [3,4,2], [4,2,-1], [3,2,0], [6,11,3], - [6,8,1], [5,7,0], [6,7,0], [6,8,1], [6,7,0], [6,8,1], [6,8,1], [6,8,1], - [6,8,1], [6,8,1], [3,5,0], [3,7,2], [3,8,3], [9,3,-1], [5,7,2], [5,7,0], - [9,8,1], [9,7,0], [8,7,0], [8,8,1], [9,7,0], [8,7,0], [7,7,0], [9,8,1], - [9,7,0], [5,7,0], [6,8,1], [9,7,0], [7,7,0], [11,7,0], [9,7,0], [8,8,1], - [8,7,0], [9,9,2], [9,8,1], [6,8,1], [8,7,0], [9,8,1], [9,8,1], [12,8,1], - [9,7,0], [9,7,0], [7,7,0], [3,11,3], [6,4,-3], [2,11,3], [5,2,-5], [3,2,-5], - [3,4,-3], [6,6,1], [6,8,1], [5,6,1], [7,8,1], [5,6,1], [5,7,0], [6,8,3], - [7,7,0], [3,7,0], [4,9,2], [6,7,0], [3,7,0], [10,5,0], [7,5,0], [6,6,1], - [6,7,2], [7,7,2], [5,5,0], [5,6,1], [4,8,1], [7,6,1], [6,6,1], [9,6,1], - [6,5,0], [6,7,2], [5,5,0], [6,1,-2], [12,1,-2], [5,3,-5], [5,2,-5], [5,2,-5] - ], - cmti10: [ - [8,7,0], [8,8,0], [8,9,1], [7,8,0], [8,7,0], [9,7,0], [8,7,0], [9,8,0], - [8,7,0], [9,7,0], [8,8,0], [9,11,3], [7,11,3], [8,11,3], [11,11,3], [11,11,3], - [4,6,1], [5,8,3], [5,2,-5], [6,2,-5], [6,2,-5], [6,2,-5], [6,1,-5], [7,3,-5], - [4,3,2], [7,11,3], [8,6,1], [8,6,1], [6,8,2], [10,7,0], [11,9,1], [9,9,1], - [4,2,-2], [4,8,0], [6,4,-3], [9,9,2], [7,9,1], [9,9,1], [9,9,1], [4,4,-3], - [6,11,3], [4,11,3], [6,5,-3], [8,7,1], [3,4,2], [4,2,-1], [3,2,0], [7,11,3], - [6,8,1], [5,7,0], [6,8,1], [6,8,1], [5,9,2], [6,8,1], [6,8,1], [7,8,1], - [6,8,1], [6,8,1], [4,5,0], [4,7,2], [4,8,3], [8,3,-1], [5,8,3], [6,8,0], - [8,9,1], [7,8,0], [8,7,0], [9,9,1], [8,7,0], [8,7,0], [8,7,0], [9,9,1], - [9,7,0], [6,7,0], [7,8,1], [9,7,0], [7,7,0], [11,7,0], [9,7,0], [8,9,1], - [8,7,0], [8,10,2], [8,8,1], [7,9,1], [9,7,0], [9,8,1], [9,8,1], [12,8,1], - [9,7,0], [9,7,0], [8,7,0], [5,11,3], [7,4,-3], [5,11,3], [6,2,-5], [4,2,-5], - [4,4,-3], [6,6,1], [5,8,1], [5,6,1], [6,8,1], [5,6,1], [6,11,3], [5,8,3], - [6,8,1], [4,8,1], [5,10,3], [6,8,1], [4,8,1], [9,6,1], [6,6,1], [6,6,1], - [6,7,2], [5,7,2], [5,6,1], [5,6,1], [4,8,1], [6,6,1], [5,6,1], [7,6,1], - [6,6,1], [6,8,3], [5,6,1], [6,1,-2], [11,1,-2], [6,2,-5], [6,2,-5], [6,2,-5] - ] -}); - -jsMath.Img.AddFont(85,{ - cmr10: [ - [7,9,0], [10,9,0], [9,10,1], [8,9,0], [8,9,0], [9,9,0], [8,9,0], [9,9,0], - [8,9,0], [9,9,0], [9,9,0], [8,9,0], [7,9,0], [7,9,0], [10,9,0], [10,9,0], - [3,6,0], [4,9,3], [4,3,-6], [5,3,-6], [5,2,-6], [5,3,-6], [6,2,-6], [6,3,-6], - [5,4,3], [6,10,1], [9,7,1], [9,7,1], [6,9,2], [11,9,0], [12,10,1], [9,10,1], - [4,2,-3], [3,9,0], [5,5,-4], [10,12,3], [6,10,1], [10,10,1], [9,10,1], [3,5,-4], - [4,12,3], [4,12,3], [6,6,-3], [9,8,1], [3,5,3], [4,1,-2], [3,2,0], [6,12,3], - [6,9,1], [6,8,0], [6,8,0], [6,9,1], [6,9,0], [6,9,1], [6,9,1], [6,10,1], - [6,9,1], [6,9,1], [3,6,0], [3,9,3], [3,9,3], [9,4,-1], [5,9,3], [5,9,0], - [9,10,1], [9,9,0], [8,9,0], [8,10,1], [9,9,0], [8,9,0], [8,9,0], [9,10,1], - [9,9,0], [4,9,0], [6,10,1], [9,9,0], [7,9,0], [11,9,0], [9,9,0], [9,10,1], - [8,9,0], [9,12,3], [9,10,1], [6,10,1], [9,9,0], [9,10,1], [9,10,1], [13,10,1], - [9,9,0], [9,9,0], [7,9,0], [4,12,3], [6,5,-4], [2,12,3], [5,3,-6], [3,3,-6], - [3,5,-4], [6,7,1], [7,10,1], [5,7,1], [7,10,1], [5,7,1], [5,9,0], [6,9,3], - [7,9,0], [3,9,0], [4,12,3], [7,9,0], [4,9,0], [10,6,0], [7,6,0], [6,7,1], - [7,9,3], [7,9,3], [5,6,0], [5,7,1], [4,9,1], [7,7,1], [7,7,1], [9,7,1], - [7,6,0], [7,9,3], [5,6,0], [6,1,-3], [12,1,-3], [6,3,-6], [5,3,-6], [5,3,-6] - ], - cmmi10: [ - [9,9,0], [10,9,0], [9,10,1], [8,9,0], [10,9,0], [11,9,0], [10,9,0], [9,9,0], - [8,9,0], [9,9,0], [10,9,0], [8,7,1], [8,12,3], [7,9,3], [6,10,1], [5,7,1], - [6,12,3], [6,9,3], [6,10,1], [4,7,1], [7,7,1], [7,10,1], [7,9,3], [7,6,0], - [6,12,3], [7,7,1], [7,9,3], [7,7,1], [7,7,1], [7,7,1], [7,12,3], [8,9,3], - [8,12,3], [8,7,1], [6,7,1], [7,10,1], [10,7,1], [7,9,3], [5,8,2], [8,9,3], - [12,5,-2], [12,5,1], [12,5,-2], [12,5,1], [3,4,-2], [3,4,-2], [6,8,1], [6,8,1], - [6,7,1], [6,6,0], [6,6,0], [6,9,3], [6,9,3], [6,9,3], [6,9,1], [6,9,3], - [6,9,1], [6,9,3], [3,2,0], [3,5,3], [9,8,1], [6,12,3], [9,8,1], [6,6,0], - [7,10,1], [9,9,0], [10,9,0], [10,10,1], [10,9,0], [10,9,0], [10,9,0], [10,10,1], - [11,9,0], [6,9,0], [8,10,1], [11,9,0], [8,9,0], [13,9,0], [11,9,0], [9,10,1], - [10,9,0], [9,12,3], [10,10,1], [8,10,1], [9,9,0], [10,10,1], [10,10,1], [13,10,1], - [11,9,0], [10,9,0], [9,9,0], [4,10,1], [4,12,3], [4,12,3], [12,4,-1], [12,4,-1], - [5,10,1], [6,7,1], [5,10,1], [6,7,1], [7,10,1], [6,7,1], [7,12,3], [6,9,3], - [7,10,1], [4,9,1], [6,11,3], [7,10,1], [4,10,1], [11,7,1], [7,7,1], [6,7,1], - [7,9,3], [6,9,3], [6,7,1], [6,7,1], [4,9,1], [7,7,1], [6,7,1], [9,7,1], - [7,7,1], [6,9,3], [6,7,1], [4,7,1], [6,9,3], [8,9,3], [8,3,-6], [8,2,-6] - ], - cmsy10: [ - [9,2,-2], [3,2,-2], [8,6,0], [6,6,0], [9,8,1], [6,6,0], [9,8,0], [9,8,2], - [9,8,1], [9,8,1], [9,8,1], [9,8,1], [9,8,1], [12,12,3], [6,6,0], [6,6,0], - [9,6,0], [9,6,0], [9,10,2], [9,10,2], [9,10,2], [9,10,2], [9,10,2], [9,10,2], - [9,4,-1], [9,6,0], [9,8,1], [9,8,1], [12,8,1], [12,8,1], [9,8,1], [9,8,1], - [12,6,0], [12,6,0], [6,12,3], [6,12,3], [12,6,0], [12,12,3], [12,12,3], [9,6,0], - [12,8,1], [12,8,1], [7,12,3], [7,12,3], [12,8,1], [12,12,3], [12,12,3], [9,7,1], - [4,7,0], [12,7,1], [7,8,1], [7,8,1], [10,9,0], [10,9,3], [8,12,3], [2,6,0], - [7,10,1], [6,9,0], [8,4,-1], [6,11,1], [9,10,1], [9,10,1], [9,8,0], [9,8,0], - [7,9,0], [10,10,1], [8,10,1], [7,10,1], [10,9,0], [7,10,1], [10,10,1], [8,11,2], - [10,10,1], [9,9,0], [11,11,2], [9,10,1], [8,10,1], [14,10,1], [13,11,1], [10,10,1], - [9,10,1], [10,11,2], [11,10,1], [8,10,1], [10,9,0], [10,10,1], [8,10,1], [13,10,1], - [10,9,0], [9,11,2], [10,9,0], [8,9,1], [8,9,1], [8,9,1], [8,9,1], [8,9,1], - [7,9,0], [7,9,0], [6,12,3], [4,12,3], [6,12,3], [4,12,3], [6,12,3], [6,12,3], - [4,12,3], [4,12,3], [2,12,3], [5,12,3], [6,14,4], [7,14,4], [6,12,3], [3,8,1], - [11,13,12], [9,9,0], [10,10,1], [6,12,3], [8,8,0], [8,8,0], [9,10,2], [9,10,2], - [5,12,3], [5,12,3], [5,12,3], [7,12,3], [9,11,2], [9,11,2], [9,10,1], [9,11,2] - ], - cmex10: [ - [5,15,14], [4,15,14], [5,15,14], [3,15,14], [6,15,14], [4,15,14], [6,15,14], [4,15,14], - [6,15,14], [6,15,14], [5,15,14], [5,15,14], [3,9,8], [5,9,8], [7,15,14], [7,15,14], - [7,23,22], [5,23,22], [9,30,29], [7,30,29], [7,30,29], [4,30,29], [7,30,29], [4,30,29], - [7,30,29], [4,30,29], [8,30,29], [8,30,29], [8,30,29], [8,30,29], [12,30,29], [12,30,29], - [10,37,36], [7,37,36], [7,37,36], [4,37,36], [8,37,36], [5,37,36], [8,37,36], [5,37,36], - [8,37,36], [8,37,36], [9,37,36], [8,37,36], [15,37,36], [15,37,36], [10,23,22], [10,23,22], - [11,23,22], [7,23,22], [8,23,22], [5,23,22], [8,23,22], [5,23,22], [5,9,8], [5,9,8], - [9,12,11], [7,12,11], [9,12,11], [7,12,11], [7,23,22], [9,23,22], [7,5,4], [5,9,8], - [11,23,22], [7,23,22], [5,9,8], [7,9,8], [7,23,22], [6,23,22], [10,13,12], [13,18,17], - [8,15,14], [12,28,27], [13,13,12], [18,18,17], [13,13,12], [18,18,17], [13,13,12], [18,18,17], - [12,13,12], [11,13,12], [8,15,14], [10,13,12], [10,13,12], [10,13,12], [10,13,12], [10,13,12], - [17,18,17], [15,18,17], [12,28,27], [13,18,17], [13,18,17], [13,18,17], [13,18,17], [13,18,17], - [11,13,12], [15,18,17], [8,3,-6], [14,4,-6], [19,4,-6], [7,2,-7], [12,2,-7], [18,2,-7], - [6,23,22], [3,23,22], [7,23,22], [4,23,22], [7,23,22], [4,23,22], [7,23,22], [7,23,22], - [13,15,14], [13,23,22], [13,30,29], [13,37,36], [9,23,22], [9,9,8], [13,8,7], [7,9,8], - [7,9,8], [7,9,8], [7,5,3], [7,5,3], [7,5,0], [7,5,0], [9,9,8], [9,9,8] - ], - cmbx10: [ - [8,9,0], [11,9,0], [10,10,1], [10,9,0], [9,9,0], [11,9,0], [10,9,0], [10,9,0], - [10,9,0], [10,9,0], [10,9,0], [9,9,0], [8,9,0], [8,9,0], [12,9,0], [12,9,0], - [4,6,0], [5,9,3], [5,3,-6], [6,3,-6], [6,2,-6], [6,3,-6], [6,2,-6], [7,3,-6], - [6,4,3], [7,10,1], [10,7,1], [11,7,1], [7,9,2], [13,9,0], [14,10,1], [10,10,1], - [4,2,-3], [4,9,0], [6,5,-4], [11,12,3], [7,10,1], [11,10,1], [11,10,1], [4,5,-4], - [5,12,3], [5,12,3], [6,6,-3], [10,10,2], [3,5,3], [4,2,-2], [3,2,0], [7,12,3], - [7,9,1], [6,8,0], [7,8,0], [7,9,1], [7,8,0], [7,9,1], [7,9,1], [7,10,1], - [7,9,1], [7,9,1], [3,6,0], [3,9,3], [4,9,3], [10,4,-1], [6,9,3], [6,9,0], - [10,10,1], [10,9,0], [10,9,0], [10,10,1], [10,9,0], [9,9,0], [9,9,0], [11,10,1], - [11,9,0], [5,9,0], [7,10,1], [11,9,0], [8,9,0], [13,9,0], [11,9,0], [10,10,1], - [9,9,0], [10,12,3], [11,10,1], [7,10,1], [10,9,0], [11,10,1], [11,10,1], [14,10,1], - [11,9,0], [11,9,0], [8,9,0], [4,12,3], [7,5,-4], [3,12,3], [6,3,-6], [3,3,-6], - [3,5,-4], [7,7,1], [8,10,1], [6,7,1], [8,10,1], [6,7,1], [6,9,0], [7,9,3], - [8,9,0], [4,9,0], [5,12,3], [8,9,0], [4,9,0], [12,6,0], [8,6,0], [7,7,1], - [8,9,3], [8,9,3], [6,6,0], [5,7,1], [5,9,1], [8,7,1], [7,7,1], [10,7,1], - [8,6,0], [7,9,3], [6,6,0], [7,1,-3], [14,1,-3], [6,3,-6], [6,2,-7], [6,3,-6] - ], - cmti10: [ - [9,9,0], [10,9,0], [10,10,1], [8,9,0], [10,9,0], [11,9,0], [10,9,0], [10,9,0], - [9,9,0], [10,9,0], [10,9,0], [11,12,3], [9,12,3], [9,12,3], [12,12,3], [13,12,3], - [4,7,1], [5,9,3], [6,3,-6], [7,3,-6], [7,2,-6], [7,3,-6], [7,2,-6], [9,3,-6], - [5,4,3], [8,12,3], [9,7,1], [9,7,1], [7,9,2], [12,9,0], [13,10,1], [10,10,1], - [5,2,-3], [5,9,0], [7,5,-4], [10,12,3], [9,10,1], [11,10,1], [10,10,1], [5,5,-4], - [7,12,3], [5,12,3], [7,6,-3], [10,8,1], [3,5,3], [5,1,-2], [3,2,0], [8,12,3], - [7,9,1], [6,8,0], [7,9,1], [7,9,1], [6,11,3], [7,9,1], [7,9,1], [8,9,1], - [7,9,1], [7,9,1], [4,6,0], [4,9,3], [4,9,3], [10,4,-1], [6,9,3], [7,9,0], - [10,10,1], [9,9,0], [9,9,0], [10,10,1], [10,9,0], [9,9,0], [9,9,0], [10,10,1], - [11,9,0], [7,9,0], [8,10,1], [11,9,0], [8,9,0], [13,9,0], [11,9,0], [10,10,1], - [9,9,0], [10,12,3], [9,10,1], [8,10,1], [10,9,0], [11,10,1], [11,10,1], [14,10,1], - [10,9,0], [11,9,0], [9,9,0], [6,12,3], [8,5,-4], [6,12,3], [7,3,-6], [5,3,-6], - [5,5,-4], [7,7,1], [6,10,1], [6,7,1], [7,10,1], [6,7,1], [7,12,3], [6,9,3], - [7,10,1], [4,9,1], [6,11,3], [7,10,1], [4,10,1], [11,7,1], [8,7,1], [7,7,1], - [7,9,3], [6,9,3], [6,7,1], [6,7,1], [5,9,1], [7,7,1], [6,7,1], [9,7,1], - [7,7,1], [7,9,3], [6,7,1], [7,1,-3], [13,1,-3], [7,3,-6], [7,3,-6], [7,3,-6] - ] -}); - -jsMath.Img.AddFont(100,{ - cmr10: [ - [9,10,0], [11,11,0], [11,11,1], [10,11,0], [9,10,0], [11,10,0], [10,10,0], [11,10,0], - [10,10,0], [11,10,0], [10,10,0], [9,10,0], [8,10,0], [8,10,0], [12,10,0], [12,10,0], - [4,7,0], [4,10,3], [5,3,-7], [6,3,-7], [6,2,-7], [6,3,-7], [7,2,-7], [7,4,-7], - [6,4,3], [7,11,1], [10,8,1], [11,8,1], [7,10,2], [13,10,0], [14,11,1], [11,12,1], - [4,3,-3], [3,11,0], [5,5,-5], [11,13,3], [7,12,1], [11,12,1], [11,12,1], [3,5,-5], - [5,15,4], [5,15,4], [7,7,-4], [11,11,2], [3,5,3], [4,2,-2], [3,2,0], [7,15,4], - [7,11,1], [6,10,0], [7,10,0], [7,11,1], [7,10,0], [7,11,1], [7,11,1], [7,11,1], - [7,11,1], [7,11,1], [3,7,0], [3,10,3], [3,11,4], [11,5,-1], [6,10,3], [6,10,0], - [11,11,1], [11,11,0], [10,10,0], [10,11,1], [10,10,0], [10,10,0], [9,10,0], [11,11,1], - [11,10,0], [5,10,0], [7,11,1], [11,10,0], [9,10,0], [13,10,0], [11,10,0], [11,11,1], - [9,10,0], [11,13,3], [11,11,1], [7,11,1], [10,10,0], [11,11,1], [11,11,1], [15,11,1], - [11,10,0], [11,10,0], [8,10,0], [4,15,4], [7,5,-5], [3,15,4], [6,3,-7], [3,3,-7], - [3,5,-5], [7,8,1], [8,11,1], [6,8,1], [8,11,1], [6,8,1], [5,10,0], [7,10,3], - [8,10,0], [4,10,0], [4,13,3], [8,10,0], [4,10,0], [12,7,0], [8,7,0], [7,8,1], - [8,10,3], [8,10,3], [6,7,0], [6,8,1], [5,10,1], [8,8,1], [8,8,1], [10,8,1], - [8,7,0], [8,10,3], [6,7,0], [7,1,-3], [14,1,-3], [6,3,-7], [6,2,-8], [6,3,-7] - ], - cmmi10: [ - [11,10,0], [12,11,0], [11,11,1], [10,11,0], [11,10,0], [13,10,0], [12,10,0], [10,10,0], - [9,10,0], [10,10,0], [11,10,0], [9,8,1], [9,13,3], [8,11,4], [7,11,1], [6,8,1], - [7,13,3], [7,11,4], [7,11,1], [5,8,1], [8,8,1], [8,11,1], [9,11,4], [8,7,0], - [7,13,3], [8,8,1], [8,11,4], [8,8,1], [8,8,1], [8,8,1], [9,13,3], [9,10,3], - [9,13,3], [9,8,1], [6,8,1], [8,11,1], [12,8,1], [8,10,3], [6,9,2], [9,11,4], - [14,5,-3], [14,5,1], [14,5,-3], [14,5,1], [4,4,-3], [4,4,-3], [7,9,1], [7,9,1], - [7,8,1], [6,7,0], [7,7,0], [7,11,4], [7,10,3], [7,11,4], [7,11,1], [7,11,4], - [7,11,1], [7,11,4], [3,2,0], [3,5,3], [10,9,1], [7,15,4], [10,9,1], [7,7,0], - [8,12,1], [11,11,0], [11,10,0], [11,11,1], [12,10,0], [11,10,0], [11,10,0], [11,11,1], - [13,10,0], [7,10,0], [9,11,1], [13,10,0], [9,10,0], [15,10,0], [13,10,0], [11,11,1], - [11,10,0], [11,13,3], [11,11,1], [10,11,1], [10,10,0], [11,11,1], [11,11,1], [15,11,1], - [12,10,0], [11,10,0], [11,10,0], [5,12,1], [5,15,4], [5,15,4], [14,5,-1], [14,5,-1], - [6,11,1], [7,8,1], [6,11,1], [7,8,1], [8,11,1], [7,8,1], [8,13,3], [7,10,3], - [8,11,1], [5,11,1], [7,13,3], [8,11,1], [4,11,1], [12,8,1], [8,8,1], [7,8,1], - [8,10,3], [7,10,3], [7,8,1], [6,8,1], [5,10,1], [8,8,1], [7,8,1], [10,8,1], - [8,8,1], [7,10,3], [7,8,1], [5,8,1], [7,10,3], [9,11,4], [9,3,-7], [10,3,-7] - ], - cmsy10: [ - [10,1,-3], [3,3,-2], [9,7,0], [7,7,0], [11,9,1], [7,7,0], [11,10,0], [11,10,3], - [11,11,2], [11,11,2], [11,11,2], [11,11,2], [11,11,2], [14,15,4], [7,7,0], [7,7,0], - [11,7,0], [11,7,0], [10,11,2], [10,11,2], [10,11,2], [10,11,2], [10,11,2], [10,11,2], - [11,5,-1], [11,7,0], [10,9,1], [10,9,1], [14,9,1], [14,9,1], [10,9,1], [10,9,1], - [14,5,-1], [14,5,-1], [6,13,3], [6,13,3], [14,5,-1], [14,13,3], [14,13,3], [11,7,0], - [14,9,1], [14,9,1], [9,13,3], [9,13,3], [14,9,1], [14,13,3], [14,13,3], [11,8,1], - [4,8,0], [14,8,1], [9,9,1], [9,9,1], [12,11,0], [12,11,4], [9,15,4], [2,7,0], - [8,11,1], [7,10,0], [9,4,-1], [7,13,2], [10,12,1], [10,11,1], [11,10,0], [11,10,0], - [8,10,0], [12,12,1], [10,11,1], [8,11,1], [11,10,0], [8,11,1], [12,11,1], [9,12,2], - [12,11,1], [10,10,0], [12,12,2], [11,11,1], [10,11,1], [16,11,1], [15,12,1], [11,11,1], - [11,11,1], [12,12,2], [12,11,1], [9,11,1], [12,11,0], [11,11,1], [10,11,1], [15,11,1], - [12,10,0], [11,12,2], [11,10,0], [9,10,1], [9,10,1], [9,10,1], [9,10,1], [9,10,1], - [8,10,0], [8,10,0], [6,15,4], [4,15,4], [6,15,4], [4,15,4], [6,15,4], [6,15,4], - [5,15,4], [4,15,4], [3,15,4], [6,15,4], [6,15,4], [9,15,4], [7,15,4], [4,11,2], - [12,15,14], [10,10,0], [11,11,1], [7,15,4], [9,9,0], [9,9,0], [10,11,2], [10,11,2], - [6,13,3], [6,14,4], [6,13,3], [9,13,3], [11,13,2], [11,14,3], [11,12,1], [11,13,2] - ], - cmex10: [ - [6,18,17], [5,18,17], [6,18,17], [3,18,17], [7,18,17], [4,18,17], [7,18,17], [4,18,17], - [7,18,17], [7,18,17], [6,18,17], [6,18,17], [3,10,9], [6,10,9], [8,18,17], [8,18,17], - [8,26,25], [6,26,25], [10,35,34], [8,35,34], [8,35,34], [4,35,34], [8,35,34], [5,35,34], - [8,35,34], [5,35,34], [9,35,34], [9,35,34], [10,35,34], [9,35,34], [14,35,34], [14,35,34], - [11,43,42], [8,43,42], [8,43,42], [5,43,42], [9,43,42], [6,43,42], [9,43,42], [6,43,42], - [10,43,42], [10,43,42], [10,43,42], [10,43,42], [18,43,42], [18,43,42], [11,26,25], [11,26,25], - [12,26,25], [9,26,25], [10,26,25], [5,26,25], [10,26,25], [5,26,25], [6,10,9], [5,10,9], - [11,14,13], [8,14,13], [11,14,13], [8,14,13], [8,27,26], [11,27,26], [8,6,5], [5,10,9], - [12,26,25], [9,26,25], [6,10,9], [9,10,9], [8,26,25], [7,26,25], [11,15,14], [15,21,20], - [9,17,16], [14,33,32], [15,15,14], [21,21,20], [15,15,14], [21,21,20], [15,15,14], [21,21,20], - [14,15,14], [13,15,14], [9,17,16], [11,15,14], [11,15,14], [11,15,14], [11,15,14], [11,15,14], - [20,21,20], [18,21,20], [14,33,32], [15,21,20], [15,21,20], [15,21,20], [15,21,20], [15,21,20], - [13,15,14], [18,21,20], [9,4,-7], [16,3,-8], [22,3,-8], [8,3,-8], [14,3,-8], [21,3,-8], - [7,26,25], [4,26,25], [8,26,25], [5,26,25], [8,26,25], [5,26,25], [8,26,25], [8,26,25], - [15,18,17], [15,26,25], [15,35,34], [15,43,42], [11,27,26], [11,10,9], [16,10,9], [8,10,9], - [8,10,9], [8,10,9], [8,5,3], [8,5,3], [8,5,0], [8,5,0], [11,10,9], [11,10,9] - ], - cmbx10: [ - [9,10,0], [13,10,0], [12,11,1], [11,10,0], [11,10,0], [13,10,0], [11,10,0], [12,10,0], - [11,10,0], [12,10,0], [11,10,0], [11,10,0], [9,10,0], [9,10,0], [13,10,0], [13,10,0], - [4,7,0], [5,10,3], [5,3,-7], [7,3,-7], [7,3,-7], [7,3,-7], [7,2,-7], [8,3,-7], - [7,4,3], [8,11,1], [12,8,1], [13,8,1], [8,10,2], [15,10,0], [16,11,1], [12,12,1], - [5,3,-3], [4,10,0], [7,6,-4], [13,13,3], [8,12,1], [13,12,1], [12,11,1], [4,6,-4], - [6,15,4], [5,15,4], [7,7,-4], [12,11,2], [4,6,3], [5,2,-2], [4,3,0], [8,15,4], - [8,11,1], [7,10,0], [8,10,0], [8,11,1], [8,10,0], [8,11,1], [8,11,1], [8,11,1], - [8,11,1], [8,11,1], [4,7,0], [4,10,3], [4,10,3], [12,5,-1], [7,10,3], [7,10,0], - [12,11,1], [12,10,0], [11,10,0], [11,11,1], [12,10,0], [11,10,0], [10,10,0], [12,11,1], - [13,10,0], [6,10,0], [8,11,1], [12,10,0], [9,10,0], [15,10,0], [13,10,0], [12,11,1], - [11,10,0], [12,13,3], [13,11,1], [9,11,1], [11,10,0], [12,11,1], [12,11,1], [17,11,1], - [12,10,0], [12,10,0], [10,10,0], [5,15,4], [8,6,-4], [3,15,4], [7,3,-7], [4,3,-7], - [4,6,-4], [8,8,1], [9,11,1], [7,8,1], [9,11,1], [7,8,1], [7,10,0], [8,10,3], - [9,10,0], [4,10,0], [5,13,3], [9,10,0], [5,10,0], [14,7,0], [9,7,0], [8,8,1], - [9,10,3], [9,10,3], [7,7,0], [6,8,1], [6,10,1], [9,8,1], [9,8,1], [12,8,1], - [9,7,0], [9,10,3], [7,7,0], [9,2,-3], [17,2,-3], [7,3,-7], [7,2,-8], [7,3,-7] - ], - cmti10: [ - [10,10,0], [11,11,0], [12,11,1], [9,11,0], [11,10,0], [12,10,0], [11,10,0], [12,10,0], - [11,10,0], [12,10,0], [11,10,0], [12,13,3], [10,13,3], [10,13,3], [14,13,3], [15,13,3], - [5,8,1], [6,10,3], [7,3,-7], [8,3,-7], [8,2,-7], [8,3,-7], [8,2,-7], [10,4,-7], - [5,4,3], [10,13,3], [11,8,1], [11,8,1], [8,10,2], [14,10,0], [15,11,1], [12,12,1], - [5,3,-3], [6,11,0], [8,5,-5], [12,13,3], [10,11,1], [12,12,1], [12,12,1], [6,5,-5], - [8,15,4], [6,15,4], [9,7,-4], [11,9,1], [4,5,3], [5,2,-2], [4,2,0], [9,15,4], - [8,11,1], [7,10,0], [8,11,1], [8,11,1], [7,13,3], [8,11,1], [8,11,1], [9,11,1], - [8,11,1], [8,11,1], [5,7,0], [5,10,3], [5,11,4], [11,5,-1], [7,11,4], [8,11,0], - [12,11,1], [10,11,0], [11,10,0], [12,11,1], [11,10,0], [11,10,0], [11,10,0], [12,11,1], - [12,10,0], [8,10,0], [9,11,1], [13,10,0], [9,10,0], [15,10,0], [12,10,0], [12,11,1], - [11,10,0], [12,13,3], [11,11,1], [9,11,1], [12,10,0], [12,11,1], [13,11,1], [16,11,1], - [12,10,0], [13,10,0], [10,10,0], [7,15,4], [9,5,-5], [7,15,4], [8,3,-7], [6,3,-7], - [6,5,-5], [8,8,1], [7,11,1], [7,8,1], [8,11,1], [7,8,1], [8,13,3], [7,10,3], - [8,11,1], [5,11,1], [6,13,3], [8,11,1], [5,11,1], [12,8,1], [9,8,1], [8,8,1], - [8,10,3], [7,10,3], [7,8,1], [6,8,1], [6,10,1], [8,8,1], [7,8,1], [10,8,1], - [8,8,1], [8,10,3], [7,8,1], [8,1,-3], [15,1,-3], [9,3,-7], [9,3,-7], [8,3,-7] - ] -}); - -jsMath.Img.AddFont(120,{ - cmr10: [ - [10,12,0], [14,13,0], [13,13,1], [12,13,0], [11,12,0], [13,12,0], [12,12,0], [13,12,0], - [12,12,0], [13,12,0], [12,12,0], [11,12,0], [9,12,0], [9,12,0], [14,12,0], [14,12,0], - [5,8,0], [5,12,4], [5,4,-8], [7,4,-8], [7,3,-8], [7,4,-8], [8,2,-9], [8,4,-9], - [7,5,4], [8,13,1], [12,9,1], [13,9,1], [8,12,2], [15,12,0], [17,13,1], [13,14,1], - [5,3,-4], [4,13,0], [6,6,-6], [14,16,4], [8,14,1], [14,14,1], [13,14,1], [4,6,-6], - [6,18,5], [5,18,5], [8,8,-5], [13,12,2], [4,6,4], [5,2,-3], [4,2,0], [8,18,5], - [8,13,1], [8,12,0], [8,12,0], [8,13,1], [8,12,0], [8,13,1], [8,13,1], [9,13,1], - [8,13,1], [8,13,1], [4,8,0], [4,12,4], [4,13,4], [13,5,-2], [8,13,4], [8,12,0], - [13,13,1], [13,13,0], [12,12,0], [12,13,1], [13,12,0], [12,12,0], [11,12,0], [13,13,1], - [13,12,0], [6,12,0], [8,13,1], [13,12,0], [10,12,0], [15,12,0], [13,12,0], [13,13,1], - [11,12,0], [13,16,4], [13,13,1], [9,13,1], [12,12,0], [13,13,1], [13,13,1], [18,13,1], - [13,12,0], [13,12,0], [10,12,0], [5,18,5], [8,6,-6], [3,18,5], [7,3,-9], [4,3,-9], - [4,6,-6], [9,9,1], [9,13,1], [8,9,1], [9,13,1], [8,9,1], [7,12,0], [9,12,4], - [10,12,0], [5,12,0], [5,16,4], [9,12,0], [5,12,0], [14,8,0], [10,8,0], [8,9,1], - [9,12,4], [9,12,4], [7,8,0], [7,9,1], [6,12,1], [10,9,1], [9,9,1], [12,9,1], - [9,8,0], [9,12,4], [7,8,0], [9,1,-4], [17,1,-4], [8,4,-8], [8,3,-9], [7,3,-9] - ], - cmmi10: [ - [13,12,0], [14,13,0], [13,13,1], [12,13,0], [14,12,0], [15,12,0], [14,12,0], [12,12,0], - [11,12,0], [12,12,0], [14,12,0], [11,9,1], [11,16,4], [10,12,4], [8,14,1], [7,9,1], - [9,16,4], [9,12,4], [8,13,1], [6,9,1], [10,9,1], [10,13,1], [10,12,4], [9,8,0], - [8,16,4], [10,9,1], [9,12,4], [10,9,1], [9,9,1], [9,9,1], [10,16,4], [11,12,4], - [11,16,4], [11,9,1], [8,9,1], [10,13,1], [14,9,1], [9,12,4], [7,10,2], [11,12,4], - [17,6,-3], [17,6,1], [17,6,-3], [17,6,1], [4,5,-3], [4,5,-3], [9,10,1], [9,10,1], - [8,9,1], [8,8,0], [8,8,0], [8,12,4], [8,12,4], [8,12,4], [8,13,1], [9,12,4], - [8,13,1], [8,12,4], [4,2,0], [4,6,4], [12,11,1], [8,18,5], [12,11,1], [9,9,0], - [10,14,1], [13,13,0], [13,12,0], [13,13,1], [14,12,0], [14,12,0], [13,12,0], [13,13,1], - [15,12,0], [9,12,0], [11,13,1], [16,12,0], [11,12,0], [18,12,0], [15,12,0], [13,13,1], - [13,12,0], [13,16,4], [13,13,1], [11,13,1], [12,12,0], [13,13,1], [14,13,1], [18,13,1], - [15,12,0], [13,12,0], [13,12,0], [6,14,1], [6,17,4], [6,17,4], [17,5,-2], [17,5,-2], - [7,13,1], [9,9,1], [8,13,1], [8,9,1], [9,13,1], [8,9,1], [10,16,4], [9,12,4], - [10,13,1], [5,13,1], [8,16,4], [9,13,1], [5,13,1], [15,9,1], [10,9,1], [8,9,1], - [10,12,4], [8,12,4], [8,9,1], [8,9,1], [6,12,1], [10,9,1], [8,9,1], [12,9,1], - [9,9,1], [9,12,4], [8,9,1], [5,9,1], [8,12,4], [11,12,4], [11,5,-8], [12,3,-9] - ], - cmsy10: [ - [12,2,-3], [4,3,-3], [11,9,0], [8,8,0], [13,11,1], [9,9,0], [13,12,0], [13,12,3], - [13,12,2], [13,12,2], [13,12,2], [13,12,2], [13,12,2], [17,17,4], [8,8,0], [8,8,0], - [13,9,0], [13,8,0], [12,14,3], [12,14,3], [12,14,3], [12,14,3], [12,14,3], [12,14,3], - [13,5,-2], [13,9,0], [12,11,1], [12,11,1], [17,12,2], [17,12,2], [12,11,1], [12,11,1], - [17,7,-1], [17,7,-1], [8,16,4], [8,16,4], [17,7,-1], [17,16,4], [17,16,4], [13,8,0], - [17,10,1], [17,10,1], [10,16,4], [10,16,4], [17,10,1], [17,16,4], [17,16,4], [13,9,1], - [5,10,0], [17,9,1], [10,11,1], [10,11,1], [15,13,0], [15,13,4], [11,17,4], [3,7,-1], - [10,13,1], [9,12,0], [11,6,-1], [8,16,2], [13,14,1], [12,13,1], [13,12,0], [13,12,0], - [10,12,0], [14,14,1], [12,13,1], [10,13,1], [14,12,0], [10,13,1], [15,13,1], [11,15,3], - [14,13,1], [12,12,0], [15,15,3], [13,13,1], [12,13,1], [19,13,1], [18,15,1], [14,13,1], - [13,13,1], [14,15,3], [15,13,1], [11,13,1], [14,13,0], [13,13,1], [12,13,1], [18,13,1], - [14,12,0], [13,15,3], [14,12,0], [11,12,1], [11,12,1], [11,12,1], [11,12,1], [11,12,1], - [10,12,0], [10,12,0], [8,18,5], [5,18,5], [8,18,5], [5,18,5], [8,18,5], [8,18,5], - [6,18,5], [5,18,5], [3,18,5], [7,18,5], [8,19,5], [10,19,5], [8,18,5], [4,12,2], - [15,18,17], [13,12,0], [14,13,1], [8,17,4], [11,11,0], [11,11,0], [13,14,3], [12,14,3], - [7,16,4], [7,16,4], [7,16,4], [10,16,4], [13,16,3], [13,16,3], [13,14,1], [13,16,3] - ], - cmex10: [ - [8,21,20], [6,21,20], [7,21,20], [4,21,20], [8,21,20], [5,21,20], [8,21,20], [5,21,20], - [8,21,20], [8,21,20], [7,21,20], [7,21,20], [4,12,11], [7,12,11], [9,21,20], [9,21,20], - [10,31,30], [8,31,30], [12,42,41], [9,42,41], [9,42,41], [5,42,41], [10,42,41], [6,42,41], - [10,42,41], [6,42,41], [11,42,41], [11,42,41], [12,42,41], [11,42,41], [17,42,41], [17,42,41], - [13,52,51], [10,52,51], [10,52,51], [6,52,51], [11,52,51], [7,52,51], [11,52,51], [7,52,51], - [12,52,51], [12,52,51], [12,52,51], [12,52,51], [21,52,51], [21,52,51], [13,31,30], [13,31,30], - [15,32,31], [10,32,31], [12,31,30], [6,31,30], [12,31,30], [6,31,30], [7,12,11], [6,12,11], - [13,17,16], [9,17,16], [13,17,16], [9,17,16], [9,32,31], [13,32,31], [9,7,6], [7,12,11], - [15,31,30], [10,31,30], [7,12,11], [10,12,11], [9,31,30], [9,31,30], [14,18,17], [18,25,24], - [11,20,19], [17,39,38], [18,18,17], [25,25,24], [18,18,17], [25,25,24], [18,18,17], [25,25,24], - [17,18,17], [16,18,17], [11,20,19], [14,18,17], [14,18,17], [14,18,17], [14,18,17], [14,18,17], - [24,25,24], [21,25,24], [17,39,38], [18,25,24], [18,25,24], [18,25,24], [18,25,24], [18,25,24], - [16,18,17], [21,25,24], [11,4,-9], [19,5,-9], [26,5,-9], [10,3,-10], [17,3,-10], [25,3,-10], - [8,31,30], [5,31,30], [9,31,30], [6,31,30], [9,31,30], [6,31,30], [10,31,30], [10,31,30], - [18,21,20], [18,31,30], [18,42,41], [18,52,51], [13,32,31], [13,12,11], [19,11,10], [9,12,11], - [10,12,11], [10,12,11], [9,7,4], [10,7,4], [9,6,0], [10,6,0], [13,12,11], [13,12,11] - ], - cmbx10: [ - [11,12,0], [16,12,0], [15,13,1], [13,12,0], [13,12,0], [15,12,0], [14,12,0], [15,12,0], - [14,12,0], [15,12,0], [14,12,0], [13,12,0], [11,12,0], [11,12,0], [16,12,0], [16,12,0], - [5,8,0], [6,12,4], [6,4,-8], [8,4,-8], [8,4,-8], [8,4,-8], [9,2,-9], [10,3,-9], - [8,5,4], [10,13,1], [14,9,1], [15,9,1], [10,12,2], [18,12,0], [20,13,1], [15,15,2], - [6,3,-4], [5,12,0], [8,7,-5], [16,16,4], [9,14,1], [16,14,1], [15,13,1], [5,7,-5], - [7,18,5], [6,18,5], [9,8,-5], [15,14,3], [5,7,4], [6,3,-2], [5,3,0], [9,18,5], - [9,13,1], [9,12,0], [9,12,0], [9,13,1], [10,12,0], [9,13,1], [9,13,1], [10,13,1], - [9,13,1], [9,13,1], [5,8,0], [5,12,4], [5,13,4], [15,6,-1], [9,13,4], [9,12,0], - [15,13,1], [15,12,0], [13,12,0], [14,13,1], [14,12,0], [13,12,0], [12,12,0], [15,13,1], - [15,12,0], [7,12,0], [9,13,1], [15,12,0], [11,12,0], [18,12,0], [15,12,0], [14,13,1], - [13,12,0], [14,16,4], [15,13,1], [10,13,1], [13,12,0], [15,13,1], [15,13,1], [20,13,1], - [15,12,0], [15,12,0], [11,12,0], [5,18,5], [10,7,-5], [4,18,5], [8,3,-9], [5,3,-9], - [5,7,-5], [10,9,1], [11,13,1], [9,9,1], [11,13,1], [9,9,1], [8,12,0], [10,12,4], - [11,12,0], [5,12,0], [6,16,4], [10,12,0], [5,12,0], [16,8,0], [11,8,0], [10,9,1], - [11,12,4], [11,12,4], [8,8,0], [8,9,1], [7,12,1], [11,9,1], [10,9,1], [14,9,1], - [10,8,0], [10,12,4], [8,8,0], [10,1,-4], [20,1,-4], [9,5,-8], [9,3,-9], [8,3,-9] - ], - cmti10: [ - [13,12,0], [13,13,0], [14,13,1], [11,13,0], [13,12,0], [15,12,0], [14,12,0], [15,12,0], - [13,12,0], [15,12,0], [13,12,0], [14,16,4], [12,16,4], [12,16,4], [17,16,4], [18,16,4], - [6,9,1], [7,12,4], [8,4,-8], [10,4,-8], [10,3,-8], [10,4,-8], [10,2,-9], [12,4,-9], - [6,5,4], [11,16,4], [13,9,1], [13,9,1], [10,12,2], [17,12,0], [18,13,1], [14,15,2], - [6,3,-4], [7,13,0], [9,6,-6], [15,16,4], [12,13,1], [15,14,1], [14,14,1], [7,6,-6], - [9,18,5], [7,18,5], [10,8,-5], [13,11,1], [4,6,4], [6,2,-3], [4,2,0], [11,18,5], - [10,13,1], [8,12,0], [10,13,1], [10,13,1], [9,16,4], [10,13,1], [10,13,1], [11,13,1], - [10,13,1], [10,13,1], [6,8,0], [6,12,4], [6,13,4], [14,5,-2], [8,13,4], [10,13,0], - [14,13,1], [12,13,0], [13,12,0], [14,13,1], [14,12,0], [13,12,0], [13,12,0], [14,13,1], - [15,12,0], [9,12,0], [11,13,1], [15,12,0], [11,12,0], [18,12,0], [15,12,0], [14,13,1], - [13,12,0], [14,16,4], [13,13,1], [11,13,1], [14,12,0], [15,13,1], [15,13,1], [20,13,1], - [15,12,0], [15,12,0], [12,12,0], [8,18,5], [11,6,-6], [8,18,5], [9,3,-9], [7,3,-9], - [7,6,-6], [10,9,1], [8,13,1], [8,9,1], [10,13,1], [8,9,1], [9,16,4], [9,12,4], - [10,13,1], [6,13,1], [8,16,4], [9,13,1], [6,13,1], [15,9,1], [10,9,1], [9,9,1], - [9,12,4], [9,12,4], [9,9,1], [8,9,1], [7,12,1], [10,9,1], [9,9,1], [12,9,1], - [9,9,1], [9,12,4], [8,9,1], [10,1,-4], [18,1,-4], [10,4,-8], [10,3,-9], [10,3,-9] - ] -}); - -jsMath.Img.AddFont(144,{ - cmr10: [ - [12,14,0], [16,15,0], [15,16,1], [14,15,0], [13,14,0], [15,14,0], [14,14,0], [15,15,0], - [14,14,0], [15,14,0], [14,15,0], [13,15,0], [11,15,0], [11,15,0], [17,15,0], [17,15,0], - [5,9,0], [6,14,5], [6,4,-10], [8,4,-10], [8,3,-10], [8,4,-10], [9,1,-11], [10,5,-10], - [8,6,5], [10,16,1], [14,10,1], [15,10,1], [10,14,3], [18,14,0], [20,16,1], [15,17,2], - [6,3,-5], [4,15,0], [7,7,-7], [16,18,4], [9,17,2], [16,17,2], [15,16,1], [5,7,-7], - [7,20,5], [6,20,5], [9,9,-6], [15,14,2], [5,7,4], [6,2,-3], [4,3,0], [9,20,5], - [10,15,1], [9,14,0], [9,14,0], [10,15,1], [10,14,0], [9,15,1], [10,15,1], [10,15,1], - [10,15,1], [10,15,1], [4,9,0], [4,13,4], [4,15,5], [15,6,-2], [9,15,5], [9,15,0], - [15,16,1], [15,15,0], [14,14,0], [14,16,1], [15,14,0], [14,14,0], [13,14,0], [15,16,1], - [15,14,0], [7,14,0], [10,15,1], [15,14,0], [12,14,0], [18,14,0], [15,14,0], [15,16,1], - [13,14,0], [15,19,4], [15,15,1], [10,16,1], [14,14,0], [15,15,1], [15,15,1], [21,15,1], - [15,14,0], [15,14,0], [12,14,0], [6,20,5], [10,7,-7], [4,20,5], [8,4,-10], [4,3,-11], - [4,7,-7], [10,10,1], [11,15,1], [9,10,1], [11,15,1], [9,10,1], [8,15,0], [10,15,5], - [11,14,0], [5,14,0], [6,19,5], [11,14,0], [6,14,0], [17,9,0], [11,9,0], [10,10,1], - [11,13,4], [11,13,4], [8,9,0], [8,10,1], [7,14,1], [11,10,1], [11,10,1], [15,10,1], - [11,9,0], [11,14,5], [9,9,0], [10,1,-5], [20,1,-5], [9,4,-10], [9,3,-11], [8,3,-11] - ], - cmmi10: [ - [15,14,0], [16,15,0], [15,16,1], [14,15,0], [16,14,0], [18,14,0], [17,14,0], [15,15,0], - [13,14,0], [14,14,0], [16,15,0], [13,10,1], [12,19,4], [11,14,5], [10,16,1], [8,10,1], - [10,19,5], [10,14,5], [10,16,1], [7,10,1], [11,10,1], [11,15,1], [12,14,5], [11,9,0], - [9,19,5], [12,10,1], [11,14,5], [12,10,1], [11,10,1], [11,10,1], [12,19,5], [12,14,5], - [13,19,5], [13,10,1], [9,11,1], [12,16,1], [17,10,1], [11,13,4], [9,12,3], [13,14,5], - [19,7,-4], [19,7,1], [19,7,-4], [19,7,1], [5,6,-4], [5,6,-4], [10,12,1], [10,12,1], - [10,11,1], [9,10,0], [9,10,0], [10,15,5], [10,14,4], [9,15,5], [10,15,1], [10,15,5], - [10,15,1], [10,15,5], [4,3,0], [5,7,4], [14,12,1], [9,20,5], [14,12,1], [10,10,0], - [12,16,1], [15,15,0], [16,14,0], [16,16,1], [17,14,0], [16,14,0], [16,14,0], [16,16,1], - [18,14,0], [10,14,0], [13,15,1], [18,14,0], [13,14,0], [21,14,0], [18,14,0], [15,16,1], - [16,14,0], [15,19,4], [16,15,1], [13,16,1], [15,14,0], [16,15,1], [16,15,1], [21,15,1], - [18,14,0], [16,14,0], [15,14,0], [7,16,1], [7,20,5], [7,20,5], [19,6,-2], [19,6,-2], - [8,16,1], [10,10,1], [9,15,1], [9,10,1], [11,15,1], [9,10,1], [12,20,5], [10,14,5], - [11,15,1], [6,15,1], [9,19,5], [11,15,1], [6,15,1], [17,10,1], [12,10,1], [10,10,1], - [11,13,4], [10,13,4], [9,10,1], [9,10,1], [7,14,1], [11,10,1], [10,10,1], [14,10,1], - [11,10,1], [10,14,5], [10,10,1], [6,10,1], [9,14,5], [13,15,5], [13,5,-10], [13,4,-10] - ], - cmsy10: [ - [14,2,-4], [4,4,-3], [13,10,0], [9,10,0], [15,12,1], [10,10,0], [15,14,0], [15,14,4], - [15,14,2], [15,14,2], [15,14,2], [15,14,2], [15,14,2], [19,20,5], [9,8,-1], [9,8,-1], - [15,10,0], [15,10,0], [14,16,3], [14,16,3], [14,16,3], [14,16,3], [14,16,3], [14,16,3], - [15,6,-2], [15,9,-1], [14,12,1], [14,12,1], [19,14,2], [19,14,2], [14,12,1], [14,12,1], - [19,8,-1], [19,8,-1], [9,18,4], [9,18,4], [19,8,-1], [19,18,4], [19,18,4], [15,10,0], - [19,12,1], [19,12,1], [12,18,4], [12,18,4], [20,12,1], [19,18,4], [19,18,4], [15,10,1], - [6,12,0], [19,10,1], [12,12,1], [12,12,1], [17,15,0], [17,15,5], [13,20,5], [3,8,-1], - [12,15,1], [10,14,0], [13,7,-1], [10,18,2], [15,16,1], [14,16,1], [15,14,0], [15,14,0], - [12,14,0], [16,16,1], [14,16,1], [11,16,1], [16,14,0], [12,16,1], [17,15,1], [13,18,3], - [17,15,1], [14,14,0], [17,17,3], [15,16,1], [14,16,1], [23,16,1], [21,17,1], [16,16,1], - [15,15,1], [16,18,3], [17,15,1], [13,16,1], [16,15,0], [15,15,1], [14,15,1], [21,15,1], - [17,14,0], [15,17,3], [16,14,0], [13,13,1], [13,13,1], [13,13,1], [13,13,1], [13,13,1], - [12,14,0], [12,14,0], [9,20,5], [6,20,5], [9,20,5], [6,20,5], [9,20,5], [9,20,5], - [7,20,5], [6,20,5], [4,20,5], [8,20,5], [9,22,6], [12,22,6], [9,20,5], [5,14,2], - [18,21,20], [15,14,0], [16,15,1], [10,20,5], [13,12,0], [13,12,0], [15,16,3], [14,16,3], - [8,20,5], [8,20,5], [8,20,5], [12,18,4], [15,18,3], [15,19,4], [15,16,1], [15,18,3] - ], - cmex10: [ - [9,25,24], [7,25,24], [8,25,24], [5,25,24], [9,25,24], [6,25,24], [9,25,24], [6,25,24], - [10,25,24], [10,25,24], [8,25,24], [8,25,24], [4,14,13], [9,14,13], [11,25,24], [11,25,24], - [12,37,36], [9,37,36], [14,49,48], [11,49,48], [11,49,48], [6,49,48], [12,49,48], [7,49,48], - [12,49,48], [7,49,48], [13,49,48], [13,49,48], [14,49,48], [13,49,48], [20,49,48], [20,49,48], - [16,61,60], [12,61,60], [12,61,60], [7,61,60], [13,61,60], [8,61,60], [13,61,60], [8,61,60], - [14,61,60], [14,61,60], [14,61,60], [14,61,60], [25,61,60], [25,61,60], [16,37,36], [16,37,36], - [17,37,36], [12,37,36], [14,37,36], [7,37,36], [14,37,36], [7,37,36], [8,14,13], [7,14,13], - [15,20,19], [11,20,19], [15,19,18], [11,19,18], [11,38,37], [15,38,37], [11,8,7], [8,14,13], - [17,37,36], [12,37,36], [9,14,13], [12,14,13], [11,37,36], [10,37,36], [16,21,20], [22,29,28], - [13,24,23], [19,46,45], [22,21,20], [30,29,28], [22,21,20], [30,29,28], [22,21,20], [30,29,28], - [20,21,20], [18,21,20], [13,24,23], [16,21,20], [16,21,20], [16,21,20], [16,21,20], [16,21,20], - [28,29,28], [25,29,28], [19,46,45], [22,29,28], [22,29,28], [22,29,28], [22,29,28], [22,29,28], - [18,21,20], [25,29,28], [13,4,-11], [22,5,-11], [30,5,-11], [12,3,-12], [20,3,-12], [29,3,-12], - [10,37,36], [5,37,36], [11,37,36], [7,37,36], [11,37,36], [7,37,36], [11,37,36], [11,37,36], - [21,25,24], [21,37,36], [21,49,48], [21,61,60], [15,37,36], [15,14,13], [22,13,12], [11,14,13], - [12,13,12], [12,13,12], [11,8,5], [11,8,5], [11,7,0], [11,7,0], [15,13,12], [15,13,12] - ], - cmbx10: [ - [13,14,0], [18,14,0], [17,15,1], [16,14,0], [15,14,0], [18,14,0], [16,14,0], [17,14,0], - [16,14,0], [17,14,0], [16,14,0], [15,14,0], [13,14,0], [13,14,0], [19,14,0], [19,14,0], - [6,9,0], [8,13,4], [7,5,-10], [10,5,-10], [9,4,-10], [10,4,-10], [10,2,-11], [12,5,-10], - [9,5,4], [12,15,1], [16,11,1], [18,11,1], [11,15,3], [21,14,0], [23,15,1], [17,17,2], - [7,4,-5], [6,15,0], [10,8,-6], [18,18,4], [11,17,2], [18,17,2], [17,16,1], [6,8,-6], - [8,20,5], [7,20,5], [10,9,-6], [17,16,3], [5,8,4], [7,3,-3], [5,4,0], [11,20,5], - [11,15,1], [10,14,0], [11,14,0], [11,15,1], [11,14,0], [11,15,1], [11,15,1], [12,15,1], - [11,15,1], [11,15,1], [5,9,0], [5,13,4], [6,15,5], [17,6,-2], [10,14,4], [10,14,0], - [17,15,1], [17,14,0], [16,14,0], [16,15,1], [17,14,0], [15,14,0], [14,14,0], [17,15,1], - [18,14,0], [9,14,0], [11,15,1], [18,14,0], [13,14,0], [22,14,0], [18,14,0], [16,15,1], - [15,14,0], [17,18,4], [18,15,1], [12,15,1], [16,14,0], [17,15,1], [17,15,1], [24,15,1], - [17,14,0], [17,14,0], [13,14,0], [6,20,5], [12,8,-6], [4,20,5], [9,4,-10], [5,4,-10], - [5,8,-6], [12,11,1], [12,15,1], [10,11,1], [13,15,1], [10,11,1], [9,14,0], [12,15,5], - [13,14,0], [6,14,0], [8,18,4], [12,14,0], [6,14,0], [19,9,0], [13,9,0], [11,11,1], - [12,13,4], [13,13,4], [9,9,0], [9,11,1], [8,14,1], [13,10,1], [12,10,1], [17,10,1], - [12,9,0], [12,13,4], [10,9,0], [12,1,-5], [23,1,-5], [10,5,-10], [10,3,-11], [10,3,-11] - ], - cmti10: [ - [15,14,0], [16,15,0], [16,16,1], [13,15,0], [16,14,0], [18,14,0], [16,14,0], [17,15,0], - [15,14,0], [17,14,0], [16,15,0], [17,20,5], [13,20,5], [14,20,5], [20,20,5], [20,20,5], - [7,10,1], [8,14,5], [9,4,-10], [12,4,-10], [11,3,-10], [12,4,-10], [12,1,-11], [14,5,-10], - [7,5,4], [13,20,5], [15,10,1], [15,10,1], [11,14,3], [20,14,0], [22,16,1], [17,17,2], - [7,3,-5], [8,15,0], [11,7,-7], [17,18,4], [14,16,1], [17,17,2], [17,16,1], [8,7,-7], - [11,20,5], [8,20,5], [12,9,-6], [16,14,2], [5,7,4], [7,2,-3], [5,3,0], [13,20,5], - [12,15,1], [10,14,0], [12,15,1], [12,15,1], [10,18,4], [12,15,1], [12,15,1], [13,15,1], - [12,15,1], [12,15,1], [7,9,0], [7,13,4], [7,15,5], [16,6,-2], [9,15,5], [12,15,0], - [16,16,1], [14,15,0], [15,14,0], [17,16,1], [16,14,0], [15,14,0], [15,14,0], [17,16,1], - [18,14,0], [11,14,0], [13,15,1], [18,14,0], [13,14,0], [21,14,0], [18,14,0], [16,16,1], - [15,14,0], [16,19,4], [15,15,1], [13,16,1], [17,14,0], [18,15,1], [18,15,1], [23,15,1], - [17,14,0], [18,14,0], [15,14,0], [9,20,5], [13,7,-7], [9,20,5], [11,4,-10], [8,3,-11], - [8,7,-7], [11,10,1], [10,15,1], [10,10,1], [12,15,1], [10,10,1], [11,20,5], [10,14,5], - [11,15,1], [7,15,1], [9,19,5], [11,15,1], [7,15,1], [17,10,1], [12,10,1], [11,10,1], - [11,13,4], [10,13,4], [10,10,1], [9,10,1], [8,14,1], [12,10,1], [10,10,1], [14,10,1], - [11,10,1], [11,14,5], [10,10,1], [12,1,-5], [21,1,-5], [12,4,-10], [12,3,-11], [11,3,-11] - ] -}); - -jsMath.Img.AddFont(173,{ - cmr10: [ - [14,17,0], [19,18,0], [18,18,1], [16,18,0], [15,17,0], [18,17,0], [16,17,0], [18,17,0], - [16,17,0], [18,17,0], [17,17,0], [16,17,0], [13,17,0], [13,17,0], [20,17,0], [20,17,0], - [6,11,0], [7,16,5], [8,5,-12], [10,5,-12], [10,4,-12], [10,5,-12], [11,2,-13], [12,6,-12], - [9,6,5], [12,18,1], [17,12,1], [18,12,1], [12,16,3], [21,17,0], [24,18,1], [18,20,2], - [7,4,-6], [5,18,0], [9,8,-9], [19,22,5], [11,20,2], [19,20,2], [18,19,1], [5,8,-9], - [8,24,6], [7,24,6], [11,11,-7], [18,16,2], [5,8,5], [7,2,-4], [5,3,0], [11,24,6], - [12,17,1], [11,16,0], [11,16,0], [11,17,1], [12,17,0], [11,17,1], [11,17,1], [12,18,1], - [11,17,1], [11,17,1], [5,11,0], [5,16,5], [5,18,6], [18,6,-3], [10,17,5], [10,17,0], - [18,18,1], [18,18,0], [16,17,0], [16,18,1], [17,17,0], [16,17,0], [15,17,0], [18,18,1], - [18,17,0], [8,17,0], [12,18,1], [18,17,0], [14,17,0], [22,17,0], [18,17,0], [18,18,1], - [15,17,0], [18,22,5], [18,18,1], [12,18,1], [17,17,0], [18,18,1], [18,18,1], [25,18,1], - [18,17,0], [18,17,0], [14,17,0], [7,24,6], [12,8,-9], [4,24,6], [10,5,-12], [5,4,-13], - [5,8,-9], [12,12,1], [13,18,1], [10,12,1], [13,18,1], [10,12,1], [9,17,0], [12,16,5], - [13,17,0], [6,17,0], [7,22,5], [13,17,0], [7,17,0], [20,11,0], [13,11,0], [12,12,1], - [13,16,5], [13,16,5], [9,11,0], [9,12,1], [8,16,1], [13,12,1], [13,12,1], [17,12,1], - [13,11,0], [13,16,5], [10,11,0], [12,1,-6], [24,1,-6], [11,5,-12], [10,4,-13], [10,4,-13] - ], - cmmi10: [ - [18,17,0], [19,18,0], [18,18,1], [16,18,0], [19,17,0], [22,17,0], [20,17,0], [17,17,0], - [16,17,0], [17,17,0], [19,17,0], [15,12,1], [15,22,5], [14,17,6], [11,19,1], [10,12,1], - [12,22,5], [12,17,6], [11,18,1], [8,12,1], [14,12,1], [14,18,1], [14,17,6], [13,11,0], - [11,22,5], [14,12,1], [13,17,6], [14,12,1], [13,12,1], [13,12,1], [14,22,5], [15,16,5], - [16,22,5], [15,12,1], [11,12,1], [14,18,1], [20,12,1], [13,16,5], [10,14,3], [15,17,6], - [23,8,-5], [23,8,1], [23,8,-5], [23,8,1], [6,7,-5], [6,7,-5], [12,14,1], [12,14,1], - [12,12,1], [11,11,0], [11,11,0], [11,17,6], [12,17,5], [11,17,6], [11,17,1], [12,18,6], - [11,17,1], [11,17,6], [5,3,0], [5,8,5], [17,14,1], [11,24,6], [17,14,1], [12,12,0], - [14,19,1], [18,18,0], [19,17,0], [19,18,1], [20,17,0], [19,17,0], [19,17,0], [19,18,1], - [22,17,0], [12,17,0], [16,18,1], [22,17,0], [16,17,0], [26,17,0], [22,17,0], [18,18,1], - [19,17,0], [18,22,5], [19,18,1], [16,18,1], [17,17,0], [19,18,1], [19,18,1], [26,18,1], - [21,17,0], [19,17,0], [18,17,0], [8,19,1], [8,24,6], [8,24,6], [23,6,-3], [23,7,-3], - [10,18,1], [12,12,1], [10,18,1], [11,12,1], [13,18,1], [11,12,1], [14,22,5], [12,16,5], - [14,18,1], [8,17,1], [11,21,5], [13,18,1], [7,18,1], [21,12,1], [14,12,1], [12,12,1], - [13,16,5], [11,16,5], [11,12,1], [11,12,1], [8,17,1], [14,12,1], [12,12,1], [17,12,1], - [13,12,1], [12,16,5], [12,12,1], [8,12,1], [10,16,5], [15,17,6], [15,6,-12], [16,4,-12] - ], - cmsy10: [ - [17,2,-5], [5,4,-4], [16,12,0], [11,12,0], [18,14,1], [12,12,0], [18,16,0], [18,16,4], - [18,16,2], [18,16,2], [18,16,2], [18,16,2], [18,16,2], [23,24,6], [11,10,-1], [11,10,-1], - [18,12,0], [18,12,0], [17,20,4], [17,20,4], [17,20,4], [17,20,4], [17,20,4], [17,20,4], - [18,6,-3], [18,11,-1], [17,14,1], [17,14,1], [23,16,2], [23,16,2], [17,14,1], [17,14,1], - [23,10,-1], [23,10,-1], [11,22,5], [11,22,5], [23,10,-1], [23,22,5], [23,22,5], [18,12,0], - [23,14,1], [23,14,1], [14,22,5], [14,22,5], [24,14,1], [23,22,5], [23,22,5], [18,12,1], - [7,13,-1], [23,12,1], [14,14,1], [14,14,1], [20,18,0], [20,18,6], [16,24,6], [3,10,-1], - [14,18,1], [12,17,0], [15,7,-2], [11,21,2], [18,19,1], [17,18,1], [18,16,0], [18,16,0], - [14,17,0], [20,20,2], [16,18,1], [13,18,1], [19,17,0], [14,18,1], [20,18,1], [15,20,3], - [20,19,2], [17,17,0], [21,20,3], [18,18,1], [16,18,1], [27,19,2], [25,21,2], [19,18,1], - [18,19,2], [19,20,3], [21,18,1], [16,18,1], [20,18,0], [18,18,1], [16,19,2], [25,19,2], - [20,17,0], [18,21,4], [19,17,0], [15,16,1], [15,16,1], [15,16,1], [15,16,1], [15,16,1], - [14,17,0], [14,17,0], [11,24,6], [7,24,6], [11,24,6], [7,24,6], [11,24,6], [11,24,6], - [8,24,6], [7,24,6], [4,24,6], [9,24,6], [11,26,7], [14,26,7], [11,24,6], [6,16,2], - [21,25,24], [18,17,0], [19,18,1], [12,24,6], [15,15,0], [15,15,0], [18,20,4], [17,20,4], - [9,22,5], [10,23,6], [10,22,5], [14,22,5], [18,22,4], [18,22,4], [18,19,1], [18,22,4] - ], - cmex10: [ - [10,29,28], [8,29,28], [10,29,28], [6,29,28], [11,29,28], [7,29,28], [11,29,28], [7,29,28], - [12,29,28], [12,29,28], [10,29,28], [9,29,28], [5,16,15], [10,16,15], [13,29,28], [13,29,28], - [14,44,43], [10,44,43], [17,58,57], [13,58,57], [13,58,57], [7,58,57], [14,58,57], [8,58,57], - [14,58,57], [8,58,57], [15,58,57], [15,58,57], [16,58,57], [15,58,57], [24,58,57], [24,58,57], - [19,73,72], [14,73,72], [14,73,72], [8,73,72], [16,73,72], [9,73,72], [16,73,72], [9,73,72], - [16,73,72], [16,73,72], [17,73,72], [16,73,72], [30,73,72], [30,73,72], [19,44,43], [19,44,43], - [21,44,43], [14,44,43], [16,44,43], [9,44,43], [16,44,43], [9,44,43], [10,16,15], [9,16,15], - [18,23,22], [13,23,22], [18,23,22], [13,23,22], [13,45,44], [18,45,44], [13,9,8], [9,16,15], - [21,45,43], [14,45,43], [10,16,15], [14,16,15], [13,44,43], [12,44,43], [19,25,24], [26,35,34], - [15,28,27], [23,55,54], [26,25,24], [35,35,34], [26,25,24], [35,35,34], [26,25,24], [35,35,34], - [24,25,24], [22,25,24], [15,28,27], [19,25,24], [19,25,24], [19,25,24], [19,25,24], [19,25,24], - [34,35,34], [30,35,34], [23,55,54], [26,35,34], [26,35,34], [26,35,34], [26,35,34], [26,35,34], - [22,25,24], [30,35,34], [15,5,-13], [26,6,-13], [36,6,-13], [14,4,-14], [24,4,-14], [35,4,-14], - [11,44,43], [6,44,43], [13,44,43], [8,44,43], [13,44,43], [8,44,43], [14,44,43], [14,44,43], - [25,29,28], [25,44,43], [25,58,57], [25,73,72], [18,45,44], [18,16,15], [26,15,14], [13,16,15], - [14,16,15], [14,16,15], [13,9,6], [13,9,6], [13,9,0], [13,9,0], [18,16,15], [18,16,15] - ], - cmbx10: [ - [16,17,0], [22,17,0], [20,18,1], [19,17,0], [18,17,0], [21,17,0], [19,17,0], [20,17,0], - [19,17,0], [20,17,0], [19,17,0], [18,17,0], [15,17,0], [15,17,0], [23,17,0], [23,17,0], - [7,11,0], [9,16,5], [9,5,-12], [11,5,-12], [11,4,-12], [12,5,-12], [12,2,-13], [14,5,-12], - [11,6,5], [14,18,1], [20,12,1], [21,12,1], [14,17,3], [25,17,0], [28,18,1], [20,20,2], - [8,4,-6], [7,17,0], [12,9,-8], [22,22,5], [13,20,2], [22,20,2], [21,18,1], [7,9,-8], - [10,24,6], [9,24,6], [12,11,-7], [20,20,4], [6,9,5], [8,3,-4], [6,4,0], [13,24,6], - [13,17,1], [12,16,0], [13,16,0], [13,17,1], [14,16,0], [13,17,1], [13,17,1], [14,18,1], - [13,17,1], [13,17,1], [6,11,0], [6,16,5], [7,17,5], [20,8,-2], [12,17,5], [12,17,0], - [20,18,1], [20,17,0], [19,17,0], [19,18,1], [20,17,0], [18,17,0], [17,17,0], [21,18,1], - [21,17,0], [10,17,0], [13,18,1], [21,17,0], [16,17,0], [26,17,0], [21,17,0], [20,18,1], - [18,17,0], [20,22,5], [21,18,1], [14,18,1], [19,17,0], [21,18,1], [21,18,1], [28,18,1], - [21,17,0], [21,17,0], [16,17,0], [8,24,6], [14,9,-8], [5,24,6], [11,5,-12], [6,5,-12], - [6,9,-8], [14,12,1], [15,18,1], [12,12,1], [15,18,1], [12,12,1], [11,17,0], [14,16,5], - [15,17,0], [7,17,0], [9,22,5], [15,17,0], [8,17,0], [23,11,0], [15,11,0], [14,12,1], - [15,16,5], [15,16,5], [11,11,0], [10,12,1], [10,17,1], [15,12,1], [14,12,1], [20,12,1], - [15,11,0], [14,16,5], [12,11,0], [14,2,-6], [28,2,-6], [12,6,-12], [12,3,-14], [12,4,-13] - ], - cmti10: [ - [17,17,0], [19,18,0], [19,18,1], [16,18,0], [19,17,0], [21,17,0], [19,17,0], [20,17,0], - [18,17,0], [20,17,0], [19,17,0], [20,22,5], [16,22,5], [17,22,5], [23,22,5], [24,22,5], - [8,12,1], [9,16,5], [11,5,-12], [14,5,-12], [13,4,-12], [14,5,-12], [14,2,-13], [17,6,-12], - [9,6,5], [15,22,5], [18,12,1], [18,12,1], [14,16,3], [23,17,0], [26,18,1], [20,20,2], - [9,4,-6], [9,18,0], [13,8,-9], [20,22,5], [17,18,1], [21,20,2], [20,19,1], [9,8,-9], - [13,24,6], [10,24,6], [14,11,-7], [19,16,2], [6,8,5], [9,2,-4], [6,3,0], [15,24,6], - [14,17,1], [12,16,0], [14,17,1], [14,17,1], [12,21,5], [14,17,1], [14,17,1], [15,17,1], - [14,17,1], [14,17,1], [8,11,0], [8,16,5], [8,18,6], [19,6,-3], [11,18,6], [14,18,0], - [19,18,1], [17,18,0], [18,17,0], [20,18,1], [19,17,0], [18,17,0], [18,17,0], [20,18,1], - [21,17,0], [13,17,0], [15,18,1], [21,17,0], [15,17,0], [25,17,0], [21,17,0], [19,18,1], - [18,17,0], [19,22,5], [18,18,1], [16,18,1], [20,17,0], [21,18,1], [21,18,1], [27,18,1], - [20,17,0], [21,17,0], [17,17,0], [11,24,6], [15,8,-9], [10,24,6], [13,5,-12], [9,4,-13], - [9,8,-9], [13,12,1], [12,18,1], [12,12,1], [14,18,1], [12,12,1], [12,22,5], [12,16,5], - [13,18,1], [8,17,1], [10,21,5], [13,18,1], [8,18,1], [21,12,1], [15,12,1], [13,12,1], - [13,16,5], [12,16,5], [12,12,1], [11,12,1], [9,17,1], [14,12,1], [12,12,1], [17,12,1], - [13,12,1], [13,16,5], [12,12,1], [14,1,-6], [25,1,-6], [14,5,-12], [14,4,-13], [14,4,-13] - ] -}); - -jsMath.Img.AddFont(207,{ - cmr10: [ - [17,20,0], [23,21,0], [21,22,1], [20,21,0], [19,20,0], [21,20,0], [20,20,0], [21,21,0], - [20,20,0], [21,20,0], [20,21,0], [19,21,0], [16,21,0], [16,21,0], [24,21,0], [24,21,0], - [8,13,0], [9,19,6], [9,7,-14], [12,7,-14], [12,5,-14], [12,6,-15], [13,2,-16], [14,6,-15], - [11,7,6], [14,22,1], [21,14,1], [22,14,1], [14,19,3], [26,20,0], [29,22,1], [21,24,2], - [8,4,-8], [6,21,0], [11,10,-11], [23,27,6], [13,24,2], [23,24,2], [22,22,1], [6,10,-11], - [10,30,8], [9,30,8], [13,13,-9], [21,20,3], [6,10,6], [8,3,-5], [6,4,0], [13,30,8], - [14,21,1], [13,20,0], [14,20,0], [14,21,1], [14,20,0], [14,21,1], [14,21,1], [15,21,1], - [14,21,1], [14,21,1], [6,13,0], [6,19,6], [6,22,7], [21,8,-3], [13,21,6], [13,21,0], - [21,22,1], [21,21,0], [19,20,0], [20,22,1], [21,20,0], [19,20,0], [18,20,0], [22,22,1], - [21,20,0], [10,20,0], [14,21,1], [22,20,0], [17,20,0], [26,20,0], [21,20,0], [21,22,1], - [19,20,0], [22,27,6], [22,21,1], [15,22,1], [20,20,0], [21,21,1], [22,21,1], [30,21,1], - [22,20,0], [22,20,0], [17,20,0], [8,30,8], [14,10,-11], [5,30,8], [12,6,-15], [6,4,-16], - [6,10,-11], [15,14,1], [16,22,1], [13,14,1], [16,22,1], [13,14,1], [11,21,0], [15,20,6], - [16,21,0], [8,20,0], [9,26,6], [15,21,0], [8,21,0], [24,13,0], [16,13,0], [14,14,1], - [16,19,6], [16,19,6], [11,13,0], [11,14,1], [10,19,1], [16,14,1], [15,14,1], [21,14,1], - [15,13,0], [15,19,6], [12,13,0], [15,2,-7], [29,2,-7], [13,7,-14], [13,4,-16], [12,4,-16] - ], - cmmi10: [ - [21,20,0], [23,21,0], [22,22,1], [20,21,0], [23,20,0], [26,20,0], [24,20,0], [21,21,0], - [19,20,0], [21,20,0], [23,21,0], [18,14,1], [18,27,6], [16,20,7], [14,22,1], [11,14,1], - [14,27,6], [15,20,7], [14,22,1], [10,14,1], [16,14,1], [16,22,1], [17,20,7], [16,13,0], - [13,27,6], [17,14,1], [15,20,7], [17,14,1], [15,14,1], [16,14,1], [17,27,6], [18,19,6], - [19,27,6], [18,14,1], [13,15,1], [17,22,1], [24,14,1], [15,19,6], [12,17,4], [18,20,7], - [28,9,-6], [28,9,1], [28,9,-6], [28,9,1], [7,8,-6], [7,8,-6], [14,16,1], [14,16,1], - [14,15,1], [13,14,0], [14,14,0], [14,21,7], [14,20,6], [14,21,7], [14,21,1], [15,21,7], - [14,21,1], [14,21,7], [6,4,0], [6,10,6], [21,18,2], [13,30,8], [21,18,2], [15,15,0], - [17,22,1], [21,21,0], [22,20,0], [23,22,1], [24,20,0], [23,20,0], [22,20,0], [23,22,1], - [26,20,0], [15,20,0], [19,21,1], [26,20,0], [19,20,0], [31,20,0], [26,20,0], [22,22,1], - [22,20,0], [22,27,6], [22,21,1], [19,22,1], [21,20,0], [23,21,1], [23,21,1], [31,21,1], - [25,20,0], [23,20,0], [21,20,0], [10,23,1], [9,29,7], [10,28,7], [28,8,-3], [28,9,-3], - [12,22,1], [15,14,1], [13,22,1], [13,14,1], [15,22,1], [13,14,1], [17,27,6], [14,19,6], - [16,22,1], [9,21,1], [13,26,6], [15,22,1], [8,22,1], [25,14,1], [17,14,1], [14,14,1], - [16,19,6], [14,19,6], [13,14,1], [13,14,1], [10,20,1], [16,14,1], [14,14,1], [21,14,1], - [16,14,1], [15,19,6], [14,14,1], [9,14,1], [12,19,6], [18,21,7], [19,7,-14], [19,5,-15] - ], - cmsy10: [ - [21,2,-6], [6,4,-5], [19,15,0], [13,14,0], [21,17,1], [15,15,0], [21,20,0], [21,20,5], - [21,20,3], [21,20,3], [21,20,3], [21,20,3], [21,20,3], [28,28,7], [13,12,-1], [13,12,-1], - [21,15,0], [21,13,-1], [21,23,4], [21,23,4], [21,23,4], [21,23,4], [21,23,4], [21,23,4], - [21,8,-3], [21,13,-1], [21,18,2], [21,18,2], [28,19,2], [28,19,2], [21,18,2], [21,18,2], - [28,11,-2], [28,11,-2], [13,27,6], [13,27,6], [28,11,-2], [28,27,6], [28,27,6], [21,13,-1], - [28,17,1], [28,17,1], [17,27,6], [17,27,6], [28,17,1], [28,27,6], [28,27,6], [21,14,1], - [8,16,-1], [28,14,1], [17,18,2], [17,18,2], [25,21,0], [25,22,7], [19,28,7], [4,12,-1], - [17,22,1], [15,21,0], [18,9,-2], [14,26,3], [21,22,1], [21,22,1], [21,20,0], [21,20,0], - [17,21,0], [24,23,2], [20,22,1], [16,22,1], [23,20,0], [17,22,1], [25,21,1], [18,25,4], - [24,22,2], [20,20,0], [25,24,4], [22,22,1], [20,22,1], [33,23,2], [30,25,2], [23,22,1], - [22,22,2], [23,25,4], [25,21,1], [19,22,1], [24,21,0], [21,21,1], [20,22,2], [31,22,2], - [24,20,0], [21,24,4], [23,20,0], [18,19,1], [18,19,1], [18,19,1], [18,19,1], [18,19,1], - [17,21,0], [17,21,0], [13,30,8], [8,30,8], [13,30,8], [8,30,8], [13,30,8], [13,30,8], - [10,30,8], [9,30,8], [5,30,8], [11,30,8], [13,31,8], [17,31,8], [13,30,8], [7,20,3], - [25,30,28], [21,20,0], [23,21,1], [14,28,7], [18,18,0], [18,18,0], [21,23,4], [21,23,4], - [11,27,6], [12,28,7], [12,27,6], [17,27,6], [22,26,4], [21,27,5], [21,22,1], [21,26,4] - ], - cmex10: [ - [12,36,34], [9,36,34], [12,36,34], [7,36,34], [14,36,34], [8,36,34], [14,36,34], [8,36,34], - [14,36,34], [14,36,34], [12,36,34], [11,36,34], [6,20,19], [12,20,19], [16,36,34], [16,36,34], - [17,54,52], [13,54,52], [21,71,69], [16,71,69], [15,71,69], [9,71,69], [17,71,69], [10,71,69], - [17,71,69], [10,71,69], [18,71,69], [18,71,69], [19,71,69], [19,71,69], [29,71,69], [29,71,69], - [22,88,86], [17,88,86], [17,88,86], [9,88,86], [19,88,86], [11,88,86], [19,88,86], [11,88,86], - [20,88,86], [20,88,86], [21,88,86], [20,88,86], [36,88,86], [36,88,86], [22,54,52], [22,54,52], - [25,54,52], [17,54,52], [20,54,52], [10,54,52], [20,54,52], [10,54,52], [12,19,18], [10,19,18], - [21,28,27], [15,28,27], [21,28,27], [15,28,27], [15,54,53], [21,54,53], [15,10,9], [11,19,18], - [25,54,52], [17,54,52], [12,19,18], [17,19,18], [16,54,52], [15,54,52], [23,30,29], [31,42,41], - [18,34,33], [28,66,65], [31,30,29], [43,42,41], [31,30,29], [43,42,41], [31,30,29], [43,42,41], - [29,30,29], [26,30,29], [18,34,33], [23,30,29], [23,30,29], [23,30,29], [23,30,29], [23,30,29], - [41,42,41], [36,42,41], [28,66,65], [31,42,41], [31,42,41], [31,42,41], [31,42,41], [31,42,41], - [26,30,29], [36,42,41], [18,6,-16], [31,7,-16], [43,7,-16], [17,4,-17], [29,4,-18], [42,4,-18], - [14,54,52], [8,54,52], [15,54,52], [9,54,52], [15,54,52], [9,54,52], [16,54,52], [16,54,52], - [30,36,34], [30,54,52], [30,71,69], [30,88,86], [22,54,53], [22,19,18], [32,19,17], [16,19,18], - [17,19,18], [17,19,18], [15,11,7], [15,11,7], [15,10,0], [15,10,0], [21,19,18], [21,19,18] - ], - cmbx10: [ - [19,20,0], [27,21,0], [25,22,1], [23,21,0], [21,20,0], [25,20,0], [23,20,0], [25,21,0], - [23,20,0], [25,20,0], [23,21,0], [22,21,0], [18,21,0], [18,21,0], [27,21,0], [27,21,0], - [9,14,0], [10,20,6], [10,7,-14], [14,7,-14], [13,4,-15], [14,7,-14], [15,2,-16], [17,6,-15], - [13,7,6], [17,22,1], [24,15,1], [25,15,1], [16,21,4], [30,20,0], [33,22,1], [25,24,2], - [10,4,-8], [8,21,0], [14,12,-9], [26,27,6], [15,24,2], [26,24,2], [25,22,1], [8,12,-9], - [12,30,8], [10,30,8], [15,14,-8], [25,23,4], [8,11,6], [10,3,-5], [7,5,0], [15,30,8], - [16,20,1], [15,19,0], [15,19,0], [16,20,1], [16,20,0], [15,20,1], [16,20,1], [17,21,1], - [16,20,1], [16,20,1], [7,13,0], [7,19,6], [8,21,6], [25,9,-3], [14,21,6], [14,21,0], - [25,22,1], [24,21,0], [22,20,0], [23,22,1], [24,20,0], [21,20,0], [20,20,0], [25,22,1], - [25,20,0], [12,20,0], [16,21,1], [25,20,0], [19,20,0], [31,20,0], [25,20,0], [24,22,1], - [21,20,0], [24,27,6], [25,21,1], [17,22,1], [22,20,0], [25,21,1], [25,21,1], [34,21,1], - [25,20,0], [25,20,0], [19,20,0], [9,30,8], [17,12,-9], [6,30,8], [13,6,-15], [7,6,-15], - [7,12,-9], [17,15,1], [18,22,1], [14,15,1], [18,22,1], [15,15,1], [13,21,0], [17,20,6], - [18,21,0], [9,21,0], [10,27,6], [18,21,0], [9,21,0], [28,14,0], [18,14,0], [16,15,1], - [18,20,6], [18,20,6], [13,14,0], [13,15,1], [12,20,1], [18,15,1], [17,14,1], [24,14,1], - [17,13,0], [17,19,6], [14,13,0], [17,2,-7], [34,2,-7], [15,7,-14], [14,4,-17], [14,6,-15] - ], - cmti10: [ - [21,20,0], [22,21,0], [23,22,1], [19,21,0], [22,20,0], [25,20,0], [23,20,0], [25,21,0], - [22,20,0], [24,20,0], [23,21,0], [23,27,6], [19,27,6], [20,27,6], [28,27,6], [29,27,6], - [10,14,1], [12,19,6], [13,7,-14], [16,7,-14], [16,5,-14], [17,6,-15], [17,2,-16], [20,6,-15], - [10,7,6], [18,27,6], [21,14,1], [21,14,1], [16,20,4], [28,20,0], [31,22,1], [24,24,2], - [10,4,-8], [11,21,0], [15,10,-11], [25,27,6], [21,22,1], [25,24,2], [24,22,1], [11,10,-11], - [15,30,8], [12,30,8], [17,13,-9], [22,19,2], [7,10,6], [10,3,-5], [7,4,0], [18,30,8], - [17,21,1], [14,20,0], [16,21,1], [17,21,1], [14,26,6], [17,21,1], [17,21,1], [19,21,1], - [17,21,1], [17,21,1], [9,13,0], [9,19,6], [10,22,7], [23,8,-3], [13,22,7], [16,21,0], - [23,22,1], [21,21,0], [22,20,0], [24,22,1], [23,20,0], [22,20,0], [22,20,0], [24,22,1], - [25,20,0], [15,20,0], [19,21,1], [25,20,0], [19,20,0], [30,20,0], [25,20,0], [23,22,1], - [22,20,0], [23,27,6], [21,21,1], [19,22,1], [24,20,0], [25,21,1], [26,21,1], [33,21,1], - [24,20,0], [26,20,0], [21,20,0], [13,30,8], [18,10,-11], [12,30,8], [16,6,-15], [11,4,-16], - [11,10,-11], [16,14,1], [14,22,1], [14,14,1], [17,22,1], [14,14,1], [15,27,6], [15,19,6], - [16,22,1], [10,21,1], [13,26,6], [15,22,1], [9,22,1], [25,14,1], [17,14,1], [15,14,1], - [15,19,6], [15,19,6], [15,14,1], [13,14,1], [11,20,1], [17,14,1], [15,14,1], [21,14,1], - [16,14,1], [15,19,6], [14,14,1], [16,2,-7], [31,2,-7], [17,7,-14], [17,4,-16], [16,4,-16] - ] -}); - -jsMath.Img.AddFont(249,{ - cmr10: [ - [20,24,0], [27,25,0], [25,25,1], [23,25,0], [22,24,0], [25,24,0], [23,24,0], [25,24,0], - [23,24,0], [25,24,0], [24,24,0], [22,24,0], [18,24,0], [18,24,0], [28,24,0], [28,24,0], - [9,16,0], [10,23,7], [10,7,-17], [14,7,-17], [13,5,-17], [14,7,-17], [15,2,-19], [16,7,-18], - [13,8,7], [17,25,1], [24,17,1], [26,17,1], [16,23,4], [30,24,0], [34,25,1], [25,28,2], - [9,5,-9], [7,25,0], [12,11,-13], [27,31,7], [16,28,2], [27,28,2], [25,26,1], [7,11,-13], - [12,35,9], [10,35,9], [15,16,-10], [25,23,3], [7,11,7], [10,3,-6], [7,4,0], [16,35,9], - [16,24,1], [15,23,0], [16,23,0], [16,24,1], [17,24,0], [16,24,1], [16,24,1], [17,24,1], - [16,24,1], [16,24,1], [7,15,0], [7,22,7], [7,25,8], [25,9,-4], [15,24,7], [15,24,0], - [25,25,1], [25,25,0], [23,24,0], [23,25,1], [25,24,0], [23,24,0], [21,24,0], [25,25,1], - [25,24,0], [12,24,0], [16,25,1], [26,24,0], [20,24,0], [30,24,0], [25,24,0], [25,25,1], - [22,24,0], [25,31,7], [25,25,1], [17,25,1], [24,24,0], [25,25,1], [25,25,1], [35,25,1], - [25,24,0], [26,24,0], [20,24,0], [9,35,9], [16,11,-13], [6,35,9], [14,6,-18], [7,4,-19], - [7,11,-13], [17,17,1], [18,25,1], [15,17,1], [18,25,1], [15,17,1], [13,24,0], [17,23,7], - [19,24,0], [9,23,0], [10,30,7], [18,24,0], [9,24,0], [28,16,0], [19,16,0], [17,17,1], - [18,23,7], [18,23,7], [13,16,0], [13,17,1], [12,22,1], [19,17,1], [18,16,1], [24,16,1], - [18,15,0], [18,22,7], [14,15,0], [17,2,-8], [34,2,-8], [15,7,-17], [15,4,-19], [14,4,-19] - ], - cmmi10: [ - [25,24,0], [27,25,0], [26,25,1], [23,25,0], [27,24,0], [30,24,0], [28,24,0], [24,24,0], - [22,24,0], [24,24,0], [27,24,0], [21,17,1], [21,31,7], [19,24,8], [16,26,1], [13,16,1], - [17,31,7], [17,24,8], [16,25,1], [12,17,1], [19,17,1], [19,25,1], [20,24,8], [18,16,0], - [16,31,7], [20,16,1], [18,24,8], [20,16,1], [18,16,1], [18,17,1], [20,31,7], [21,23,7], - [22,31,7], [21,17,1], [15,17,1], [20,25,1], [28,16,1], [18,23,7], [14,20,4], [22,24,8], - [33,11,-7], [33,11,1], [33,11,-7], [33,11,1], [8,9,-7], [8,9,-7], [17,19,1], [17,19,1], - [16,17,1], [15,16,0], [16,16,0], [16,24,8], [17,23,7], [16,24,8], [16,24,1], [17,24,8], - [16,24,1], [16,24,8], [7,4,0], [7,11,7], [24,21,2], [16,35,9], [24,21,2], [17,17,0], - [20,26,1], [25,25,0], [26,24,0], [26,25,1], [28,24,0], [27,24,0], [26,24,0], [26,25,1], - [30,24,0], [17,24,0], [22,25,1], [31,24,0], [22,24,0], [36,24,0], [30,24,0], [26,25,1], - [26,24,0], [26,31,7], [26,25,1], [22,25,1], [24,24,0], [26,25,1], [27,25,1], [36,25,1], - [29,24,0], [26,24,0], [25,24,0], [12,27,1], [11,33,8], [12,33,8], [33,9,-4], [33,9,-4], - [14,25,1], [17,17,1], [15,25,1], [15,17,1], [18,25,1], [15,17,1], [19,31,7], [17,23,7], - [19,25,1], [10,24,1], [15,30,7], [18,25,1], [9,25,1], [29,17,1], [20,17,1], [16,17,1], - [19,23,7], [16,23,7], [15,17,1], [15,17,1], [12,23,1], [19,17,1], [16,17,1], [24,17,1], - [18,17,1], [17,23,7], [16,17,1], [10,17,1], [14,23,7], [22,24,8], [22,8,-17], [23,5,-18] - ], - cmsy10: [ - [24,3,-7], [7,5,-6], [22,17,0], [15,15,-1], [25,21,2], [17,17,0], [25,23,0], [25,23,6], - [25,23,3], [25,23,3], [25,23,3], [25,23,3], [25,23,3], [33,33,8], [16,15,-1], [16,15,-1], - [25,17,0], [25,15,-1], [24,27,5], [24,27,5], [24,27,5], [24,27,5], [24,27,5], [24,27,5], - [25,9,-4], [25,16,-1], [24,21,2], [24,21,2], [33,23,3], [33,23,3], [24,21,2], [24,21,2], - [33,13,-2], [33,13,-2], [15,31,7], [15,31,7], [33,13,-2], [33,31,7], [33,31,7], [25,15,-1], - [33,19,1], [33,19,1], [20,31,7], [20,31,7], [33,19,1], [33,31,7], [33,31,7], [25,17,1], - [9,18,-1], [33,17,1], [20,21,2], [20,21,2], [29,25,0], [29,25,8], [22,33,8], [5,13,-2], - [19,25,1], [17,24,0], [21,10,-3], [16,30,3], [25,26,1], [24,25,1], [25,23,0], [25,23,0], - [19,24,0], [28,27,2], [23,25,1], [19,25,1], [27,24,0], [20,25,1], [29,26,2], [21,29,5], - [28,26,2], [23,24,0], [29,29,5], [25,25,1], [23,25,1], [38,26,2], [35,29,2], [27,25,1], - [25,26,2], [27,29,5], [29,25,1], [22,25,1], [28,25,0], [25,25,1], [23,26,2], [36,26,2], - [28,24,0], [25,29,5], [27,24,0], [21,22,1], [21,22,1], [21,22,1], [21,22,1], [21,22,1], - [19,24,0], [19,24,0], [15,35,9], [10,35,9], [15,35,9], [10,35,9], [15,35,9], [15,35,9], - [12,35,9], [10,35,9], [6,35,9], [13,35,9], [15,37,10], [20,37,10], [16,35,9], [8,23,3], - [29,35,33], [25,24,0], [27,26,2], [17,33,8], [21,21,0], [21,21,0], [25,27,5], [24,27,5], - [13,31,7], [14,32,8], [14,31,7], [20,31,7], [26,30,5], [25,31,6], [25,27,2], [25,30,5] - ], - cmex10: [ - [15,42,40], [11,42,40], [14,42,40], [8,42,40], [16,42,40], [10,42,40], [16,42,40], [10,42,40], - [16,42,40], [16,42,40], [14,42,40], [13,42,40], [7,23,22], [14,23,22], [18,42,40], [18,42,40], - [20,62,60], [15,62,60], [24,83,81], [18,83,81], [18,83,81], [10,83,81], [20,83,81], [12,83,81], - [20,83,81], [12,83,81], [22,83,81], [22,83,81], [23,83,81], [22,83,81], [34,83,81], [34,83,81], - [26,103,101], [19,103,101], [20,103,101], [11,103,101], [22,103,101], [13,103,101], [22,103,101], [13,103,101], - [23,103,101], [23,103,101], [24,103,101], [23,103,101], [42,103,101], [42,103,101], [26,62,60], [26,62,60], - [29,63,61], [20,63,61], [23,62,60], [12,62,60], [23,62,60], [12,62,60], [14,22,21], [12,22,21], - [25,32,31], [18,32,31], [25,32,31], [18,32,31], [18,63,62], [25,63,62], [18,12,11], [13,22,21], - [29,62,60], [20,62,60], [14,22,21], [20,22,21], [18,62,60], [17,62,60], [27,35,34], [36,49,48], - [21,39,38], [33,77,76], [36,35,34], [50,49,48], [36,35,34], [50,49,48], [36,35,34], [50,49,48], - [34,35,34], [31,35,34], [21,39,38], [27,35,34], [27,35,34], [27,35,34], [27,35,34], [27,35,34], - [48,49,48], [42,49,48], [33,77,76], [36,49,48], [36,49,48], [36,49,48], [36,49,48], [36,49,48], - [31,35,34], [42,49,48], [21,7,-19], [36,8,-19], [51,8,-19], [19,5,-20], [34,5,-21], [50,5,-21], - [16,62,60], [9,62,60], [18,62,60], [11,62,60], [18,62,60], [11,62,60], [19,62,60], [19,62,60], - [35,42,40], [35,62,60], [35,83,81], [35,103,101], [26,63,62], [26,23,22], [37,22,20], [18,22,21], - [19,22,21], [19,22,21], [17,13,8], [18,13,8], [17,12,0], [18,12,0], [25,22,21], [25,22,21] - ], - cmbx10: [ - [22,24,0], [31,24,0], [29,25,1], [27,24,0], [25,23,0], [30,24,0], [27,24,0], [29,24,0], - [27,24,0], [29,24,0], [27,24,0], [26,24,0], [21,24,0], [21,24,0], [32,24,0], [32,24,0], - [10,16,0], [12,23,7], [12,7,-17], [16,7,-17], [15,6,-17], [16,7,-17], [17,3,-18], [19,6,-18], - [15,8,7], [20,25,1], [28,17,1], [30,17,1], [19,23,4], [35,24,0], [39,25,1], [29,29,3], - [11,5,-9], [9,24,0], [16,13,-11], [31,31,7], [18,28,2], [31,28,2], [29,25,1], [9,13,-11], - [13,35,9], [12,35,9], [17,16,-10], [29,27,5], [9,13,7], [11,5,-5], [9,6,0], [18,35,9], - [18,24,1], [17,23,0], [18,23,0], [18,24,1], [19,23,0], [18,24,1], [18,24,1], [19,24,1], - [18,24,1], [18,24,1], [9,16,0], [9,23,7], [9,24,7], [29,11,-3], [17,24,7], [17,24,0], - [29,25,1], [29,24,0], [26,24,0], [27,25,1], [28,24,0], [25,24,0], [23,24,0], [29,25,1], - [30,24,0], [14,24,0], [18,25,1], [29,24,0], [22,24,0], [36,24,0], [30,24,0], [28,25,1], - [25,24,0], [28,31,7], [30,25,1], [20,25,1], [26,23,0], [29,25,1], [29,25,1], [40,25,1], - [29,24,0], [29,24,0], [22,24,0], [10,35,9], [20,13,-11], [7,35,9], [16,7,-17], [9,6,-18], - [9,13,-11], [19,17,1], [21,25,1], [17,17,1], [21,25,1], [17,17,1], [15,24,0], [19,23,7], - [21,24,0], [10,24,0], [12,31,7], [20,24,0], [10,24,0], [32,16,0], [21,16,0], [19,17,1], - [21,23,7], [21,23,7], [16,16,0], [15,17,1], [13,23,1], [21,17,1], [20,17,1], [28,17,1], - [20,16,0], [20,23,7], [16,16,0], [20,2,-8], [40,2,-8], [17,8,-17], [17,5,-19], [17,6,-18] - ], - cmti10: [ - [25,24,0], [26,25,0], [27,25,1], [22,25,0], [26,24,0], [29,24,0], [27,24,0], [29,24,0], - [25,24,0], [29,24,0], [26,24,0], [27,31,7], [22,31,7], [23,31,7], [33,31,7], [34,31,7], - [12,17,1], [13,23,7], [15,7,-17], [19,7,-17], [19,5,-17], [20,7,-17], [20,2,-19], [23,7,-18], - [12,8,7], [21,31,7], [25,17,1], [25,17,1], [19,23,4], [33,24,0], [36,25,1], [28,29,3], - [12,5,-9], [13,25,0], [18,11,-13], [29,31,7], [24,25,1], [29,28,2], [28,26,1], [13,11,-13], - [18,35,9], [13,35,9], [20,16,-10], [26,21,2], [8,11,7], [12,3,-6], [8,4,0], [21,35,9], - [19,24,1], [16,23,0], [19,24,1], [20,24,1], [17,30,7], [20,24,1], [20,24,1], [22,24,1], - [19,24,1], [19,24,1], [11,15,0], [11,22,7], [11,25,8], [27,9,-4], [16,25,8], [19,25,0], - [27,25,1], [24,25,0], [25,24,0], [28,25,1], [27,24,0], [26,24,0], [25,24,0], [28,25,1], - [29,24,0], [18,24,0], [22,25,1], [30,24,0], [22,24,0], [35,24,0], [29,24,0], [27,25,1], - [25,24,0], [27,31,7], [25,25,1], [22,25,1], [28,24,0], [29,25,1], [30,25,1], [39,25,1], - [29,24,0], [30,24,0], [24,24,0], [16,35,9], [21,11,-13], [14,35,9], [18,6,-18], [13,4,-19], - [13,11,-13], [19,17,1], [16,25,1], [16,17,1], [20,25,1], [16,17,1], [17,31,7], [17,23,7], - [19,25,1], [12,24,1], [15,30,7], [18,25,1], [11,25,1], [29,17,1], [20,17,1], [18,17,1], - [18,23,7], [17,23,7], [17,17,1], [15,17,1], [13,23,1], [20,17,1], [17,17,1], [24,17,1], - [18,17,1], [18,23,7], [16,17,1], [19,2,-8], [36,2,-8], [20,7,-17], [20,4,-19], [19,4,-19] - ] -}); - -jsMath.Img.AddFont(298,{ - cmr10: [ - [24,28,0], [33,30,0], [30,30,1], [28,30,0], [26,28,0], [30,28,0], [28,28,0], [30,29,0], - [28,28,0], [30,28,0], [28,29,0], [26,29,0], [22,29,0], [22,29,0], [33,29,0], [33,29,0], - [11,19,0], [11,28,9], [13,9,-20], [17,9,-20], [16,6,-21], [17,8,-21], [18,3,-22], [20,8,-22], - [16,10,9], [20,30,1], [29,20,1], [31,20,1], [20,27,5], [36,28,0], [41,30,1], [30,34,3], - [11,6,-11], [8,30,0], [15,13,-16], [32,37,8], [19,34,3], [32,34,3], [30,31,1], [9,13,-16], - [14,42,11], [12,42,11], [18,18,-13], [30,28,4], [9,13,8], [12,4,-7], [8,5,0], [19,42,11], - [19,29,1], [18,28,0], [19,28,0], [19,29,1], [20,28,0], [19,29,1], [19,29,1], [20,29,1], - [19,29,1], [19,29,1], [8,18,0], [8,26,8], [8,30,9], [30,11,-5], [18,30,9], [18,29,0], - [30,30,1], [30,30,0], [27,28,0], [28,30,1], [29,28,0], [27,28,0], [26,28,0], [31,30,1], - [30,28,0], [14,28,0], [20,29,1], [31,28,0], [24,28,0], [37,28,0], [30,28,0], [30,30,1], - [26,28,0], [30,37,8], [31,29,1], [21,30,1], [29,28,0], [30,29,1], [30,29,1], [42,29,1], - [30,28,0], [31,28,0], [23,28,0], [11,42,11], [20,13,-16], [7,42,11], [16,7,-22], [8,5,-23], - [8,13,-16], [21,20,1], [22,30,1], [18,20,1], [22,30,1], [18,20,1], [15,29,0], [20,28,9], - [22,29,0], [11,28,0], [11,37,9], [21,29,0], [11,29,0], [34,19,0], [22,19,0], [20,20,1], - [22,27,8], [22,27,8], [15,19,0], [15,20,1], [14,27,1], [22,20,1], [21,19,1], [29,19,1], - [22,18,0], [21,27,9], [17,18,0], [21,2,-10], [41,2,-10], [18,8,-21], [18,5,-23], [17,5,-23] - ], - cmmi10: [ - [30,28,0], [33,30,0], [31,30,1], [28,30,0], [32,28,0], [37,28,0], [34,28,0], [29,29,0], - [27,28,0], [29,28,0], [33,29,0], [25,20,1], [25,37,8], [23,28,9], [19,31,1], [16,19,1], - [20,38,9], [21,28,9], [19,30,1], [14,20,1], [23,20,1], [23,30,1], [24,28,9], [22,19,0], - [19,38,9], [24,19,1], [21,28,9], [24,19,1], [21,19,1], [22,20,1], [24,38,9], [25,28,9], - [27,38,9], [25,20,1], [18,20,1], [23,30,1], [34,19,1], [21,27,8], [17,24,5], [26,28,9], - [39,12,-9], [39,13,1], [39,12,-9], [39,13,1], [10,11,-9], [10,11,-9], [20,22,1], [20,22,1], - [19,20,1], [18,19,0], [19,19,0], [19,28,9], [20,28,8], [19,28,9], [19,29,1], [20,28,9], - [19,29,1], [19,28,9], [8,5,0], [9,13,8], [29,25,2], [19,42,11], [29,25,2], [21,20,0], - [24,31,1], [30,30,0], [31,28,0], [32,30,1], [33,28,0], [32,28,0], [31,28,0], [32,30,1], - [37,28,0], [21,28,0], [26,29,1], [37,28,0], [27,28,0], [43,28,0], [37,28,0], [31,30,1], - [31,28,0], [31,37,8], [31,29,1], [27,30,1], [29,28,0], [32,29,1], [32,29,1], [43,29,1], - [35,28,0], [32,28,0], [30,28,0], [14,32,1], [13,39,9], [14,39,9], [39,11,-5], [39,11,-5], - [17,30,1], [21,20,1], [18,30,1], [18,20,1], [22,30,1], [18,20,1], [23,38,9], [20,28,9], - [23,30,1], [13,29,1], [18,37,9], [21,30,1], [11,30,1], [35,20,1], [24,20,1], [20,20,1], - [23,27,8], [19,27,8], [18,20,1], [18,20,1], [14,27,1], [23,20,1], [20,20,1], [29,20,1], - [22,20,1], [21,28,9], [20,20,1], [13,20,1], [16,28,9], [26,28,9], [26,9,-21], [27,6,-22] - ], - cmsy10: [ - [29,3,-9], [8,5,-8], [26,21,0], [18,19,-1], [30,24,2], [21,21,0], [30,28,0], [30,28,7], - [30,28,4], [30,28,4], [30,28,4], [30,28,4], [30,28,4], [39,39,9], [19,17,-2], [19,17,-2], - [30,20,0], [30,19,-1], [29,33,6], [29,33,6], [29,33,6], [29,33,6], [29,33,6], [29,33,6], - [30,11,-5], [30,18,-2], [29,25,2], [29,25,2], [39,27,3], [39,27,3], [29,25,2], [29,25,2], - [39,16,-2], [39,16,-2], [18,37,8], [18,37,8], [39,16,-2], [39,37,8], [39,38,9], [30,19,-1], - [39,24,2], [39,24,2], [24,37,8], [24,37,8], [40,24,2], [39,37,8], [39,38,9], [30,20,1], - [11,22,-1], [39,20,1], [24,25,2], [24,25,2], [34,30,0], [34,30,9], [27,39,9], [6,16,-2], - [23,30,1], [21,29,0], [26,12,-3], [19,36,4], [30,31,1], [29,30,1], [30,28,0], [30,28,0], - [23,29,0], [33,33,3], [28,30,1], [22,30,1], [32,28,0], [24,30,1], [34,30,2], [25,34,5], - [34,30,2], [28,28,0], [35,33,5], [31,30,1], [27,30,1], [46,32,3], [43,35,3], [32,30,1], - [31,31,3], [33,35,6], [35,29,1], [27,30,1], [33,30,0], [30,30,2], [28,30,2], [43,30,2], - [34,28,0], [30,34,6], [32,28,0], [26,26,1], [26,26,1], [26,26,1], [26,26,1], [26,26,1], - [23,29,0], [23,29,0], [18,42,11], [12,42,11], [18,42,11], [12,42,11], [18,42,11], [18,42,11], - [14,42,11], [12,42,11], [7,42,11], [16,42,11], [18,44,12], [24,44,12], [19,42,11], [10,28,4], - [35,42,40], [30,28,0], [33,30,2], [20,39,9], [25,25,0], [25,25,0], [30,33,6], [29,33,6], - [16,38,9], [16,38,9], [16,38,9], [24,37,8], [31,36,6], [30,37,7], [30,32,2], [30,36,6] - ], - cmex10: [ - [17,50,48], [13,50,48], [17,50,48], [9,50,48], [19,50,48], [12,50,48], [19,50,48], [12,50,48], - [20,50,48], [20,50,48], [17,50,48], [16,50,48], [8,27,26], [17,27,26], [22,50,48], [22,50,48], - [23,75,73], [18,75,73], [29,99,97], [22,99,97], [22,99,97], [12,99,97], [24,99,97], [14,99,97], - [24,99,97], [14,99,97], [26,99,97], [26,99,97], [27,99,97], [26,99,97], [41,99,97], [41,99,97], - [32,124,122], [23,124,122], [24,124,122], [13,124,122], [26,124,122], [15,124,122], [26,124,122], [15,124,122], - [28,124,122], [28,124,122], [29,124,122], [28,124,122], [51,124,122], [51,124,122], [31,75,73], [31,75,73], - [35,75,73], [24,75,73], [28,75,73], [14,75,73], [28,75,73], [14,75,73], [17,26,25], [14,26,25], - [30,39,38], [21,39,38], [30,38,37], [21,38,37], [21,76,75], [30,76,75], [21,14,13], [15,26,25], - [35,76,73], [24,76,73], [17,27,26], [24,27,26], [22,75,73], [21,75,73], [32,42,41], [44,59,58], - [25,47,46], [39,93,92], [44,42,41], [60,59,58], [44,42,41], [60,59,58], [44,42,41], [60,59,58], - [41,42,41], [37,42,41], [25,47,46], [32,42,41], [32,42,41], [32,42,41], [32,42,41], [32,42,41], - [57,59,58], [51,59,58], [39,93,92], [44,59,58], [44,59,58], [44,59,58], [44,59,58], [44,59,58], - [37,42,41], [51,59,58], [24,8,-23], [43,9,-23], [61,9,-23], [23,6,-24], [41,6,-25], [60,6,-25], - [19,75,73], [11,75,73], [21,75,73], [13,75,73], [21,75,73], [13,75,73], [23,75,73], [23,75,73], - [42,50,48], [42,75,73], [42,99,97], [42,124,122], [31,75,74], [31,27,26], [45,26,24], [22,26,25], - [23,26,25], [23,26,25], [20,14,9], [21,14,9], [20,14,0], [21,14,0], [30,26,25], [30,26,25] - ], - cmbx10: [ - [27,28,0], [37,29,0], [34,30,1], [32,29,0], [30,28,0], [36,28,0], [32,29,0], [34,29,0], - [32,29,0], [34,29,0], [32,29,0], [31,29,0], [25,29,0], [25,29,0], [38,29,0], [38,29,0], - [12,19,0], [14,28,9], [14,9,-20], [19,9,-20], [19,6,-21], [20,9,-20], [21,3,-22], [23,8,-21], - [19,10,9], [24,30,1], [33,20,1], [36,20,1], [23,28,5], [42,29,0], [47,30,1], [34,34,3], - [14,6,-11], [11,29,0], [19,15,-14], [37,37,8], [21,34,3], [37,34,3], [35,30,1], [11,15,-14], - [16,42,11], [14,42,11], [21,19,-12], [34,32,6], [11,15,8], [14,5,-7], [10,7,0], [21,42,11], - [22,28,1], [21,27,0], [22,27,0], [22,28,1], [23,27,0], [22,28,1], [22,28,1], [23,29,1], - [22,28,1], [22,28,1], [10,19,0], [10,27,8], [11,30,9], [34,13,-4], [20,30,9], [20,29,0], - [34,30,1], [34,29,0], [31,29,0], [32,30,1], [34,29,0], [30,28,0], [28,28,0], [35,30,1], - [36,29,0], [17,29,0], [22,30,1], [35,29,0], [27,29,0], [44,29,0], [36,29,0], [33,30,1], - [30,29,0], [33,37,8], [36,30,1], [24,30,1], [32,28,0], [35,30,1], [35,30,1], [48,30,1], - [35,29,0], [35,29,0], [27,29,0], [13,42,11], [24,15,-14], [8,42,11], [19,8,-21], [10,7,-22], - [10,15,-14], [23,20,1], [25,30,1], [20,20,1], [25,30,1], [21,20,1], [18,29,0], [23,28,9], - [26,29,0], [12,29,0], [14,38,9], [25,29,0], [13,29,0], [39,19,0], [26,19,0], [23,20,1], - [25,27,8], [25,27,8], [19,19,0], [18,20,1], [16,28,1], [26,20,1], [24,20,1], [33,20,1], - [24,19,0], [24,28,9], [19,19,0], [24,2,-10], [48,2,-10], [21,9,-21], [20,5,-24], [20,7,-22] - ], - cmti10: [ - [29,28,0], [31,30,0], [33,30,1], [27,30,0], [31,28,0], [35,28,0], [33,28,0], [35,29,0], - [30,28,0], [34,28,0], [32,29,0], [34,38,9], [27,38,9], [29,38,9], [40,38,9], [41,38,9], - [14,20,1], [16,28,9], [18,9,-20], [23,9,-20], [23,6,-20], [24,8,-21], [24,3,-22], [28,8,-22], - [14,9,8], [25,38,9], [30,20,1], [30,20,1], [23,28,5], [39,28,0], [44,30,1], [34,34,3], - [15,6,-11], [16,30,0], [21,13,-16], [34,37,8], [29,30,1], [35,34,3], [33,31,1], [16,13,-16], - [22,42,11], [16,42,11], [24,18,-13], [31,26,3], [10,13,8], [14,3,-7], [10,5,0], [26,42,11], - [23,29,1], [19,28,0], [23,29,1], [24,29,1], [20,36,8], [24,29,1], [24,29,1], [26,29,1], - [23,29,1], [23,29,1], [13,18,0], [13,26,8], [14,30,9], [32,11,-5], [19,30,9], [23,30,0], - [33,30,1], [29,30,0], [31,28,0], [34,30,1], [32,28,0], [31,28,0], [31,28,0], [34,30,1], - [35,28,0], [21,28,0], [26,29,1], [36,28,0], [26,28,0], [42,28,0], [35,28,0], [33,30,1], - [30,28,0], [33,37,8], [30,29,1], [26,30,1], [34,28,0], [35,29,1], [36,29,1], [47,29,1], - [34,28,0], [36,28,0], [29,28,0], [19,42,11], [26,13,-16], [16,42,11], [22,8,-21], [15,5,-23], - [15,13,-16], [22,20,1], [19,30,1], [20,20,1], [23,30,1], [20,20,1], [21,38,9], [20,28,9], - [22,30,1], [14,28,1], [17,36,9], [21,30,1], [13,30,1], [35,20,1], [25,20,1], [21,20,1], - [21,27,8], [21,27,8], [21,20,1], [18,20,1], [16,27,1], [23,20,1], [21,20,1], [29,20,1], - [22,20,1], [22,28,9], [20,20,1], [23,2,-10], [43,2,-10], [24,9,-20], [24,5,-23], [23,5,-23] - ] -}); - -jsMath.Img.AddFont(358,{ - cmr10: [ - [29,34,0], [39,36,0], [36,37,2], [33,36,0], [31,34,0], [36,34,0], [33,34,0], [36,35,0], - [33,34,0], [36,34,0], [34,35,0], [31,35,0], [26,35,0], [26,35,0], [40,35,0], [40,35,0], - [13,22,0], [13,33,11], [15,11,-24], [20,11,-24], [19,7,-25], [20,9,-25], [22,2,-27], [24,10,-26], - [18,11,10], [24,36,1], [34,23,1], [37,23,1], [23,32,5], [43,34,0], [49,37,2], [36,40,3], - [13,7,-13], [10,36,0], [17,15,-19], [39,44,10], [22,40,3], [39,40,3], [36,38,2], [11,15,-19], - [17,50,13], [15,50,13], [22,22,-15], [36,34,5], [10,16,10], [14,3,-9], [10,6,0], [22,50,13], - [23,35,2], [21,33,0], [22,33,0], [23,35,2], [24,34,0], [22,35,2], [23,35,2], [24,36,2], - [23,35,2], [23,35,2], [10,22,0], [10,32,10], [10,36,11], [36,12,-6], [21,36,11], [21,35,0], - [36,36,1], [36,36,0], [32,34,0], [33,37,2], [35,34,0], [32,34,0], [30,34,0], [37,37,2], - [36,34,0], [17,34,0], [23,36,2], [37,34,0], [29,34,0], [44,34,0], [36,34,0], [36,37,2], - [31,34,0], [36,45,10], [36,36,2], [25,37,2], [34,34,0], [36,36,2], [36,36,2], [50,36,2], - [36,34,0], [37,34,0], [28,34,0], [13,50,13], [23,15,-19], [8,50,13], [19,8,-26], [10,6,-27], - [10,15,-19], [25,23,1], [26,35,1], [21,23,1], [26,35,1], [21,23,1], [18,35,0], [24,34,11], - [27,34,0], [13,33,0], [13,44,11], [26,34,0], [13,34,0], [40,22,0], [27,22,0], [24,23,1], - [26,32,10], [26,32,10], [18,22,0], [18,23,1], [17,32,1], [27,23,1], [25,23,1], [35,23,1], - [26,22,0], [25,33,11], [20,22,0], [25,2,-12], [49,2,-12], [21,10,-25], [21,5,-28], [20,6,-27] - ], - cmmi10: [ - [36,34,0], [39,36,0], [37,37,2], [33,36,0], [39,34,0], [44,34,0], [40,34,0], [35,35,0], - [32,34,0], [34,34,0], [39,35,0], [30,23,1], [29,45,10], [27,33,11], [23,36,1], [19,23,1], - [24,46,11], [25,33,11], [23,36,1], [16,23,1], [27,23,1], [27,35,1], [29,33,11], [26,22,0], - [22,46,11], [28,23,1], [25,33,11], [28,23,1], [26,23,1], [26,23,1], [29,45,11], [30,33,11], - [32,45,11], [30,23,1], [22,25,2], [28,36,1], [41,23,1], [25,32,10], [21,28,6], [31,33,11], - [47,15,-11], [47,15,1], [47,15,-11], [47,15,1], [11,12,-11], [11,12,-11], [24,26,1], [24,26,1], - [23,25,2], [21,23,0], [22,23,0], [23,34,11], [24,33,10], [22,34,11], [23,35,2], [24,34,11], - [23,35,2], [23,34,11], [10,6,0], [10,16,10], [34,29,2], [22,50,13], [34,29,2], [25,24,0], - [28,38,2], [36,36,0], [38,34,0], [38,37,2], [40,34,0], [38,34,0], [37,34,0], [38,37,2], - [44,34,0], [25,34,0], [32,36,2], [44,34,0], [32,34,0], [52,34,0], [44,34,0], [37,37,2], - [37,34,0], [37,45,10], [37,36,2], [32,37,2], [35,34,0], [38,36,2], [38,36,2], [52,36,2], - [42,34,0], [38,34,0], [36,34,0], [17,39,2], [16,47,11], [17,47,11], [47,13,-6], [47,13,-6], - [20,36,1], [25,23,1], [21,35,1], [22,23,1], [26,35,1], [22,23,1], [28,46,11], [24,33,11], - [27,35,1], [15,34,1], [21,44,11], [25,35,1], [13,35,1], [42,23,1], [28,23,1], [23,23,1], - [27,32,10], [23,32,10], [22,23,1], [21,23,1], [17,32,1], [27,23,1], [23,23,1], [34,23,1], - [26,23,1], [25,33,11], [23,23,1], [15,23,1], [19,33,11], [31,34,11], [31,10,-25], [32,7,-26] - ], - cmsy10: [ - [34,3,-11], [10,6,-9], [31,25,0], [22,22,-1], [36,28,2], [24,24,0], [36,33,0], [36,34,9], - [36,34,5], [36,34,5], [36,34,5], [36,34,5], [36,34,5], [47,47,11], [22,20,-2], [22,20,-2], - [36,24,0], [36,22,-1], [34,39,7], [34,39,7], [34,39,7], [34,39,7], [34,39,7], [34,39,7], - [36,12,-6], [36,22,-2], [34,29,2], [34,29,2], [47,32,4], [47,32,4], [34,29,2], [34,29,2], - [47,18,-3], [47,18,-3], [21,44,10], [21,44,10], [47,18,-3], [47,45,10], [47,44,10], [36,22,-1], - [47,28,2], [47,28,2], [29,44,10], [29,44,10], [48,28,2], [47,45,10], [47,44,10], [36,23,1], - [13,26,-2], [47,23,1], [29,29,2], [29,29,2], [41,36,0], [41,36,11], [32,47,11], [7,19,-3], - [28,36,2], [25,34,0], [30,14,-4], [23,42,4], [35,38,2], [34,36,1], [36,33,0], [36,33,0], - [28,34,0], [40,39,3], [33,37,2], [27,37,2], [38,34,0], [28,37,2], [41,36,2], [30,41,6], - [41,37,3], [34,34,0], [42,40,6], [36,37,2], [33,37,2], [55,38,3], [50,41,3], [39,37,2], - [36,37,3], [39,42,7], [42,36,2], [32,37,2], [40,36,0], [35,36,2], [33,37,3], [51,37,3], - [40,34,0], [36,41,7], [38,34,0], [30,32,2], [30,32,2], [30,32,2], [30,32,2], [30,32,2], - [28,34,0], [28,34,0], [21,50,13], [14,50,13], [21,50,13], [14,50,13], [21,50,13], [21,50,13], - [17,50,13], [14,50,13], [8,50,13], [18,50,13], [21,52,14], [29,52,14], [22,50,13], [11,34,5], - [42,50,48], [35,34,0], [39,36,2], [24,47,11], [30,30,0], [30,30,0], [35,39,7], [34,39,7], - [19,46,11], [19,46,11], [19,46,11], [29,44,10], [37,43,7], [36,44,8], [36,38,2], [36,43,7] - ], - cmex10: [ - [21,59,57], [15,59,57], [20,59,57], [11,59,57], [22,59,57], [14,59,57], [22,59,57], [14,59,57], - [23,59,57], [23,59,57], [20,59,57], [19,59,57], [10,33,31], [21,33,31], [26,59,57], [26,59,57], - [28,89,87], [21,89,87], [35,118,116], [26,118,116], [26,118,116], [14,118,116], [28,118,116], [17,118,116], - [28,118,116], [17,118,116], [31,118,116], [31,118,116], [32,118,116], [31,118,116], [49,118,116], [49,118,116], - [38,147,145], [28,147,145], [28,147,145], [16,147,145], [31,147,145], [18,147,145], [31,147,145], [18,147,145], - [33,147,145], [33,147,145], [35,148,146], [33,148,146], [60,147,145], [60,147,145], [37,89,87], [37,89,87], - [42,89,87], [29,89,87], [33,89,87], [17,89,87], [33,89,87], [17,89,87], [20,31,30], [17,31,30], - [36,46,45], [25,46,45], [36,46,45], [25,46,45], [25,90,89], [36,90,89], [25,17,16], [18,31,30], - [42,90,87], [29,90,87], [20,31,30], [29,31,30], [26,89,87], [25,89,87], [39,50,49], [52,70,69], - [30,56,55], [47,110,109], [52,50,49], [72,70,69], [52,50,49], [72,70,69], [52,50,49], [72,70,69], - [49,50,49], [44,50,49], [30,56,55], [39,50,49], [39,50,49], [39,50,49], [39,50,49], [39,50,49], - [68,70,69], [60,70,69], [47,110,109], [52,70,69], [52,70,69], [52,70,69], [52,70,69], [52,70,69], - [44,50,49], [60,70,69], [29,10,-27], [51,10,-28], [72,10,-28], [28,7,-29], [49,7,-30], [71,7,-30], - [23,89,87], [12,89,87], [25,89,87], [15,89,87], [25,89,87], [15,89,87], [27,89,87], [27,89,87], - [50,59,57], [50,89,87], [50,118,116], [50,148,146], [37,90,89], [37,32,31], [53,31,29], [26,31,30], - [28,31,30], [28,31,30], [25,17,11], [25,17,11], [25,17,0], [25,17,0], [36,31,30], [36,31,30] - ], - cmbx10: [ - [32,34,0], [45,35,0], [41,36,1], [38,35,0], [36,34,0], [43,34,0], [38,34,0], [41,35,0], - [38,34,0], [41,34,0], [39,35,0], [37,35,0], [30,35,0], [30,35,0], [46,35,0], [46,35,0], - [15,23,0], [17,33,10], [17,11,-24], [23,11,-24], [22,7,-25], [23,10,-24], [25,3,-27], [28,9,-26], - [22,11,10], [28,36,1], [40,24,1], [43,24,1], [27,34,6], [50,34,0], [56,36,1], [41,40,3], - [16,7,-13], [13,35,0], [23,18,-16], [44,44,10], [25,40,3], [44,40,3], [41,36,1], [13,18,-16], - [19,50,13], [17,50,13], [25,22,-15], [41,39,7], [13,18,10], [16,6,-8], [12,8,0], [25,50,13], - [26,34,1], [25,33,0], [26,33,0], [26,34,1], [27,33,0], [26,34,1], [26,34,1], [28,35,1], - [26,34,1], [26,34,1], [12,22,0], [12,32,10], [13,36,11], [41,15,-5], [24,35,10], [24,35,0], - [41,36,1], [41,35,0], [37,34,0], [38,36,1], [41,34,0], [36,34,0], [34,34,0], [42,36,1], - [43,34,0], [20,34,0], [26,35,1], [42,34,0], [32,34,0], [52,34,0], [43,34,0], [40,36,1], - [36,34,0], [40,45,10], [43,35,1], [29,36,1], [38,34,0], [42,35,1], [42,35,1], [58,35,1], - [41,34,0], [42,34,0], [32,34,0], [15,50,13], [28,18,-16], [10,50,13], [22,9,-25], [12,9,-26], - [12,18,-16], [28,24,1], [30,35,1], [24,24,1], [30,35,1], [25,24,1], [22,35,0], [28,33,10], - [31,34,0], [15,35,0], [17,45,10], [29,34,0], [15,34,0], [46,23,0], [31,23,0], [27,24,1], - [30,33,10], [30,33,10], [22,23,0], [21,24,1], [19,33,1], [31,24,1], [29,23,1], [40,23,1], - [29,22,0], [29,32,10], [23,22,0], [29,3,-12], [57,3,-12], [25,10,-25], [24,6,-28], [24,9,-26] - ], - cmti10: [ - [35,34,0], [37,36,0], [39,37,2], [32,36,0], [37,34,0], [42,34,0], [39,34,0], [41,35,0], - [36,34,0], [41,34,0], [38,35,0], [40,46,11], [32,46,11], [34,46,11], [47,46,11], [49,46,11], - [17,23,1], [18,33,11], [22,11,-24], [27,11,-24], [27,7,-24], [28,9,-25], [28,2,-27], [33,10,-26], - [17,11,10], [30,46,11], [36,23,1], [36,23,1], [27,33,6], [47,34,0], [52,37,2], [41,40,3], - [17,7,-13], [19,36,0], [26,15,-19], [41,44,10], [35,36,1], [42,40,3], [40,38,2], [19,15,-19], - [26,50,13], [19,50,13], [29,22,-15], [37,31,3], [11,16,10], [17,3,-9], [11,6,0], [31,50,13], - [28,35,2], [23,33,0], [27,35,2], [28,35,2], [24,43,10], [28,35,2], [28,35,2], [31,35,2], - [28,35,2], [28,35,2], [15,22,0], [15,32,10], [16,36,11], [39,12,-6], [22,36,11], [27,36,0], - [39,36,1], [34,36,0], [36,34,0], [40,37,2], [38,34,0], [37,34,0], [36,34,0], [40,37,2], - [42,34,0], [25,34,0], [31,36,2], [43,34,0], [31,34,0], [50,34,0], [42,34,0], [39,37,2], - [36,34,0], [39,45,10], [36,36,2], [31,37,2], [40,34,0], [42,36,2], [43,36,2], [56,36,2], - [41,34,0], [43,34,0], [35,34,0], [22,50,13], [30,15,-19], [19,50,13], [26,8,-26], [18,6,-27], - [18,15,-19], [27,23,1], [23,35,1], [24,23,1], [28,35,1], [23,23,1], [25,46,11], [24,33,11], - [27,35,1], [17,34,1], [20,44,11], [25,35,1], [15,35,1], [42,23,1], [29,23,1], [25,23,1], - [25,32,10], [25,32,10], [24,23,1], [21,23,1], [19,32,1], [28,23,1], [25,23,1], [35,23,1], - [26,23,1], [26,33,11], [23,23,1], [27,2,-12], [51,2,-12], [29,11,-24], [29,6,-27], [27,6,-27] - ] -}); - -jsMath.Img.AddFont(430,{ - cmr10: [ - [35,41,0], [47,43,0], [43,44,2], [39,43,0], [37,40,0], [43,41,0], [40,41,0], [43,42,0], - [40,41,0], [43,41,0], [40,42,0], [38,42,0], [32,42,0], [32,42,0], [48,42,0], [48,42,0], - [15,27,0], [16,40,13], [18,12,-30], [24,12,-30], [23,8,-30], [24,11,-30], [26,3,-32], [28,12,-31], - [22,13,12], [28,43,1], [41,28,1], [45,28,1], [28,39,7], [52,41,0], [59,44,2], [43,48,4], - [16,8,-16], [12,43,0], [21,18,-23], [46,53,12], [27,49,4], [46,49,4], [43,45,2], [13,18,-23], - [20,60,15], [18,60,15], [26,27,-18], [43,40,5], [12,19,12], [17,4,-11], [12,7,0], [27,60,15], - [28,42,2], [25,40,0], [27,40,0], [27,42,2], [28,40,0], [27,42,2], [27,42,2], [29,42,2], - [27,42,2], [27,42,2], [12,26,0], [12,38,12], [12,43,13], [43,15,-7], [25,43,13], [25,42,0], - [43,43,1], [43,43,0], [39,41,0], [40,44,2], [42,41,0], [39,41,0], [36,41,0], [44,44,2], - [43,41,0], [20,41,0], [28,43,2], [44,41,0], [35,41,0], [52,41,0], [43,41,0], [43,44,2], - [37,41,0], [43,54,12], [44,43,2], [30,44,2], [41,40,0], [43,43,2], [44,43,2], [60,43,2], - [43,41,0], [44,41,0], [34,41,0], [16,60,15], [28,18,-23], [10,60,15], [23,10,-31], [12,7,-33], - [12,18,-23], [30,28,1], [31,42,1], [25,28,1], [32,42,1], [25,28,1], [22,42,0], [29,40,13], - [32,41,0], [15,40,0], [16,53,13], [31,41,0], [16,41,0], [48,27,0], [32,27,0], [28,28,1], - [31,39,12], [32,39,12], [22,27,0], [22,28,1], [20,38,1], [32,28,1], [30,27,1], [42,27,1], - [31,26,0], [30,39,13], [24,26,0], [30,2,-15], [59,2,-15], [25,12,-30], [25,7,-33], [24,7,-33] - ], - cmmi10: [ - [43,41,0], [47,43,0], [44,44,2], [40,43,0], [46,40,0], [52,41,0], [48,41,0], [42,42,0], - [38,41,0], [41,41,0], [47,42,0], [36,28,1], [35,54,12], [33,40,13], [27,43,1], [23,27,1], - [28,55,13], [30,40,13], [27,43,1], [20,28,1], [33,28,1], [33,42,1], [34,40,13], [31,27,0], - [27,55,13], [34,27,1], [30,40,13], [34,27,1], [31,27,1], [31,28,1], [34,54,13], [36,40,13], - [38,54,13], [36,28,1], [26,29,2], [34,43,1], [49,27,1], [30,39,12], [25,34,7], [37,40,13], - [56,18,-13], [56,17,1], [56,18,-13], [56,17,1], [14,15,-13], [14,15,-13], [28,31,1], [28,31,1], - [28,29,2], [25,27,0], [27,27,0], [27,40,13], [28,40,12], [27,40,13], [27,42,2], [29,41,13], - [27,42,2], [27,40,13], [12,7,0], [12,19,12], [41,35,3], [27,60,15], [41,35,3], [30,29,0], - [34,45,2], [43,43,0], [45,41,0], [45,44,2], [48,41,0], [46,41,0], [45,41,0], [45,44,2], - [52,41,0], [30,41,0], [38,43,2], [53,41,0], [38,41,0], [62,41,0], [52,41,0], [44,44,2], - [45,41,0], [44,54,12], [45,43,2], [39,44,2], [42,40,0], [45,43,2], [46,43,2], [62,43,2], - [51,41,0], [45,41,0], [43,41,0], [20,47,2], [19,56,13], [20,56,13], [56,15,-7], [56,16,-7], - [24,43,1], [30,28,1], [25,42,1], [26,28,1], [31,42,1], [26,28,1], [33,55,13], [28,40,13], - [33,42,1], [18,40,1], [25,52,13], [30,42,1], [16,42,1], [51,28,1], [34,28,1], [28,28,1], - [31,39,12], [27,39,12], [26,28,1], [25,28,1], [20,38,1], [33,28,1], [28,28,1], [41,28,1], - [32,28,1], [29,40,13], [28,28,1], [18,28,1], [23,40,13], [37,40,13], [37,13,-30], [39,9,-31] - ], - cmsy10: [ - [41,3,-13], [12,7,-11], [38,29,0], [26,26,-2], [43,34,2], [29,29,0], [43,40,0], [43,40,10], - [43,40,5], [43,40,5], [43,40,5], [43,40,5], [43,40,5], [56,56,13], [27,24,-3], [27,24,-3], - [43,29,0], [43,26,-2], [41,47,9], [41,47,9], [41,47,9], [41,47,9], [41,47,9], [41,47,9], - [43,15,-7], [43,26,-3], [41,35,3], [41,35,3], [56,38,4], [56,38,4], [41,35,3], [41,35,3], - [56,22,-4], [56,22,-4], [26,53,12], [26,53,12], [56,22,-4], [56,54,12], [56,53,12], [43,26,-2], - [56,33,2], [56,33,2], [35,53,12], [35,53,12], [57,33,2], [56,54,12], [56,53,12], [43,28,1], - [16,31,-2], [56,28,1], [35,35,3], [35,35,3], [49,43,0], [49,43,13], [38,56,13], [8,23,-3], - [33,43,2], [30,41,0], [36,16,-5], [27,51,5], [43,45,2], [41,43,1], [43,40,0], [43,40,0], - [33,41,0], [48,46,3], [40,44,2], [32,44,2], [46,41,0], [34,44,2], [49,43,2], [36,50,8], - [49,44,3], [40,41,0], [50,49,8], [44,44,2], [39,44,2], [66,45,3], [60,49,3], [46,44,2], - [44,44,3], [47,50,8], [50,43,2], [38,44,2], [48,43,0], [42,43,2], [39,44,3], [62,44,3], - [48,41,0], [43,49,8], [46,41,0], [36,38,2], [36,38,2], [36,38,2], [36,38,2], [36,38,2], - [33,41,0], [33,41,0], [25,60,15], [16,60,15], [25,60,15], [16,60,15], [26,60,15], [26,60,15], - [20,60,15], [17,60,15], [10,60,15], [22,60,15], [26,63,17], [35,63,17], [27,60,15], [14,40,5], - [51,60,57], [43,41,0], [47,43,2], [28,56,13], [36,36,0], [36,36,0], [43,47,9], [41,47,9], - [23,55,13], [23,55,13], [23,55,13], [35,53,12], [45,51,8], [43,53,10], [43,45,2], [43,51,8] - ], - cmex10: [ - [25,72,69], [18,72,69], [24,72,69], [13,72,69], [27,72,69], [16,72,69], [27,72,69], [16,72,69], - [28,72,69], [28,72,69], [24,72,69], [22,72,69], [12,39,37], [25,39,37], [31,72,69], [31,72,69], - [34,107,104], [25,107,104], [42,143,140], [32,143,140], [31,143,140], [17,143,140], [34,143,140], [20,143,140], - [34,143,140], [20,143,140], [37,143,140], [37,143,140], [39,143,140], [37,143,140], [59,143,140], [59,143,140], - [45,178,175], [33,178,175], [34,178,175], [19,178,175], [37,178,175], [22,178,175], [37,178,175], [22,178,175], - [39,178,175], [39,178,175], [42,178,175], [40,178,175], [73,178,175], [73,178,175], [45,107,104], [45,107,104], - [50,108,105], [35,108,105], [39,107,104], [21,107,104], [39,107,104], [21,107,104], [24,37,36], [21,37,36], - [43,55,54], [30,55,54], [43,55,54], [30,55,54], [30,108,107], [43,108,107], [30,20,19], [21,37,36], - [50,107,104], [35,107,104], [24,37,36], [35,37,36], [31,107,104], [30,107,104], [46,60,59], [63,84,83], - [36,67,66], [56,133,132], [63,60,59], [86,84,83], [63,60,59], [86,84,83], [63,60,59], [86,84,83], - [59,60,59], [53,60,59], [36,67,66], [46,60,59], [46,60,59], [46,60,59], [46,60,59], [46,60,59], - [82,84,83], [73,84,83], [56,133,132], [63,84,83], [63,84,83], [63,84,83], [63,84,83], [63,84,83], - [53,60,59], [73,84,83], [35,11,-33], [61,13,-33], [87,13,-33], [33,8,-35], [59,9,-36], [86,9,-36], - [27,107,104], [15,107,104], [31,107,104], [18,107,104], [31,107,104], [18,107,104], [33,107,104], [33,107,104], - [61,72,69], [61,107,104], [61,143,140], [61,178,175], [44,109,107], [44,39,37], [64,38,35], [31,37,36], - [33,37,36], [33,37,36], [30,21,13], [29,21,13], [30,20,0], [29,20,0], [43,37,36], [43,37,36] - ], - cmbx10: [ - [38,41,0], [54,42,0], [49,43,1], [46,42,0], [43,40,0], [51,41,0], [46,41,0], [49,42,0], - [46,41,0], [49,41,0], [46,42,0], [45,42,0], [36,42,0], [36,42,0], [55,42,0], [55,42,0], - [17,27,0], [20,39,12], [20,12,-30], [27,12,-30], [27,9,-30], [28,12,-29], [30,4,-32], [33,11,-31], - [26,13,12], [34,43,1], [48,28,1], [51,28,1], [32,40,7], [60,41,0], [68,43,1], [49,49,4], - [19,8,-16], [15,42,0], [28,21,-20], [53,53,12], [31,49,4], [53,49,4], [50,43,1], [15,21,-20], - [23,60,15], [20,60,15], [30,27,-18], [49,46,8], [15,22,12], [19,6,-10], [14,10,0], [31,60,15], - [32,40,1], [30,39,0], [31,39,0], [32,40,1], [32,39,0], [31,40,1], [32,40,1], [33,41,1], - [32,40,1], [32,40,1], [14,27,0], [15,39,12], [15,43,13], [49,18,-6], [29,42,12], [29,42,0], - [49,43,1], [49,42,0], [45,41,0], [46,43,1], [49,41,0], [43,41,0], [40,41,0], [50,43,1], - [51,41,0], [24,41,0], [32,42,1], [51,41,0], [38,41,0], [63,41,0], [51,41,0], [48,43,1], - [43,41,0], [48,54,12], [51,42,1], [34,43,1], [45,40,0], [50,42,1], [50,42,1], [69,42,1], - [50,41,0], [51,41,0], [39,41,0], [18,60,15], [34,21,-20], [12,60,15], [27,10,-31], [14,10,-31], - [14,21,-20], [33,28,1], [36,42,1], [29,28,1], [36,42,1], [30,28,1], [26,42,0], [33,39,12], - [37,41,0], [17,41,0], [20,53,12], [35,41,0], [18,41,0], [56,27,0], [37,27,0], [32,28,1], - [36,39,12], [36,39,12], [27,27,0], [25,28,1], [23,39,1], [37,28,1], [35,28,1], [48,28,1], - [35,27,0], [35,39,12], [28,27,0], [34,3,-15], [68,3,-15], [29,12,-30], [29,7,-34], [28,9,-32] - ], - cmti10: [ - [42,41,0], [45,43,0], [47,44,2], [38,43,0], [45,40,0], [51,41,0], [47,41,0], [50,42,0], - [44,41,0], [49,41,0], [45,42,0], [47,55,13], [38,55,13], [40,55,13], [57,55,13], [58,55,13], - [20,28,1], [22,40,13], [26,13,-29], [33,13,-29], [32,9,-29], [34,11,-30], [34,3,-32], [40,12,-31], - [20,13,12], [37,55,13], [43,28,1], [43,28,1], [33,39,7], [57,41,0], [63,44,2], [49,48,4], - [21,8,-16], [23,43,0], [31,18,-23], [49,53,12], [42,43,1], [50,49,4], [48,45,2], [22,18,-23], - [31,60,15], [23,60,15], [35,27,-18], [45,37,4], [14,19,12], [20,4,-11], [14,7,0], [37,60,15], - [33,42,2], [28,40,0], [33,42,2], [34,42,2], [28,52,12], [34,42,2], [34,42,2], [37,42,2], - [33,42,2], [33,42,2], [18,26,0], [18,38,12], [19,43,13], [46,15,-7], [27,43,13], [33,43,0], - [47,43,1], [41,43,0], [44,41,0], [48,44,2], [46,41,0], [44,41,0], [44,41,0], [48,44,2], - [51,41,0], [30,41,0], [37,43,2], [51,41,0], [37,41,0], [60,41,0], [51,41,0], [47,44,2], - [44,41,0], [47,54,12], [43,43,2], [38,44,2], [48,40,0], [51,43,2], [52,43,2], [67,43,2], - [49,41,0], [52,41,0], [42,41,0], [27,60,15], [36,18,-23], [23,60,15], [31,10,-31], [22,7,-33], - [22,18,-23], [32,28,1], [28,42,1], [28,28,1], [34,42,1], [28,28,1], [29,55,13], [29,40,13], - [32,42,1], [20,40,1], [25,52,13], [30,42,1], [19,42,1], [50,28,1], [35,28,1], [31,28,1], - [31,39,12], [30,39,12], [29,28,1], [25,28,1], [22,38,1], [34,28,1], [30,28,1], [42,28,1], - [31,28,1], [31,40,13], [28,28,1], [33,2,-15], [62,2,-15], [34,13,-29], [34,7,-33], [33,7,-33] - ] -}); diff --git a/sagenb/data/jsmath/uncompressed/font.js b/sagenb/data/jsmath/uncompressed/font.js deleted file mode 100644 index 51f0a2fe6..000000000 --- a/sagenb/data/jsmath/uncompressed/font.js +++ /dev/null @@ -1,1677 +0,0 @@ -jsMath.Img.AddFont(50,{ - cmr10: [ - [4,5,0], [6,5,0], [5,6,1], [5,5,0], [5,5,0], [5,5,0], [5,5,0], [5,5,0], - [5,5,0], [5,5,0], [5,5,0], [5,5,0], [4,5,0], [4,5,0], [6,5,0], [6,5,0], - [2,3,0], [3,5,2,1], [2,2,-3], [2,2,-3,-1], [2,2,-3,-1], [3,2,-3], [3,2,-3], [2,2,-3,-2], - [2,2,2,-1], [4,5,0], [5,4,0], [6,4,0], [4,5,1], [6,5,0], [7,6,1], [5,6,1], - [2,1,-2], [2,5,0], [3,2,-3], [6,7,2], [4,6,1], [6,7,1], [5,6,1], [2,2,-3], - [3,7,2], [2,7,2], [3,4,-2], [5,5,1], [2,2,1], [2,1,-1], [2,1,0], [3,7,2], - [4,6,1], [3,5,0], [4,5,0], [4,6,1], [4,5,0], [4,6,1], [4,6,1], [4,6,1], - [4,6,1], [4,6,1], [2,3,0], [2,4,1], [2,6,2], [5,3,0], [3,6,2], [3,5,0], - [5,5,0], [5,5,0], [5,5,0], [5,6,1], [5,5,0], [5,5,0], [5,5,0], [5,6,1], - [5,5,0], [3,5,0], [3,6,1], [5,5,0], [4,5,0], [6,5,0], [5,5,0], [5,6,1], - [5,5,0], [5,7,2], [5,6,1], [4,6,1], [5,5,0], [5,6,1], [5,5,0], [7,5,0], - [7,5,0,2], [5,5,0], [4,5,0], [2,8,2], [3,3,-2,-1], [2,8,2], [2,1,-4,-1], [2,1,-4], - [2,3,-2], [4,4,0], [4,5,0], [3,4,0], [4,5,0], [3,4,0], [3,5,0], [4,5,2], - [4,5,0], [2,5,0], [3,7,2,1], [4,5,0], [2,5,0], [6,3,0], [4,3,0], [4,4,0], - [4,5,2], [4,5,2], [3,3,0], [3,4,0], [3,5,0], [4,3,0], [4,3,0], [5,3,0], - [4,3,0], [4,5,2], [3,3,0], [4,1,-1], [7,1,-1], [2,2,-3,-1], [3,1,-4], [3,1,-4], - [3,11,20,28,37,45,54,63,71,80,88,97,105,114,122,131], - [9,17,26,34,42,51,59,67], - [141,73] - ], - cmmi10: [ - [5,5,0], [6,5,0], [6,6,1], [5,5,0], [6,5,0], [6,5,0], [6,5,0], [5,5,0], - [5,5,0], [5,5,0], [6,5,0], [5,3,0], [4,6,1], [4,5,2], [3,5,0], [3,3,0], - [4,7,2], [4,5,2], [4,5,0], [3,3,0], [4,3,0], [4,5,0], [4,5,2], [4,3,0], - [3,7,2], [4,3,0], [4,5,2], [4,3,0], [4,3,0], [4,3,0], [4,7,2], [4,5,2], - [5,7,2], [5,3,0], [3,5,1], [4,5,0], [6,3,0], [4,5,2], [3,4,1], [5,5,2], - [7,3,-1], [9,2,0,2], [7,3,-1], [9,2,0,2], [4,3,-1,2], [2,3,-1], [4,4,0], [4,4,0], - [4,5,1], [3,3,0], [4,4,0], [4,6,2], [4,6,2], [3,5,2], [4,6,1], [4,5,2], - [4,6,1], [4,6,2], [2,1,0], [2,2,1], [5,5,1], [3,7,2], [5,5,1], [4,4,0], - [4,6,1], [5,5,0], [6,5,0], [6,6,1], [6,5,0], [6,5,0], [6,5,0], [6,6,1], - [6,5,0], [4,5,0], [5,6,1], [6,5,0], [5,5,0], [7,5,0], [8,5,0,2], [6,6,1], - [6,5,0], [6,7,2], [6,6,1], [5,6,1], [5,5,0], [6,6,1], [6,5,0], [7,5,0], - [8,5,0,2], [6,5,0], [5,5,0], [3,5,0], [3,7,2], [3,7,2], [7,2,-1], [9,2,-1,2], - [3,5,0], [4,3,0], [3,5,0], [3,3,0], [4,5,0], [3,3,0], [4,7,2], [4,5,2], - [4,5,0], [2,5,0], [3,7,2], [4,5,0], [2,5,0], [6,3,0], [4,3,0], [4,3,0], - [4,5,2], [3,5,2], [3,3,0], [3,3,0], [3,5,0], [4,3,0], [4,3,0], [5,3,0], - [4,3,0], [4,5,2], [3,3,0], [2,3,0], [3,5,2], [5,5,2], [4,2,-3,-1], [3,1,-4,-2], - [3,11,19,28,36,44,53,61,69,77,86,94,102,111,119,127], - [9,17,26,34,42,51,59,67], - [137,73] - ], - cmsy10: [ - [5,1,-1], [2,1,-1], [4,4,0,-1], [3,4,0], [5,5,1], [4,4,0], [5,5,0], [5,5,1], - [5,5,1], [5,5,1], [5,5,1], [5,5,1], [5,5,1], [7,7,2], [3,4,0], [3,4,0], - [5,4,0], [5,4,0], [5,6,1], [5,6,1], [5,6,1], [5,6,1], [5,6,1], [5,6,1], - [5,2,-1], [5,4,0], [5,5,1], [5,5,1], [7,5,1], [7,5,1], [5,5,1], [5,5,1], - [7,3,0], [7,3,0], [3,7,2], [3,7,2], [7,3,0], [7,7,2], [7,7,2], [5,4,0], - [7,4,0], [7,4,0], [4,7,2], [4,7,2], [7,4,0], [7,7,2], [7,7,2], [5,3,0], - [2,4,0], [7,3,0], [4,5,1], [4,5,1], [6,5,0], [6,6,2], [4,7,2,-1], [1,3,0], - [4,5,0], [4,5,0], [5,3,0], [4,7,1], [5,6,1], [5,5,0], [5,5,0], [5,5,0], - [4,5,0], [6,6,1], [5,6,1], [4,6,1], [6,5,0], [4,6,1], [6,6,1], [5,6,1], - [6,6,1], [5,5,0], [6,6,1], [5,6,1], [5,6,1], [8,6,1], [9,7,1,2], [6,6,1], - [6,6,1], [6,6,1], [6,6,1], [5,6,1], [6,5,0], [6,6,1,1], [5,6,1], [8,6,1], - [6,5,0], [5,6,1], [6,5,0], [5,5,1], [5,5,0], [5,5,1], [5,4,0], [5,4,0], - [4,5,0], [4,5,0], [2,8,2,-1], [2,8,2], [2,8,2,-1], [2,8,2], [3,8,2], [3,8,2], - [3,8,2], [2,8,2], [2,7,2], [3,8,2], [3,8,2], [4,8,2], [3,8,2], [2,5,1], - [6,8,7], [5,5,0], [6,6,1], [4,7,2], [5,4,0], [5,5,0], [5,6,1], [5,6,1], - [3,7,2], [3,7,2], [3,7,2], [4,7,2], [6,6,1], [5,6,1], [5,6,1], [5,6,1], - [3,13,23,33,43,53,63,73,83,93,103,113,123,133,142,152], - [9,24,38,52,66,80,95,109], - [164,121] - ], - cmex10: [ - [6,9,8,3], [3,9,8], [2,10,9,-1], [2,10,9], [2,10,9,-1], [2,10,9], [2,9,8,-1], [2,9,8], - [2,9,8,-1], [2,9,8,-1], [3,9,8], [3,9,8], [1,5,5,-1], [2,5,5,-1], [4,9,8], [4,9,8], - [7,14,13,3], [3,14,13], [4,18,17,-1], [4,18,17], [3,18,17,-1], [2,18,17], [3,18,17,-1], [3,18,17], - [3,18,17,-1], [3,18,17], [4,18,17,-1], [4,18,17,-1], [4,18,17,-1], [5,18,17], [7,18,17], [7,18,17], - [9,22,21,3], [4,22,21], [3,22,21,-1], [3,22,21], [4,22,21,-1], [3,22,21], [4,22,21,-1], [3,22,21], - [4,22,21,-1], [4,22,21,-1], [4,22,21,-1], [5,22,21], [9,22,21], [9,22,21], [6,14,13], [6,14,13], - [9,14,13,3], [5,14,13], [3,14,13,-2], [3,14,13], [3,14,13,-2], [3,14,13], [1,5,5,-2], [2,5,5,-1], - [3,7,7,-2], [3,7,7,-1], [3,7,7,-2], [3,7,7,-1], [3,13,13,-1], [3,13,13,-2], [2,3,3,-2], [1,5,5,-2], - [9,14,13,3], [5,14,13], [1,5,5,-2], [2,5,5,-3], [4,14,13], [4,14,13], [6,7,7], [8,10,10], - [5,8,8], [7,16,16], [8,7,7], [11,10,10], [11,7,7,3], [11,10,10], [11,7,7,3], [11,10,10], - [10,8,7,3], [7,7,7], [5,8,8], [6,7,7], [6,7,7], [6,7,7], [6,7,7], [6,7,7], - [10,10,10], [9,10,10], [7,16,16], [8,10,10], [8,10,10], [8,10,10], [8,10,10], [8,10,10], - [10,8,7,3], [9,10,10], [4,1,-4], [7,2,-4], [10,2,-4], [4,1,-4], [7,2,-4], [10,2,-4], - [6,19,13,3], [2,14,13], [3,14,13,-1], [3,14,13], [3,14,13,-1], [3,14,13], [3,14,13,-1], [3,14,13,-1], - [10,9,8,3], [6,13,13,-1], [6,17,17,-1], [6,21,21,-1], [5,13,13,-1], [2,5,5,-4], [4,5,4,-4], [3,5,5,-1], - [3,5,5,-1], [4,4,4], [5,3,2,1], [4,3,2], [4,3,0], [4,3,0], [5,5,5], [5,4,4], - [3,16,28,41,53,66,78,91,103,116,129,141,154,166,179,191], - [11,42,72,103,134,165,196,226], - [205,256] - ], - cmbx10: [ - [5,5,0], [7,5,0], [6,5,0], [6,5,0], [5,5,0], [6,5,0], [6,5,0], [6,5,0], - [6,5,0], [6,5,0], [6,5,0], [6,5,0], [5,5,0], [5,5,0], [7,5,0], [7,5,0], - [2,4,0], [3,6,2,1], [3,2,-3], [3,2,-3,-1], [2,2,-3,-1], [4,2,-3], [4,2,-3], [2,2,-3,-2], - [2,2,2,-1], [4,5,0], [6,4,0], [6,4,0], [4,5,1], [7,5,0], [8,6,1], [6,6,1], - [3,1,-2], [2,5,0], [4,3,-2], [7,7,2], [4,6,1], [7,7,1], [6,5,0], [2,3,-2], - [3,8,2], [3,8,2], [4,4,-2], [6,6,1], [2,2,1], [3,1,-1], [2,1,0], [4,8,2], - [4,5,0], [4,5,0], [4,5,0], [4,5,0], [4,5,0], [4,5,0], [4,5,0], [4,5,0], - [4,5,0], [4,5,0], [2,3,0], [2,4,1], [2,6,2], [6,3,0], [4,6,2], [4,5,0], - [6,5,0], [6,5,0], [6,5,0], [6,5,0], [6,5,0], [5,5,0], [5,5,0], [6,5,0], - [6,5,0], [3,5,0], [4,6,1], [6,5,0], [5,5,0], [8,5,0], [6,5,0], [6,5,0], - [5,5,0], [6,7,2], [6,5,0], [4,5,0], [6,5,0], [6,5,0], [6,5,0], [8,5,0], - [6,5,0], [6,5,0], [5,5,0], [2,8,2], [3,3,-2,-1], [2,8,2], [2,2,-3,-1], [2,2,-3], - [2,3,-2], [4,4,0], [5,5,0], [4,4,0], [5,5,0], [4,4,0], [3,5,0], [4,6,2], - [5,5,0], [2,5,0], [3,7,2,1], [4,5,0], [2,5,0], [7,4,0], [5,4,0], [4,4,0], - [5,6,2], [5,6,2], [3,4,0], [3,4,0], [3,5,0], [5,4,0], [4,4,0], [6,4,0], - [4,4,0], [4,6,2], [4,4,0], [4,1,-1], [8,1,-1], [3,2,-3,-1], [4,1,-4], [4,2,-3], - [3,13,23,33,42,52,62,72,82,92,102,111,121,131,141,151], - [9,17,26,34,42,51,59,67], - [162,73] - ], - cmti10: [ - [5,5,0], [6,5,0], [5,6,1,-1], [5,5,0], [6,5,0], [6,5,0], [6,5,0], [5,5,0,-1], - [5,5,0,-1], [5,5,0,-1], [6,5,0], [6,7,2], [5,7,2], [5,7,2], [7,7,2], [9,7,2,2], - [3,3,0], [4,5,2,1], [1,2,-3,-2], [2,2,-3,-2], [2,2,-3,-2], [2,2,-3,-2], [2,2,-3,-2], [2,2,-3,-3], - [2,2,2,-1], [4,7,2], [5,3,0], [5,3,0], [4,5,1], [7,5,0], [6,6,1,-1], [8,6,1,2], - [3,1,-2], [3,5,0], [3,2,-3,-1], [5,7,2,-1], [5,5,0], [5,7,1,-1], [6,6,1], [2,2,-3,-1], - [3,7,2,-1], [3,7,2], [3,3,-2,-1], [5,5,1,-1], [2,3,2], [3,1,-1], [2,1,0], [5,8,2], - [4,6,1], [3,5,0,-1], [4,6,1], [4,6,1], [4,7,2], [4,6,1], [4,6,1], [4,5,0,-1], - [4,6,1], [4,6,1], [2,3,0], [2,5,2], [3,6,2], [5,3,0,-1], [3,6,2], [3,5,0,-1], - [5,5,0,-1], [5,5,0], [6,5,0], [5,6,1,-1], [6,5,0], [6,5,0], [6,5,0], [5,6,1,-1], - [6,5,0], [4,5,0], [5,6,1], [6,5,0], [5,5,0], [7,5,0], [6,5,0], [5,6,1,-1], - [5,5,0], [5,7,2,-1], [5,6,1], [5,6,1], [5,5,0,-1], [5,6,1,-1], [5,5,0,-1], [7,5,0,-1], - [8,5,0,2], [5,5,0,-1], [5,5,0], [3,8,2], [2,3,-2,-2], [3,8,2], [2,1,-4,-2], [2,1,-4,-1], - [2,3,-2,-1], [4,3,0], [4,5,0], [4,3,0], [4,5,0], [4,3,0], [4,7,2], [4,5,2], - [4,5,0], [3,5,0], [4,7,2,1], [4,5,0], [2,5,0], [6,3,0], [4,3,0], [4,3,0], - [4,5,2], [4,5,2], [4,3,0], [3,3,0], [3,5,0], [4,3,0], [4,3,0], [5,3,0], - [4,3,0], [4,5,2], [3,3,0], [3,1,-1,-1], [6,1,-1,-1], [6,4,-1,2], [2,1,-4,-2], [2,1,-4,-2], - [3,11,20,28,37,45,54,62,71,79,88,96,105,113,122,130], - [9,17,26,34,42,51,59,67], - [140,73] - ] -}); - -jsMath.Img.AddFont(60,{ - cmr10: [ - [5,6,0], [7,6,0], [6,7,1], [6,6,0], [5,6,0], [6,6,0], [6,6,0], [6,6,0], - [6,6,0], [6,6,0], [6,6,0], [5,6,0], [4,6,0], [4,6,0], [7,6,0], [7,6,0], - [2,4,0], [3,6,2,1], [2,2,-4,-1], [2,2,-4,-1], [2,1,-4,-1], [4,2,-4], [4,1,-4], [2,2,-4,-2], - [2,2,2,-1], [4,6,0], [6,5,1], [6,4,0], [4,5,1], [7,6,0], [8,7,1], [6,7,1], - [2,1,-2], [2,6,0], [3,3,-3], [6,8,2], [4,7,1], [7,7,1], [6,7,1], [2,3,-3], - [3,8,2], [3,8,2], [4,4,-2], [6,6,1], [2,3,2], [3,1,-1], [2,1,0], [4,8,2], - [4,7,1], [4,6,0], [4,6,0], [4,7,1], [4,6,0], [4,7,1], [4,7,1], [4,7,1], - [4,7,1], [4,7,1], [2,4,0], [2,6,2], [2,6,2], [6,2,-1], [4,6,2], [4,6,0], - [6,7,1], [6,6,0], [6,6,0], [6,7,1], [6,6,0], [6,6,0], [5,6,0], [6,7,1], - [6,6,0], [3,6,0], [4,7,1], [6,6,0], [5,6,0], [7,6,0], [6,6,0], [6,7,1], - [5,6,0], [6,8,2], [6,7,1], [4,7,1], [6,6,0], [6,7,1], [6,6,0], [8,6,0], - [6,6,0], [6,6,0], [5,6,0], [2,8,2], [3,3,-3,-1], [2,8,2], [2,2,-4,-1], [2,2,-4], - [2,3,-3], [4,5,1], [5,7,1], [4,4,0], [4,6,0], [4,4,0], [3,6,0], [4,6,2], - [5,6,0], [2,6,0], [3,8,2,1], [4,6,0], [2,6,0], [7,4,0], [5,4,0], [4,4,0], - [5,6,2], [4,6,2], [3,4,0], [3,5,1], [3,5,0], [5,4,0], [4,4,0], [6,4,0], - [4,4,0], [4,6,2], [4,4,0], [4,1,-2], [8,1,-2], [3,2,-4,-1], [4,2,-4], [2,2,-4,-1], - [3,14,24,34,44,55,65,75,85,95,106,116,126,136,147,157], - [11,21,31,41,51,61,71,81], - [169,87] - ], - cmmi10: [ - [6,6,0], [7,6,0], [6,7,1], [6,6,0], [7,6,0], [7,6,0], [7,6,0], [6,6,0], - [5,6,0], [6,6,0], [7,6,0], [5,5,1], [5,8,2], [5,6,2], [4,6,0], [3,4,0], - [4,8,2], [4,6,2], [4,6,0], [3,4,0], [5,4,0], [5,6,0], [5,6,2], [5,4,0], - [4,8,2], [5,4,0], [4,6,2], [5,5,1], [4,4,0], [5,4,0], [5,8,2], [5,6,2], - [5,8,2], [5,4,0], [4,5,1], [5,6,0], [7,4,0], [4,6,2], [4,5,1], [5,6,2], - [8,3,-1], [8,3,0], [8,3,-1], [8,3,0], [2,3,-1], [2,3,-1], [4,4,0], [4,4,0], - [4,5,1], [3,4,0,-1], [4,4,0], [4,6,2], [4,6,2], [4,6,2], [4,7,1], [4,6,2], - [4,7,1], [4,6,2], [2,1,0], [2,3,2], [6,6,1], [4,8,2], [6,6,1], [4,4,0], - [5,7,1], [6,6,0], [6,6,0], [6,7,1], [7,6,0], [6,6,0], [6,6,0], [6,7,1], - [7,6,0], [4,6,0], [5,7,1], [7,6,0], [5,6,0], [9,6,0], [9,6,0,2], [6,7,1], - [6,6,0], [6,8,2], [6,7,1], [6,7,1], [6,6,0], [6,7,1], [6,6,0], [9,6,0], - [9,6,0,2], [6,6,0], [6,6,0], [3,6,0], [3,8,2], [3,8,2], [8,2,-1], [8,2,-1], - [4,6,0], [4,4,0], [4,6,0], [4,5,1], [4,6,0], [4,4,0], [5,8,2], [4,6,2], - [5,6,0], [3,6,0], [3,8,2], [4,6,0], [2,6,0], [7,4,0], [5,4,0], [4,5,1], - [4,6,2], [4,6,2], [4,4,0], [4,5,1], [3,5,0], [5,4,0], [4,4,0], [6,4,0], - [5,4,0], [4,6,2], [4,4,0], [3,4,0], [3,6,2], [5,6,2], [4,2,-4,-1], [4,2,-4,-2], - [3,13,23,33,43,53,63,73,83,93,103,113,123,133,143,153], - [11,21,31,41,51,61,71,81], - [164,87] - ], - cmsy10: [ - [5,2,-1,-1], [2,2,-1], [4,4,0,-1], [4,4,0], [6,6,1], [4,4,0], [6,6,0], [6,6,2], - [6,6,1], [6,6,1], [6,6,1], [6,6,1], [6,6,1], [8,8,2], [4,4,0], [4,4,0], - [6,4,0], [6,4,0], [6,8,2], [6,8,2], [6,7,2], [6,7,2], [6,7,2], [6,7,2], - [6,2,-1], [6,4,0], [6,6,1], [6,6,1], [8,6,1], [8,6,1], [5,6,1,-1], [6,6,1], - [8,4,0], [8,4,0], [4,8,2], [4,8,2], [8,4,0], [8,8,2], [8,8,2], [6,4,0], - [8,6,1], [8,6,1], [5,8,2], [5,8,2], [8,6,1], [8,8,2], [8,8,2], [6,4,0], - [2,5,0], [8,4,0], [5,6,1], [5,6,1], [7,6,0], [7,6,2], [4,8,2,-1], [1,4,0], - [5,6,0], [4,6,0], [5,3,0], [4,7,1], [6,7,1], [6,7,1], [6,6,0], [6,6,0], - [5,6,0], [7,7,1], [6,7,1], [5,7,1], [7,6,0], [5,7,1], [7,7,1], [5,7,1], - [7,7,1], [5,6,0], [7,7,1], [6,7,1], [5,7,1], [9,7,1], [9,8,1,1], [7,7,1], - [6,7,1], [6,7,1,-1], [7,7,1], [6,7,1], [7,6,0], [7,7,1,1], [6,7,1], [9,7,1], - [7,6,0], [6,7,1], [6,6,0], [5,6,1], [5,5,0], [5,6,1], [5,5,0], [5,5,0], - [5,6,0], [5,6,0], [3,8,2,-1], [3,8,2], [3,8,2,-1], [3,8,2], [3,8,2,-1], [3,8,2], - [2,8,2,-1], [3,8,2], [1,8,2,-1], [2,8,2,-1], [4,8,2], [5,8,2], [4,8,2], [2,6,1], - [7,9,8], [6,6,0], [7,7,1], [4,8,2], [5,5,0], [5,5,0], [6,8,2], [6,8,2], - [3,8,2], [3,8,2], [3,8,2], [5,8,2], [6,7,1], [6,8,2], [6,7,1], [6,7,1], - [3,15,27,39,51,63,75,87,99,111,123,135,147,159,171,183], - [11,28,45,62,80,97,114,131], - [196,145] - ], - cmex10: [ - [3,10,9,-1], [3,11,10], [2,11,10,-1], [2,11,10], [3,11,10,-1], [3,10,10], [3,11,10,-1], [3,10,9], - [3,11,10,-1], [3,11,10,-1], [3,9,9], [3,11,10], [1,5,5,-1], [3,5,5,-1], [4,10,10], [4,10,9], - [4,15,14,-1], [4,15,14], [5,20,19,-1], [5,20,19], [2,20,19,-2], [3,20,19], [3,20,19,-2], [3,20,19], - [3,20,19,-2], [3,20,19], [4,20,19,-1], [4,20,19,-1], [5,20,19,-1], [5,20,19], [8,20,19], [8,20,19], - [5,25,24,-1], [5,25,24], [3,25,24,-2], [3,25,24], [3,25,24,-2], [3,25,24], [3,25,24,-2], [3,25,24], - [5,25,24,-1], [5,25,24,-1], [5,25,24,-1], [5,25,24,-1], [10,25,24], [10,25,24], [6,15,14], [6,15,14], - [5,16,15,-2], [5,16,15], [4,15,14,-2], [3,15,14], [4,16,15,-2], [3,16,15], [2,5,5,-2], [1,5,5,-2], - [3,8,8,-3], [3,8,8,-1], [3,9,8,-3], [3,9,8,-1], [3,16,15,-1], [3,16,15,-3], [1,4,3,-3], [1,5,5,-2], - [5,15,14,-2], [5,15,14], [2,5,5,-2], [2,5,5,-3], [4,15,14,-1], [4,15,14], [7,8,8], [9,12,12], - [5,9,9], [8,18,18], [9,8,8], [12,12,12], [9,8,8], [12,12,12], [9,8,8], [12,12,12], - [8,8,8], [7,8,8], [5,9,9], [7,8,8], [7,8,8], [7,8,8], [7,8,8], [7,8,8], - [11,12,12], [10,12,12], [8,18,18], [9,12,12], [9,12,12], [9,12,12], [9,12,12], [9,12,12], - [7,8,8], [10,12,12], [5,2,-4], [8,2,-4], [12,3,-4], [5,1,-5], [8,1,-5], [12,1,-5], - [3,16,15,-1], [2,16,15], [3,15,15,-1], [3,16,15], [3,15,14,-1], [3,15,14], [4,15,14,-1], [4,15,14,-1], - [7,10,10,-1], [7,14,14,-1], [7,19,19,-1], [7,24,24,-1], [5,15,15,-1], [1,5,5,-5], [4,6,5,-5], [3,5,5,-2], - [4,5,5,-1], [4,5,5,-1], [5,3,2,1], [5,3,2,1], [5,3,0,1], [5,3,0,1], [6,5,5], [6,5,5], - [4,19,34,49,64,79,94,109,124,139,154,169,184,199,215,230], - [13,50,87,124,161,198,235,272], - [246,308] - ], - cmbx10: [ - [5,6,0], [7,6,0], [7,7,1], [6,6,0], [6,6,0], [7,6,0], [6,6,0], [7,6,0], - [7,6,0], [7,6,0], [7,6,0], [6,6,0], [5,6,0], [5,6,0], [8,6,0], [8,6,0], - [3,4,0], [4,6,2,1], [2,2,-4,-1], [2,2,-4,-2], [3,2,-4,-1], [3,2,-4,-1], [4,1,-4], [3,2,-4,-2], - [3,2,2,-1], [5,6,0], [7,4,0], [7,4,0], [5,6,1], [8,6,0], [9,7,1], [7,7,1], - [3,2,-2], [2,6,0], [4,4,-2], [7,8,2], [4,7,1], [8,7,1], [7,7,1], [2,3,-3], - [3,8,2], [3,8,2], [4,4,-2], [7,6,1], [2,4,2], [3,2,-1], [2,2,0], [4,8,2], - [5,6,0], [4,6,0], [5,6,0], [5,7,1], [5,6,0], [5,6,0], [5,7,1], [5,6,0], - [5,7,1], [5,6,0], [2,4,0], [2,6,2], [2,6,2], [7,4,0], [4,6,2], [4,6,0], - [7,6,0], [7,6,0], [6,6,0], [7,7,1], [7,6,0], [6,6,0], [6,6,0], [7,7,1], - [7,6,0], [4,6,0], [5,7,1], [7,6,0], [6,6,0], [9,6,0], [7,6,0], [7,7,1], - [6,6,0], [7,8,2], [7,7,1], [5,7,1], [6,6,0], [7,7,1], [7,6,0], [10,6,0], - [7,6,0], [7,6,0], [6,6,0], [2,8,2,-1], [4,4,-2,-1], [2,8,2], [3,2,-4,-1], [2,2,-4], - [2,4,-2], [5,4,0], [5,6,0], [4,4,0], [5,6,0], [4,4,0], [4,6,0], [5,6,2], - [5,6,0], [3,6,0], [4,8,2,1], [5,6,0], [3,6,0], [8,4,0], [5,4,0], [5,4,0], - [5,6,2], [5,6,2], [4,4,0], [4,4,0], [3,5,0], [5,4,0], [5,4,0], [7,4,0], - [5,4,0], [5,6,2], [4,4,0], [5,1,-2], [9,1,-2], [3,2,-4,-1], [3,2,-4,-1], [3,2,-4,-1], - [3,15,27,39,51,63,75,86,98,110,122,134,146,157,169,181], - [11,21,31,41,51,61,71,81], - [194,87] - ], - cmti10: [ - [6,6,0], [6,6,0], [6,7,1,-1], [5,6,0], [6,6,0], [7,6,0], [7,6,0], [6,6,0,-1], - [5,6,0,-1], [6,6,0,-1], [6,6,0], [7,8,2,1], [6,8,2,1], [6,8,2,1], [9,8,2,1], [9,8,2,1], - [3,4,0], [4,6,2,1], [2,2,-4,-2], [3,2,-4,-2], [3,1,-4,-2], [3,2,-4,-2], [3,1,-4,-2], [3,2,-4,-3], - [2,2,2,-1], [6,8,2,1], [6,4,0], [6,4,0], [4,5,1], [8,6,0], [8,7,1,-1], [9,7,1,2], - [3,1,-2], [2,6,0,-1], [3,3,-3,-1], [6,8,2,-1], [6,6,0], [6,7,1,-1], [6,7,1,-1], [1,3,-3,-2], - [3,8,2,-1], [3,8,2], [4,4,-2,-1], [5,6,1,-1], [2,3,2], [3,1,-1], [1,1,0,-1], [5,8,2], - [4,7,1,-1], [3,6,0,-1], [5,7,1], [5,7,1], [4,8,2], [5,7,1], [4,7,1,-1], [4,7,1,-1], - [5,7,1], [5,7,1], [2,4,0,-1], [3,6,2], [3,6,2], [6,2,-1,-1], [4,6,2], [4,6,0,-1], - [6,7,1,-1], [6,6,0], [6,6,0], [6,7,1,-1], [7,6,0], [6,6,0], [6,6,0], [6,7,1,-1], - [7,6,0], [4,6,0], [5,7,1], [7,6,0], [5,6,0], [8,6,0], [7,6,0], [6,7,1,-1], - [6,6,0], [6,8,2,-1], [6,7,1], [5,7,1], [6,6,0,-1], [6,7,1,-1], [6,6,0,-1], [8,6,0,-1], - [9,6,0,2], [6,6,0,-1], [6,6,0], [4,8,2], [3,3,-3,-2], [3,8,2], [2,2,-4,-2], [1,2,-4,-2], - [2,3,-3,-1], [5,4,0], [3,6,0,-1], [4,4,0], [5,6,0], [4,4,0], [5,8,2,1], [4,6,2], - [5,6,0], [3,6,0], [4,8,2,1], [4,6,0], [3,6,0], [7,4,0], [5,4,0], [4,4,0], - [4,6,2], [4,6,2], [4,4,0], [4,5,1], [3,5,0], [5,4,0], [4,4,0], [6,4,0], - [4,4,0], [4,6,2], [4,4,0], [4,1,-2,-1], [7,1,-2,-1], [3,2,-4,-2], [3,2,-4,-2], [3,2,-4,-2], - [3,14,24,34,44,54,64,75,85,95,105,115,126,136,146,156], - [11,21,31,41,51,61,71,81], - [168,87] - ] -}); - -jsMath.Img.AddFont(70,{ - cmr10: [ - [6,7,0], [8,7,0], [8,8,1], [7,7,0], [7,7,0], [7,7,0], [7,7,0], [8,7,0], - [7,7,0], [7,7,0], [7,7,0], [7,7,0], [6,7,0], [6,7,0], [8,7,0], [8,7,0], - [3,5,0], [4,7,2,1], [2,2,-5,-1], [2,2,-5,-2], [3,2,-5,-1], [3,2,-5,-1], [5,1,-5], [3,3,-5,-2], - [3,2,2,-1], [5,7,0], [7,6,1], [8,6,1], [5,7,1], [9,7,0], [10,8,1], [8,9,1], - [3,2,-2], [2,8,0], [4,3,-4], [8,9,2], [5,9,1], [8,9,1], [8,9,1], [2,3,-4], - [3,10,2,-1], [3,10,2], [5,5,-3], [8,7,1], [2,3,2], [3,2,-1], [2,1,0], [5,10,2], - [5,8,1], [3,7,0,-1], [5,7,0], [5,8,1], [5,7,0], [5,8,1], [5,8,1], [5,8,1], - [5,10,1], [5,10,1], [2,5,0], [2,7,2], [2,7,2], [8,3,-1], [5,7,2], [5,9,0], - [8,8,1], [7,7,0], [7,7,0], [7,8,1], [7,7,0], [7,7,0], [6,7,0], [8,8,1], - [7,7,0], [4,7,0], [5,8,1], [8,7,0], [6,7,0], [9,7,0], [7,7,0], [8,8,1], - [7,7,0], [8,9,2], [8,8,1], [5,8,1], [7,7,0], [7,8,1], [8,8,1], [10,8,1], - [10,7,0,2], [8,7,0], [6,7,0], [2,10,2,-1], [4,3,-4,-1], [2,10,2], [3,2,-5,-1], [2,2,-5], - [2,3,-4], [5,5,0], [6,7,0], [4,6,1], [6,8,1], [5,6,1], [4,7,0], [5,7,2], - [6,7,0], [3,7,0], [4,9,2,1], [5,9,0], [3,7,0], [8,9,0], [6,5,0], [5,6,1], - [6,7,2], [6,7,2], [4,5,0], [4,5,0], [4,7,1], [6,6,1], [5,5,0], [7,5,0], - [5,5,0], [5,7,2], [4,5,0], [5,1,-2], [10,1,-2], [4,2,-5,-1], [3,2,-5,-1], [3,2,-5,-1], - [4,16,28,40,52,64,76,88,99,111,123,135,147,159,171,183], - [13,24,36,47,59,71,82,94], - [197,102] - ], - cmmi10: [ - [8,7,0], [8,7,0], [8,8,1], [7,7,0], [8,7,0], [9,7,0], [8,7,0], [7,7,0], - [7,7,0], [7,7,0], [8,7,0], [6,6,1], [6,9,2], [6,7,2], [5,8,0], [4,6,1], - [5,9,2], [5,7,2], [5,8,1], [4,6,1], [6,6,1], [6,7,0], [6,7,2], [6,5,0], - [5,9,2], [6,5,0], [5,7,2], [6,5,0], [5,5,0], [6,6,1], [6,9,2], [6,7,2], - [7,9,2], [6,6,1], [5,6,1], [6,8,1], [8,5,0], [5,7,2], [4,6,1], [7,7,2], - [10,3,-2], [12,3,0,2], [10,3,-2], [10,3,0], [5,3,-2,2], [3,3,-2], [5,5,0], [5,5,0], - [5,6,1], [3,5,0,-1], [5,5,0], [5,7,2], [5,7,2], [5,7,2], [5,8,1], [5,7,2], - [5,8,1], [5,7,2], [2,1,0], [2,3,2], [6,7,1,-1], [5,10,2], [6,7,1,-1], [5,5,0], - [6,9,1], [7,7,0], [8,7,0], [8,8,1], [8,7,0], [8,7,0], [8,7,0], [8,8,1], - [9,7,0], [5,7,0], [7,8,1], [9,7,0], [7,7,0], [11,7,0], [11,7,0,2], [8,8,1], - [8,7,0], [8,9,2], [8,8,1], [7,8,1], [7,7,0], [8,8,1], [8,8,1], [11,8,1], - [11,7,0,2], [8,7,0], [8,7,0], [4,9,1], [4,9,2], [4,9,2], [10,3,-1], [12,3,-1,2], - [4,7,0], [5,6,1], [5,8,1], [5,5,0], [6,8,1], [5,5,0], [6,9,2], [5,7,2], - [6,7,0], [3,7,0], [4,9,2], [5,7,0], [3,7,0], [9,5,0], [6,6,1], [5,5,0], - [6,7,2,1], [5,7,2], [5,5,0], [5,5,0], [4,8,1], [6,6,1], [5,6,1], [7,6,1], - [6,6,1], [5,7,2], [5,5,0], [3,5,0], [5,7,2,1], [7,7,2], [5,2,-5,-2], [5,2,-5,-2], - [4,15,27,39,50,62,74,85,97,108,120,132,143,155,167,178], - [13,24,36,47,59,71,82,94], - [191,102] - ], - cmsy10: [ - [6,1,-2,-1], [2,1,-2], [6,5,0,-1], [5,5,0], [8,7,1], [5,5,0], [8,7,0], [8,7,2], - [8,7,1], [8,7,1], [8,7,1], [8,7,1], [8,7,1], [10,11,3], [5,5,0], [5,5,0], - [8,5,0], [8,5,0], [7,9,2], [6,9,2,-1], [6,9,2,-1], [6,9,2,-1], [6,9,2,-1], [7,9,2], - [8,3,-1], [8,5,0], [7,7,1], [6,7,1,-1], [10,7,1], [10,7,1], [6,7,1,-1], [6,7,1,-1], - [10,5,0], [10,5,0], [5,9,2], [5,9,2], [10,5,0], [10,9,2], [10,9,2], [8,5,0], - [10,5,0], [10,5,0], [6,9,2], [6,9,2], [10,7,1], [10,9,2], [10,9,2], [8,6,1], - [3,6,0], [10,6,1], [6,7,1], [5,7,1,-1], [9,7,0], [9,7,2], [6,9,2,-1], [2,5,0], - [6,8,1], [5,7,0], [7,3,-1], [5,9,1], [7,9,1], [7,8,1], [8,7,0], [8,7,0], - [6,7,0], [8,9,1], [7,8,1], [6,8,1], [8,7,0], [6,8,1], [9,8,1], [6,9,2], - [8,8,1], [7,7,0], [9,9,2], [8,8,1], [7,8,1], [11,8,1], [13,9,1,3], [8,8,1], - [8,8,1], [7,9,2,-1], [9,8,1], [7,8,1], [8,8,0], [8,8,1,1], [7,8,1], [11,8,1], - [8,7,0], [8,9,2], [8,7,0], [7,7,1], [7,7,1], [7,7,1], [6,7,1], [6,7,1], - [6,7,0], [6,7,0], [4,11,3,-1], [3,11,3], [4,11,3,-1], [3,11,3], [3,11,3,-1], [3,11,3,-1], - [3,11,3,-1], [3,11,3], [1,11,3,-1], [3,11,3,-1], [3,11,3,-1], [6,11,3], [5,11,3], [3,7,1], - [9,11,10], [7,7,0], [8,8,1], [5,11,3], [6,6,0], [6,6,0], [7,9,2], [7,9,2], - [4,9,2], [4,9,2], [4,9,2], [6,9,2], [8,10,2], [8,10,2], [8,9,1], [8,10,2], - [4,18,32,46,60,74,88,102,116,130,144,158,172,186,199,213], - [13,33,53,73,93,113,133,152], - [229,169] - ], - cmex10: [ - [3,13,12,-1], [3,13,12], [2,13,12,-2], [3,13,12], [3,13,12,-2], [3,13,12], [3,13,12,-2], [3,13,12], - [4,13,12,-1], [4,13,12,-1], [3,13,12,-1], [4,13,12], [1,8,7,-1], [4,8,7,-1], [6,13,12], [6,13,12], - [5,19,18,-1], [5,19,18], [5,25,24,-2], [6,25,24], [4,25,24,-2], [3,25,24], [4,25,24,-2], [4,25,24], - [4,25,24,-2], [4,25,24], [6,25,24,-1], [6,25,24,-1], [6,25,24,-1], [6,25,24,-1], [10,25,24], [10,25,24], - [6,31,30,-2], [6,31,30], [4,31,30,-2], [4,31,30], [5,31,30,-2], [4,31,30], [5,31,30,-2], [4,31,30], - [6,31,30,-1], [6,31,30,-1], [6,31,30,-1], [6,31,30,-1], [13,31,30], [13,31,30], [8,19,18], [8,19,18], - [7,19,18,-2], [6,19,18], [4,19,18,-3], [4,19,18], [4,19,18,-3], [4,19,18], [1,6,6,-3], [2,6,6,-2], - [5,10,10,-3], [4,10,10,-1], [5,10,9,-3], [4,10,9,-1], [4,20,19,-1], [4,20,19,-3], [2,5,4,-3], [1,6,6,-3], - [7,19,18,-2], [6,19,18], [2,8,7,-2], [2,8,7,-4], [5,19,18,-1], [4,19,18,-1], [8,10,10], [11,14,14], - [6,12,12], [10,23,23], [11,10,10], [15,14,14], [14,10,10,3], [15,14,14], [14,10,10,3], [15,14,14], - [10,10,10], [9,10,10], [6,12,12], [8,10,10], [8,10,10], [8,10,10], [8,10,10], [8,10,10], - [14,14,14], [13,14,14], [10,23,23], [11,14,14], [11,14,14], [11,14,14], [11,14,14], [11,14,14], - [9,10,10], [13,14,14], [6,3,-5], [10,3,-5], [15,3,-5], [9,3,-5,3], [10,2,-6], [15,2,-6], - [3,19,18,-2], [3,19,18], [3,19,18,-2], [3,19,18], [3,19,18,-2], [3,19,18], [5,19,18,-1], [5,19,18,-1], - [10,13,12,-1], [10,19,18,-1], [10,25,24,-1], [10,31,30,-1], [7,19,18,-1], [1,7,6,-7], [4,7,6,-7], [4,6,6,-2], - [5,6,6,-1], [5,6,6,-1], [6,4,2,1], [6,5,3,1], [6,4,0,1], [6,4,0,1], [8,6,6], [8,6,6], - [4,22,39,57,75,92,110,127,145,162,180,198,215,233,250,268], - [15,58,101,145,188,231,274,317], - [287,359] - ], - cmbx10: [ - [7,7,0], [9,7,0], [9,8,1], [8,7,0], [8,7,0], [9,7,0], [8,7,0], [9,7,0], - [8,7,0], [9,7,0], [8,7,0], [8,7,0], [6,7,0], [6,7,0], [10,7,0], [10,7,0], - [3,5,0], [4,7,2,1], [3,2,-5,-1], [3,2,-5,-2], [4,2,-5,-1], [4,2,-5,-1], [5,2,-5], [3,2,-5,-3], - [4,2,2,-1], [6,7,0], [8,5,0], [9,5,0], [6,7,1], [10,7,0], [11,8,1], [12,9,1,3], - [4,2,-2], [2,7,0,-1], [5,4,-3], [9,9,2], [5,9,1], [9,9,1], [9,8,1], [3,4,-3], - [3,10,2,-1], [4,10,2], [5,5,-3], [9,9,2], [3,4,2], [4,2,-1], [3,2,0], [5,10,2], - [6,8,1], [5,7,0], [6,7,0], [6,8,1], [6,7,0], [6,8,1], [6,8,1], [6,7,0], - [6,10,1], [6,10,1], [3,5,0], [3,7,2], [2,7,2,-1], [9,3,-1], [5,7,2], [5,9,0], - [9,7,0], [9,7,0], [8,7,0], [8,8,1], [9,7,0], [8,7,0], [7,7,0], [9,8,1], - [9,7,0], [4,7,0], [6,8,1], [9,7,0], [7,7,0], [11,7,0], [9,7,0], [8,8,1], - [8,7,0], [8,9,2], [9,8,1], [6,8,1], [8,7,0], [9,8,1], [9,7,0], [12,7,0], - [12,7,0,3], [9,7,0], [7,7,0], [2,10,2,-1], [5,4,-3,-1], [2,10,2], [4,2,-5,-1], [3,2,-5], - [3,4,-3], [6,5,0], [6,7,0], [5,5,0], [6,7,0], [5,5,0], [5,7,0], [6,7,2], - [7,7,0], [3,7,0], [4,9,2,1], [6,9,0], [3,7,0], [10,9,0], [7,5,0], [6,5,0], - [6,7,2], [6,7,2], [5,5,0], [5,5,0], [4,7,0], [7,5,0], [6,5,0], [8,5,0], - [6,5,0], [6,7,2], [5,5,0], [6,1,-2], [12,1,-2], [8,5,-2,3], [4,2,-5,-1], [4,2,-5,-1], - [4,18,32,46,59,73,87,101,115,128,142,156,170,184,198,211], - [13,24,36,47,59,71,82,94], - [227,102] - ], - cmti10: [ - [7,7,0], [8,7,0], [7,8,1,-1], [7,7,0], [8,7,0], [9,7,0], [7,7,0,-1], [7,7,0,-2], - [7,7,0,-1], [6,7,0,-2], [7,7,0,-1], [9,9,2,1], [7,9,2,1], [8,9,2,1], [11,9,2,1], [11,9,2,1], - [3,5,0,-1], [5,7,2,1], [2,2,-5,-3], [3,2,-5,-3], [3,2,-5,-3], [4,2,-5,-2], [4,1,-5,-2], [3,3,-5,-4], - [3,2,2,-1], [7,9,2,1], [7,6,1,-1], [7,6,1,-1], [6,7,1], [10,7,0], [10,8,1,-1], [10,9,1,2], - [3,2,-2,-1], [3,8,0,-1], [4,3,-4,-2], [8,9,2,-1], [6,8,1,-1], [8,9,1,-1], [7,9,1,-1], [2,3,-4,-2], - [4,10,2,-1], [4,10,2], [4,5,-3,-2], [7,7,1,-1], [3,3,2], [3,2,-1,-1], [2,1,0,-1], [6,10,2], - [5,8,1,-1], [4,7,0,-1], [5,8,1,-1], [5,8,1,-1], [5,9,2], [5,8,1,-1], [5,8,1,-1], [6,8,1,-1], - [5,10,1,-1], [6,10,1], [2,5,0,-1], [3,7,2], [4,7,2], [7,3,-1,-1], [5,7,2], [6,9,0], - [7,8,1,-1], [7,7,0], [8,7,0], [7,8,1,-1], [8,7,0], [8,7,0], [8,7,0], [7,8,1,-1], - [9,7,0], [5,7,0], [6,8,1,-1], [9,7,0], [7,7,0], [10,7,0], [9,7,0], [7,8,1,-1], - [8,7,0], [7,9,2,-1], [8,8,1], [7,8,1], [7,7,0,-1], [7,8,1,-2], [7,8,1,-2], [9,8,1,-2], - [11,7,0,2], [7,7,0,-2], [7,7,0], [5,10,2], [4,3,-4,-2], [3,10,2,-1], [4,2,-5,-2], [2,2,-5,-2], - [2,3,-4,-2], [5,6,1,-1], [4,8,1,-1], [4,6,1,-1], [5,8,1,-1], [4,6,1,-1], [6,9,2,1], [5,7,2], - [6,7,0], [3,7,0,-1], [5,9,2,1], [5,9,0], [2,7,0,-1], [9,9,0], [5,5,0,-1], [4,6,1,-1], - [5,7,2], [4,7,2,-1], [4,5,0,-1], [5,5,0], [3,7,0,-1], [5,6,1,-1], [4,6,1,-1], [6,6,1,-1], - [6,6,1], [4,7,2,-1], [5,5,0], [5,1,-2,-1], [10,1,-2,-1], [8,5,-2,2], [4,2,-5,-2], [4,2,-5,-2], - [4,16,28,40,51,63,75,87,99,111,123,135,146,158,170,182], - [13,24,36,47,59,71,82,94], - [195,102] - ] -}); - -jsMath.Img.AddFont(85,{ - cmr10: [ - [7,9,0], [10,9,0], [9,10,1], [8,9,0], [8,9,0], [9,9,0], [8,9,0], [9,9,0], - [8,9,0], [9,9,0], [8,9,0], [8,9,0], [7,9,0], [7,9,0], [10,9,0], [10,9,0], - [3,6,0], [4,9,3,1], [3,3,-6,-1], [3,3,-6,-2], [4,2,-6,-1], [4,3,-6,-1], [4,2,-6,-1], [3,3,-6,-3], - [4,3,3,-1], [6,10,1], [9,7,1], [9,7,1], [6,8,1], [11,9,0], [12,10,1], [12,10,1,3], - [3,2,-3], [2,9,0,-1], [5,5,-4], [10,12,3], [6,10,1], [10,10,1], [9,10,1], [2,5,-4,-1], - [3,12,3,-1], [4,12,3], [6,5,-4], [9,8,1], [2,5,3,-1], [4,1,-2], [2,2,0,-1], [6,12,3], - [6,9,1], [4,8,0,-1], [6,8,0], [6,9,1], [6,8,0], [6,9,1], [6,9,1], [6,9,1], - [6,9,1], [6,9,1], [2,6,0,-1], [2,9,3,-1], [2,9,3,-1], [9,4,-1], [5,9,3], [5,9,0], - [9,10,1], [9,9,0], [8,9,0], [8,10,1], [9,9,0], [8,9,0], [8,9,0], [9,10,1], - [9,9,0], [4,9,0], [6,10,1], [9,9,0], [7,9,0], [11,9,0], [9,9,0], [9,10,1], - [8,9,0], [9,12,3], [9,10,1], [6,10,1], [9,9,0], [9,10,1], [9,10,1], [12,10,1], - [9,9,0], [9,9,0], [7,9,0], [2,12,3,-1], [5,5,-4,-1], [2,12,3], [4,2,-6,-1], [2,2,-6,-1], - [3,5,-4], [6,7,1], [7,10,1], [5,7,1], [7,10,1], [5,7,1], [5,9,0], [6,9,3], - [7,9,0], [3,8,0], [4,11,3,1], [6,9,0], [3,9,0], [10,6,0], [7,6,0], [6,7,1], - [7,9,3], [7,9,3], [5,6,0], [5,7,1], [4,9,1], [7,7,1], [6,6,0], [9,6,0], - [7,6,0], [6,9,3], [5,6,0], [6,1,-3], [12,1,-3], [8,6,-3,3], [4,1,-7,-1], [4,2,-6,-1], - [5,19,34,48,63,77,92,106,121,135,150,164,179,193,208,222], - [16,30,45,59,73,87,101,115], - [239,125] - ], - cmmi10: [ - [9,9,0], [10,9,0], [9,10,1], [8,9,0], [10,9,0], [11,9,0], [10,9,0], [9,9,0], - [8,9,0], [9,9,0], [9,9,0,-1], [8,7,1], [7,12,3], [7,9,3], [6,10,1], [5,7,1], - [6,12,3], [6,9,3], [6,9,0], [4,7,1], [7,7,1], [7,10,1], [7,9,3], [7,6,0], - [6,12,3], [7,6,0], [6,9,3], [7,7,1], [6,7,1], [7,7,1], [7,12,3], [7,9,3], - [8,12,3], [8,7,1], [5,7,1], [7,10,1], [10,7,1], [6,9,3], [5,8,2], [8,9,3], - [12,4,-2], [15,4,0,3], [15,4,-2,3], [15,4,0,3], [6,4,-2,3], [3,4,-2], [6,6,0], [6,6,0], - [6,7,1], [4,6,0,-1], [6,6,0], [6,9,3], [6,9,3], [6,9,3], [6,9,1], [6,9,3], - [6,9,1], [6,9,3], [2,2,0,-1], [2,5,3,-1], [8,8,1,-1], [6,12,3], [8,8,1,-1], [6,6,0], - [7,10,1], [9,9,0], [9,9,0], [9,10,1], [10,9,0], [10,9,0], [9,9,0], [9,10,1], - [11,9,0], [6,9,0], [8,10,1], [11,9,0], [8,9,0], [12,9,0], [14,9,0,3], [9,10,1], - [9,9,0], [9,12,3], [9,10,1], [8,10,1], [9,9,0], [9,10,1], [8,10,1,-1], [12,10,1], - [13,9,0,3], [9,9,0], [9,9,0], [4,10,1], [3,12,3,-1], [4,12,3], [12,4,-1], [15,4,-1,3], - [5,10,1], [6,7,1], [5,10,1], [6,7,1], [6,10,1], [5,7,1], [7,12,3], [6,9,3], - [7,9,0], [4,8,0], [6,11,3,1], [6,10,1], [3,10,1], [11,7,1], [7,7,1], [6,7,1], - [7,9,3,1], [6,9,3], [6,6,0], [5,7,1], [4,9,1], [7,7,1], [6,7,1], [9,7,1], - [7,7,1], [6,9,3], [6,7,1], [4,6,0], [6,9,3,1], [8,9,3], [6,3,-6,-2], [5,2,-6,-3], - [5,19,33,47,61,75,89,104,118,132,146,160,174,188,202,216], - [16,30,45,59,73,87,101,115], - [232,125] - ], - cmsy10: [ - [8,2,-2,-1], [2,2,-2,-1], [7,6,0,-1], [6,6,0], [9,8,1], [6,6,0], [9,8,0], [9,8,2], - [9,8,1], [9,8,1], [9,8,1], [9,8,1], [9,8,1], [12,12,3], [6,6,0], [6,6,0], - [9,6,0], [9,6,0], [8,10,2,-1], [8,10,2,-1], [8,10,2,-1], [8,10,2,-1], [8,10,2,-1], [8,10,2,-1], - [9,4,-1], [9,6,0], [8,8,1,-1], [8,8,1,-1], [12,8,1], [12,8,1], [8,8,1,-1], [8,8,1,-1], - [11,4,-1,-1], [11,4,-1], [4,11,3,-1], [4,11,2,-1], [10,4,-1,-1], [12,12,3], [12,12,3], [9,6,0], - [11,8,1,-1], [11,8,1], [7,12,3], [7,12,3], [12,8,1], [12,12,3], [12,12,3], [9,7,1], - [3,7,0], [12,7,1], [6,8,1,-1], [6,8,1,-1], [10,9,0], [10,9,3], [7,12,3,-1], [2,6,0], - [7,10,1], [6,9,0], [8,4,-1], [6,11,1], [9,10,1], [9,10,1], [9,8,0], [9,8,0], - [7,9,0], [10,10,1], [8,10,1], [7,10,1], [10,9,0], [7,10,1], [10,10,1], [8,11,2], - [10,10,1], [9,9,0,1], [10,11,2], [9,10,1], [8,10,1], [14,10,1], [13,11,1,1], [10,10,1], - [9,10,1], [9,11,2,-1], [10,10,1], [8,10,1], [10,9,0], [10,10,1,1], [8,10,1], [13,10,1], - [10,9,0], [9,11,2], [9,9,0], [8,8,1], [8,9,1], [8,8,1], [8,8,1], [8,7,0], - [7,9,0], [7,9,0], [3,12,3,-2], [4,12,3], [3,12,3,-2], [4,12,3], [4,12,3,-1], [4,12,3,-1], - [3,12,3,-1], [4,12,3], [1,12,3,-1], [4,12,3,-1], [4,12,3,-1], [7,14,4], [6,12,3], [3,8,1], - [10,13,12,-1], [9,9,0], [10,10,1], [6,12,3], [8,7,0], [8,8,0], [8,10,2,-1], [9,10,2], - [5,12,3], [5,12,3], [5,12,3], [7,12,3], [9,11,2], [9,11,2], [9,10,1], [9,11,2], - [5,22,39,56,73,90,107,124,141,157,174,191,208,225,242,259], - [17,41,65,90,114,138,162,186], - [278,206] - ], - cmex10: [ - [4,15,14,-1], [4,15,14], [3,15,14,-2], [3,15,14], [4,15,14,-2], [4,15,14], [4,15,14,-2], [4,15,14], - [5,15,14,-1], [5,15,14,-1], [4,15,14,-1], [4,15,14,-1], [2,8,8,-1], [4,9,8,-1], [7,15,14], [7,15,14], - [5,22,21,-2], [5,22,21], [7,30,29,-2], [7,30,29], [4,30,29,-3], [4,30,29], [4,30,29,-3], [4,30,29], - [4,30,29,-3], [4,30,29], [7,30,29,-1], [7,30,29,-1], [7,30,29,-1], [7,30,29,-1], [12,30,29], [12,30,29], - [7,37,36,-2], [7,37,36], [4,37,36,-3], [4,37,36], [5,37,36,-3], [5,37,36], [5,37,36,-3], [5,37,36], - [7,37,36,-1], [7,37,36,-1], [8,37,36,-1], [7,37,36,-1], [15,37,36], [15,37,36], [9,22,21], [9,22,21], - [7,23,22,-3], [7,23,22], [5,23,22,-3], [5,23,22], [5,23,22,-3], [5,23,22], [2,8,8,-3], [2,8,8,-3], - [5,11,11,-4], [4,11,11,-2], [5,12,11,-4], [4,12,11,-2], [4,23,22,-2], [5,23,22,-4], [2,5,4,-4], [2,7,7,-3], - [7,22,21,-3], [7,22,21], [2,9,8,-3], [2,9,8,-5], [6,22,21,-1], [5,22,21,-1], [10,12,12], [13,17,17], - [8,14,14], [12,27,27], [13,12,12], [18,17,17], [13,12,12], [18,17,17], [13,12,12], [18,17,17], - [12,12,12], [11,12,12], [8,14,14], [10,12,12], [10,12,12], [10,12,12], [10,12,12], [10,12,12], - [17,17,17], [15,17,17], [12,27,27], [13,17,17], [13,17,17], [13,17,17], [13,17,17], [13,17,17], - [11,12,12], [15,17,17], [7,3,-6], [12,3,-7], [18,3,-7], [7,2,-7], [12,2,-7], [18,2,-7], - [4,23,22,-2], [3,23,22], [4,23,22,-2], [4,23,22], [4,22,21,-2], [4,23,22], [6,22,21,-1], [6,22,21,-1], - [12,15,14,-1], [12,22,21,-1], [12,30,29,-1], [12,37,36,-1], [8,23,22,-1], [1,9,8,-8], [5,8,7,-8], [4,8,8,-3], - [6,7,7,-1], [6,7,7,-1], [7,5,3,1], [7,5,3,1], [7,4,0,1], [7,4,0,1], [9,8,8], [9,7,7], - [5,27,48,69,91,112,133,155,176,197,219,240,261,283,304,325], - [19,72,124,177,229,281,334,386], - [349,437] - ], - cmbx10: [ - [8,9,0], [11,9,0], [10,10,1], [10,9,0], [9,9,0], [11,9,0], [10,9,0], [10,9,0], - [10,9,0], [10,9,0], [10,9,0], [9,9,0], [8,9,0], [8,9,0], [11,9,0], [11,9,0], - [4,6,0], [5,9,3,1], [3,3,-6,-1], [3,3,-6,-3], [5,2,-6,-1], [5,3,-6,-1], [5,2,-6,-1], [4,3,-6,-3], - [5,3,3,-1], [7,9,0], [10,7,1], [11,7,1], [7,9,2], [12,9,0], [13,10,1,-1], [10,10,1], - [4,2,-3], [2,9,0,-1], [6,5,-4], [11,12,3], [7,10,1], [11,10,1], [10,10,1], [2,5,-4,-1], - [4,12,3,-1], [4,12,3], [5,6,-3,-1], [10,10,2], [2,5,3,-1], [4,2,-2], [2,2,0,-1], [6,12,3], - [7,9,1], [5,8,0,-1], [7,8,0], [7,9,1], [7,8,0], [7,9,1], [7,9,1], [7,9,0], - [7,9,1], [7,9,1], [2,6,0,-1], [2,9,3,-1], [2,9,3,-1], [10,4,-1], [6,9,3], [6,9,0], - [10,10,1], [10,9,0], [9,9,0], [10,10,1], [10,9,0], [9,9,0], [8,9,0], [10,10,1], - [11,9,0], [5,9,0], [7,10,1], [11,9,0], [8,9,0], [13,9,0], [11,9,0], [10,10,1], - [9,9,0], [10,12,3], [11,10,1], [7,10,1], [9,9,0], [10,10,1], [10,9,0], [14,9,0], - [10,9,0], [11,9,0], [8,9,0], [3,12,3,-1], [6,5,-4,-1], [3,12,3], [5,3,-6,-1], [2,3,-6,-1], - [3,5,-4], [7,7,1], [8,9,0], [6,6,0], [8,10,1], [6,7,1], [6,9,0], [7,9,3], - [8,9,0], [4,9,0], [5,12,3,1], [7,9,0], [4,9,0], [12,6,0], [8,6,0], [7,7,1], - [8,9,3], [8,9,3], [6,6,0], [5,7,1], [5,8,0], [8,7,1], [7,6,0], [10,6,0], - [7,6,0], [7,9,3], [6,6,0], [7,1,-3], [14,1,-3], [5,3,-6,-1], [5,2,-7,-1], [5,3,-6,-1], - [5,22,38,55,72,89,106,122,139,156,173,190,206,223,240,257], - [16,30,45,59,73,87,101,115], - [275,125] - ], - cmti10: [ - [9,9,0], [8,9,0,-1], [9,10,1,-1], [8,9,0], [8,9,0,-1], [10,9,0], [9,9,0,-1], [8,9,0,-2], - [8,9,0,-1], [8,9,0,-2], [8,9,0,-1], [10,12,3,1], [9,12,3,1], [9,12,3,1], [12,12,3,1], [13,12,3,1], - [3,7,1,-1], [5,9,3,1], [3,3,-6,-3], [3,3,-6,-4], [4,2,-6,-3], [4,3,-6,-3], [4,2,-6,-3], [3,3,-6,-5], - [3,3,3,-1], [8,12,3,1], [8,7,1,-1], [8,7,1,-1], [6,8,1,-1], [12,9,0], [10,10,1,-2], [13,10,1,3], - [3,2,-3,-1], [4,9,0,-1], [5,5,-4,-2], [9,12,3,-1], [8,10,1,-1], [9,10,1,-1], [9,10,1,-1], [3,5,-4,-2], - [5,12,3,-1], [5,12,3], [5,5,-4,-2], [8,8,1,-1], [2,5,3,-1], [3,1,-2,-1], [2,2,0,-1], [8,12,3], - [6,9,1,-1], [5,8,0,-1], [6,9,1,-1], [6,9,1,-1], [6,11,3], [6,9,1,-1], [6,9,1,-1], [7,9,1,-1], - [6,9,1,-1], [6,9,1,-1], [3,6,0,-1], [3,9,3,-1], [4,9,3], [9,4,-1,-1], [5,9,3,-1], [5,9,0,-2], - [9,10,1,-1], [9,9,0], [9,9,0], [9,10,1,-1], [10,9,0], [9,9,0], [9,9,0], [9,10,1,-1], - [10,9,0], [6,9,0], [7,10,1,-1], [10,9,0], [8,9,0], [12,9,0], [10,9,0], [9,10,1,-1], - [9,9,0], [9,12,3,-1], [9,10,1], [7,10,1,-1], [8,9,0,-2], [8,10,1,-2], [9,10,1,-2], [10,10,1,-2], - [13,9,0,3], [9,9,0,-2], [8,9,0,-1], [5,12,3,-1], [5,5,-4,-3], [6,12,3,1], [4,3,-6,-3], [2,2,-6,-3], - [3,5,-4,-2], [6,7,1,-1], [5,10,1,-1], [5,7,1,-1], [6,10,1,-1], [5,7,1,-1], [7,12,3,1], [6,9,3], - [6,9,0,-1], [3,9,1,-1], [6,11,3,1], [5,10,1,-1], [3,9,0,-1], [9,7,1,-1], [6,7,1,-1], [6,7,1,-1], - [7,9,3], [5,9,3,-1], [5,6,0,-1], [4,7,1,-1], [4,9,1,-1], [6,7,1,-1], [5,7,1,-1], [8,7,1,-1], - [7,7,1], [6,9,3,-1], [6,7,1], [6,1,-3,-1], [11,1,-3,-1], [10,6,-3,3], [4,2,-6,-3], [4,2,-6,-3], - [5,19,34,48,62,77,91,106,120,135,149,163,178,192,207,221], - [16,30,45,59,73,87,101,115], - [237,125] - ] -}); - -jsMath.Img.AddFont(100,{ - cmr10: [ - [9,10,0], [11,10,0], [11,11,1], [10,10,0], [9,10,0], [10,10,0], [10,10,0], [10,10,0], - [10,10,0], [9,10,0,168], [10,10,0], [9,10,0], [8,10,0], [8,10,0], [12,10,0], [12,10,0], - [4,7,0], [4,10,3,1], [3,3,-7,-1], [3,3,-7,-3], [5,2,-7,-1], [5,3,-7,-1], [5,2,-7,-1], [3,3,-7,-4], - [4,3,3,-2], [7,11,1], [10,8,1], [11,8,1], [7,10,2], [13,10,0], [13,11,1,-1], [11,12,1], - [4,2,-4], [2,10,0,-1], [5,5,-5], [11,13,3], [7,12,1], [11,12,1], [11,11,1], [2,5,-5,-1], - [4,15,4,-1], [3,15,4,-1], [5,7,-4,-1], [10,9,1], [2,5,3,-1], [4,2,-2], [2,2,0,-1], [7,15,4], - [7,11,1], [5,10,0,-1], [7,10,0], [7,11,1], [7,10,0], [7,11,1], [7,11,1], [7,11,1], - [7,11,1], [7,11,1], [2,6,0,-1], [2,9,3,-1], [2,10,3,-1], [10,5,-1], [6,10,3], [6,10,0], - [11,11,1], [10,10,0], [10,10,0], [10,11,1], [10,10,0], [9,10,0], [9,10,0], [11,11,1], - [10,10,0], [5,10,0], [7,11,1], [11,10,0], [9,10,0], [13,10,0], [10,10,0], [11,11,1], - [9,10,0], [11,13,3], [11,11,1], [7,11,1], [10,10,0], [10,11,1], [11,11,1], [14,11,1], - [11,10,0], [11,10,0], [8,10,0], [3,15,4,-1], [5,5,-5,-2], [3,15,4], [5,3,-7,-1], [2,2,-8,-1], - [2,5,-5,-1], [7,8,1], [8,11,1], [6,8,1], [8,11,1], [6,8,1], [5,10,0], [7,10,3], - [8,10,0], [4,10,0], [4,13,3,1], [8,10,0], [4,10,0], [12,7,0], [8,7,0], [7,8,1], - [8,10,3], [8,10,3], [5,7,0], [5,8,1], [5,10,1], [8,8,1], [7,6,0], [10,6,0], - [8,6,0], [7,9,3], [6,6,0], [7,1,-3], [14,1,-3], [5,3,-7,-1], [5,2,-8,-1], [5,2,-8,-1], - [6,23,40,57,74,91,108,125,142,159,176,193,210,227,244,262], - [19,36,52,69,85,102,119,135], - [281,146] - ], - cmmi10: [ - [10,10,0], [11,10,0], [11,11,1], [10,10,0], [11,10,0], [13,10,0], [11,10,0,-1], [10,10,0], - [9,10,0], [10,10,0], [10,10,0,-1], [9,8,1], [9,13,3], [8,10,3], [7,11,1], [6,7,1], - [7,13,3], [7,10,3], [7,11,1], [5,8,1], [8,8,1], [8,11,1], [8,9,3], [8,7,0], - [7,13,3], [8,7,1], [7,10,3], [8,7,1], [8,7,1], [8,8,1], [8,13,3], [9,10,3], - [9,13,3], [9,8,1], [6,8,1], [8,11,1], [12,7,1], [6,10,3,-1], [6,9,2], [9,10,3], - [14,4,-3], [14,4,0], [14,4,-3], [17,4,0,3], [3,4,-3], [3,4,-3], [7,7,0], [7,7,0], - [7,8,1], [5,7,0,-1], [7,7,0], [7,10,3], [7,10,3], [7,10,3], [7,11,1], [7,10,3], - [7,11,1], [7,10,3], [2,2,0,-1], [2,5,3,-1], [9,9,1,-1], [7,15,4], [9,9,1,-1], [7,7,0], - [8,11,1], [10,10,0], [11,10,0], [11,11,1], [12,10,0], [11,10,0], [11,10,0], [11,11,1], - [13,10,0], [7,10,0], [8,11,1,-1], [13,10,0], [9,10,0], [15,10,0], [16,10,0,3], [11,11,1], - [11,10,0], [11,13,3], [11,11,1], [9,11,1], [10,10,0], [10,11,1,-1], [11,11,1], [14,11,1], - [15,10,0,3], [11,10,0], [10,10,0], [5,12,1], [4,13,3,-1], [5,13,3], [12,4,-1,-1], [12,4,-2,-1], - [6,11,1], [7,8,1], [6,11,1], [6,8,1], [8,11,1], [6,8,1], [8,13,3], [7,10,3], - [8,11,1], [4,11,1], [7,13,3,1], [7,11,1], [4,11,1], [12,8,1], [8,8,1], [7,8,1], - [8,10,3,1], [7,10,3], [6,8,1], [6,8,1], [5,10,1], [8,8,1], [7,8,1], [10,8,1], - [8,8,1], [7,10,3], [7,8,1], [4,8,1], [6,10,3,1], [8,10,3,-1], [7,3,-7,-2], [6,3,-7,-3], - [6,22,39,55,72,89,105,122,138,155,172,188,205,221,238,255], - [19,36,52,69,85,102,119,135], - [273,146] - ], - cmsy10: [ - [9,1,-3,-1], [2,3,-2,-1], [7,7,0,-2], [5,7,0,-1], [10,9,1], [7,7,0], [10,10,0], [10,10,3], - [11,11,2], [11,11,2], [11,11,2], [11,11,2], [11,11,2], [14,13,3], [7,7,0], [7,7,0], - [10,7,0], [10,7,0], [9,11,2,-1], [9,11,2,-1], [9,11,2,-1], [9,11,2,-1], [9,11,2,-1], [9,11,2,-1], - [11,5,-1], [10,7,0], [9,9,1,-1], [9,9,1,-1], [14,9,1], [14,9,1], [9,9,1,-1], [9,9,1,-1], - [13,5,-1,-1], [13,5,-1], [5,13,3,-1], [5,13,3,-1], [12,5,-1,-1], [14,13,3], [14,13,3], [10,7,0], - [13,9,1,-1], [13,9,1], [8,13,3], [8,13,3], [14,9,1], [14,13,3], [14,13,3], [10,8,1], - [4,8,0], [14,8,1], [7,9,1,-1], [8,9,1,-1], [12,10,0], [12,10,3], [7,13,3,-2], [2,5,-1], - [8,11,1], [7,10,0], [9,4,-1], [7,12,1], [10,11,1], [10,11,1], [9,10,0,-1], [10,10,0], - [8,10,0], [11,11,1], [10,11,1], [8,11,1], [11,10,0], [8,11,1], [12,11,1], [9,12,2], - [12,11,1], [10,10,0,1], [12,12,2], [11,11,1], [9,11,1], [16,11,1], [15,12,1,1], [11,11,1], - [11,11,1], [10,12,2,-1], [12,11,1], [9,11,1], [11,10,0], [11,11,1,1], [10,11,1], [15,11,1], - [12,10,0], [10,12,2], [11,10,0], [9,10,1], [9,10,1], [9,10,1], [8,10,1,-1], [9,10,1], - [8,10,0], [8,10,0], [4,15,4,-2], [4,15,4], [4,15,4,-2], [4,15,4], [5,15,4,-1], [5,15,4,-1], - [4,15,4,-1], [4,15,4], [2,15,4,-1], [5,15,4,-1], [5,15,4,-1], [8,15,4], [7,15,4], [4,11,2], - [11,15,14,-1], [10,10,0], [11,11,1], [7,13,3], [9,9,0], [9,9,0], [9,11,2,-1], [9,11,2,-1], - [5,13,3,-1], [6,13,3], [6,13,3], [8,13,3], [11,13,2], [10,14,3], [11,11,1], [11,13,2], - [6,26,46,66,86,106,125,145,165,185,205,225,245,265,285,305], - [20,48,77,105,134,162,190,219], - [327,243] - ], - cmex10: [ - [4,18,17,-2], [5,18,17], [4,18,17,-2], [3,18,17], [5,18,17,-2], [4,18,17], [5,18,17,-2], [4,18,17], - [6,18,17,-1], [6,18,17,-1], [5,18,17,-1], [5,18,17,-1], [1,10,9,-2], [4,10,9,-2], [8,18,17], [8,17,16], - [6,26,25,-2], [6,26,25], [8,34,33,-2], [8,34,33], [5,34,33,-3], [4,34,33], [5,34,33,-3], [5,34,33], - [5,34,33,-3], [5,34,33], [8,34,33,-1], [8,34,33,-1], [8,34,33,-1], [8,34,33,-1], [14,34,33], [14,34,33], - [8,43,42,-3], [8,43,42], [5,43,42,-3], [5,43,42], [6,43,42,-3], [6,43,42], [6,43,42,-3], [6,43,42], - [8,43,42,-2], [8,43,42,-2], [8,43,42,-2], [9,43,42,-1], [17,43,42], [17,43,42], [11,26,25], [11,26,25], - [8,26,25,-4], [9,26,25], [6,26,25,-4], [5,26,25], [6,26,25,-4], [5,26,25], [2,9,9,-4], [2,9,9,-3], - [5,13,13,-5], [6,13,13,-2], [5,14,13,-5], [6,14,13,-2], [6,27,26,-2], [5,27,26,-5], [3,6,5,-5], [1,9,9,-4], - [8,26,25,-4], [9,26,25], [2,10,9,-4], [3,10,9,-6], [7,26,25,-1], [6,26,25,-1], [11,14,14], [15,20,20], - [9,16,16], [14,31,31], [15,14,14], [21,20,20], [15,14,14], [21,20,20], [15,14,14], [21,20,20], - [14,14,14], [13,14,14], [9,16,16], [11,14,14], [11,14,14], [11,14,14], [11,14,14], [11,14,14], - [20,20,20], [18,20,20], [14,31,31], [15,20,20], [15,20,20], [15,20,20], [15,20,20], [15,20,20], - [13,14,14], [18,20,20], [8,3,-8], [14,3,-8], [21,3,-8], [8,3,-8], [14,3,-8], [20,3,-8], - [4,26,25,-3], [4,26,25], [5,26,25,-3], [5,26,25], [5,26,25,-3], [5,26,25], [7,26,25,-1], [7,26,25,-1], - [14,18,17,-1], [14,26,25,-1], [14,34,33,-1], [14,43,42,-1], [10,26,25,-1], [2,10,9,-9], [6,9,8,-9], [5,9,9,-3], - [7,9,9,-1], [7,9,9,-1], [8,5,3,1], [8,5,3,1], [8,5,0,1], [8,5,0,1], [11,9,9], [11,9,9], - [6,31,56,82,107,132,157,182,207,232,257,282,307,332,358,383], - [23,84,146,208,269,331,392,454], - [410,514] - ], - cmbx10: [ - [9,10,0], [13,10,0], [12,11,1], [11,10,0], [10,10,0], [12,10,0], [10,10,0,-1], [11,10,0,-1], - [11,10,0], [11,10,0,-1], [11,10,0], [11,10,0], [9,10,0], [9,10,0], [13,10,0], [13,10,0], - [4,7,0], [5,10,3,1], [4,3,-7,-1], [4,3,-7,-3], [4,2,-7,-2], [6,3,-7,-1], [6,2,-7,-1], [4,3,-7,-4], - [6,3,3,-1], [8,10,0], [12,8,1], [12,8,1], [8,10,2], [14,10,0], [15,11,1,-1], [12,12,1], - [5,2,-4], [3,10,0,-1], [7,6,-4], [12,13,3,-1], [8,12,1], [13,12,1], [12,11,1], [3,5,-5,-1], - [5,15,4,-1], [4,15,4,-1], [6,7,-4,-1], [11,11,2,-1], [3,6,3,-1], [5,2,-2], [3,3,0,-1], [6,15,4,-1], - [8,11,1], [6,10,0,-1], [8,10,0], [8,11,1], [8,10,0], [8,11,1], [8,11,1], [7,11,1,-1], - [8,11,1], [8,11,1], [3,7,0,-1], [3,10,3,-1], [3,10,3,-1], [11,5,-1,-1], [6,10,3,-1], [6,10,0,-1], - [12,11,1], [12,10,0], [11,10,0], [11,11,1], [12,10,0], [10,10,0], [10,10,0], [12,11,1], - [12,10,0], [6,10,0], [8,11,1], [12,10,0], [9,10,0], [15,10,0], [12,10,0], [12,11,1], - [10,10,0], [12,13,3], [12,11,1], [8,11,1], [11,10,0], [12,11,1], [12,10,0], [17,10,0], - [12,10,0], [12,10,0], [8,10,0,-1], [3,15,4,-1], [6,6,-4,-2], [3,15,4], [4,3,-7,-2], [3,3,-7,-1], - [4,6,-4], [8,7,0], [9,10,0], [7,7,0], [9,11,1], [7,7,0], [7,10,0], [8,10,3], - [9,10,0], [4,10,0], [5,13,3,1], [9,10,0], [5,10,0], [14,7,0], [9,7,0], [8,7,0], - [9,10,3], [9,10,3], [7,7,0], [6,8,1], [6,10,1], [9,7,0], [8,7,0], [12,7,0], - [9,7,0], [8,10,3], [7,7,0], [8,2,-3], [16,2,-3], [5,3,-7,-2], [6,2,-8,-1], [6,3,-7,-1], - [6,26,45,65,85,104,124,144,164,183,203,223,243,262,282,302], - [19,36,52,69,85,102,119,135], - [324,146] - ], - cmti10: [ - [9,10,0,-1], [10,10,0,-1], [9,11,1,-2], [9,10,0], [10,10,0,-1], [11,10,0,-1], [10,10,0,-1], [9,10,0,-3], - [9,10,0,-2], [9,10,0,-3], [10,10,0,-1], [12,13,3,1], [10,13,3,1], [10,13,3,1], [14,13,3,1], [15,13,3,1], - [4,8,1,-1], [6,10,3,1], [2,3,-7,-4], [4,3,-7,-4], [4,2,-7,-4], [4,3,-7,-4], [5,2,-7,-3], [4,3,-7,-6], - [4,3,3,-1], [9,13,3,1], [9,8,1,-1], [9,8,1,-1], [7,10,2,-1], [13,10,0,-1], [13,11,1,-2], [15,12,1,3], - [4,2,-4,-1], [5,10,0,-1], [6,5,-5,-2], [11,13,3,-1], [9,11,1,-1], [10,12,1,-2], [11,11,1,-1], [3,5,-5,-3], - [6,15,4,-2], [6,15,4], [6,7,-4,-2], [9,9,1,-2], [3,5,3,-1], [4,2,-2,-1], [2,2,0,-1], [9,15,4], - [7,11,1,-1], [6,10,0,-1], [7,11,1,-1], [7,11,1,-1], [7,13,3], [7,11,1,-1], [7,11,1,-1], [7,11,1,-2], - [7,11,1,-1], [7,11,1,-1], [4,6,0,-1], [4,9,3,-1], [5,10,3], [10,5,-1,-1], [6,10,3,-1], [6,10,0,-2], - [9,11,1,-2], [9,10,0,-1], [10,10,0,-1], [10,11,1,-2], [10,10,0,-1], [10,10,0,-1], [10,10,0,-1], [10,11,1,-2], - [11,10,0,-1], [7,10,0], [8,11,1,-1], [11,10,0,-1], [8,10,0,-1], [13,10,0,-1], [11,10,0,-1], [9,11,1,-2], - [10,10,0,-1], [9,13,3,-2], [9,11,1,-1], [8,11,1,-1], [10,10,0,-2], [10,11,1,-2], [9,11,1,-3], [12,11,1,-3], - [15,10,0,3], [10,10,0,-3], [9,10,0,-1], [6,15,4,-1], [6,5,-5,-3], [6,15,4,1], [5,3,-7,-3], [2,2,-8,-3], - [3,5,-5,-2], [7,8,1,-1], [6,11,1,-1], [6,8,1,-1], [7,11,1,-1], [6,8,1,-1], [8,13,3,1], [7,10,3], - [7,11,1,-1], [4,11,1,-1], [6,13,3,1], [6,11,1,-1], [4,11,1,-1], [11,8,1,-1], [8,8,1,-1], [7,8,1,-1], - [8,10,3], [6,10,3,-1], [6,8,1,-1], [5,8,1,-1], [5,10,1,-1], [7,8,1,-1], [6,8,1,-1], [9,8,1,-1], - [8,8,1], [7,10,3,-1], [6,8,1,-1], [7,1,-3,-1], [14,1,-3,-1], [11,7,-3,3], [5,2,-8,-3], [5,2,-8,-3], - [6,23,40,56,73,90,107,124,141,158,175,192,209,226,243,260], - [19,36,52,69,85,102,119,135], - [279,146] - ] -}); - -jsMath.Img.AddFont(120,{ - cmr10: [ - [10,12,0], [14,12,0], [12,13,1,-1], [12,13,0], [11,12,0], [13,12,0], [11,12,0,-1], [12,12,0,-1], - [11,12,0,-1], [12,12,0,-1], [12,12,0], [11,12,0], [9,12,0], [9,12,0], [14,12,0], [14,12,0], - [5,8,0], [5,12,4,1], [4,4,-8,-1], [4,4,-8,-3], [5,3,-8,-2], [6,4,-8,-1], [7,1,-9,-1], [4,4,-9,-4], - [5,4,4,-2], [8,13,1], [12,9,1], [13,9,1], [8,11,2], [15,12,0], [16,13,1,-1], [12,14,1,-1], - [5,3,-4], [3,13,0,-1], [6,6,-6], [13,16,4,-1], [7,14,1,-1], [13,14,1,-1], [13,14,1], [3,6,-6,-1], - [5,17,4,-1], [4,17,4,-1], [7,8,-5,-1], [12,12,2,-1], [3,6,4,-1], [5,2,-3], [3,2,0,-1], [7,17,4,-1], - [8,13,1], [7,12,0,-1], [8,12,0], [8,13,1], [8,12,0], [8,13,1], [8,13,1], [8,13,1,-1], - [8,13,1], [8,13,1], [3,8,0,-1], [3,12,4,-1], [3,13,4,-1], [12,5,-2,-1], [6,13,4,-1], [6,12,0,-1], - [12,13,1,-1], [13,13,0], [11,12,0], [11,13,1,-1], [12,12,0], [11,12,0], [11,12,0], [12,13,1,-1], - [13,12,0], [6,12,0], [8,13,1], [13,12,0], [10,12,0], [15,12,0], [13,12,0], [12,13,1,-1], - [11,12,0], [12,16,4,-1], [13,13,1], [8,13,1,-1], [12,12,0], [13,13,1], [13,13,1], [18,13,1], - [13,12,0], [13,12,0], [9,12,0,-1], [3,17,4,-2], [6,6,-6,-2], [3,17,4], [5,3,-9,-2], [3,3,-9,-1], - [3,6,-6,-1], [9,9,1], [9,13,1], [7,9,1], [9,13,1], [7,9,1], [6,12,0], [9,12,4], - [9,12,0], [5,12,0], [5,16,4,1], [9,12,0], [5,12,0], [14,8,0], [9,8,0], [8,9,1], - [9,12,4], [9,12,4], [7,8,0], [7,9,1], [6,12,1], [9,9,1], [9,9,1], [12,9,1], - [9,8,0], [9,12,4], [7,8,0], [9,1,-4], [17,1,-4], [6,4,-8,-2], [6,3,-9,-1], [6,3,-9,-1], - [7,27,48,68,89,109,130,150,171,191,211,232,252,273,293,314], - [22,42,61,81,101,121,141,161], - [337,175] - ], - cmmi10: [ - [13,12,0], [13,13,0,-1], [13,13,1], [12,12,0], [13,12,0,-1], [15,12,0], [13,12,0,-1], [12,12,0], - [11,12,0], [12,12,0], [13,12,0,-1], [11,9,1], [10,16,4], [10,12,4], [8,14,1], [7,9,1], - [8,16,4], [9,12,4], [8,13,1], [5,9,1,-1], [9,9,1,-1], [9,13,1,-1], [10,12,4], [8,8,0,-1], - [8,16,4], [10,9,1], [9,12,4], [10,9,1], [9,9,1], [9,9,1], [10,16,4], [10,12,4], - [11,16,4], [11,9,1], [8,9,1], [10,13,1], [14,9,1], [8,12,4,-1], [7,10,2], [11,12,4], - [15,6,-3,-1], [15,6,1,-1], [15,6,-3,-1], [15,6,1,-1], [3,4,-4,-1], [3,5,-3,-1], [8,9,0], [8,9,0], - [8,9,1], [6,8,0,-1], [8,8,0], [8,12,4], [8,12,4], [8,12,4], [8,13,1], [8,12,4,-1], - [8,13,1], [8,12,4], [3,2,0,-1], [3,6,4,-1], [11,11,1,-1], [7,17,4,-1], [11,11,1,-1], [9,9,0], - [10,14,1], [13,13,0], [13,12,0], [13,13,1], [14,12,0], [13,12,0], [13,12,0], [13,13,1], - [15,12,0], [9,12,0], [10,13,1,-1], [15,12,0], [11,12,0], [18,12,0], [18,12,0,3], [13,13,1], - [13,12,0], [13,16,4], [13,13,1], [10,13,1,-1], [12,12,0], [12,13,1,-1], [12,13,1,-1], [17,13,1,-1], - [18,12,0,3], [13,12,0], [12,12,0,-1], [6,14,1], [5,17,4,-1], [5,16,4,-1], [15,5,-2,-1], [15,5,-2,-1], - [7,13,1], [9,9,1], [7,13,1], [8,9,1], [9,13,1], [8,9,1], [9,16,4,-1], [8,12,4], - [9,13,1,-1], [5,13,1], [8,16,4,1], [8,13,1,-1], [5,13,1], [15,9,1], [10,9,1], [8,9,1], - [10,12,4,1], [8,12,4], [8,9,1], [7,9,1], [6,12,1], [10,9,1], [8,9,1], [12,9,1], - [9,9,1], [9,12,4], [8,9,1], [5,9,1], [8,12,4,1], [10,12,4,-1], [8,4,-8,-3], [7,3,-9,-4], - [7,27,46,66,86,106,126,146,166,186,206,226,246,266,286,306], - [22,42,61,81,101,121,141,161], - [328,175] - ], - cmsy10: [ - [11,2,-3,-1], [3,3,-3,-1], [9,9,0,-2], [7,8,0,-1], [12,10,1,-1], [9,9,0], [12,12,0,-1], [12,12,3,-1], - [12,12,2,-1], [12,12,2,-1], [12,12,2,-1], [12,12,2,-1], [12,12,2,-1], [15,17,4,-1], [7,7,-1,-1], [7,7,-1,-1], - [12,9,0,-1], [12,8,0,-1], [11,14,3,-1], [11,14,3,-1], [11,14,3,-1], [11,14,3,-1], [11,14,3,-1], [11,14,3,-1], - [12,5,-2,-1], [12,8,-1,-1], [11,11,1,-1], [11,11,1,-1], [15,11,1,-1], [15,11,1,-1], [11,11,1,-1], [11,11,1,-1], - [15,7,-1,-1], [15,7,-1,-1], [7,16,4,-1], [7,16,4,-1], [15,7,-1,-1], [15,16,4,-1], [15,16,4,-1], [12,8,0,-1], - [15,10,1,-1], [15,10,1,-1], [10,16,4], [10,16,4], [17,10,1], [15,16,4,-1], [15,16,4,-1], [12,9,1,-1], - [5,10,0], [15,9,1,-1], [9,11,1,-1], [9,11,1,-1], [13,13,0,-1], [13,13,4,-1], [9,17,4,-2], [1,7,-1,-1], - [10,13,1], [8,12,0,-1], [10,5,-1,-1], [8,15,2], [12,14,1], [11,13,1,-1], [12,12,0,-1], [12,12,0,-1], - [9,12,0,-1], [14,14,1], [12,13,1], [9,13,1], [13,12,0], [10,13,1], [14,13,1], [11,14,2], - [14,13,1], [12,12,0,1], [15,14,2], [13,13,1], [11,13,1], [19,13,1], [18,15,1,1], [13,13,1,-1], - [13,13,1], [12,15,3,-2], [14,13,1], [11,13,1], [14,13,0], [13,13,1,1], [12,13,1], [18,13,1], - [14,12,0], [13,15,3], [13,12,0], [10,12,1,-1], [10,12,1,-1], [10,12,1,-1], [10,12,1,-1], [10,12,1,-1], - [9,12,0,-1], [9,12,0,-1], [4,18,5,-3], [5,18,5], [5,18,5,-3], [5,18,5], [7,18,5,-1], [7,18,5,-1], - [5,18,5,-1], [4,18,5,-1], [1,18,5,-2], [5,18,5,-2], [7,18,5,-1], [10,18,5], [7,18,5,-1], [3,12,2,-1], - [14,18,17,-1], [12,12,0], [14,13,1], [7,17,4,-1], [10,11,0,-1], [10,11,0,-1], [11,14,3,-1], [11,14,3,-1], - [6,16,4,-1], [6,16,4,-1], [6,16,4,-1], [9,16,4,-1], [13,16,3], [12,16,3,-1], [12,14,1,-1], [12,16,3,-1], - [7,31,55,79,103,127,151,174,198,222,246,270,294,318,342,366], - [23,57,91,125,159,193,227,261], - [392,290] - ], - cmex10: [ - [5,21,20,-2], [6,21,20], [4,21,20,-3], [4,21,20], [5,21,20,-3], [5,21,20], [5,21,20,-3], [5,21,20], - [6,21,20,-2], [6,21,20,-2], [6,21,20,-1], [6,21,20,-1], [2,12,11,-2], [5,12,11,-2], [8,21,20,-1], [8,21,20,-1], - [7,31,30,-3], [8,31,30], [9,42,41,-3], [9,41,40], [5,42,41,-4], [5,42,41], [6,42,41,-4], [6,42,41], - [6,42,41,-4], [6,42,41], [9,41,40,-2], [9,42,41,-2], [9,41,40,-2], [10,41,40,-1], [16,41,40,-1], [16,41,40,-1], - [9,52,51,-4], [10,52,51], [6,52,51,-4], [6,52,51], [7,52,51,-4], [7,52,51], [7,52,51,-4], [7,52,51], - [10,52,51,-2], [10,52,51,-2], [10,52,51,-2], [11,52,51,-1], [20,52,51,-1], [20,52,51,-1], [12,31,30,-1], [12,31,30,-1], - [10,32,31,-5], [10,32,31], [7,31,30,-5], [6,31,30], [7,31,30,-5], [6,31,30], [2,11,11,-5], [2,11,11,-4], - [7,16,16,-6], [7,16,16,-2], [7,17,16,-6], [6,17,16,-3], [7,32,31,-2], [7,32,31,-6], [3,7,6,-6], [1,11,11,-5], - [10,31,30,-5], [10,31,30], [2,12,11,-5], [2,12,11,-8], [7,31,30,-2], [8,31,30,-1], [13,17,17,-1], [17,24,24,-1], - [10,19,19,-1], [15,38,38,-1], [17,17,17,-1], [24,24,24,-1], [17,17,17,-1], [24,24,24,-1], [17,17,17,-1], [24,24,24,-1], - [16,17,17,-1], [14,17,17,-1], [10,19,19,-1], [13,17,17,-1], [13,17,17,-1], [13,17,17,-1], [13,17,17,-1], [13,17,17,-1], - [23,24,24,-1], [20,24,24,-1], [15,38,38,-1], [17,24,24,-1], [17,24,24,-1], [17,24,24,-1], [17,24,24,-1], [17,24,24,-1], - [14,17,17,-1], [20,24,24,-1], [10,4,-9], [17,4,-9], [25,4,-9], [10,3,-10], [17,3,-10], [25,3,-10], - [5,31,30,-3], [5,31,30], [6,31,30,-3], [6,31,30], [6,31,30,-3], [6,31,30], [8,31,30,-2], [8,31,30,-2], - [16,21,20,-2], [16,31,30,-2], [16,42,41,-2], [16,52,51,-2], [11,32,31,-2], [2,12,11,-11], [8,11,10,-11], [5,11,11,-4], - [9,11,11,-1], [8,10,10,-2], [9,6,4,1], [9,6,4,1], [9,6,0,1], [9,6,0,1], [12,11,11,-1], [12,10,10,-1], - [7,38,68,98,128,158,188,218,248,278,309,339,369,399,429,459], - [26,100,174,248,322,396,470,544], - [492,616] - ], - cmbx10: [ - [11,12,0], [15,12,0,-1], [14,13,1,-1], [13,12,0], [13,12,0], [15,12,0], [12,12,0,-1], [13,12,0,-1], - [12,12,0,-1], [13,12,0,-1], [13,12,0,-1], [13,12,0], [11,12,0], [11,12,0], [16,12,0], [16,12,0], - [5,8,0], [6,12,4,1], [4,4,-8,-2], [4,4,-8,-4], [6,2,-9,-2], [7,4,-8,-1], [8,2,-9,-1], [5,3,-9,-5], - [6,4,4,-2], [10,13,1], [14,9,1], [15,9,1], [10,12,2], [18,12,0], [19,13,1,-1], [14,14,1,-1], - [6,3,-4], [4,12,0,-1], [8,6,-6], [15,16,4,-1], [8,14,1,-1], [15,14,1,-1], [15,13,1], [4,6,-6,-1], - [6,17,4,-1], [5,17,4,-1], [8,8,-5,-1], [13,14,3,-1], [4,7,4,-1], [6,2,-3], [3,3,0,-1], [8,17,4,-1], - [9,13,1], [8,12,0,-1], [8,12,0,-1], [9,13,1], [10,12,0], [8,12,1,-1], [9,13,1], [9,13,1,-1], - [9,13,1], [9,13,1], [3,8,0,-1], [4,12,4,-1], [4,13,4,-1], [13,6,-1,-1], [8,13,4,-1], [8,12,0,-1], - [14,13,1,-1], [14,12,0], [13,12,0], [12,13,1,-1], [14,12,0], [13,12,0], [12,12,0], [14,13,1,-1], - [15,12,0], [7,12,0], [9,13,1], [15,12,0], [11,12,0], [18,12,0], [15,12,0], [13,13,1,-1], - [13,12,0], [13,16,4,-1], [15,13,1], [9,13,1,-1], [13,12,0], [15,13,1], [15,13,1], [20,13,1], - [15,12,0], [15,12,0], [10,12,0,-1], [3,17,4,-2], [8,7,-5,-2], [4,17,4], [6,3,-9,-2], [3,3,-9,-1], - [3,7,-5,-1], [10,9,1], [11,13,1], [8,9,1], [11,13,1], [9,9,1], [8,12,0], [10,12,4], - [11,12,0], [5,12,0], [6,16,4,1], [10,12,0], [5,12,0], [16,8,0], [11,8,0], [10,9,1], - [11,12,4], [11,12,4], [8,8,0], [7,9,1], [7,12,1], [11,9,1], [10,8,0], [14,8,0], - [10,8,0], [10,12,4], [8,8,0], [10,1,-4], [20,1,-4], [7,4,-8,-2], [7,2,-10,-1], [7,3,-9,-1], - [7,31,54,78,102,125,149,173,196,220,244,268,291,315,339,362], - [22,42,61,81,101,121,141,161], - [388,175] - ], - cmti10: [ - [11,12,0,-1], [12,12,0,-1], [12,13,1,-2], [10,13,0,-1], [12,12,0,-1], [14,12,0,-1], [13,12,0,-1], [12,12,0,-3], - [11,12,0,-2], [11,12,0,-3], [12,12,0,-1], [14,16,4,1], [12,16,4,1], [12,16,4,1], [17,16,4,1], [17,16,4,1], - [5,9,1,-1], [7,12,4,1], [3,4,-8,-5], [5,4,-8,-5], [5,3,-8,-4], [6,4,-8,-4], [6,1,-9,-4], [4,4,-9,-8], - [5,4,4,-1], [11,16,4,1], [12,9,1,-1], [12,9,1,-1], [9,11,2,-1], [15,12,0,-1], [16,13,1,-2], [17,14,1,3], - [5,3,-4,-1], [5,13,0,-2], [6,6,-6,-3], [12,16,4,-2], [11,13,1,-1], [13,14,1,-2], [12,14,1,-2], [4,6,-6,-3], - [7,17,4,-2], [7,17,4], [7,8,-5,-3], [11,11,1,-2], [3,6,4,-1], [5,2,-3,-1], [2,2,0,-2], [11,17,4], - [8,13,1,-2], [6,12,0,-2], [9,13,1,-1], [9,13,1,-1], [8,16,4], [9,13,1,-1], [8,13,1,-2], [9,13,1,-2], - [9,13,1,-1], [9,13,1,-1], [4,8,0,-2], [5,12,4,-1], [5,13,4,-1], [12,5,-2,-2], [7,13,4,-1], [7,13,0,-3], - [12,13,1,-2], [11,13,0,-1], [12,12,0,-1], [12,13,1,-2], [13,12,0,-1], [12,12,0,-1], [12,12,0,-1], [12,13,1,-2], - [14,12,0,-1], [8,12,0,-1], [10,13,1,-1], [14,12,0,-1], [10,12,0,-1], [16,12,0,-1], [14,12,0,-1], [12,13,1,-2], - [12,12,0,-1], [12,16,4,-2], [12,13,1,-1], [10,13,1,-1], [11,12,0,-3], [12,13,1,-3], [12,13,1,-3], [16,13,1,-3], - [17,12,0,3], [12,12,0,-3], [11,12,0,-1], [7,17,4,-1], [7,6,-6,-4], [7,17,4,1], [5,3,-9,-4], [3,3,-9,-4], - [3,6,-6,-3], [8,9,1,-1], [6,13,1,-2], [7,9,1,-1], [9,13,1,-1], [6,9,1,-2], [9,16,4,1], [8,12,4,-1], - [8,13,1,-1], [5,12,1,-1], [7,16,4,1], [8,13,1,-1], [5,13,1,-1], [14,9,1,-1], [9,9,1,-1], [8,9,1,-1], - [9,12,4], [8,12,4,-1], [8,9,1,-1], [6,9,1,-1], [6,12,1,-1], [9,9,1,-1], [8,9,1,-1], [11,9,1,-1], - [8,9,1,-1], [8,12,4,-1], [7,9,1,-1], [9,1,-4,-1], [16,1,-4,-2], [13,8,-4,3], [6,3,-9,-4], [6,3,-9,-4], - [7,27,47,68,88,109,129,149,170,190,210,231,251,271,292,312], - [22,42,61,81,101,121,141,161], - [335,175] - ] -}); - -jsMath.Img.AddFont(144,{ - cmr10: [ - [12,14,0], [15,15,0,-1], [14,16,1,-1], [14,15,0], [13,14,0], [15,14,0], [13,14,0,-1], [14,15,0,-1], - [13,14,0,-1], [14,14,0,-1], [13,15,0,-1], [13,15,0], [11,15,0], [11,15,0], [16,15,0], [16,15,0], - [5,9,0], [6,14,5,1], [4,4,-10,-2], [4,4,-10,-4], [6,3,-10,-2], [6,4,-10,-2], [8,1,-11,-1], [5,5,-10,-5], - [6,5,5,-2], [10,16,1], [13,10,1,-1], [15,10,1], [10,13,2], [18,14,0], [19,15,1,-1], [14,16,1,-1], - [6,3,-5], [3,15,0,-1], [7,6,-8], [15,18,4,-1], [8,16,1,-1], [15,17,2,-1], [15,16,1], [4,6,-8,-1], - [5,20,5,-2], [5,20,5,-1], [8,9,-6,-1], [14,14,2,-1], [3,7,4,-1], [6,2,-3], [3,3,0,-1], [8,20,5,-1], - [10,15,1], [8,14,0,-1], [8,14,0,-1], [10,15,1], [10,14,0], [8,15,1,-1], [10,15,1], [9,15,1,-1], - [10,15,1], [10,15,1], [3,9,0,-1], [3,13,4,-1], [3,15,5,-1], [14,6,-2,-1], [8,15,5,-1], [8,15,0,-1], - [14,16,1,-1], [15,15,0], [13,14,0], [13,16,1,-1], [15,14,0], [13,14,0], [13,14,0], [14,16,1,-1], - [15,14,0], [7,14,0], [10,15,1], [15,14,0], [12,14,0], [18,14,0], [15,14,0], [14,16,1,-1], - [13,14,0], [14,19,4,-1], [15,15,1], [9,16,1,-1], [14,14,0], [15,15,1], [15,15,1], [21,15,1], - [15,14,0], [15,14,0], [11,14,0,-1], [4,20,5,-2], [7,7,-7,-3], [4,20,5], [6,3,-11,-2], [3,3,-11,-1], - [3,7,-7,-1], [10,10,1], [11,15,1], [9,10,1], [11,15,1], [9,10,1], [8,15,0], [10,14,5], - [11,14,0], [5,14,0], [6,19,5,1], [11,14,0], [5,14,0], [17,9,0], [11,9,0], [10,10,1], - [11,13,4], [11,13,4], [8,9,0], [8,10,1], [7,14,1], [11,10,1], [11,10,1], [14,10,1], - [11,9,0], [11,13,4], [8,9,0], [10,1,-5], [20,1,-5], [7,4,-10,-2], [8,3,-11,-1], [6,3,-11,-2], - [8,33,57,82,106,131,155,180,205,229,254,278,303,327,352,377], - [26,50,74,98,122,145,169,193], - [404,209] - ], - cmmi10: [ - [15,14,0], [15,15,0,-1], [14,16,1,-1], [14,15,0], [15,14,0,-1], [18,14,0], [15,14,0,-1], [14,14,0], - [13,14,0], [14,14,0], [15,15,0,-1], [12,10,1], [12,18,4], [11,14,5], [9,16,1], [7,10,1,-1], - [10,19,5], [10,14,5], [10,15,1], [6,10,1,-1], [10,10,1,-1], [10,15,1,-1], [12,14,5], [10,9,0,-1], - [9,19,5], [12,10,1], [10,14,5], [12,10,1], [11,10,1], [11,10,1], [11,18,4,-1], [12,14,5], - [13,18,4], [13,10,1], [9,10,1], [12,16,1], [17,10,1], [9,13,4,-1], [9,12,3], [12,14,5,-1], - [18,7,-4,-1], [18,7,1,-1], [18,7,-4,-1], [18,7,1,-1], [4,6,-4,-1], [4,6,-4,-1], [10,10,0], [10,10,0], - [10,10,1], [7,9,0,-2], [8,9,0,-1], [10,14,5], [10,14,4], [8,14,5,-1], [10,15,1], [9,15,5,-1], - [10,15,1], [10,14,5], [3,3,0,-1], [3,7,4,-1], [13,12,1,-1], [8,20,5,-1], [13,12,1,-1], [10,10,0], - [12,16,1], [15,15,0], [16,14,0], [15,16,1,-1], [17,14,0], [16,14,0], [15,14,0], [15,16,1,-1], - [18,14,0], [10,14,0], [12,15,1,-1], [18,14,0], [13,14,0], [21,14,0], [18,14,0], [14,16,1,-1], - [15,14,0], [14,19,4,-1], [15,15,1], [12,16,1,-1], [14,14,0], [15,15,1,-1], [15,15,1,-1], [20,15,1,-1], - [17,14,0], [16,14,0], [14,14,0,-1], [6,16,1,-1], [6,20,5,-1], [6,20,5,-1], [18,6,-2,-1], [18,6,-2,-1], - [8,15,1], [10,10,1], [8,15,1,-1], [9,10,1], [11,15,1], [9,10,1], [10,19,4,-1], [10,14,5], - [10,15,1,-1], [6,15,1], [9,19,5,1], [10,15,1,-1], [6,15,1], [17,10,1], [12,10,1], [10,10,1], - [11,13,4,1], [9,13,4], [9,10,1], [8,10,1,-1], [7,14,1], [11,10,1], [10,10,1], [14,10,1], - [11,10,1], [10,14,5], [9,10,1,-1], [6,10,1], [9,14,5,1], [12,14,5,-1], [10,5,-10,-3], [8,4,-10,-5], - [8,32,56,80,104,128,151,175,199,223,247,271,295,319,343,367], - [26,50,74,98,122,145,169,193], - [393,209] - ], - cmsy10: [ - [13,2,-4,-1], [3,2,-4,-1], [10,10,0,-3], [8,10,0,-1], [14,12,1,-1], [10,10,0], [14,14,0,-1], [14,14,4,-1], - [14,14,2,-1], [14,14,2,-1], [14,14,2,-1], [14,14,2,-1], [14,14,2,-1], [18,20,5,-1], [8,8,-1,-1], [8,8,-1,-1], - [14,10,0,-1], [14,10,0,-1], [13,16,3,-1], [13,16,3,-1], [13,16,3,-1], [13,16,3,-1], [13,16,3,-1], [13,16,3,-1], - [14,6,-2,-1], [14,9,-1,-1], [13,12,1,-1], [13,12,1,-1], [18,14,2,-1], [18,14,2,-1], [13,12,1,-1], [13,12,1,-1], - [18,8,-1,-1], [18,8,-1,-1], [8,18,4,-1], [8,18,4,-1], [18,8,-1,-1], [18,18,4,-1], [18,18,4,-1], [14,10,0,-1], - [18,12,1,-1], [18,12,1,-1], [12,18,4], [12,18,4], [19,12,1], [18,18,4,-1], [18,18,4,-1], [14,10,1,-1], - [6,11,-1], [18,10,1,-1], [11,12,1,-1], [11,12,1,-1], [16,15,0,-1], [16,15,5,-1], [11,20,5,-2], [2,8,-1,-1], - [11,15,1], [9,14,0,-1], [12,7,-1,-1], [9,18,2], [14,16,1,-1], [13,16,1,-1], [14,14,0,-1], [14,14,0,-1], - [11,14,0,-1], [16,16,1], [14,16,1], [11,15,1], [16,14,0], [12,16,1], [17,15,1], [12,18,3], - [17,15,1], [14,14,0,1], [16,17,3,-1], [15,16,1], [13,16,1], [23,15,1], [21,17,1,1], [15,15,1,-1], - [15,15,1], [14,18,3,-2], [17,15,1], [13,16,1], [16,15,0], [15,15,1,1], [14,15,1], [21,15,1], - [16,14,0,-1], [15,17,3], [16,14,0], [12,13,1,-1], [12,13,1,-1], [12,13,1,-1], [11,13,1,-1], [12,13,1,-1], - [10,14,0,-1], [11,14,0,-1], [6,20,5,-3], [6,20,5], [6,20,5,-3], [6,20,5], [8,20,5,-1], [8,20,5,-1], - [5,20,5,-2], [5,20,5,-1], [2,20,5,-2], [6,20,5,-2], [8,22,6,-1], [12,22,6], [8,20,5,-1], [4,14,2,-1], - [16,21,20,-1], [15,14,0], [15,15,1,-1], [9,20,5,-1], [12,12,0,-1], [12,12,0,-1], [14,16,3,-1], [13,16,3,-1], - [7,20,5,-1], [7,19,5,-1], [7,18,4,-1], [11,18,4,-1], [15,18,3], [14,19,4,-1], [14,16,1,-1], [14,18,3,-1], - [8,37,66,95,123,152,181,209,238,267,295,324,353,382,410,439], - [27,68,109,150,191,232,273,314], - [471,348] - ], - cmex10: [ - [6,24,23,-3], [6,24,23,-1], [4,25,24,-4], [5,25,24], [5,25,24,-4], [6,25,24], [5,25,24,-4], [6,25,24], - [8,25,24,-2], [8,25,24,-2], [6,25,24,-2], [7,24,23,-1], [2,14,13,-2], [7,14,13,-2], [10,25,24,-1], [10,24,23,-1], - [9,37,36,-3], [9,37,36], [10,49,48,-4], [11,49,48], [6,49,48,-5], [6,49,48], [7,49,48,-5], [7,49,48], - [7,49,48,-5], [7,49,48], [11,49,48,-2], [11,49,48,-2], [11,49,48,-2], [11,49,48,-2], [19,49,48,-1], [19,49,48,-1], - [11,61,60,-4], [12,61,60], [7,61,60,-5], [7,61,60], [8,61,60,-5], [8,61,60], [8,61,60,-5], [8,61,60], - [12,61,60,-2], [12,61,60,-2], [12,61,60,-2], [12,61,60,-2], [24,61,60,-1], [24,61,60,-1], [14,37,36,-1], [14,37,36,-1], - [12,37,36,-5], [12,37,36], [8,37,36,-6], [7,37,36], [8,37,36,-6], [7,37,36], [2,12,12,-6], [2,12,12,-5], - [8,19,19,-7], [8,19,19,-3], [8,19,18,-7], [8,19,18,-3], [8,38,37,-3], [8,38,37,-7], [4,8,7,-7], [2,12,12,-6], - [12,37,36,-5], [12,37,36], [3,14,13,-5], [3,14,13,-9], [9,36,35,-2], [9,37,36,-1], [15,20,20,-1], [21,28,28,-1], - [12,23,23,-1], [18,45,45,-1], [20,20,20,-1], [28,28,28,-1], [20,20,20,-1], [28,28,28,-1], [20,20,20,-1], [28,28,28,-1], - [19,20,20,-1], [17,20,20,-1], [12,23,23,-1], [15,20,20,-1], [15,20,20,-1], [15,20,20,-1], [15,20,20,-1], [15,20,20,-1], - [27,28,28,-1], [24,28,28,-1], [18,45,45,-1], [21,28,28,-1], [21,28,28,-1], [21,28,28,-1], [20,28,28,-1], [20,28,28,-1], - [17,20,20,-1], [24,28,28,-1], [12,4,-11], [20,5,-11], [29,5,-11], [11,3,-12], [20,3,-12], [29,3,-12], - [5,37,36,-4], [5,37,36], [7,37,36,-4], [6,37,36], [7,37,36,-4], [6,37,36], [9,37,36,-2], [9,37,36,-2], - [19,25,24,-2], [19,37,36,-2], [19,49,48,-2], [19,61,60,-2], [13,37,36,-2], [1,14,13,-14], [8,13,12,-14], [6,12,12,-5], - [9,12,12,-2], [9,12,12,-2], [11,8,5,1], [11,8,5,1], [11,7,0,1], [11,7,0,1], [14,12,12,-1], [14,12,12,-1], - [9,45,81,117,154,190,226,262,298,334,370,406,443,479,515,551], - [31,120,209,297,386,475,564,652], - [591,739] - ], - cmbx10: [ - [13,14,0], [17,14,0,-1], [16,15,1,-1], [16,14,0], [14,14,0,-1], [18,14,0], [15,14,0,-1], [16,14,0,-1], - [15,14,0,-1], [16,14,0,-1], [15,14,0,-1], [15,14,0], [12,14,0], [12,14,0], [19,14,0], [19,14,0], - [5,9,0,-1], [8,13,4,2], [5,4,-10,-2], [5,4,-10,-5], [7,3,-10,-2], [8,4,-10,-2], [9,2,-11,-1], [5,4,-10,-6], - [7,4,4,-2], [12,15,1], [16,10,1], [18,10,1], [11,13,2], [21,14,0], [22,15,1,-1], [16,16,1,-1], - [7,3,-5], [3,15,0,-2], [10,7,-7], [17,18,4,-1], [10,17,2,-1], [17,17,2,-1], [16,15,1,-1], [4,7,-7,-1], - [6,20,5,-2], [6,20,5,-1], [9,9,-6,-1], [16,16,3,-1], [4,8,4,-1], [7,3,-3], [4,4,0,-1], [10,20,5,-1], - [11,15,1], [9,13,0,-1], [10,14,0,-1], [10,15,1,-1], [11,14,0], [10,14,1,-1], [10,15,1,-1], [11,15,1,-1], - [10,15,1,-1], [10,15,1,-1], [4,9,0,-1], [4,13,4,-1], [3,15,5,-2], [16,6,-2,-1], [9,14,4,-1], [9,14,0,-1], - [16,15,1,-1], [17,14,0], [15,14,0], [15,15,1,-1], [17,14,0], [15,14,0], [14,14,0], [16,15,1,-1], - [18,14,0], [8,14,0], [11,15,1], [17,14,0], [13,14,0], [21,14,0], [18,14,0], [15,15,1,-1], - [15,14,0], [16,18,4,-1], [18,15,1], [11,15,1,-1], [16,14,0], [17,15,1], [17,15,1], [24,15,1], - [17,14,0], [17,14,0], [12,14,0,-1], [4,20,5,-2], [10,8,-6,-2], [4,20,5], [7,4,-10,-2], [4,4,-10,-1], - [4,8,-6,-1], [12,10,1], [12,15,1], [10,10,1], [12,15,1], [10,10,1], [9,14,0], [12,13,4], - [13,14,0], [5,14,0,-1], [8,18,4,2], [12,14,0], [5,14,0,-1], [19,9,0], [13,9,0], [11,10,1], - [12,13,4], [12,13,4], [9,9,0], [9,10,1], [8,14,1], [13,10,1], [12,9,0], [17,9,0], - [12,9,0], [12,13,4], [10,9,0], [12,1,-5], [23,1,-5], [7,5,-10,-3], [8,3,-11,-2], [8,3,-11,-2], - [8,37,65,94,122,150,179,207,236,264,293,321,349,378,406,435], - [26,50,74,98,122,145,169,193], - [466,209] - ], - cmti10: [ - [13,14,0,-1], [14,15,0,-1], [13,16,1,-3], [12,15,0,-1], [14,14,0,-1], [16,14,0,-1], [15,14,0,-1], [13,15,0,-4], - [12,14,0,-3], [13,14,0,-4], [14,15,0,-2], [17,19,4,1], [13,19,4,1], [14,19,4,1], [20,20,5,1], [20,20,5,1], - [6,10,1,-1], [8,13,4,1], [4,4,-10,-5], [5,4,-10,-6], [6,3,-10,-5], [7,4,-10,-5], [8,1,-11,-4], [5,5,-10,-9], - [5,4,4,-2], [13,19,4,1], [14,10,1,-1], [13,10,1,-2], [10,13,2,-1], [18,14,0,-1], [18,16,1,-3], [15,17,2,-2], - [5,3,-5,-2], [6,15,0,-2], [8,6,-8,-3], [15,18,4,-2], [13,16,1,-1], [14,17,2,-3], [14,16,1,-2], [4,6,-8,-4], - [8,20,5,-3], [8,20,5], [8,9,-6,-4], [12,13,2,-3], [4,7,4,-1], [6,2,-3,-1], [3,3,0,-2], [13,20,5], - [10,15,1,-2], [8,14,0,-2], [10,15,1,-1], [11,15,1,-1], [9,18,4,-1], [10,15,1,-2], [10,15,1,-2], [10,15,1,-3], - [9,15,1,-2], [9,15,1,-2], [4,9,0,-2], [5,13,4,-1], [6,15,5,-1], [14,6,-2,-2], [8,15,5,-1], [8,15,0,-3], - [13,16,1,-3], [13,15,0,-1], [14,14,0,-1], [14,16,1,-3], [15,14,0,-1], [14,14,0,-1], [14,14,0,-1], [14,16,1,-3], - [16,14,0,-1], [9,14,0,-1], [12,15,1,-1], [17,14,0,-1], [12,14,0,-1], [19,14,0,-1], [16,14,0,-1], [13,16,1,-3], - [14,14,0,-1], [13,19,4,-3], [14,15,1,-1], [12,16,1,-1], [13,14,0,-3], [13,15,1,-4], [14,15,1,-4], [18,15,1,-4], - [21,14,0,4], [14,14,0,-4], [13,14,0,-1], [8,20,5,-1], [8,7,-7,-5], [9,20,5,1], [6,4,-10,-5], [3,3,-11,-5], - [4,6,-8,-4], [9,10,1,-2], [8,15,1,-2], [8,10,1,-2], [10,15,1,-2], [8,10,1,-2], [10,19,4,1], [9,14,5,-1], - [10,15,1,-1], [6,14,1,-1], [9,18,4,1], [9,15,1,-1], [5,15,1,-1], [16,10,1,-1], [11,10,1,-1], [9,10,1,-2], - [11,13,4], [8,13,4,-2], [9,10,1,-1], [8,10,1,-1], [7,14,1,-1], [11,10,1,-1], [9,10,1,-1], [13,10,1,-1], - [10,10,1,-1], [10,13,4,-1], [9,10,1,-1], [9,1,-5,-2], [19,1,-5,-2], [7,4,-10,-5], [7,3,-11,-5], [6,3,-11,-5], - [8,32,57,81,106,130,155,179,204,228,252,277,301,326,350,375], - [26,50,74,98,122,145,169,193], - [402,209] - ] -}); - -jsMath.Img.AddFont(173,{ - cmr10: [ - [14,17,0], [18,18,0,-1], [17,18,1,-1], [16,18,0], [14,17,0,-1], [18,17,0], [15,17,0,-1], [17,17,0,-1], - [15,17,0,-1], [17,17,0,-1], [16,17,0,-1], [15,17,0], [13,17,0], [13,17,0], [20,17,0], [20,17,0], - [6,11,0], [6,16,5,1], [5,5,-12,-2], [5,5,-12,-5], [6,4,-12,-3], [8,5,-12,-2], [10,2,-13,-1], [6,5,-13,-6], - [6,5,5,-3], [12,18,1], [16,12,1,-1], [18,12,1], [12,16,3], [21,17,0], [23,18,1,-1], [17,20,2,-1], - [7,4,-6], [3,18,0,-2], [9,8,-9], [18,22,5,-1], [10,20,2,-1], [18,20,2,-1], [17,19,1,-1], [3,8,-9,-2], - [6,24,6,-2], [6,24,6,-1], [10,11,-7,-1], [17,16,2,-1], [3,8,5,-2], [7,2,-4], [3,3,0,-2], [10,24,6,-1], - [11,17,1], [8,16,0,-2], [10,16,0,-1], [10,17,1,-1], [12,17,0], [10,17,1,-1], [10,17,1,-1], [11,18,1,-1], - [10,17,1,-1], [10,17,1,-1], [3,11,0,-2], [3,16,5,-2], [3,18,6,-2], [17,6,-3,-1], [9,17,5,-1], [9,17,0,-1], - [17,18,1,-1], [18,18,0], [16,17,0], [15,18,1,-1], [17,17,0], [16,17,0], [15,17,0], [17,18,1,-1], - [18,17,0], [8,17,0], [11,18,1,-1], [18,17,0], [14,17,0], [22,17,0], [18,17,0], [17,18,1,-1], - [15,17,0], [17,22,5,-1], [18,18,1], [11,18,1,-1], [17,17,0], [18,18,1], [18,18,1], [25,18,1], - [18,17,0], [18,17,0], [13,17,0,-1], [5,24,6,-2], [9,8,-9,-3], [4,24,6], [6,4,-13,-3], [3,3,-13,-2], - [4,8,-9,-1], [11,12,1,-1], [13,18,1], [10,12,1], [13,18,1], [10,12,1], [9,17,0], [12,16,5], - [13,17,0], [6,16,0], [6,21,5,1], [13,17,0], [7,17,0], [20,11,0], [13,11,0], [12,12,1], - [13,16,5], [13,16,5], [9,11,0], [9,12,1], [8,16,1], [13,12,1], [13,12,1], [17,12,1], - [13,11,0], [13,16,5], [10,11,0], [12,1,-6], [24,1,-6], [7,5,-12,-3], [8,3,-13,-2], [8,3,-13,-2], - [10,39,69,98,128,157,187,216,246,275,305,334,364,393,423,453], - [32,61,90,118,147,176,204,233], - [485,253] - ], - cmmi10: [ - [17,17,0,-1], [18,18,0,-1], [17,18,1,-1], [16,18,0], [18,17,0,-1], [20,17,0,-1], [19,17,0,-1], [17,17,0], - [16,17,0], [17,17,0], [18,17,0,-1], [14,12,1,-1], [15,22,5], [13,16,5], [10,18,1,-1], [8,12,1,-1], - [11,22,5,-1], [12,17,6], [10,18,1,-1], [7,12,1,-1], [12,12,1,-1], [12,18,1,-1], [14,17,6], [12,11,0,-1], - [11,22,5], [14,12,1], [12,17,6], [14,12,1], [13,12,1], [13,12,1], [13,22,5,-1], [15,16,5], - [16,22,5], [15,12,1], [11,12,1], [14,18,1], [20,12,1], [11,16,5,-1], [10,14,3], [14,17,6,-1], - [22,8,-5,-1], [22,8,1,-1], [22,8,-5,-1], [22,8,1,-1], [5,7,-5,-1], [5,7,-5,-1], [12,12,0], [12,12,0], - [10,12,1,-1], [8,11,0,-2], [10,11,0,-1], [10,17,6,-1], [12,17,5], [10,17,6,-1], [10,17,1,-1], [11,17,6,-1], - [10,17,1,-1], [10,17,6,-1], [3,3,0,-2], [3,8,5,-2], [15,14,1,-2], [10,24,6,-1], [15,14,1,-2], [12,12,0], - [13,19,1,-1], [18,18,0], [18,17,0,-1], [18,18,1,-1], [19,17,0,-1], [18,17,0,-1], [17,17,0,-1], [18,18,1,-1], - [20,17,0,-1], [12,17,0], [14,18,1,-1], [21,17,0,-1], [15,17,0,-1], [24,17,0,-1], [20,17,0,-1], [17,18,1,-1], - [18,17,0,-1], [17,22,5,-1], [17,18,1,-1], [15,18,1,-1], [17,17,0], [18,18,1,-1], [18,18,1,-1], [24,18,1,-1], - [25,17,0,4], [18,17,0,-1], [17,17,0,-1], [7,19,1,-1], [7,24,6,-1], [7,24,6,-1], [22,6,-3,-1], [22,7,-3,-1], - [10,18,1], [11,12,1,-1], [9,18,1,-1], [10,12,1,-1], [12,18,1,-1], [10,12,1,-1], [13,22,5,-1], [12,16,5], - [12,18,1,-1], [7,17,1], [11,21,5,1], [12,18,1,-1], [6,18,1,-1], [21,12,1], [14,12,1], [11,12,1,-1], - [13,16,5,1], [10,16,5,-1], [11,12,1], [9,12,1,-1], [8,16,1], [13,12,1], [12,12,1], [17,12,1], - [13,12,1], [12,16,5], [11,12,1,-1], [7,12,1], [10,16,5,1], [14,17,6,-1], [11,5,-12,-4], [10,3,-13,-6], - [10,38,67,96,124,153,182,211,239,268,297,326,354,383,412,440], - [32,61,90,118,147,176,204,233], - [472,253] - ], - cmsy10: [ - [15,2,-5,-2], [3,4,-4,-2], [12,12,0,-3], [10,11,0,-1], [17,14,1,-1], [12,12,0], [17,16,0,-1], [17,16,4,-1], - [17,16,2,-1], [17,16,2,-1], [17,16,2,-1], [17,16,2,-1], [17,16,2,-1], [22,24,6,-1], [10,10,-1,-1], [10,10,-1,-1], - [17,12,0,-1], [17,12,0,-1], [15,20,4,-2], [15,20,4,-2], [15,20,4,-2], [15,20,4,-2], [15,20,4,-2], [15,20,4,-2], - [17,6,-3,-1], [17,11,-1,-1], [15,14,1,-2], [15,14,1,-2], [22,16,2,-1], [22,16,2,-1], [15,14,1,-2], [15,14,1,-2], - [22,10,-1,-1], [22,10,-1,-1], [10,22,5,-1], [10,22,5,-1], [22,10,-1,-1], [22,22,5,-1], [22,22,5,-1], [17,12,0,-1], - [22,14,1,-1], [22,14,1,-1], [14,22,5], [14,22,5], [22,14,1,-1], [22,22,5,-1], [22,22,5,-1], [17,12,1,-1], - [7,13,-1], [22,12,1,-1], [12,14,1,-2], [12,14,1,-2], [19,18,0,-1], [19,18,6,-1], [13,24,6,-3], [2,10,-1,-1], - [14,18,1], [11,17,0,-1], [14,7,-2,-1], [10,21,2,-1], [16,19,1,-1], [16,18,1,-1], [17,16,0,-1], [17,16,0,-1], - [13,17,0,-1], [19,20,2], [16,18,1], [13,18,1], [19,17,0], [14,18,1], [20,18,1], [14,20,3,-1], - [20,19,2], [17,17,0,1], [19,20,3,-1], [18,18,1], [16,18,1], [27,19,2], [25,21,2,1], [18,18,1,-1], - [18,19,2], [17,20,3,-2], [20,18,1], [16,18,1], [19,18,0], [18,18,1,1], [15,18,1,-1], [24,18,1,-1], - [19,17,0,-1], [18,21,4], [18,17,0,-1], [14,16,1,-1], [14,16,1,-1], [14,16,1,-1], [14,16,1,-1], [14,16,1,-1], - [13,17,0,-1], [13,17,0,-1], [6,24,6,-4], [7,24,6], [6,24,6,-4], [7,24,6], [9,24,6,-2], [9,24,6,-1], - [6,24,6,-2], [6,24,6,-1], [2,24,6,-2], [6,24,6,-3], [10,26,7,-1], [14,26,7], [10,24,6,-1], [5,16,2,-1], - [20,24,23,-1], [17,17,0], [18,18,1,-1], [11,24,6,-1], [14,15,0,-1], [14,15,0,-1], [16,20,4,-2], [16,20,4,-1], - [8,22,5,-1], [9,23,6,-1], [9,22,5,-1], [13,22,5,-1], [18,22,4], [17,22,4,-1], [17,19,1,-1], [17,22,4,-1], - [10,45,79,114,148,183,217,252,286,321,355,390,424,459,493,528], - [34,83,132,181,230,279,329,378], - [565,419] - ], - cmex10: [ - [7,29,28,-3], [7,29,28,-1], [6,29,28,-4], [6,29,28], [7,29,28,-4], [7,29,28], [7,29,28,-4], [7,29,28], - [10,29,28,-2], [10,29,28,-2], [8,29,28,-2], [8,29,28,-1], [2,16,15,-3], [7,16,15,-3], [12,29,28,-1], [12,29,28,-1], - [10,44,43,-4], [9,44,43,-1], [12,58,57,-5], [12,58,57,-1], [7,58,57,-6], [7,58,57], [8,58,57,-6], [8,58,57], - [8,58,57,-6], [8,58,57], [12,58,57,-3], [12,58,57,-3], [13,58,57,-3], [13,58,57,-2], [23,58,57,-1], [23,58,57,-1], - [14,72,71,-5], [14,72,71], [8,72,71,-6], [8,72,71], [9,72,71,-6], [9,72,71], [9,72,71,-6], [9,72,71], - [13,72,71,-3], [13,72,71,-3], [14,72,71,-3], [14,72,71,-2], [29,72,71,-1], [29,72,71,-1], [17,44,43,-1], [17,44,43,-1], - [14,44,43,-7], [14,44,43], [9,44,43,-7], [9,44,43], [9,44,43,-7], [9,44,43], [3,15,15,-7], [3,15,15,-6], - [9,22,22,-9], [9,22,22,-4], [9,23,22,-9], [9,23,22,-4], [9,45,44,-4], [9,45,44,-9], [4,9,8,-9], [2,15,15,-7], - [13,45,43,-7], [14,45,43], [3,16,15,-7], [3,16,15,-11], [11,44,43,-2], [10,44,43,-2], [18,24,24,-1], [25,34,34,-1], - [14,27,27,-1], [22,54,54,-1], [25,24,24,-1], [34,34,34,-1], [25,24,24,-1], [34,34,34,-1], [25,24,24,-1], [34,34,34,-1], - [23,24,24,-1], [21,24,24,-1], [14,27,27,-1], [18,24,24,-1], [18,24,24,-1], [18,24,24,-1], [18,24,24,-1], [18,24,24,-1], - [33,34,34,-1], [29,34,34,-1], [22,54,54,-1], [25,34,34,-1], [25,34,34,-1], [25,34,34,-1], [25,34,34,-1], [25,34,34,-1], - [21,24,24,-1], [29,34,34,-1], [14,5,-13], [24,6,-13], [35,6,-13], [14,4,-14], [24,3,-15], [35,3,-15], - [6,44,43,-5], [6,44,43], [8,44,43,-5], [8,44,43], [8,44,43,-5], [8,44,43], [12,44,43,-2], [12,44,43,-2], - [23,29,28,-2], [23,44,43,-2], [23,58,57,-2], [23,72,71,-2], [16,45,44,-2], [2,16,15,-16], [10,15,14,-16], [7,15,15,-6], - [12,15,15,-2], [12,15,15,-2], [12,9,6,1], [13,9,6,1], [12,8,0,1], [13,8,0,1], [17,15,15,-1], [17,15,15,-1], - [11,54,98,141,184,228,271,315,358,401,445,488,532,575,619,662], - [39,145,252,358,465,571,678,785], - [709,888] - ], - cmbx10: [ - [16,17,0], [21,17,0,-1], [19,18,1,-1], [18,17,0,-1], [17,17,0,-1], [21,17,0], [18,17,0,-1], [19,17,0,-1], - [18,17,0,-1], [19,17,0,-1], [18,17,0,-1], [18,17,0], [15,17,0], [15,17,0], [23,17,0], [23,17,0], - [6,11,0,-1], [9,16,5,2], [6,5,-12,-2], [6,5,-12,-5], [8,4,-12,-3], [10,5,-12,-2], [10,2,-13,-2], [7,5,-12,-7], - [8,5,5,-3], [14,18,1], [20,12,1], [21,12,1], [13,17,3], [24,17,0,-1], [26,18,1,-2], [19,20,2,-1], - [8,4,-6], [4,17,0,-2], [11,9,-8,-1], [21,22,5,-1], [12,20,2,-1], [21,20,2,-1], [19,18,1,-1], [5,9,-8,-2], - [8,24,6,-2], [8,24,6,-1], [11,11,-7,-1], [19,20,4,-1], [4,9,5,-2], [8,3,-4], [4,4,0,-2], [12,24,6,-1], - [12,17,1,-1], [10,16,0,-2], [12,16,0,-1], [12,17,1,-1], [13,16,0], [12,17,1,-1], [12,17,1,-1], [13,18,1,-1], - [12,17,1,-1], [12,17,1,-1], [4,11,0,-2], [4,16,5,-2], [4,17,5,-2], [19,8,-2,-1], [11,17,5,-1], [11,17,0,-1], - [19,18,1,-1], [19,17,0,-1], [19,17,0], [18,18,1,-1], [20,17,0], [18,17,0], [17,17,0], [20,18,1,-1], - [21,17,0], [10,17,0], [13,18,1], [21,17,0], [16,17,0], [25,17,0,-1], [21,17,0], [19,18,1,-1], - [18,17,0], [19,22,5,-1], [21,18,1], [13,18,1,-1], [18,17,0,-1], [20,18,1,-1], [21,18,1], [28,18,1], - [20,17,0], [21,17,0], [15,17,0,-1], [4,24,6,-3], [11,9,-8,-3], [5,24,6], [8,5,-12,-3], [4,4,-13,-2], - [5,9,-8,-1], [14,12,1], [15,18,1], [12,12,1], [15,18,1], [12,12,1], [10,17,0,-1], [14,16,5], - [14,17,0,-1], [6,17,0,-1], [9,22,5,2], [15,17,0], [6,17,0,-1], [22,11,0,-1], [14,11,0,-1], [13,12,1], - [15,16,5], [15,16,5], [11,11,0], [10,12,1], [10,17,1], [14,12,1,-1], [14,12,1], [20,12,1], - [14,11,0], [14,16,5], [11,11,0], [14,1,-6], [28,1,-6], [9,5,-12,-3], [10,3,-14,-2], [10,4,-13,-2], - [10,44,78,112,147,181,215,249,283,317,352,386,420,454,488,522], - [32,61,90,118,147,176,204,233], - [560,253] - ], - cmti10: [ - [16,17,0,-1], [17,18,0,-1], [16,18,1,-3], [15,18,0,-1], [17,17,0,-1], [20,17,0,-1], [17,17,0,-2], [15,17,0,-5], - [15,17,0,-3], [15,17,0,-5], [17,17,0,-2], [20,22,5,1], [16,22,5,1], [17,22,5,1], [23,22,5,1], [24,22,5,1], - [6,12,1,-2], [9,16,5,1], [4,5,-12,-7], [6,5,-12,-8], [7,3,-12,-6], [8,5,-12,-6], [9,2,-13,-5], [5,5,-13,-11], - [6,5,5,-2], [15,22,5,1], [16,12,1,-2], [16,12,1,-2], [13,16,3,-1], [22,17,0,-1], [23,18,1,-3], [24,20,2,4], - [7,4,-6,-2], [7,18,0,-2], [9,8,-9,-4], [18,22,5,-2], [15,18,1,-2], [18,20,2,-3], [17,19,1,-3], [4,8,-9,-5], - [10,24,6,-3], [10,24,6], [10,11,-7,-4], [15,16,2,-3], [5,8,5,-1], [7,2,-4,-2], [4,3,0,-2], [15,24,6], - [12,17,1,-2], [9,16,0,-2], [12,17,1,-2], [12,17,1,-2], [11,21,5,-1], [12,17,1,-2], [12,17,1,-2], [12,17,1,-3], - [12,17,1,-2], [12,17,1,-2], [6,11,0,-2], [7,16,5,-1], [7,18,6,-1], [17,6,-3,-2], [9,18,6,-2], [10,18,0,-4], - [16,18,1,-3], [16,18,0,-1], [17,17,0,-1], [17,18,1,-3], [18,17,0,-1], [17,17,0,-1], [17,17,0,-1], [17,18,1,-3], - [20,17,0,-1], [11,17,0,-1], [13,18,1,-2], [20,17,0,-1], [14,17,0,-1], [23,17,0,-1], [20,17,0,-1], [16,18,1,-3], - [17,17,0,-1], [16,22,5,-3], [17,18,1,-1], [15,18,1,-1], [16,17,0,-4], [17,18,1,-4], [16,18,1,-5], [22,18,1,-5], - [24,17,0,4], [16,17,0,-5], [15,17,0,-2], [10,24,6,-1], [9,8,-9,-6], [10,24,6,1], [7,4,-13,-6], [3,3,-13,-6], - [4,8,-9,-5], [11,12,1,-2], [9,18,1,-2], [10,12,1,-2], [12,18,1,-2], [10,12,1,-2], [12,22,5,1], [11,16,5,-1], - [12,18,1,-1], [6,17,1,-2], [10,21,5,1], [11,18,1,-1], [6,18,1,-2], [19,12,1,-2], [12,12,1,-2], [11,12,1,-2], - [13,16,5], [10,16,5,-2], [10,12,1,-2], [9,12,1,-1], [7,16,1,-2], [12,12,1,-2], [10,12,1,-2], [15,12,1,-2], - [12,12,1,-1], [11,16,5,-2], [10,12,1,-1], [12,1,-6,-2], [22,1,-6,-3], [8,5,-12,-6], [8,3,-13,-6], [8,3,-13,-6], - [10,39,68,98,127,156,186,215,245,274,303,333,362,391,421,450], - [32,61,90,118,147,176,204,233], - [482,253] - ] -}); - -jsMath.Img.AddFont(207,{ - cmr10: [ - [16,20,0,-1], [22,21,0,-1], [20,22,1,-1], [20,21,0], [18,20,0,-1], [20,20,0,-1], [19,20,0,-1], [20,21,0,-1], - [19,20,0,-1], [20,20,0,-1], [19,21,0,-1], [19,21,0], [16,21,0], [16,21,0], [24,21,0], [24,21,0], - [7,13,0,-1], [9,19,6,2], [6,6,-15,-3], [6,6,-15,-6], [8,4,-15,-3], [9,6,-15,-3], [11,2,-16,-2], [6,6,-15,-8], - [8,6,6,-3], [14,22,1], [20,14,1,-1], [22,14,1], [13,19,3,-1], [26,20,0], [27,22,1,-2], [20,24,2,-1], - [8,4,-8], [4,21,0,-2], [9,10,-11,-1], [22,27,6,-1], [12,24,2,-1], [22,24,2,-1], [20,22,1,-1], [4,9,-11,-2], - [8,30,8,-2], [8,30,8,-1], [11,13,-9,-2], [20,20,3,-1], [4,9,6,-2], [8,3,-5], [4,3,0,-2], [12,30,8,-1], - [13,21,1,-1], [11,20,0,-2], [12,20,0,-1], [13,21,1,-1], [14,20,0], [12,21,1,-1], [13,21,1,-1], [13,21,1,-1], - [13,21,1,-1], [13,21,1,-1], [4,13,0,-2], [4,19,6,-2], [4,22,7,-2], [20,8,-3,-1], [11,21,6,-1], [11,21,0,-1], - [20,22,1,-1], [21,21,0], [18,20,0,-1], [19,22,1,-1], [20,20,0,-1], [18,20,0,-1], [17,20,0,-1], [21,22,1,-1], - [20,20,0,-1], [10,20,0], [13,21,1,-1], [21,20,0,-1], [16,20,0,-1], [25,20,0,-1], [20,20,0,-1], [20,22,1,-1], - [18,20,0,-1], [21,27,6,-1], [21,21,1,-1], [14,22,1,-1], [19,20,0,-1], [20,21,1,-1], [22,21,1], [30,21,1], - [21,20,0], [22,20,0], [16,20,0,-1], [5,30,8,-3], [10,9,-11,-4], [5,30,8], [8,5,-15,-3], [4,4,-16,-2], - [4,9,-11,-2], [14,14,1,-1], [16,22,1], [11,14,1,-1], [15,22,1,-1], [12,14,1], [10,21,0,-1], [14,20,6], - [16,21,0], [7,20,0,-1], [9,26,6,2], [15,21,0], [7,21,0,-1], [24,13,0], [16,13,0], [14,14,1], - [16,19,6], [15,19,6,-1], [11,13,0], [10,14,1,-1], [10,19,1], [15,14,1,-1], [15,14,1], [21,14,1], - [15,13,0], [15,19,6], [12,13,0], [15,1,-7], [29,1,-7], [10,6,-15,-3], [10,4,-16,-2], [9,4,-16,-3], - [12,47,82,118,153,188,223,259,294,329,365,400,435,471,506,541], - [37,72,106,140,175,209,243,278], - [580,301] - ], - cmmi10: [ - [20,20,0,-1], [22,21,0,-1], [21,22,1,-1], [19,21,0,-1], [22,20,0,-1], [25,20,0,-1], [23,20,0,-1], [21,21,0], - [19,20,0], [20,20,0], [21,21,0,-2], [17,14,1,-1], [18,27,6], [16,20,7], [13,22,1,-1], [10,14,1,-1], - [13,27,6,-1], [15,20,7], [13,22,1,-1], [9,14,1,-1], [15,14,1,-1], [15,22,1,-1], [17,20,7], [15,13,0,-1], - [13,27,6], [17,14,1], [15,20,7], [16,14,1,-1], [15,14,1], [16,14,1], [16,26,6,-1], [17,19,6,-1], - [19,26,6], [18,14,1], [13,15,1], [17,22,1], [24,14,1], [13,19,6,-2], [12,17,4], [17,20,7,-1], - [27,9,-6,-1], [27,9,1,-1], [27,9,-6,-1], [27,9,1,-1], [6,8,-6,-1], [6,8,-6,-1], [14,16,1], [14,16,1], - [13,15,1,-1], [11,13,0,-2], [12,14,0,-1], [13,21,7,-1], [14,20,6], [12,20,7,-1], [13,21,1,-1], [13,21,7,-1], - [13,21,1,-1], [13,21,7,-1], [4,3,0,-2], [4,9,6,-2], [18,18,2,-2], [12,30,8,-1], [18,17,1,-2], [15,14,0], - [16,22,1,-1], [20,21,0,-1], [21,20,0,-1], [21,22,1,-1], [23,20,0,-1], [22,20,0,-1], [21,20,0,-1], [21,22,1,-1], - [25,20,0,-1], [14,20,0,-1], [17,21,1,-2], [25,20,0,-1], [18,20,0,-1], [30,20,0,-1], [25,20,0,-1], [21,22,1,-1], - [21,20,0,-1], [21,27,6,-1], [21,21,1,-1], [18,22,1,-1], [21,20,0], [20,21,1,-2], [22,21,1,-1], [30,21,1,-1], - [29,20,0,4], [21,20,0,-1], [20,20,0,-1], [9,23,1,-1], [7,28,7,-2], [9,28,7,-1], [27,8,-3,-1], [27,8,-3,-1], - [12,22,1], [14,14,1,-1], [11,22,1,-1], [12,14,1,-1], [14,22,1,-1], [12,14,1,-1], [15,27,6,-1], [14,19,6], - [15,22,1,-1], [9,21,1], [13,26,6,1], [14,22,1,-1], [7,22,1,-1], [25,14,1], [17,14,1], [13,14,1,-1], - [16,19,6,1], [12,19,6,-1], [13,14,1], [12,14,1,-1], [10,20,1], [16,14,1], [14,14,1], [20,14,1], - [16,14,1], [15,19,6], [13,14,1,-1], [9,14,1], [12,19,6,1], [16,20,7,-2], [13,6,-15,-5], [12,5,-15,-7], - [11,46,80,115,149,183,218,252,286,321,355,390,424,458,493,527], - [37,72,106,140,175,209,243,278], - [565,301] - ], - cmsy10: [ - [19,2,-6,-2], [4,4,-5,-2], [15,15,0,-4], [11,13,-1,-2], [20,17,1,-1], [15,15,0], [20,20,0,-1], [20,20,5,-1], - [20,20,3,-1], [20,20,3,-1], [20,20,3,-1], [20,20,3,-1], [20,20,3,-1], [27,28,7,-1], [12,12,-1,-1], [12,12,-1,-1], - [20,14,0,-1], [20,13,-1,-1], [19,23,4,-2], [19,23,4,-2], [19,23,4,-2], [19,23,4,-2], [19,23,4,-2], [19,23,4,-2], - [20,8,-3,-1], [20,13,-1,-1], [19,18,2,-2], [19,18,2,-2], [27,19,2,-1], [27,19,2,-1], [19,18,2,-2], [18,17,1,-2], - [27,11,-2,-1], [27,11,-2,-1], [11,26,6,-2], [11,26,6,-2], [27,11,-2,-1], [27,27,6,-1], [27,26,6,-1], [20,13,-1,-1], - [27,17,1,-1], [27,17,1,-1], [17,26,6], [17,27,6], [27,17,1,-1], [27,27,6,-1], [27,26,6,-1], [20,14,1,-1], - [7,16,-1,-1], [27,14,1,-1], [15,18,2,-2], [15,18,2,-2], [23,21,0,-1], [23,22,7,-1], [15,28,7,-4], [3,12,-1,-1], - [17,22,1], [14,21,0,-1], [17,9,-2,-1], [13,26,3,-1], [20,22,1,-1], [19,22,1,-1], [20,20,0,-1], [20,20,0,-1], - [15,20,0,-1], [23,23,2], [19,22,1,-1], [16,22,1], [23,20,0], [17,22,1], [24,21,1], [17,25,4,-1], - [24,22,2], [20,20,0,1], [24,24,4,-1], [21,22,1,-1], [18,22,1,-1], [33,23,2], [30,25,2,1], [22,22,1,-1], - [22,22,2], [20,25,4,-3], [25,21,1], [19,22,1], [23,21,0], [21,21,1,1], [19,22,2,-1], [29,22,2,-1], - [23,20,0,-1], [21,24,4], [22,20,0,-1], [17,19,1,-1], [17,19,1,-1], [17,19,1,-1], [17,19,1,-1], [17,19,1,-1], - [15,20,0,-1], [16,21,0,-1], [8,30,8,-5], [8,30,8], [8,30,8,-5], [8,30,8], [11,30,8,-2], [11,30,8,-2], - [7,30,8,-3], [7,30,8,-1], [2,30,8,-3], [8,30,8,-3], [11,31,8,-2], [17,31,8], [12,30,8,-1], [6,20,3,-1], - [23,30,28,-2], [20,20,0,-1], [22,21,1,-1], [13,28,7,-1], [17,18,0,-1], [17,18,0,-1], [19,23,4,-2], [20,23,4,-1], - [9,27,6,-2], [11,28,7,-1], [11,27,6,-1], [16,27,6,-1], [22,25,4], [20,26,5,-1], [20,22,1,-1], [20,25,4,-1], - [12,53,95,136,177,218,260,301,342,384,425,466,507,549,590,631], - [39,98,157,216,274,333,392,451], - [676,500] - ], - cmex10: [ - [8,36,34,-4], [8,36,34,-1], [7,36,34,-5], [7,36,34], [8,36,34,-5], [8,36,34], [8,36,34,-5], [8,36,34], - [11,36,34,-3], [11,36,34,-3], [10,36,34,-2], [9,36,34,-2], [2,19,18,-4], [8,19,18,-4], [14,36,34,-1], [14,36,34,-1], - [12,53,51,-5], [11,53,51,-1], [15,71,69,-6], [15,71,69,-1], [8,71,69,-7], [8,71,69], [10,71,69,-7], [10,71,69], - [10,71,69,-7], [10,71,69], [15,71,69,-3], [15,71,69,-3], [16,71,69,-3], [16,71,69,-2], [28,71,69,-1], [28,71,69,-1], - [16,88,86,-6], [16,88,86,-1], [9,88,86,-8], [9,88,86], [11,88,86,-8], [11,88,86], [11,88,86,-8], [11,88,86], - [16,88,86,-4], [16,88,86,-4], [17,88,86,-4], [17,88,86,-3], [35,88,86,-1], [35,88,86,-1], [21,53,51,-1], [21,53,51,-1], - [17,54,52,-8], [16,54,52,-1], [11,53,51,-9], [10,53,51], [11,53,51,-9], [10,53,51], [3,18,18,-9], [3,18,18,-7], - [10,27,27,-11], [10,27,27,-5], [10,27,26,-11], [10,28,27,-5], [10,54,53,-5], [10,54,53,-11], [4,10,9,-11], [2,18,18,-9], - [17,53,51,-8], [16,53,51,-1], [4,19,18,-8], [4,19,18,-13], [13,53,51,-3], [13,53,51,-2], [22,29,29,-1], [30,41,41,-1], - [17,33,33,-1], [27,65,65,-1], [30,29,29,-1], [42,41,41,-1], [30,29,29,-1], [42,41,41,-1], [30,29,29,-1], [42,41,41,-1], - [28,29,29,-1], [25,29,29,-1], [17,33,33,-1], [22,29,29,-1], [22,29,29,-1], [22,29,29,-1], [22,29,29,-1], [22,29,29,-1], - [40,41,41,-1], [35,41,41,-1], [27,65,65,-1], [30,41,41,-1], [30,41,41,-1], [30,41,41,-1], [30,41,41,-1], [30,41,41,-1], - [25,29,29,-1], [35,41,41,-1], [17,6,-16], [29,7,-16], [42,7,-16], [16,4,-17], [29,4,-18], [42,4,-18], - [8,53,51,-6], [8,53,51], [9,53,51,-6], [9,53,51], [9,53,51,-6], [9,53,51], [13,53,51,-3], [13,53,51,-3], - [27,35,34,-3], [27,52,51,-3], [27,70,69,-3], [27,87,86,-3], [19,54,53,-3], [2,19,18,-20], [12,19,17,-20], [9,18,18,-7], - [14,18,18,-3], [14,18,18,-3], [15,11,7,1], [15,11,7,1], [15,10,0,1], [15,10,0,1], [20,18,18,-1], [20,18,18,-1], - [13,65,117,169,221,273,325,377,428,480,532,584,636,688,740,792], - [45,173,300,428,555,683,810,938], - [849,1062] - ], - cmbx10: [ - [18,20,0,-1], [25,21,0,-1], [23,22,1,-1], [22,21,0,-1], [20,20,0,-1], [24,20,0,-1], [22,20,0,-1], [23,21,0,-1], - [22,20,0,-1], [23,20,0,-1], [22,21,0,-1], [22,21,0], [18,21,0], [18,21,0], [27,21,0], [27,21,0], - [8,13,0,-1], [10,19,6,2], [7,7,-14,-3], [7,7,-14,-7], [9,4,-15,-4], [11,7,-14,-3], [13,2,-16,-2], [7,6,-15,-9], - [10,6,6,-3], [16,22,1,-1], [23,15,1,-1], [24,15,1,-1], [16,19,3], [29,20,0,-1], [31,22,1,-2], [23,24,2,-1], - [10,4,-8], [6,21,0,-2], [13,11,-10,-1], [25,27,6,-1], [14,24,2,-1], [25,24,2,-1], [24,22,1,-1], [6,11,-10,-2], - [8,30,8,-3], [9,30,8,-1], [13,14,-8,-2], [23,23,4,-1], [6,11,6,-2], [10,3,-5], [5,5,0,-2], [14,30,8,-1], - [15,20,1,-1], [13,19,0,-2], [14,19,0,-1], [15,20,1,-1], [16,19,0], [14,20,1,-1], [15,20,1,-1], [16,21,1,-1], - [15,20,1,-1], [15,20,1,-1], [5,13,0,-2], [5,19,6,-2], [6,21,6,-2], [23,9,-3,-1], [13,21,6,-1], [13,21,0,-1], - [23,22,1,-1], [23,21,0,-1], [21,20,0,-1], [22,22,1,-1], [23,20,0,-1], [20,20,0,-1], [19,20,0,-1], [24,22,1,-1], - [24,20,0,-1], [11,20,0,-1], [16,21,1], [24,20,0,-1], [18,20,0,-1], [30,20,0,-1], [24,20,0,-1], [23,22,1,-1], - [20,20,0,-1], [23,27,6,-1], [24,21,1,-1], [16,22,1,-1], [21,20,0,-1], [24,21,1,-1], [25,21,1], [34,21,1], - [24,20,0,-1], [25,20,0], [18,20,0,-1], [6,30,8,-3], [13,10,-10,-4], [6,30,8], [10,5,-15,-3], [5,6,-15,-2], - [6,10,-10,-1], [16,15,1,-1], [17,22,1,-1], [13,15,1,-1], [17,22,1,-1], [15,15,1], [12,21,0,-1], [16,20,6,-1], - [17,21,0,-1], [8,21,0,-1], [10,27,6,2], [16,21,0,-1], [8,21,0,-1], [27,13,0,-1], [17,13,0,-1], [16,15,1], - [17,19,6,-1], [17,19,6,-1], [12,13,0,-1], [11,15,1,-1], [12,20,1], [17,14,1,-1], [17,14,1], [24,14,1], - [17,13,0], [17,19,6], [13,13,0,-1], [17,2,-7], [34,2,-7], [11,6,-15,-4], [11,4,-17,-3], [11,5,-16,-3], - [12,53,94,135,175,216,257,298,339,380,421,462,502,543,584,625], - [37,72,106,140,175,209,243,278], - [670,301] - ], - cmti10: [ - [20,20,0,-1], [20,21,0,-2], [19,22,1,-4], [18,21,0,-1], [20,20,0,-2], [24,20,0,-1], [21,20,0,-2], [19,21,0,-6], - [18,20,0,-4], [18,20,0,-6], [20,21,0,-2], [23,27,6,1], [19,27,6,1], [20,27,6,1], [28,27,6,1], [29,27,6,1], - [8,14,1,-2], [11,19,6,1], [5,7,-14,-8], [6,7,-14,-10], [8,5,-14,-8], [9,5,-15,-8], [11,2,-16,-6], [7,6,-15,-13], - [7,6,6,-3], [18,27,6,1], [19,14,1,-2], [18,14,1,-3], [14,19,3,-2], [27,20,0,-1], [27,22,1,-4], [21,24,2,-3], - [8,4,-8,-2], [8,21,0,-3], [10,10,-11,-5], [21,27,6,-3], [19,22,1,-2], [21,24,2,-4], [21,22,1,-3], [5,10,-11,-6], - [11,30,8,-4], [12,30,8], [12,13,-9,-5], [18,18,2,-4], [5,9,6,-2], [8,2,-5,-2], [4,3,0,-3], [18,30,8], - [14,21,1,-3], [11,20,0,-3], [14,21,1,-2], [15,21,1,-2], [13,26,6,-1], [14,21,1,-3], [14,21,1,-3], [14,21,1,-4], - [14,21,1,-2], [13,21,1,-3], [6,13,0,-3], [7,19,6,-2], [9,22,7,-1], [20,8,-3,-3], [11,22,7,-2], [11,21,0,-5], - [19,22,1,-4], [19,21,0,-1], [20,20,0,-2], [20,22,1,-4], [22,20,0,-1], [21,20,0,-1], [21,20,0,-1], [20,22,1,-4], - [24,20,0,-1], [14,20,0,-1], [16,21,1,-2], [24,20,0,-1], [17,20,0,-1], [27,20,0,-2], [24,20,0,-1], [19,22,1,-4], - [21,20,0,-1], [19,27,6,-4], [20,21,1,-1], [17,22,1,-2], [19,20,0,-5], [20,21,1,-5], [20,21,1,-6], [27,21,1,-6], - [28,20,0,4], [21,20,0,-5], [19,20,0,-2], [11,30,8,-2], [10,9,-11,-8], [12,30,8,1], [8,5,-15,-7], [4,4,-16,-7], - [5,9,-11,-6], [13,14,1,-3], [11,22,1,-3], [11,14,1,-3], [14,22,1,-3], [11,14,1,-3], [15,27,6,1], [14,19,6,-1], - [14,22,1,-2], [8,20,1,-2], [12,25,6,1], [13,22,1,-2], [7,22,1,-2], [23,14,1,-2], [15,14,1,-2], [12,14,1,-3], - [15,19,6], [12,19,6,-3], [13,14,1,-2], [11,14,1,-2], [9,20,1,-2], [15,14,1,-2], [13,14,1,-2], [19,14,1,-2], - [14,14,1,-1], [13,19,6,-2], [12,14,1,-2], [14,1,-7,-2], [27,1,-7,-3], [10,7,-14,-7], [10,4,-16,-7], [9,4,-16,-7], - [12,47,82,117,152,187,222,257,293,328,363,398,433,468,503,539], - [37,72,106,140,175,209,243,278], - [577,301] - ] -}); - -jsMath.Img.AddFont(249,{ - cmr10: [ - [19,24,0,-1], [26,25,0,-1], [24,25,1,-1], [22,25,0,-1], [21,23,0,-1], [24,24,0,-1], [21,24,0,-2], [23,24,0,-2], - [22,24,0,-1], [23,24,0,-2], [22,24,0,-1], [21,24,0,-1], [17,24,0,-1], [17,24,0,-1], [27,24,0,-1], [27,24,0,-1], - [8,15,0,-1], [10,22,7,2], [7,7,-17,-3], [7,7,-17,-7], [9,5,-17,-4], [11,7,-17,-3], [13,2,-19,-2], [7,7,-18,-9], - [9,7,7,-4], [15,25,1,-1], [23,17,1,-1], [25,17,1,-1], [15,22,4,-1], [29,24,0,-1], [32,25,1,-2], [24,27,2,-1], - [8,5,-9,-1], [4,25,0,-3], [11,11,-13,-1], [25,31,7,-2], [14,28,2,-1], [26,28,2,-1], [24,26,1,-1], [4,11,-13,-3], - [9,35,9,-3], [8,35,9,-2], [13,16,-10,-2], [23,23,3,-2], [4,11,7,-3], [10,3,-6], [4,4,0,-3], [13,35,9,-2], - [15,24,1,-1], [12,23,0,-3], [15,23,0,-1], [15,24,1,-1], [15,23,0,-1], [15,24,1,-1], [15,24,1,-1], [15,24,1,-2], - [15,24,1,-1], [15,24,1,-1], [4,15,0,-3], [4,22,7,-3], [4,25,8,-3], [23,9,-4,-2], [14,24,7,-1], [14,24,0,-1], - [24,25,1,-1], [24,25,0,-1], [22,24,0,-1], [22,25,1,-1], [23,24,0,-1], [22,24,0,-1], [20,24,0,-1], [24,25,1,-1], - [24,24,0,-1], [11,24,0,-1], [15,25,1,-1], [24,24,0,-1], [19,24,0,-1], [29,24,0,-1], [24,24,0,-1], [24,25,1,-1], - [21,24,0,-1], [24,31,7,-1], [24,25,1,-1], [16,25,1,-1], [23,23,0,-1], [24,25,1,-1], [25,25,1], [35,25,1], - [25,24,0], [26,24,0], [18,24,0,-1], [5,35,9,-4], [11,11,-13,-5], [6,35,9], [9,6,-18,-4], [4,4,-19,-3], - [5,11,-13,-2], [16,17,1,-1], [17,25,1,-1], [13,17,1,-1], [17,25,1,-1], [14,17,1,-1], [12,24,0,-1], [16,23,7,-1], - [18,24,0,-1], [8,23,0,-1], [10,30,7,2], [17,24,0,-1], [8,24,0,-1], [27,15,0,-1], [18,15,0,-1], [15,17,1,-1], - [17,22,7,-1], [17,22,7,-1], [12,15,0,-1], [12,17,1,-1], [12,22,1], [18,16,1,-1], [18,16,1], [24,16,1], - [18,15,0], [18,22,7], [13,15,0,-1], [17,2,-8], [34,2,-8], [11,7,-17,-4], [11,4,-19,-3], [11,4,-19,-3], - [14,56,99,141,184,226,269,311,354,396,439,481,524,566,609,651], - [46,87,128,170,211,253,294,335], - [698,363] - ], - cmmi10: [ - [24,24,0,-1], [26,25,0,-1], [25,25,1,-1], [22,25,0,-1], [26,23,0,-1], [29,24,0,-1], [26,24,0,-2], [23,24,0,-1], - [22,24,0], [23,24,0,-1], [25,24,0,-2], [20,16,1,-1], [20,31,7], [19,23,8], [15,26,1,-1], [12,16,1,-1], - [15,31,7,-1], [16,23,8,-1], [15,25,1,-1], [10,16,1,-1], [18,16,1,-1], [18,25,1,-1], [19,23,8,-1], [17,15,0,-1], - [16,31,7], [19,16,1,-1], [16,23,8,-1], [19,16,1,-1], [17,16,1,-1], [17,16,1,-1], [19,31,7,-1], [20,22,7,-1], - [21,31,7,-1], [21,16,1], [15,17,1], [18,25,1,-1], [27,16,1,-1], [15,22,7,-2], [13,19,4,-1], [20,23,8,-1], - [31,11,-7,-1], [31,11,1,-1], [31,11,-7,-1], [31,11,1,-1], [7,9,-7,-1], [7,9,-7,-1], [16,19,1], [16,19,1,-1], - [15,17,1,-1], [12,16,0,-3], [15,16,0,-1], [15,24,8,-1], [15,23,7,-1], [15,24,8,-1], [15,24,1,-1], [16,24,8,-1], - [15,24,1,-1], [15,24,8,-1], [4,4,0,-3], [4,11,7,-3], [22,21,2,-2], [13,35,9,-2], [22,21,2,-2], [17,17,0], - [19,26,1,-1], [24,25,0,-1], [25,24,0,-1], [25,25,1,-1], [27,24,0,-1], [25,24,0,-1], [25,24,0,-1], [25,25,1,-1], - [29,24,0,-1], [16,24,0,-1], [20,25,1,-2], [30,24,0,-1], [21,24,0,-1], [35,24,0,-1], [29,24,0,-1], [25,25,1,-1], - [25,24,0,-1], [25,31,7,-1], [25,25,1,-1], [21,25,1,-1], [24,23,0], [24,25,1,-2], [25,25,1,-2], [35,25,1,-1], - [28,24,0,-1], [25,24,0,-1], [23,24,0,-2], [11,27,1,-1], [9,33,8,-2], [11,33,8,-1], [30,9,-4,-2], [30,9,-4,-2], - [14,25,1], [16,16,1,-1], [14,25,1,-1], [14,16,1,-1], [17,25,1,-1], [14,16,1,-1], [18,31,7,-1], [17,22,7], - [18,25,1,-1], [9,24,1,-1], [15,30,7,1], [17,25,1,-1], [8,25,1,-1], [28,16,1,-1], [19,16,1,-1], [15,16,1,-1], - [18,22,7,1], [15,22,7,-1], [14,16,1,-1], [14,16,1,-1], [12,23,1], [18,16,1,-1], [15,16,1,-1], [23,16,1,-1], - [17,16,1,-1], [16,22,7,-1], [15,16,1,-1], [9,16,1,-1], [14,22,7,1], [19,24,8,-2], [16,8,-17,-6], [13,5,-18,-9], - [14,55,96,138,179,221,262,303,345,386,427,469,510,551,593,634], - [46,87,128,170,211,253,294,335], - [679,363] - ], - cmsy10: [ - [22,3,-7,-2], [4,5,-6,-3], [17,17,0,-5], [13,15,-1,-2], [23,19,1,-2], [17,17,0], [23,23,0,-2], [23,23,6,-2], - [24,23,3,-1], [24,23,3,-1], [24,23,3,-1], [24,23,3,-1], [24,23,3,-1], [31,33,8,-1], [14,15,-1,-1], [14,15,-1,-1], - [23,17,0,-2], [23,15,-1,-2], [22,27,5,-2], [22,27,5,-2], [22,27,5,-2], [22,27,5,-2], [22,27,5,-2], [22,27,5,-2], - [24,9,-4,-1], [23,16,-1,-2], [22,21,2,-2], [22,21,2,-2], [30,23,3,-2], [30,23,3,-2], [22,21,2,-2], [22,21,2,-2], - [30,13,-2,-2], [30,13,-2,-2], [13,31,7,-2], [13,31,7,-2], [30,13,-2,-2], [31,31,7,-2], [31,31,7,-2], [24,15,-1,-1], - [30,19,1,-2], [30,19,1,-2], [19,31,7,-1], [19,31,7,-1], [32,19,1,-1], [31,31,7,-1], [31,31,7,-1], [24,16,1,-1], - [8,18,-1,-1], [31,16,1,-1], [18,21,2,-2], [18,21,2,-2], [27,25,0,-2], [27,25,8,-2], [18,33,8,-4], [4,13,-2,-1], - [19,25,1], [15,24,0,-2], [19,10,-3,-2], [15,30,3,-1], [24,26,1,-1], [23,25,1,-1], [23,23,0,-2], [23,23,0,-2], - [18,24,0,-1], [26,27,2,-1], [22,25,1,-1], [19,25,1], [26,24,0], [19,25,1,-1], [29,26,2], [20,28,4,-1], - [28,26,2], [23,24,0,1], [28,28,4,-1], [24,25,1,-1], [22,25,1,-1], [37,26,2,-1], [35,29,2,1], [25,25,1,-2], - [25,26,2], [24,29,5,-3], [29,25,1], [22,25,1], [26,25,0,-1], [25,25,1,1], [22,26,2,-1], [35,26,2,-1], - [27,24,0,-1], [24,29,5,-1], [25,24,0,-1], [20,22,1,-1], [20,22,1,-1], [20,22,1,-1], [19,22,1,-2], [19,22,1,-2], - [18,24,0,-1], [17,24,0,-2], [10,35,9,-5], [10,35,9], [10,35,9,-5], [10,35,9], [13,35,9,-2], [13,35,9,-2], - [9,35,9,-3], [8,35,9,-2], [2,35,9,-4], [9,35,9,-4], [13,37,10,-2], [19,37,10,-1], [13,35,9,-2], [7,23,3,-1], - [27,35,33,-2], [24,24,0,-1], [26,26,2,-1], [15,33,8,-1], [19,21,0,-2], [19,21,0,-2], [22,27,5,-3], [22,27,5,-2], - [11,31,7,-2], [12,32,8,-2], [12,31,7,-2], [19,31,7,-1], [25,30,5,-1], [23,31,6,-2], [24,27,2,-1], [24,30,5,-1], - [14,64,114,163,213,263,312,362,412,461,511,561,610,660,710,759], - [48,119,190,260,331,402,472,543], - [814,603] - ], - cmex10: [ - [9,42,40,-5], [10,42,40,-1], [8,42,40,-6], [8,42,40], [10,42,40,-6], [10,42,40], [10,42,40,-6], [10,42,40], - [12,42,40,-4], [12,42,40,-4], [11,42,40,-3], [11,42,40,-2], [3,22,21,-4], [10,22,21,-4], [16,42,40,-2], [16,42,40,-2], - [13,62,60,-6], [14,62,60,-1], [17,83,81,-7], [17,83,81,-1], [10,83,81,-8], [10,83,81], [12,83,81,-8], [12,83,81], - [12,83,81,-8], [12,83,81], [17,83,81,-4], [17,83,81,-4], [19,83,81,-4], [19,83,81,-3], [32,83,81,-2], [32,83,81,-2], - [18,103,101,-8], [18,103,101,-1], [11,103,101,-9], [11,103,101], [13,103,101,-9], [13,103,101], [13,103,101,-9], [13,103,101], - [19,103,101,-4], [19,103,101,-4], [20,103,101,-4], [20,103,101,-3], [40,103,101,-2], [40,103,101,-2], [24,62,60,-2], [24,62,60,-2], - [20,63,61,-9], [19,63,61,-1], [12,62,60,-11], [12,62,60], [12,62,60,-11], [12,62,60], [3,21,21,-11], [3,21,21,-9], - [12,31,31,-13], [13,31,31,-5], [12,32,31,-13], [13,32,31,-5], [13,63,62,-5], [12,63,62,-13], [5,12,11,-13], [3,21,21,-10], - [20,62,60,-9], [19,62,60,-1], [5,22,21,-9], [4,22,21,-16], [15,62,60,-3], [14,62,60,-3], [26,34,34,-1], [35,48,48,-1], - [19,38,38,-2], [31,76,76,-1], [35,34,34,-1], [49,48,48,-1], [35,34,34,-1], [49,48,48,-1], [35,34,34,-1], [49,48,48,-1], - [33,34,34,-1], [30,34,34,-1], [19,38,38,-2], [26,34,34,-1], [26,34,34,-1], [26,34,34,-1], [25,34,34,-2], [25,34,34,-2], - [46,48,48,-1], [41,48,48,-1], [31,76,76,-1], [35,48,48,-1], [35,48,48,-1], [35,48,48,-1], [34,48,48,-2], [35,48,48,-1], - [30,34,34,-1], [41,48,48,-1], [19,7,-19], [34,8,-19], [49,8,-19], [19,5,-20], [34,5,-21], [49,5,-21], - [9,62,60,-7], [9,62,60], [11,62,60,-7], [11,62,60], [11,62,60,-7], [11,62,60], [15,62,60,-4], [15,62,60,-4], - [32,42,40,-3], [32,62,60,-3], [32,83,81,-3], [32,103,101,-3], [23,63,62,-3], [3,22,21,-23], [14,22,20,-23], [10,21,21,-8], - [16,21,21,-3], [16,21,21,-3], [17,13,8,1], [18,13,8,1], [17,12,0,1], [18,12,0,1], [24,21,21,-1], [24,21,21,-1], - [16,78,141,203,265,328,390,453,515,578,640,703,765,828,890,953], - [55,209,362,515,669,822,976,1129], - [1021,1278] - ], - cmbx10: [ - [21,24,0,-1], [29,24,0,-2], [27,25,1,-2], [25,24,0,-1], [24,23,0,-1], [29,24,0,-1], [24,24,0,-2], [27,24,0,-2], - [24,24,0,-2], [27,24,0,-2], [26,24,0,-1], [25,24,0,-1], [20,24,0,-1], [20,24,0,-1], [31,24,0,-1], [31,24,0,-1], - [9,16,0,-1], [12,23,7,2], [8,7,-17,-4], [8,7,-17,-8], [11,6,-17,-4], [13,7,-17,-3], [15,3,-18,-2], [9,6,-18,-10], - [11,7,7,-4], [19,25,1,-1], [27,17,1,-1], [29,17,1,-1], [18,23,4,-1], [34,24,0,-1], [37,25,1,-2], [27,28,2,-2], - [11,5,-9], [6,24,0,-3], [15,13,-11,-1], [29,31,7,-2], [16,28,2,-2], [29,28,2,-2], [28,25,1,-1], [7,13,-11,-2], - [10,35,9,-3], [10,35,9,-2], [15,16,-10,-2], [27,27,5,-2], [7,13,7,-2], [11,5,-5], [6,6,0,-2], [16,35,9,-2], - [17,24,1,-1], [15,23,0,-2], [17,23,0,-1], [17,24,1,-1], [18,23,0,-1], [16,24,1,-2], [17,24,1,-1], [17,24,1,-2], - [17,24,1,-1], [17,24,1,-1], [6,16,0,-2], [7,23,7,-2], [6,24,7,-3], [27,11,-3,-2], [15,24,7,-2], [15,24,0,-2], - [27,25,1,-2], [28,24,0,-1], [25,24,0,-1], [24,25,1,-2], [27,24,0,-1], [24,24,0,-1], [22,24,0,-1], [27,25,1,-2], - [29,24,0,-1], [13,24,0,-1], [18,25,1], [28,24,0,-1], [21,24,0,-1], [35,24,0,-1], [29,24,0,-1], [26,25,1,-2], - [24,24,0,-1], [26,31,7,-2], [29,25,1,-1], [18,25,1,-2], [25,23,0,-1], [28,25,1,-1], [29,25,1], [40,25,1], - [28,24,0,-1], [29,24,0], [20,24,0,-2], [6,35,9,-4], [16,13,-11,-4], [7,35,9], [11,6,-18,-4], [6,6,-18,-2], - [6,13,-11,-2], [18,17,1,-1], [20,25,1,-1], [16,17,1,-1], [20,25,1,-1], [16,17,1,-1], [14,24,0,-1], [18,23,7,-1], - [20,24,0,-1], [9,24,0,-1], [12,31,7,2], [19,24,0,-1], [9,24,0,-1], [31,16,0,-1], [20,16,0,-1], [18,17,1,-1], - [20,23,7,-1], [20,23,7,-1], [14,16,0,-1], [14,17,1,-1], [13,23,1], [20,17,1,-1], [20,17,1], [28,17,1], - [20,16,0], [20,23,7], [15,16,0,-1], [20,2,-8], [39,2,-8], [13,8,-17,-4], [14,4,-20,-3], [13,6,-18,-3], - [14,64,113,162,211,260,309,359,408,457,506,555,604,653,703,752], - [46,87,128,170,211,253,294,335], - [806,363] - ], - cmti10: [ - [22,24,0,-2], [24,25,0,-2], [22,25,1,-5], [20,25,0,-2], [24,23,0,-2], [27,24,0,-2], [25,24,0,-2], [22,24,0,-7], - [20,24,0,-5], [21,24,0,-7], [23,24,0,-3], [27,31,7,1], [22,31,7,1], [23,31,7,1], [33,31,7,1], [33,31,7,1], - [10,16,1,-2], [13,22,7,2], [6,7,-17,-9], [8,7,-17,-11], [10,5,-17,-9], [11,7,-17,-9], [12,1,-19,-8], [7,7,-18,-16], - [9,7,7,-3], [21,31,7,1], [22,16,1,-3], [22,16,1,-3], [17,23,4,-2], [31,24,0,-2], [31,25,1,-5], [24,28,2,-4], - [9,5,-9,-3], [10,25,0,-3], [12,11,-13,-6], [25,31,7,-4], [21,25,1,-3], [24,28,2,-5], [24,26,1,-4], [6,11,-13,-7], - [13,35,9,-5], [13,35,9], [14,16,-10,-6], [22,21,2,-4], [6,11,7,-2], [9,3,-6,-3], [5,4,0,-3], [21,35,9], - [15,24,1,-4], [12,23,0,-4], [17,24,1,-2], [17,24,1,-3], [15,30,7,-1], [17,24,1,-3], [16,24,1,-4], [17,24,1,-5], - [16,24,1,-3], [16,24,1,-3], [8,15,0,-3], [9,22,7,-2], [9,25,8,-2], [23,9,-4,-4], [13,25,8,-2], [13,25,0,-6], - [22,25,1,-5], [22,25,0,-2], [23,24,0,-2], [23,25,1,-5], [25,24,0,-2], [24,24,0,-2], [23,24,0,-2], [23,25,1,-5], - [27,24,0,-2], [15,24,0,-2], [19,25,1,-3], [28,24,0,-2], [20,24,0,-2], [32,24,0,-2], [27,24,0,-2], [22,25,1,-5], - [23,24,0,-2], [22,31,7,-5], [23,25,1,-2], [20,25,1,-2], [22,23,0,-6], [23,25,1,-6], [23,25,1,-7], [31,25,1,-7], - [33,24,0,5], [24,24,0,-6], [22,24,0,-2], [13,35,9,-2], [12,11,-13,-9], [14,35,9,1], [9,6,-18,-9], [5,4,-19,-8], - [6,11,-13,-7], [16,16,1,-3], [13,25,1,-3], [13,16,1,-3], [16,25,1,-3], [13,16,1,-3], [17,31,7,1], [16,22,7,-1], - [17,25,1,-2], [10,24,-294,-2], [15,30,7,2], [15,25,1,-2], [8,25,1,-3], [27,16,1,-2], [18,16,1,-2], [15,16,1,-3], - [18,22,7], [14,22,7,-3], [15,16,1,-2], [13,16,1,-2], [10,23,1,-3], [17,16,1,-2], [15,16,1,-2], [22,16,1,-2], - [17,16,1,-1], [16,22,7,-2], [14,16,1,-2], [16,2,-8,-3], [32,2,-8,-4], [11,7,-17,-9], [12,4,-19,-8], [10,4,-19,-9], - [14,56,98,141,183,225,267,310,352,394,437,479,521,563,606,648], - [46,87,128,170,211,253,294,335], - [694,363] - ] -}); - -jsMath.Img.AddFont(298,{ - cmr10: [ - [23,28,0,-1], [31,30,0,-2], [28,30,1,-2], [27,30,0,-1], [25,28,0,-1], [29,28,0,-1], [26,28,0,-2], [28,29,0,-2], - [26,28,0,-2], [28,28,0,-2], [27,29,0,-1], [25,29,0,-1], [21,29,0,-1], [21,29,0,-1], [32,29,0,-1], [32,29,0,-1], - [10,19,0,-1], [11,28,9,2], [8,8,-21,-4], [8,8,-21,-8], [11,5,-21,-5], [13,8,-21,-4], [16,3,-22,-2], [9,8,-22,-11], - [10,9,9,-5], [19,30,1,-1], [28,20,1,-1], [30,20,1,-1], [18,26,4,-1], [35,28,0,-1], [39,30,1,-2], [28,34,3,-2], - [10,5,-11,-1], [5,30,0,-3], [14,13,-16,-1], [30,37,8,-2], [17,34,3,-2], [30,34,3,-2], [29,31,1,-1], [6,13,-16,-3], - [10,42,11,-4], [10,42,11,-2], [16,18,-13,-2], [28,28,4,-2], [6,13,8,-3], [12,3,-7], [5,5,0,-3], [17,42,11,-2], - [18,29,1,-1], [15,28,0,-3], [17,28,0,-2], [18,29,1,-1], [19,28,0,-1], [17,29,1,-2], [18,29,1,-1], [18,29,1,-2], - [18,29,1,-1], [18,29,1,-1], [5,18,0,-3], [5,26,8,-3], [5,30,9,-3], [28,10,-5,-2], [15,30,9,-2], [15,29,0,-2], - [28,30,1,-2], [29,30,0,-1], [26,28,0,-1], [26,30,1,-2], [28,28,0,-1], [26,28,0,-1], [24,28,0,-1], [29,30,1,-2], - [29,28,0,-1], [13,28,0,-1], [19,29,1,-1], [30,28,0,-1], [23,28,0,-1], [35,28,0,-1], [29,28,0,-1], [28,30,1,-2], - [25,28,0,-1], [28,37,8,-2], [29,29,1,-1], [19,30,1,-2], [27,28,0,-1], [29,29,1,-1], [30,29,1], [42,29,1], - [29,28,0,-1], [31,28,0], [21,28,0,-2], [7,42,11,-4], [14,13,-16,-6], [7,42,11], [11,7,-22,-5], [5,5,-23,-3], - [5,13,-16,-3], [20,20,1,-1], [21,30,1,-1], [16,20,1,-1], [21,30,1,-1], [16,20,1,-1], [14,29,0,-1], [19,28,9,-1], - [21,29,0,-1], [10,28,0,-1], [11,37,9,2], [20,29,0,-1], [10,29,0,-1], [33,19,0,-1], [21,19,0,-1], [19,20,1,-1], - [21,27,8,-1], [21,27,8,-1], [14,19,0,-1], [14,20,1,-1], [14,27,1], [21,20,1,-1], [21,19,1], [29,19,1], - [22,18,0], [21,27,9], [16,18,0,-1], [21,2,-10], [41,2,-10], [13,8,-21,-5], [14,5,-23,-3], [13,5,-23,-4], - [17,67,118,169,220,271,322,373,423,474,525,576,627,678,729,780], - [55,104,154,203,253,302,352,401], - [835,434] - ], - cmmi10: [ - [29,28,0,-1], [31,30,0,-2], [29,30,1,-2], [27,30,0,-1], [30,28,0,-2], [35,28,0,-1], [31,28,0,-2], [28,29,0,-1], - [26,28,0,-1], [28,28,0,-1], [30,29,0,-3], [24,20,1,-1], [24,37,8,-1], [23,28,9], [18,31,1,-1], [15,19,1,-1], - [19,38,9,-1], [20,28,9,-1], [18,30,1,-1], [12,20,1,-2], [21,20,1,-2], [21,30,1,-2], [23,27,9,-1], [20,19,0,-2], - [18,38,9,-1], [23,19,1,-1], [20,28,9,-1], [23,19,1,-1], [20,19,1,-1], [21,20,1,-1], [22,38,9,-2], [24,28,9,-1], - [25,38,9,-1], [25,19,1], [17,20,1,-1], [22,30,1,-1], [33,19,1,-1], [18,27,8,-3], [16,24,5,-1], [24,28,9,-2], - [37,12,-9,-2], [37,13,1,-2], [37,12,-9,-2], [37,13,1,-2], [7,10,-9,-2], [8,10,-9,-2], [19,22,1,-1], [19,22,1,-1], - [18,20,1,-1], [15,19,0,-3], [18,19,0,-1], [18,28,9,-1], [19,27,8,-1], [17,28,9,-2], [18,29,1,-1], [18,28,9,-2], - [18,29,1,-1], [18,28,9,-1], [5,5,0,-3], [6,13,8,-3], [26,25,2,-3], [17,42,11,-2], [26,25,2,-3], [21,20,0], - [23,31,1,-1], [29,30,0,-1], [30,28,0,-1], [30,30,1,-2], [32,28,0,-1], [31,28,0,-1], [30,28,0,-1], [30,30,1,-2], - [36,28,0,-1], [20,28,0,-1], [24,29,1,-2], [36,28,0,-1], [26,28,0,-1], [42,28,0,-1], [36,28,0,-1], [29,30,1,-2], - [30,28,0,-1], [29,37,8,-2], [30,29,1,-1], [25,30,1,-2], [28,28,0,-1], [30,29,1,-2], [30,29,1,-2], [41,29,1,-2], - [34,28,0,-1], [31,28,0,-1], [28,28,0,-2], [12,32,1,-2], [10,39,9,-3], [12,39,9,-2], [37,11,-5,-2], [37,11,-5,-2], - [17,30,1], [20,20,1,-1], [16,30,1,-1], [17,20,1,-1], [20,30,1,-1], [17,20,1,-1], [21,38,9,-2], [20,28,9], - [21,30,1,-2], [11,28,1,-1], [18,36,9,1], [19,30,1,-2], [10,30,1,-1], [34,20,1,-1], [23,20,1,-1], [19,20,1,-1], - [23,27,8,2], [18,27,8,-1], [17,20,1,-1], [16,20,1,-2], [13,27,1,-1], [22,20,1,-1], [19,20,1,-1], [28,20,1,-1], - [21,20,1,-1], [20,28,9,-1], [18,20,1,-1], [11,20,1,-1], [16,28,9,1], [23,28,9,-3], [19,9,-21,-7], [17,6,-22,-10], - [16,66,115,165,214,264,313,363,412,462,511,561,610,660,709,759], - [55,104,154,203,253,302,352,401], - [813,434] - ], - cmsy10: [ - [26,3,-9,-3], [5,5,-8,-3], [20,20,0,-6], [16,18,-1,-2], [28,24,2,-2], [20,20,0], [28,28,0,-2], [28,28,7,-2], - [28,28,4,-2], [28,28,4,-2], [28,28,4,-2], [28,28,4,-2], [28,28,4,-2], [37,39,9,-2], [17,17,-2,-2], [17,17,-2,-2], - [28,20,0,-2], [28,18,-1,-2], [26,33,6,-3], [26,33,6,-3], [26,32,6,-3], [26,32,6,-3], [26,32,6,-3], [26,32,6,-3], - [28,10,-5,-2], [28,18,-2,-2], [26,25,2,-3], [26,25,2,-3], [37,27,3,-2], [37,27,3,-2], [26,24,2,-3], [26,24,2,-3], - [37,15,-3,-2], [37,15,-3,-2], [15,37,8,-3], [15,37,8,-3], [37,15,-3,-2], [37,37,8,-2], [37,37,8,-2], [28,18,-1,-2], - [37,23,1,-2], [37,23,1,-2], [23,37,8,-1], [23,37,8,-1], [39,23,1,-1], [37,37,8,-2], [37,37,8,-2], [28,20,1,-2], - [10,22,-1,-1], [37,20,1,-2], [21,25,2,-3], [21,25,2,-3], [32,30,0,-2], [32,30,9,-2], [22,39,9,-5], [3,16,-2,-2], - [23,30,1], [19,29,0,-2], [23,12,-3,-2], [18,36,4,-1], [28,31,1,-2], [27,30,1,-2], [28,28,0,-2], [28,28,0,-2], - [21,29,0,-2], [32,32,2,-1], [27,30,1,-1], [22,30,1], [32,28,0], [23,30,1,-1], [34,30,2], [24,34,5,-1], - [34,30,2], [27,28,0,1], [34,33,5,-1], [29,30,1,-1], [26,30,1,-1], [45,31,2,-1], [42,34,2,2], [30,30,1,-2], - [30,30,2], [29,35,6,-4], [35,29,1], [27,30,1], [32,30,0,-1], [30,30,2,1], [26,30,2,-1], [42,30,2,-1], - [32,28,0,-2], [29,34,6,-1], [31,28,0,-1], [23,26,1,-2], [23,26,1,-2], [23,26,1,-2], [23,26,1,-2], [23,26,1,-2], - [21,29,0,-2], [21,29,0,-2], [11,42,11,-7], [11,42,11], [11,42,11,-7], [10,42,11,-1], [15,42,11,-3], [15,42,11,-3], - [10,42,11,-4], [10,42,11,-2], [3,42,11,-4], [10,42,11,-5], [15,44,12,-3], [23,44,12,-1], [17,42,11,-2], [7,28,4,-2], - [32,42,40,-3], [29,28,0,-1], [31,30,2,-2], [18,39,9,-2], [23,25,0,-2], [23,25,0,-2], [27,33,6,-3], [27,33,6,-2], - [14,38,9,-2], [14,38,9,-2], [14,38,9,-2], [22,37,8,-2], [30,36,6,-1], [28,37,7,-2], [28,32,2,-2], [28,36,6,-2], - [17,77,136,196,255,314,374,433,493,552,612,671,730,790,849,909], - [58,142,227,311,396,481,565,650], - [974,721] - ], - cmex10: [ - [11,50,48,-6], [12,50,48,-1], [9,50,48,-8], [9,50,48], [11,50,48,-8], [11,50,48], [11,50,48,-8], [11,50,48], - [16,50,48,-4], [16,50,48,-4], [12,50,48,-4], [13,50,48,-3], [3,27,26,-5], [12,27,26,-5], [20,50,48,-2], [20,50,48,-2], - [16,75,73,-7], [17,75,73,-1], [21,99,97,-8], [21,99,97,-1], [11,99,97,-10], [12,99,97], [14,99,97,-10], [14,99,97], - [14,99,97,-10], [14,99,97], [21,99,97,-5], [21,99,97,-5], [22,99,97,-5], [22,99,97,-4], [39,99,97,-2], [39,99,97,-2], - [22,124,122,-9], [22,124,122,-1], [13,124,122,-11], [13,124,122], [15,124,122,-11], [15,124,122], [15,124,122,-11], [15,124,122], - [23,124,122,-5], [23,124,122,-5], [24,124,122,-5], [24,124,122,-4], [48,124,122,-2], [48,124,122,-2], [29,75,73,-2], [29,74,72,-2], - [24,75,73,-11], [23,75,73,-1], [14,75,73,-13], [14,75,73], [14,75,73,-13], [14,75,73], [4,25,25,-13], [3,25,25,-11], - [15,38,38,-15], [14,38,38,-7], [15,38,37,-15], [14,38,37,-7], [14,76,75,-7], [15,76,75,-15], [6,14,13,-15], [3,25,25,-12], - [24,75,73,-11], [23,75,73,-1], [6,26,25,-11], [5,26,25,-19], [18,75,73,-4], [18,75,73,-3], [30,41,41,-2], [42,58,58,-2], - [23,46,46,-2], [37,92,92,-2], [42,41,41,-2], [58,58,58,-2], [42,41,41,-2], [58,58,58,-2], [42,41,41,-2], [58,58,58,-2], - [39,41,41,-2], [35,41,41,-2], [23,46,46,-2], [30,41,41,-2], [30,41,41,-2], [30,41,41,-2], [30,41,41,-2], [30,41,41,-2], - [55,58,58,-2], [49,58,58,-2], [37,92,92,-2], [42,58,58,-2], [42,58,58,-2], [42,58,58,-2], [42,58,58,-2], [42,58,58,-2], - [35,41,41,-2], [49,58,58,-2], [23,8,-23], [41,9,-23], [60,9,-23], [23,6,-24], [41,6,-25], [59,6,-25], - [10,75,73,-9], [10,75,73], [12,75,73,-9], [13,75,73], [12,75,73,-9], [13,75,73], [19,75,73,-4], [19,75,73,-4], - [38,50,48,-4], [38,75,73,-4], [38,99,97,-4], [38,124,122,-4], [27,75,74,-4], [3,27,26,-28], [16,26,24,-28], [12,25,25,-10], - [19,25,25,-4], [19,25,25,-4], [20,14,9,1], [21,14,9,1], [20,14,0,1], [21,14,0,1], [28,25,25,-2], [28,25,25,-2], - [19,93,168,243,318,392,467,542,617,692,766,841,916,991,1066,1140], - [66,249,433,617,800,984,1167,1351], - [1222,1530] - ], - cmbx10: [ - [26,28,0,-1], [35,29,0,-2], [32,30,1,-2], [31,29,0,-1], [28,28,0,-2], [35,28,0,-1], [30,29,0,-2], [32,29,0,-2], - [30,29,0,-2], [32,29,0,-2], [30,29,0,-2], [30,29,0,-1], [24,29,0,-1], [24,29,0,-1], [37,29,0,-1], [37,29,0,-1], - [11,19,0,-1], [14,28,9,3], [10,8,-21,-4], [10,8,-21,-9], [13,6,-21,-5], [15,9,-20,-4], [18,3,-22,-3], [10,7,-22,-13], - [13,9,9,-5], [23,30,1,-1], [32,20,1,-1], [35,20,1,-1], [22,28,5,-1], [41,29,0,-1], [44,30,1,-3], [32,34,3,-2], - [14,6,-11], [7,29,0,-4], [18,15,-14,-1], [35,37,8,-2], [19,34,3,-2], [35,34,3,-2], [33,30,1,-2], [8,15,-14,-3], - [12,42,11,-4], [12,42,11,-2], [18,19,-12,-3], [32,32,6,-2], [8,15,8,-3], [13,5,-7], [7,7,0,-3], [19,42,11,-2], - [21,28,1,-1], [18,27,0,-3], [20,27,0,-2], [20,28,1,-2], [22,27,0,-1], [20,28,1,-2], [20,28,1,-2], [21,29,1,-2], - [20,28,1,-2], [20,28,1,-2], [7,19,0,-3], [7,27,8,-3], [7,30,9,-4], [32,13,-4,-2], [18,30,9,-2], [18,29,0,-2], - [32,30,1,-2], [33,29,0,-1], [30,29,0,-1], [30,30,1,-2], [33,29,0,-1], [29,28,0,-1], [27,28,0,-1], [33,30,1,-2], - [35,29,0,-1], [16,29,0,-1], [21,30,1,-1], [34,29,0,-1], [26,29,0,-1], [43,29,0,-1], [35,29,0,-1], [31,30,1,-2], - [29,29,0,-1], [31,37,8,-2], [35,30,1,-1], [22,30,1,-2], [30,28,0,-1], [34,30,1,-1], [34,30,1,-1], [47,30,1,-1], - [34,29,0,-1], [35,29,0], [25,29,0,-2], [7,42,11,-5], [19,15,-14,-5], [7,42,11,-1], [13,8,-21,-5], [7,7,-22,-3], - [8,15,-14,-2], [22,20,1,-1], [24,30,1,-1], [19,20,1,-1], [24,30,1,-1], [20,20,1,-1], [17,29,0,-1], [22,28,9,-1], - [25,29,0,-1], [11,29,0,-1], [14,38,9,3], [24,29,0,-1], [11,29,0,-1], [38,19,0,-1], [25,19,0,-1], [22,20,1,-1], - [24,27,8,-1], [24,27,8,-1], [18,19,0,-1], [16,20,1,-1], [16,27,1], [25,20,1,-1], [23,20,1,-1], [32,20,1,-1], - [24,19,0], [24,28,9], [18,19,0,-1], [24,2,-10], [48,2,-10], [16,9,-21,-5], [16,5,-24,-4], [16,7,-22,-4], - [17,76,135,194,253,311,370,429,488,547,606,664,723,782,841,900], - [55,104,154,203,253,302,352,401], - [964,434] - ], - cmti10: [ - [27,28,0,-2], [28,30,0,-3], [27,30,1,-6], [25,30,0,-2], [28,28,0,-3], [33,28,0,-2], [29,28,0,-3], [27,29,0,-8], - [24,28,0,-6], [26,28,0,-8], [28,29,0,-4], [32,38,9,1], [26,38,9,1], [27,38,9,1], [39,38,9,1], [40,38,9,1], - [11,20,1,-3], [16,28,9,2], [6,9,-20,-12], [9,9,-20,-14], [11,6,-20,-11], [13,8,-21,-11], [15,3,-22,-9], [9,8,-22,-19], - [10,8,8,-4], [25,38,9,1], [27,20,1,-3], [26,20,1,-4], [21,27,5,-2], [37,28,0,-2], [37,30,1,-6], [30,34,3,-4], - [11,5,-11,-3], [12,30,0,-4], [14,13,-16,-7], [30,37,8,-4], [26,30,1,-3], [29,34,3,-6], [28,31,1,-5], [7,13,-16,-9], - [16,42,11,-6], [16,42,11], [16,18,-13,-8], [26,26,3,-5], [7,13,8,-3], [11,3,-7,-3], [6,5,0,-4], [26,42,11], - [19,29,1,-4], [15,28,0,-4], [20,29,1,-3], [20,29,1,-3], [19,36,8,-1], [20,29,1,-4], [20,29,1,-4], [20,29,1,-6], - [19,29,1,-4], [19,29,1,-4], [9,18,0,-4], [10,26,8,-3], [12,30,9,-2], [28,10,-5,-4], [16,30,9,-3], [15,30,0,-8], - [27,30,1,-6], [27,30,0,-2], [29,28,0,-2], [28,30,1,-6], [30,28,0,-2], [29,28,0,-2], [28,28,0,-2], [28,30,1,-6], - [33,28,0,-2], [19,28,0,-2], [23,29,1,-3], [34,28,0,-2], [24,28,0,-2], [39,28,0,-2], [33,28,0,-2], [27,30,1,-6], - [28,28,0,-2], [27,37,8,-6], [28,29,1,-2], [23,30,1,-3], [26,28,0,-7], [27,29,1,-8], [28,29,1,-8], [37,29,1,-8], - [40,28,0,6], [28,28,0,-8], [26,28,0,-3], [16,42,11,-3], [14,13,-16,-11], [16,42,11,1], [11,7,-22,-11], [5,5,-23,-10], - [7,13,-16,-8], [18,20,1,-4], [15,30,1,-4], [16,20,1,-4], [19,30,1,-4], [16,20,1,-4], [20,38,9,1], [18,28,9,-2], - [19,30,1,-3], [11,28,1,-3], [17,36,9,2], [18,30,1,-3], [10,30,1,-3], [32,20,1,-3], [21,20,1,-3], [17,20,1,-4], - [21,27,8], [17,27,8,-4], [17,20,1,-3], [15,20,1,-3], [13,27,1,-3], [20,20,1,-3], [18,20,1,-3], [26,20,1,-3], - [20,20,1,-2], [19,28,9,-3], [17,20,1,-2], [20,2,-10,-3], [38,2,-10,-5], [13,9,-20,-11], [14,5,-23,-10], [12,5,-23,-11], - [17,67,118,168,219,270,320,371,421,472,522,573,624,674,725,775], - [55,104,154,203,253,302,352,401], - [831,434] - ] -}); - -jsMath.Img.AddFont(358,{ - cmr10: [ - [28,34,0,-1], [37,35,0,-2], [34,36,1,-2], [32,35,0,-1], [29,34,0,-2], [35,34,0,-1], [31,34,0,-2], [34,35,0,-2], - [31,34,0,-2], [34,34,0,-2], [32,35,0,-2], [30,35,0,-1], [25,35,0,-1], [25,35,0,-1], [39,35,0,-1], [39,35,0,-1], - [12,22,0,-1], [13,32,10,2], [10,10,-25,-5], [10,10,-25,-10], [13,7,-25,-6], [16,9,-25,-4], [18,2,-27,-3], [10,10,-26,-13], - [12,9,10,-6], [23,36,1,-1], [32,23,1,-2], [36,23,1,-1], [22,31,5,-1], [42,34,0,-1], [46,37,2,-3], [34,39,3,-2], - [12,6,-13,-1], [6,35,0,-4], [16,15,-19,-1], [36,44,10,-2], [20,40,3,-2], [36,40,3,-2], [34,38,2,-2], [7,15,-19,-4], - [13,50,13,-4], [13,50,13,-2], [19,22,-15,-3], [34,33,4,-2], [6,16,10,-4], [14,3,-9], [6,6,0,-4], [20,50,13,-2], - [22,35,2,-1], [17,33,0,-4], [20,33,0,-2], [21,35,2,-2], [23,34,0,-1], [20,35,2,-2], [21,35,2,-2], [22,35,1,-2], - [21,35,2,-2], [21,34,1,-2], [6,22,0,-4], [6,32,10,-4], [6,36,11,-4], [34,12,-6,-2], [19,35,10,-2], [19,35,0,-2], - [34,36,1,-2], [35,35,0,-1], [31,34,0,-1], [31,37,2,-2], [34,34,0,-1], [31,34,0,-1], [29,34,0,-1], [34,37,2,-2], - [35,34,0,-1], [16,34,0,-1], [21,35,1,-2], [36,34,0,-1], [28,34,0,-1], [43,34,0,-1], [35,34,0,-1], [34,36,1,-2], - [30,34,0,-1], [34,45,10,-2], [35,35,1,-1], [23,37,2,-2], [33,34,0,-1], [35,35,1,-1], [36,35,1], [50,35,1], - [35,34,0,-1], [37,34,0], [26,34,0,-2], [8,50,13,-5], [16,15,-19,-7], [7,50,13,-1], [14,8,-26,-5], [6,6,-27,-4], - [7,15,-19,-3], [23,23,1,-2], [25,35,1,-1], [20,23,1,-1], [25,35,1,-1], [20,23,1,-1], [17,35,0,-1], [23,34,11,-1], - [26,34,0,-1], [12,33,0,-1], [13,43,10,2], [24,34,0,-1], [12,34,0,-1], [39,22,0,-1], [26,22,0,-1], [23,23,1,-1], - [25,32,10,-1], [25,32,10,-1], [17,22,0,-1], [17,23,1,-1], [16,32,1,-1], [26,23,1,-1], [25,23,1], [35,23,1], - [26,22,0], [25,32,10], [19,22,0,-1], [25,2,-12], [49,2,-12], [15,10,-25,-6], [17,5,-28,-4], [15,6,-27,-5], - [20,81,142,203,264,325,387,448,509,570,631,692,753,814,875,937], - [64,124,183,243,302,362,421,481], - [1003,521] - ], - cmmi10: [ - [34,34,0,-2], [37,35,0,-2], [35,37,2,-2], [32,35,0,-1], [36,34,0,-2], [42,34,0,-2], [38,34,0,-2], [34,35,0,-1], - [31,34,0,-1], [33,34,0,-1], [36,35,0,-3], [28,23,1,-2], [28,45,10,-1], [27,33,11], [21,36,1,-2], [17,23,1,-2], - [22,45,10,-2], [24,33,11,-1], [21,36,1,-2], [14,23,1,-2], [25,23,1,-2], [25,35,1,-2], [27,33,11,-1], [24,22,0,-2], - [21,45,10,-1], [27,23,1,-1], [24,33,11,-1], [27,23,1,-1], [24,23,1,-1], [25,23,1,-1], [26,44,10,-2], [28,32,10,-1], - [31,44,10,-1], [30,23,1], [20,25,2,-1], [27,36,1,-1], [39,23,1,-1], [22,32,10,-3], [19,28,6,-1], [29,33,11,-2], - [45,14,-11,-2], [45,15,1,-2], [45,14,-11,-2], [45,15,1,-2], [9,12,-11,-2], [9,12,-11,-2], [23,26,1,-1], [23,26,1,-1], - [21,25,2,-2], [17,23,0,-4], [20,23,0,-2], [21,34,11,-2], [22,33,10,-1], [20,34,11,-2], [21,35,2,-2], [22,34,11,-2], - [21,35,2,-2], [21,34,11,-2], [6,6,0,-4], [6,16,10,-4], [30,29,2,-4], [20,50,13,-2], [30,29,2,-4], [25,24,0], - [26,36,1,-2], [35,35,0,-1], [35,34,0,-2], [36,37,2,-2], [38,34,0,-2], [37,34,0,-1], [36,34,0,-1], [36,37,2,-2], - [42,34,0,-2], [24,34,0,-1], [28,35,1,-3], [43,34,0,-1], [30,34,0,-2], [50,34,0,-2], [42,34,0,-2], [35,37,2,-2], - [35,34,0,-2], [35,45,10,-2], [35,35,1,-2], [30,37,2,-2], [34,34,0,-1], [35,36,2,-3], [36,35,1,-2], [50,35,1,-2], - [41,34,0,-1], [37,34,0,-1], [34,34,0,-2], [15,38,1,-2], [13,47,11,-3], [15,46,11,-2], [45,13,-6,-2], [45,13,-6,-2], - [20,36,1], [23,23,1,-2], [19,35,1,-2], [19,23,1,-2], [24,35,1,-2], [19,23,1,-2], [25,45,10,-2], [24,32,10], - [25,35,1,-2], [14,34,1,-1], [21,43,10,1], [23,35,1,-2], [11,35,1,-2], [41,23,1,-1], [27,23,1,-1], [21,23,1,-2], - [26,32,10,2], [20,32,10,-2], [21,23,1,-1], [19,23,1,-2], [16,32,1,-1], [26,23,1,-1], [22,23,1,-1], [33,23,1,-1], - [25,23,1,-1], [23,32,10,-1], [21,23,1,-2], [14,23,1,-1], [19,32,10,1], [28,34,11,-3], [22,10,-25,-9], [19,7,-26,-13], - [20,79,139,198,258,317,377,436,495,555,614,674,733,793,852,912], - [64,124,183,243,302,362,421,481], - [977,521] - ], - cmsy10: [ - [30,3,-11,-4], [6,6,-9,-4], [24,24,0,-7], [19,22,-1,-3], [34,28,2,-2], [24,24,0], [34,33,0,-2], [34,34,9,-2], - [34,33,4,-2], [34,33,4,-2], [34,33,4,-2], [34,33,4,-2], [34,33,4,-2], [45,47,11,-2], [20,20,-2,-2], [20,20,-2,-2], - [34,24,0,-2], [34,22,-1,-2], [30,39,7,-4], [30,39,7,-4], [30,38,7,-4], [30,39,7,-4], [30,38,7,-4], [30,39,7,-4], - [34,12,-6,-2], [34,22,-2,-2], [30,29,2,-4], [30,29,2,-4], [45,32,4,-2], [45,32,4,-2], [30,29,2,-4], [30,29,2,-4], - [45,18,-3,-2], [45,18,-3,-2], [18,44,10,-3], [18,44,10,-3], [45,18,-3,-2], [45,45,10,-2], [45,44,10,-2], [34,22,-1,-2], - [45,28,2,-2], [45,28,2,-2], [28,44,10,-1], [28,44,10,-1], [47,28,2,-1], [45,45,10,-2], [45,44,10,-2], [34,23,1,-2], - [12,26,-2,-1], [45,23,1,-2], [25,29,2,-4], [25,29,2,-4], [38,35,0,-3], [39,36,11,-2], [26,46,11,-6], [4,19,-3,-2], - [28,35,1], [23,34,0,-2], [28,14,-4,-2], [21,42,4,-2], [33,38,2,-2], [32,36,1,-2], [34,33,0,-2], [34,33,0,-2], - [26,34,0,-2], [38,39,3,-1], [32,37,2,-1], [27,37,2], [37,34,0,-1], [27,37,2,-1], [41,36,2], [28,41,6,-2], - [39,37,3,-1], [33,34,0,2], [39,40,6,-2], [35,37,2,-1], [31,37,2,-1], [54,38,3,-1], [50,41,3,2], [37,37,2,-2], - [35,37,3,-1], [34,42,7,-5], [40,36,2,-1], [32,37,2], [38,36,0,-1], [35,36,2,1], [32,37,3,-1], [50,37,3,-1], - [38,34,0,-2], [35,41,7,-1], [37,34,0,-1], [28,32,2,-2], [28,31,1,-2], [28,32,2,-2], [28,31,1,-2], [28,31,1,-2], - [25,34,0,-2], [26,34,0,-2], [13,50,13,-8], [13,50,13,-1], [13,50,13,-8], [13,50,13,-1], [18,50,13,-3], [18,50,13,-3], - [12,50,13,-5], [12,50,13,-2], [3,50,13,-5], [12,50,13,-6], [18,52,14,-3], [28,52,14,-1], [20,50,13,-2], [9,33,4,-2], - [39,49,47,-3], [34,34,0,-1], [37,36,2,-2], [21,46,11,-2], [27,30,0,-3], [27,30,0,-3], [31,39,7,-4], [31,39,7,-3], - [16,45,10,-3], [17,46,11,-2], [17,45,10,-2], [27,44,10,-2], [36,43,7,-1], [34,44,8,-2], [34,38,2,-2], [34,43,7,-2], - [21,92,164,235,306,378,449,521,592,663,735,806,878,949,1020,1092], - [68,170,271,373,475,576,678,780], - [1170,865] - ], - cmex10: [ - [14,59,57,-7], [13,59,57,-2], [11,59,57,-9], [10,59,57,-1], [13,59,57,-9], [13,59,57,-1], [13,59,57,-9], [13,59,57,-1], - [18,59,57,-5], [18,59,57,-5], [16,59,57,-4], [16,59,57,-3], [3,32,31,-7], [14,32,31,-7], [24,59,57,-2], [24,59,57,-2], - [20,89,87,-8], [20,89,87,-1], [25,118,116,-10], [25,118,116,-1], [14,118,116,-12], [14,118,116], [16,118,116,-12], [17,118,116], - [16,118,116,-12], [17,118,116], [25,118,116,-6], [25,118,116,-6], [26,118,116,-6], [27,118,116,-4], [47,118,116,-2], [47,118,116,-2], - [26,147,145,-11], [27,147,145,-1], [15,147,145,-13], [15,147,145], [18,147,145,-13], [18,147,145], [18,147,145,-13], [18,147,145], - [26,147,145,-7], [26,147,145,-7], [29,147,145,-6], [28,147,145,-5], [58,147,145,-2], [58,147,145,-2], [35,89,87,-2], [35,89,87,-2], - [28,89,87,-14], [28,89,87,-1], [17,89,87,-16], [17,89,87], [17,89,87,-16], [17,89,87], [4,30,30,-16], [4,30,30,-13], - [18,45,45,-18], [17,45,45,-8], [18,45,44,-18], [17,45,44,-8], [17,90,89,-8], [18,90,89,-18], [7,17,16,-18], [3,30,30,-15], - [28,90,87,-14], [28,90,87,-1], [6,31,30,-14], [6,31,30,-23], [21,89,87,-5], [21,89,87,-4], [36,49,49,-2], [50,69,69,-2], - [28,55,55,-2], [45,109,109,-2], [50,49,49,-2], [70,69,69,-2], [50,49,49,-2], [70,69,69,-2], [50,49,49,-2], [70,69,69,-2], - [47,49,49,-2], [42,49,49,-2], [28,55,55,-2], [36,49,49,-2], [36,49,49,-2], [36,49,49,-2], [36,49,49,-2], [36,49,49,-2], - [66,69,69,-2], [58,69,69,-2], [45,109,109,-2], [50,69,69,-2], [50,69,69,-2], [50,69,69,-2], [50,69,69,-2], [50,69,69,-2], - [42,49,49,-2], [58,69,69,-2], [29,10,-27,1], [49,10,-28], [71,10,-28], [27,7,-29], [49,7,-30], [71,7,-30], - [12,89,87,-11], [12,89,87], [14,89,87,-11], [15,89,87], [14,89,87,-11], [15,89,87], [22,89,87,-5], [22,89,87,-5], - [45,59,57,-5], [45,89,87,-5], [45,118,116,-5], [45,147,145,-5], [32,90,89,-5], [3,32,31,-34], [19,31,29,-34], [14,30,30,-12], - [23,30,30,-5], [23,30,30,-5], [25,17,11,2], [25,17,11,1], [25,17,0,2], [25,17,0,1], [34,30,30,-2], [34,29,29,-2], - [22,112,202,292,382,472,561,651,741,831,921,1011,1100,1190,1280,1370], - [78,298,519,740,960,1181,1401,1622], - [1468,1836] - ], - cmbx10: [ - [31,34,0,-1], [42,35,0,-2], [38,36,1,-3], [36,35,0,-2], [34,34,0,-2], [42,34,0,-1], [35,34,0,-3], [38,35,0,-3], - [35,34,0,-3], [38,34,0,-3], [37,35,0,-2], [36,35,0,-1], [29,35,0,-1], [29,35,0,-1], [45,35,0,-1], [45,35,0,-1], - [12,22,0,-2], [17,32,10,3], [12,10,-25,-5], [12,10,-25,-11], [16,7,-25,-6], [18,10,-24,-5], [22,3,-27,-3], [13,9,-26,-15], - [16,10,10,-6], [27,36,1,-1], [39,24,1,-1], [42,24,1,-1], [26,32,5,-1], [48,34,0,-2], [52,36,1,-4], [38,40,3,-3], - [15,7,-13,-1], [9,35,0,-4], [22,18,-16,-1], [41,44,10,-3], [22,40,3,-3], [41,40,3,-3], [39,36,1,-2], [9,18,-16,-4], - [14,50,13,-5], [14,50,13,-3], [22,22,-15,-3], [38,38,7,-3], [9,18,10,-4], [16,6,-8], [8,8,0,-4], [22,50,13,-3], - [24,34,1,-2], [21,32,0,-4], [24,33,0,-2], [24,34,1,-2], [26,33,0,-1], [24,33,1,-2], [24,34,1,-2], [25,35,1,-3], - [24,34,1,-2], [24,34,1,-2], [8,22,0,-4], [8,32,10,-4], [9,35,10,-4], [38,15,-5,-3], [21,35,10,-3], [21,35,0,-3], - [38,36,1,-3], [39,35,0,-2], [36,34,0,-1], [35,36,1,-3], [39,34,0,-1], [35,34,0,-1], [32,34,0,-1], [39,36,1,-3], - [42,34,0,-1], [19,34,0,-1], [25,35,1,-1], [41,34,0,-1], [31,34,0,-1], [50,34,0,-2], [42,34,0,-1], [37,36,1,-3], - [35,34,0,-1], [37,45,10,-3], [41,35,1,-1], [26,36,1,-3], [35,34,0,-2], [41,35,1,-1], [41,35,1,-1], [56,35,1,-1], - [40,34,0,-1], [42,34,0], [29,34,0,-3], [9,50,13,-6], [22,18,-16,-6], [9,50,13,-1], [16,8,-26,-6], [8,8,-26,-4], - [9,18,-16,-3], [27,24,1,-1], [29,35,1,-1], [23,24,1,-1], [29,35,1,-1], [24,24,1,-1], [20,35,0,-2], [27,33,10,-1], - [29,34,0,-2], [12,34,0,-2], [17,44,10,3], [28,34,0,-1], [13,34,0,-2], [44,22,0,-2], [29,22,0,-2], [26,24,1,-1], - [29,32,10,-1], [29,32,10,-1], [21,22,0,-1], [20,24,1,-1], [18,33,1,-1], [29,23,1,-2], [28,23,1,-1], [39,23,1,-1], - [28,22,0,-1], [28,32,10,-1], [22,22,0,-1], [29,3,-12], [57,3,-12], [17,10,-25,-7], [20,6,-28,-4], [19,7,-27,-5], - [21,91,162,233,303,374,445,516,586,657,728,798,869,940,1010,1081], - [64,124,183,243,302,362,421,481], - [1158,521] - ], - cmti10: [ - [32,34,0,-3], [34,35,0,-3], [32,37,2,-7], [30,35,0,-2], [34,34,0,-3], [39,34,0,-3], [35,34,0,-4], [31,35,0,-10], - [29,34,0,-7], [31,34,0,-10], [34,35,0,-4], [40,45,10,2], [32,45,10,2], [34,45,10,2], [47,45,10,2], [49,45,10,2], - [13,23,1,-4], [18,32,10,2], [8,10,-24,-14], [11,11,-24,-16], [14,7,-24,-13], [15,9,-25,-13], [17,2,-27,-11], [10,9,-26,-23], - [12,10,10,-5], [30,45,10,1], [32,23,1,-4], [31,23,1,-5], [24,33,6,-3], [45,34,0,-2], [44,37,2,-8], [36,40,3,-5], - [13,7,-13,-4], [14,35,0,-5], [18,15,-19,-8], [36,44,10,-5], [31,36,1,-4], [35,40,3,-7], [34,37,2,-6], [9,15,-19,-10], - [19,50,13,-7], [18,50,13,-1], [20,22,-15,-9], [31,31,3,-6], [8,16,10,-3], [13,3,-9,-4], [6,6,0,-5], [30,50,13,-1], - [23,35,2,-5], [18,33,0,-5], [23,34,1,-4], [24,35,2,-4], [22,43,10,-2], [23,34,1,-5], [23,34,1,-5], [24,34,1,-7], - [24,35,2,-4], [23,34,1,-5], [10,22,0,-5], [12,32,10,-3], [14,36,11,-2], [33,12,-6,-5], [18,36,11,-4], [18,35,0,-9], - [32,36,1,-7], [32,35,0,-2], [33,34,0,-3], [33,37,2,-7], [35,34,0,-3], [34,34,0,-3], [33,34,0,-3], [33,37,2,-7], - [39,34,0,-3], [23,34,0,-2], [27,36,2,-4], [39,34,0,-3], [28,34,0,-3], [46,34,0,-3], [39,34,0,-3], [32,37,2,-7], - [33,34,0,-3], [32,45,10,-7], [33,36,2,-3], [28,37,2,-3], [32,34,0,-8], [33,36,2,-9], [33,35,1,-10], [45,36,2,-10], - [48,34,0,7], [34,34,0,-9], [31,34,0,-4], [19,50,13,-3], [17,15,-19,-13], [19,50,13,1], [13,8,-26,-13], [6,6,-27,-12], - [8,15,-19,-10], [22,23,1,-5], [18,35,1,-5], [18,23,1,-5], [23,35,1,-5], [18,23,1,-5], [25,45,10,2], [22,32,10,-2], - [24,35,1,-3], [13,34,1,-4], [20,43,10,2], [22,35,1,-3], [11,35,1,-4], [38,23,1,-4], [25,23,1,-4], [20,23,1,-5], - [25,32,10], [20,32,10,-5], [20,23,1,-4], [18,23,1,-3], [15,32,1,-4], [24,23,1,-4], [21,23,1,-4], [31,23,1,-4], - [24,23,1,-2], [22,32,10,-4], [20,23,1,-3], [23,2,-12,-4], [45,2,-12,-6], [16,11,-24,-13], [16,6,-27,-12], [14,6,-27,-13], - [20,81,141,202,263,324,385,445,506,567,628,688,749,810,871,932], - [64,124,183,243,302,362,421,481], - [998,521] - ] -}); - -jsMath.Img.AddFont(430,{ - cmr10: [ - [33,41,0,-2], [45,43,0,-2], [40,44,2,-3], [38,43,0,-1], [35,40,0,-2], [41,41,0,-2], [37,41,0,-3], [40,42,0,-3], - [37,41,0,-3], [40,41,0,-3], [38,42,0,-2], [36,42,0,-1], [31,42,0,-1], [31,42,0,-1], [47,42,0,-1], [47,42,0,-1], - [13,26,0,-2], [16,39,13,3], [12,12,-30,-6], [11,12,-30,-12], [16,8,-30,-7], [19,11,-30,-5], [22,2,-33,-4], [12,11,-32,-16], - [15,11,12,-7], [27,43,1,-1], [39,28,1,-2], [44,28,1,-1], [26,38,6,-2], [51,41,0,-1], [54,44,2,-4], [40,48,4,-3], - [15,7,-16,-1], [7,43,0,-5], [19,18,-23,-2], [43,53,12,-3], [24,49,4,-3], [43,49,4,-3], [41,45,2,-2], [8,18,-23,-5], - [15,60,15,-5], [14,60,15,-3], [23,27,-18,-3], [40,40,5,-3], [7,19,12,-5], [17,4,-11], [7,7,0,-5], [24,60,15,-3], - [26,42,2,-2], [20,40,0,-5], [24,40,0,-3], [25,42,2,-2], [27,40,0,-1], [24,42,2,-3], [25,42,2,-2], [26,42,2,-3], - [25,42,2,-2], [25,42,2,-2], [7,26,0,-5], [7,38,12,-5], [7,43,13,-5], [40,15,-7,-3], [22,43,13,-3], [22,42,0,-3], - [40,43,1,-3], [42,43,0,-1], [37,41,0,-2], [37,44,2,-3], [40,41,0,-2], [37,41,0,-2], [34,41,0,-2], [41,44,2,-3], - [41,41,0,-2], [19,41,0,-1], [26,43,2,-2], [42,41,0,-2], [33,41,0,-2], [50,41,0,-2], [41,41,0,-2], [40,44,2,-3], - [35,41,0,-2], [40,54,12,-3], [42,43,2,-2], [27,44,2,-3], [39,40,0,-2], [41,43,2,-2], [43,43,2,-1], [59,43,2,-1], - [42,41,0,-1], [44,41,0], [30,41,0,-3], [8,60,15,-7], [19,18,-23,-9], [9,60,15,-1], [16,9,-32,-7], [7,7,-33,-5], - [8,18,-23,-4], [28,28,1,-2], [30,42,1,-1], [23,28,1,-2], [30,42,1,-2], [24,28,1,-1], [19,42,0,-2], [28,40,13,-1], - [31,41,0,-1], [13,40,0,-2], [16,53,13,3], [30,41,0,-1], [13,41,0,-2], [47,27,0,-1], [31,27,0,-1], [27,28,1,-1], - [30,39,12,-1], [30,39,12,-2], [21,26,0,-1], [20,28,1,-2], [19,38,1,-1], [31,27,1,-1], [29,27,1,-1], [41,27,1,-1], - [31,26,0], [29,39,13,-1], [23,26,0,-1], [30,2,-15], [59,2,-15], [18,12,-30,-7], [20,7,-33,-5], [18,7,-33,-6], - [24,97,171,244,317,391,464,538,611,684,758,831,904,978,1051,1125], - [77,149,220,292,363,434,506,577], - [1205,625] - ], - cmmi10: [ - [41,41,0,-2], [44,43,0,-3], [42,44,2,-2], [38,43,0,-2], [43,40,0,-3], [50,41,0,-2], [45,41,0,-3], [41,42,0,-1], - [37,41,0,-1], [40,41,0,-1], [43,42,0,-4], [34,28,1,-2], [34,54,12,-1], [31,40,13,-1], [25,43,1,-2], [21,27,1,-2], - [26,55,13,-2], [29,40,13,-1], [25,43,1,-2], [17,27,1,-3], [30,27,1,-3], [30,42,1,-3], [33,39,13,-1], [28,26,0,-3], - [26,54,13,-1], [33,27,1,-1], [29,40,13,-1], [32,27,1,-2], [30,27,1,-1], [30,27,1,-1], [32,53,12,-2], [34,39,13,-1], - [37,53,12,-1], [36,27,1], [25,29,2,-1], [32,43,1,-1], [48,27,1,-1], [26,39,12,-4], [24,34,7,-1], [34,39,13,-3], - [53,18,-13,-3], [53,17,1,-3], [53,18,-13,-3], [53,17,1,-3], [10,15,-13,-3], [11,15,-13,-3], [27,31,1,-1], [27,31,1,-1], - [26,29,2,-2], [20,27,0,-5], [25,27,0,-2], [25,40,13,-2], [27,40,12,-1], [24,40,13,-3], [25,42,2,-2], [26,41,13,-3], - [25,42,2,-2], [25,40,13,-2], [7,7,0,-5], [7,19,12,-5], [37,35,3,-4], [24,60,15,-3], [37,35,3,-4], [30,28,-1], - [32,45,2,-2], [41,43,0,-2], [43,41,0,-2], [42,44,2,-3], [46,41,0,-2], [43,41,0,-2], [43,41,0,-2], [42,44,2,-3], - [50,41,0,-2], [28,41,0,-2], [34,43,2,-4], [51,41,0,-2], [36,41,0,-2], [60,41,0,-2], [50,41,0,-2], [42,44,2,-2], - [43,41,0,-2], [42,54,12,-2], [43,43,2,-2], [35,44,2,-3], [41,40,0,-1], [41,43,2,-4], [43,43,2,-3], [59,43,2,-3], - [50,41,0,-1], [43,41,0,-2], [40,41,0,-3], [17,47,2,-3], [15,56,13,-4], [17,56,13,-3], [53,15,-7,-3], [53,16,-7,-3], - [24,43,1], [28,28,1,-2], [23,42,1,-2], [24,28,1,-2], [29,42,1,-2], [24,28,1,-2], [30,54,12,-3], [28,40,13], - [30,42,1,-3], [17,40,1,-1], [25,52,13,1], [27,42,1,-3], [14,42,1,-2], [49,28,1,-1], [33,28,1,-1], [26,28,1,-2], - [31,38,12,2], [25,39,12,-2], [25,28,1,-1], [22,28,1,-3], [19,38,1,-1], [31,27,1,-1], [27,27,1,-1], [40,27,1,-1], - [31,28,1,-1], [28,39,13,-1], [26,27,1,-2], [17,27,1,-1], [23,39,13,1], [33,40,13,-4], [27,13,-30,-10], [24,9,-31,-15], - [24,95,167,238,309,381,452,524,595,666,738,809,880,952,1023,1095], - [77,149,220,292,363,434,506,577], - [1172,625] - ], - cmsy10: [ - [36,3,-13,-5], [7,7,-11,-5], [30,29,0,-8], [23,26,-2,-3], [40,34,2,-3], [29,29,0], [40,40,0,-3], [40,40,10,-3], - [40,40,5,-3], [40,40,5,-3], [40,40,5,-3], [40,40,5,-3], [40,40,5,-3], [53,56,13,-3], [24,24,-3,-3], [24,24,-3,-3], - [40,28,-1,-3], [40,26,-2,-3], [37,47,9,-4], [37,47,9,-4], [37,47,9,-4], [37,47,9,-4], [37,47,9,-4], [37,47,9,-4], - [40,15,-7,-3], [40,26,-3,-3], [37,35,3,-4], [37,35,3,-4], [53,38,4,-3], [53,38,4,-3], [37,35,3,-4], [37,35,3,-4], - [53,22,-4,-3], [53,22,-4,-3], [22,53,12,-4], [22,53,12,-4], [53,22,-4,-3], [53,53,12,-3], [53,53,12,-3], [40,26,-2,-3], - [53,33,2,-3], [53,33,2,-3], [34,53,12,-1], [34,53,12,-1], [55,33,2,-2], [53,54,12,-3], [53,53,12,-3], [40,28,1,-3], - [15,31,-2,-1], [53,28,1,-3], [31,35,3,-4], [31,35,3,-4], [46,43,0,-3], [46,43,13,-3], [30,56,13,-8], [5,23,-3,-3], - [33,43,2], [27,41,0,-3], [33,16,-5,-3], [25,51,5,-2], [40,45,2,-2], [38,43,1,-3], [40,40,0,-3], [40,40,0,-3], - [30,41,0,-3], [46,46,3,-1], [39,44,2,-1], [32,44,2], [45,41,0,-1], [33,44,2,-1], [48,43,2,-1], [34,49,7,-2], - [48,44,3,-1], [40,41,0,2], [48,48,7,-2], [43,44,2,-1], [38,44,2,-1], [65,45,3,-1], [60,49,3,2], [43,44,2,-3], - [43,44,3,-1], [41,50,8,-6], [49,43,2,-1], [37,44,2,-1], [46,43,0,-1], [42,43,2,1], [37,44,3,-2], [60,44,3,-2], - [45,41,0,-3], [42,49,8,-1], [44,41,0,-2], [33,38,2,-3], [33,38,2,-3], [33,38,2,-3], [33,38,2,-3], [33,38,2,-3], - [30,41,0,-3], [30,41,0,-3], [15,60,15,-10], [15,60,15,-1], [15,60,15,-10], [15,60,15,-1], [22,60,15,-4], [22,60,15,-4], - [14,60,15,-6], [14,60,15,-3], [3,60,15,-7], [15,60,15,-7], [22,62,16,-4], [34,62,16,-1], [24,60,15,-3], [10,40,5,-3], - [47,60,57,-4], [40,41,0,-2], [45,43,2,-2], [25,56,13,-3], [33,36,0,-3], [33,36,0,-3], [38,47,9,-5], [38,47,9,-3], - [18,55,13,-4], [20,55,13,-3], [20,54,12,-3], [32,53,12,-3], [44,51,8,-1], [40,53,10,-3], [40,45,2,-3], [40,51,8,-3], - [25,111,196,282,368,454,539,625,711,797,882,968,1054,1140,1225,1311], - [82,204,326,448,570,692,814,936], - [1404,1039] - ], - cmex10: [ - [16,72,69,-9], [16,72,69,-2], [13,72,69,-11], [12,72,69,-1], [16,72,69,-11], [15,72,69,-1], [16,72,69,-11], [15,72,69,-1], - [22,72,69,-6], [22,72,69,-6], [19,72,69,-5], [18,72,69,-4], [4,39,37,-8], [17,39,37,-8], [28,72,69,-3], [28,72,69,-3], - [23,107,104,-10], [23,107,104,-2], [30,143,140,-12], [30,143,140,-2], [17,143,140,-14], [17,143,140], [20,143,140,-14], [20,143,140], - [20,143,140,-14], [20,143,140], [30,143,140,-7], [30,143,140,-7], [32,143,140,-7], [32,143,140,-5], [56,143,140,-3], [56,143,140,-3], - [32,178,175,-13], [31,178,175,-2], [18,178,175,-16], [19,178,175], [21,178,175,-16], [22,178,175], [21,178,175,-16], [22,178,175], - [31,178,175,-8], [31,178,175,-8], [34,178,175,-8], [34,178,175,-6], [69,178,175,-3], [69,178,175,-3], [42,107,104,-3], [42,107,104,-3], - [33,108,105,-17], [33,108,105,-2], [20,107,104,-19], [21,107,104], [20,107,104,-19], [21,107,104], [5,37,36,-19], [5,37,36,-16], - [21,54,54,-22], [20,54,54,-10], [21,54,53,-22], [20,54,53,-10], [20,108,107,-10], [21,108,107,-22], [8,20,19,-22], [3,37,36,-18], - [33,107,104,-17], [33,107,104,-2], [7,37,36,-17], [8,37,36,-27], [25,107,104,-6], [25,107,104,-5], [43,59,59,-3], [60,83,83,-3], - [33,66,66,-3], [53,132,132,-3], [60,59,59,-3], [83,83,83,-3], [60,59,59,-3], [83,83,83,-3], [60,59,59,-3], [83,83,83,-3], - [56,59,59,-3], [50,59,59,-3], [33,66,66,-3], [43,59,59,-3], [43,59,59,-3], [43,59,59,-3], [43,59,59,-3], [43,59,59,-3], - [79,83,83,-3], [69,83,83,-3], [53,132,132,-3], [60,83,83,-3], [60,83,83,-3], [60,83,83,-3], [60,83,83,-3], [60,83,83,-3], - [50,59,59,-3], [69,83,83,-3], [34,11,-33,1], [60,12,-34,1], [86,12,-34], [33,8,-35], [59,9,-36], [85,9,-36], - [14,107,104,-13], [14,107,104,-1], [17,107,104,-13], [17,107,104,-1], [17,107,104,-13], [17,107,104,-1], [26,107,104,-7], [26,107,104,-7], - [55,72,69,-6], [55,107,104,-6], [55,143,140,-6], [55,178,175,-6], [38,109,107,-6], [3,39,37,-41], [23,38,35,-41], [16,37,36,-15], - [27,36,36,-6], [27,36,36,-6], [30,21,13,2], [29,21,13,1], [30,20,0,2], [29,20,0,1], [40,36,36,-3], [40,35,35,-3], - [27,135,243,350,458,566,674,782,890,998,1106,1213,1321,1429,1537,1645], - [93,358,623,888,1153,1418,1683,1947], - [1762,2205] - ], - cmbx10: [ - [36,41,0,-2], [50,42,0,-3], [46,43,1,-3], [44,42,0,-2], [41,40,0,-2], [49,41,0,-2], [43,41,0,-3], [46,42,0,-3], - [43,41,0,-3], [46,41,0,-3], [43,42,0,-3], [43,42,0,-1], [35,42,0,-1], [35,42,0,-1], [54,42,0,-1], [54,42,0,-1], - [15,27,0,-2], [20,39,12,4], [13,12,-30,-7], [13,12,-30,-14], [18,9,-30,-8], [22,12,-29,-6], [26,4,-32,-4], [15,11,-31,-18], - [19,12,12,-7], [32,43,1,-2], [46,28,1,-2], [50,28,1,-1], [31,40,7,-1], [58,41,0,-2], [63,43,1,-4], [46,48,4,-3], - [18,8,-16,-1], [10,42,0,-5], [26,21,-20,-2], [50,53,12,-3], [28,49,4,-3], [50,49,4,-3], [48,43,1,-2], [11,21,-20,-4], - [17,60,15,-6], [17,60,15,-3], [26,27,-18,-4], [46,46,8,-3], [11,22,12,-4], [19,6,-10], [10,10,0,-4], [28,60,15,-3], - [30,40,1,-2], [25,39,0,-5], [28,39,0,-3], [29,40,1,-2], [31,39,0,-1], [28,40,1,-3], [29,40,1,-2], [30,41,1,-3], - [29,40,1,-2], [29,40,1,-2], [10,27,0,-4], [11,39,12,-4], [10,43,13,-5], [46,18,-6,-3], [26,42,12,-3], [26,42,0,-3], - [46,43,1,-3], [47,42,0,-2], [43,41,0,-2], [43,43,1,-3], [47,41,0,-2], [41,41,0,-2], [38,41,0,-2], [47,43,1,-3], - [49,41,0,-2], [22,41,0,-2], [31,42,1,-1], [49,41,0,-2], [36,41,0,-2], [60,41,0,-2], [49,41,0,-2], [45,43,1,-3], - [41,41,0,-2], [45,54,12,-3], [49,42,1,-2], [31,43,1,-3], [43,40,0,-2], [48,42,1,-2], [49,42,1,-1], [68,42,1,-1], - [48,41,0,-2], [50,41,0,-1], [35,41,0,-3], [11,60,15,-7], [26,21,-20,-8], [11,60,15,-1], [19,10,-31,-7], [10,10,-31,-4], - [11,21,-20,-3], [32,28,1,-1], [34,42,1,-2], [27,28,1,-2], [34,42,1,-2], [29,28,1,-1], [24,42,0,-2], [32,39,12,-1], - [35,41,0,-2], [15,41,0,-2], [20,53,12,4], [33,41,0,-2], [16,41,0,-2], [54,27,0,-2], [35,27,0,-2], [31,28,1,-1], - [34,39,12,-2], [34,39,12,-2], [24,27,0,-2], [23,28,1,-2], [22,39,1,-1], [35,28,1,-2], [34,28,1,-1], [47,28,1,-1], - [34,27,0,-1], [34,39,12,-1], [27,27,0,-1], [34,3,-15], [68,3,-15], [21,12,-30,-8], [23,7,-34,-5], [22,9,-32,-6], - [25,110,195,280,364,449,534,619,704,789,874,959,1043,1128,1213,1298], - [77,149,220,292,363,434,506,577], - [1390,625], - ], - cmti10: [ - [39,41,0,-3], [41,43,0,-4], [39,44,2,-8], [35,43,0,-3], [41,40,0,-4], [48,41,0,-3], [43,41,0,-4], [38,42,0,-12], - [34,41,0,-9], [37,41,0,-12], [40,42,0,-5], [47,55,13,2], [38,55,13,2], [40,55,13,2], [56,55,13,2], [58,55,13,2], - [15,28,1,-5], [21,39,13,2], [9,12,-29,-17], [13,12,-29,-20], [16,9,-29,-16], [18,11,-30,-16], [21,2,-33,-13], [12,12,-31,-28], - [14,12,12,-6], [37,55,13,2], [38,28,1,-5], [37,28,1,-6], [29,39,7,-4], [53,41,0,-3], [53,44,2,-9], [42,48,4,-7], - [16,8,-16,-5], [17,43,0,-6], [21,18,-23,-10], [43,53,12,-6], [37,43,1,-5], [42,49,4,-8], [41,45,2,-7], [9,18,-23,-13], - [22,60,15,-9], [22,60,15,-1], [24,27,-18,-11], [37,37,4,-8], [10,19,12,-4], [15,4,-11,-5], [7,7,0,-6], [36,60,15,-1], - [27,42,2,-6], [21,40,0,-7], [28,42,2,-5], [29,42,2,-5], [26,52,12,-2], [28,42,2,-6], [27,42,2,-7], [29,42,2,-8], - [28,42,2,-5], [27,42,2,-6], [12,26,0,-6], [14,38,12,-4], [16,43,13,-3], [40,15,-7,-6], [21,43,13,-5], [22,43,0,-11], - [39,43,1,-8], [38,43,0,-3], [41,41,0,-3], [40,44,2,-8], [43,41,0,-3], [41,41,0,-3], [41,41,0,-3], [40,44,2,-8], - [48,41,0,-3], [27,41,0,-3], [32,43,2,-5], [48,41,0,-3], [34,41,0,-3], [56,41,0,-4], [48,41,0,-3], [39,44,2,-8], - [40,41,0,-3], [39,54,12,-8], [40,43,2,-3], [34,44,2,-4], [38,40,0,-10], [40,43,2,-11], [40,43,2,-12], [54,43,2,-12], - [57,41,0,8], [40,41,0,-12], [38,41,0,-4], [23,60,15,-4], [20,18,-23,-16], [23,60,15,996], [16,10,-31,-15], [7,7,-33,-15], - [10,18,-23,-12], [26,27,1,-6], [21,42,1,-6], [22,28,1,-6], [27,42,1,-6], [22,28,1,-6], [29,54,12,2], [26,39,13,-3], - [28,42,1,-4], [15,40,1,-5], [23,52,13,2], [26,42,1,-4], [13,42,1,-5], [45,28,1,-5], [30,28,1,-5], [24,28,1,-6], - [31,38,12], [24,38,12,-6], [24,28,1,-5], [21,28,1,-4], [17,38,1,-5], [28,28,1,-5], [25,28,1,-5], [37,28,1,-5], - [28,28,1,-3], [26,40,13,-5], [25,28,1,-3], [28,2,-15,-5], [55,2,-15,-7], [18,11,-30,-16], [20,7,-33,-14], [17,7,-33,-16], - [24,97,170,243,316,389,462,535,608,681,754,827,900,973,1046,1119], - [77,149,220,292,363,434,506,577], - [1198,625] - ] -}); - diff --git a/sagenb/data/jsmath/uncompressed/jsMath-fallback-mac.js b/sagenb/data/jsmath/uncompressed/jsMath-fallback-mac.js deleted file mode 100644 index 5bbc2998b..000000000 --- a/sagenb/data/jsmath/uncompressed/jsMath-fallback-mac.js +++ /dev/null @@ -1,1016 +0,0 @@ -/* - * jsMath-fallback-mac.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed for when the TeX fonts are not available - * with a browser on the Mac. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - - -/******************************************************************** - * - * Here we replace the TeX character mappings by equivalent unicode - * points when possible, and adjust the character dimensions - * based on the fonts we hope we get them from (the styles are set - * to try to use the best characters available in the standard - * fonts). - */ - -jsMath.Add(jsMath.TeX,{ - - cmr10: [ - // 00 - 0F - {c: 'Γ', tclass: 'greek'}, - {c: 'Δ', tclass: 'greek'}, - {c: 'Θ', tclass: 'greek'}, - {c: 'Λ', tclass: 'greek'}, - {c: 'Ξ', tclass: 'greek'}, - {c: 'Π', tclass: 'greek'}, - {c: 'Σ', tclass: 'greek'}, - {c: 'Υ', tclass: 'greek'}, - {c: 'Φ', tclass: 'greek'}, - {c: 'Ψ', tclass: 'greek'}, - {c: 'Ω', tclass: 'greek'}, - {c: 'ff', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 14, '108': 15}, tclass: 'normal'}, - {c: 'fi', tclass: 'normal'}, - {c: 'fl', tclass: 'normal'}, - {c: 'ffi', tclass: 'normal'}, - {c: 'ffl', tclass: 'normal'}, - // 10 - 1F - {c: 'ı', a:0, tclass: 'normal'}, - {c: 'j', d:.2, tclass: 'normal'}, - {c: '`', tclass: 'accent'}, - {c: '´', tclass: 'accent'}, - {c: 'ˇ', tclass: 'accent'}, - {c: '˘', tclass: 'accent'}, - {c: 'ˉ', tclass: 'accent'}, - {c: '˚', tclass: 'accent'}, - {c: '̧', tclass: 'normal'}, - {c: 'ß', tclass: 'normal'}, - {c: 'æ', a:0, tclass: 'normal'}, - {c: 'œ', a:0, tclass: 'normal'}, - {c: 'ø', tclass: 'normal'}, - {c: 'Æ', tclass: 'normal'}, - {c: 'Œ', tclass: 'normal'}, - {c: 'Ø', tclass: 'normal'}, - // 20 - 2F - {c: '?', krn: {'108': -0.278, '76': -0.319}, tclass: 'normal'}, - {c: '!', lig: {'96': 60}, tclass: 'normal'}, - {c: '”', tclass: 'normal'}, - {c: '#', tclass: 'normal'}, - {c: '$', tclass: 'normal'}, - {c: '%', tclass: 'normal'}, - {c: '&', tclass: 'normal'}, - {c: '’', krn: {'63': 0.111, '33': 0.111}, lig: {'39': 34}, tclass: 'normal'}, - {c: '(', d:.2, tclass: 'normal'}, - {c: ')', d:.2, tclass: 'normal'}, - {c: '*', tclass: 'normal'}, - {c: '+', a:.1, tclass: 'normal'}, - {c: ',', a:-.3, d:.2, w: 0.278, tclass: 'normal'}, - {c: '-', a:0, lig: {'45': 123}, tclass: 'normal'}, - {c: '.', a:-.25, tclass: 'normal'}, - {c: '/', tclass: 'normal'}, - // 30 - 3F - {c: '0', tclass: 'normal'}, - {c: '1', tclass: 'normal'}, - {c: '2', tclass: 'normal'}, - {c: '3', tclass: 'normal'}, - {c: '4', tclass: 'normal'}, - {c: '5', tclass: 'normal'}, - {c: '6', tclass: 'normal'}, - {c: '7', tclass: 'normal'}, - {c: '8', tclass: 'normal'}, - {c: '9', tclass: 'normal'}, - {c: ':', tclass: 'normal'}, - {c: ';', tclass: 'normal'}, - {c: '¡', tclass: 'normal'}, - {c: '=', a:0, d:-.1, tclass: 'normal'}, - {c: '¿', tclass: 'normal'}, - {c: '?', lig: {'96': 62}, tclass: 'normal'}, - // 40 - 4F - {c: '@', tclass: 'normal'}, - {c: 'A', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'normal'}, - {c: 'B', tclass: 'normal'}, - {c: 'C', tclass: 'normal'}, - {c: 'D', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'normal'}, - {c: 'E', tclass: 'normal'}, - {c: 'F', krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'G', tclass: 'normal'}, - {c: 'H', tclass: 'normal'}, - {c: 'I', krn: {'73': 0.0278}, tclass: 'normal'}, - {c: 'J', tclass: 'normal'}, - {c: 'K', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'L', krn: {'84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'normal'}, - {c: 'M', tclass: 'normal'}, - {c: 'N', tclass: 'normal'}, - {c: 'O', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'normal'}, - // 50 - 5F - {c: 'P', krn: {'65': -0.0833, '111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'normal'}, - {c: 'Q', d:.1, tclass: 'normal'}, - {c: 'R', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'normal'}, - {c: 'S', tclass: 'normal'}, - {c: 'T', krn: {'121': -0.0278, '101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'normal'}, - {c: 'U', tclass: 'normal'}, - {c: 'V', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'W', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'X', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'Y', ic: 0.025, krn: {'101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'normal'}, - {c: 'Z', tclass: 'normal'}, - {c: '[', d:.1, tclass: 'normal'}, - {c: '“', tclass: 'normal'}, - {c: ']', d:.1, tclass: 'normal'}, - {c: 'ˆ', tclass: 'accent'}, - {c: '˙', tclass: 'accent'}, - // 60 - 6F - {c: '‘', lig: {'96': 92}, tclass: 'normal'}, - {c: 'a', a:0, krn: {'118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'b', krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'c', a:0, krn: {'104': -0.0278, '107': -0.0278}, tclass: 'normal'}, - {c: 'd', tclass: 'normal'}, - {c: 'e', a:0, tclass: 'normal'}, - {c: 'f', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 12, '102': 11, '108': 13}, tclass: 'normal'}, - {c: 'g', a:0, d:.2, ic: 0.0139, krn: {'106': 0.0278}, tclass: 'normal'}, - {c: 'h', krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'i', tclass: 'normal'}, - {c: 'j', d:.2, tclass: 'normal'}, - {c: 'k', krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'normal'}, - {c: 'l', tclass: 'normal'}, - {c: 'm', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'n', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'o', a:0, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - // 70 - 7F - {c: 'p', a:0, d:.2, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'q', a:0, d:.2, tclass: 'normal'}, - {c: 'r', a:0, tclass: 'normal'}, - {c: 's', a:0, tclass: 'normal'}, - {c: 't', krn: {'121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'u', a:0, krn: {'119': -0.0278}, tclass: 'normal'}, - {c: 'v', a:0, ic: 0.0139, krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'normal'}, - {c: 'w', a:0, ic: 0.0139, krn: {'101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'normal'}, - {c: 'x', a:0, tclass: 'normal'}, - {c: 'y', a:0, d:.2, ic: 0.0139, krn: {'111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'normal'}, - {c: 'z', a:0, tclass: 'normal'}, - {c: '–', a:.1, ic: 0.0278, lig: {'45': 124}, tclass: 'normal'}, - {c: '—', a:.1, ic: 0.0278, tclass: 'normal'}, - {c: '˝', tclass: 'accent'}, - {c: '˜', tclass: 'accent'}, - {c: '¨', tclass: 'accent'} - ], - - cmmi10: [ - // 00 - 0F - {c: 'Γ', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}, tclass: 'igreek'}, - {c: 'Δ', krn: {'127': 0.167}, tclass: 'igreek'}, - {c: 'Θ', ic: 0.0278, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Λ', krn: {'127': 0.167}, tclass: 'igreek'}, - {c: 'Ξ', ic: 0.0757, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Π', ic: 0.0812, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'igreek'}, - {c: 'Σ', ic: 0.0576, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Υ', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0556}, tclass: 'igreek'}, - {c: 'Φ', krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Ψ', ic: 0.11, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'igreek'}, - {c: 'Ω', ic: 0.0502, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'α', a:0, ic: 0.0037, krn: {'127': 0.0278}, tclass: 'greek'}, - {c: 'β', d:.2, ic: 0.0528, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'γ', a:0, d:.2, ic: 0.0556, tclass: 'greek'}, - {c: 'δ', ic: 0.0378, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'greek'}, - {c: 'ε', a:0, krn: {'127': 0.0556}, tclass: 'lucida'}, - // 10 - 1F - {c: 'ζ', d:.2, ic: 0.0738, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'η', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0556}, tclass: 'greek'}, - {c: 'θ', ic: 0.0278, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'ι', a:0, krn: {'127': 0.0556}, tclass: 'greek'}, - {c: 'κ', a:0, tclass: 'greek'}, - {c: 'λ', tclass: 'greek'}, - {c: 'μ', a:0, d:.2, krn: {'127': 0.0278}, tclass: 'greek'}, - {c: 'ν', a:0, ic: 0.0637, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0278}, tclass: 'greek'}, - {c: 'ξ', d:.2, ic: 0.046, krn: {'127': 0.111}, tclass: 'greek'}, - {c: 'π', a:0, ic: 0.0359, tclass: 'greek'}, - {c: 'ρ', a:0, d:.2, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'σ', a:0, ic: 0.0359, krn: {'59': -0.0556, '58': -0.0556}, tclass: 'greek'}, - {c: 'τ', a:0, ic: 0.113, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0278}, tclass: 'greek'}, - {c: 'υ', a:0, ic: 0.0359, krn: {'127': 0.0278}, tclass: 'greek'}, - {c: 'φ', a:.1, d:.2, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'χ', a:0, d:.2, krn: {'127': 0.0556}, tclass: 'greek'}, - // 20 - 2F - {c: 'ψ', a:.1, d:.2, ic: 0.0359, krn: {'127': 0.111}, tclass: 'greek'}, - {c: 'ω', a:0, ic: 0.0359, tclass: 'greek'}, - {c: 'ε', a:0, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'ϑ', krn: {'127': 0.0833}, tclass: 'normal'}, - {c: 'ϖ', a:0, ic: 0.0278, tclass: 'normal'}, - {c: 'ϱ', a:0, d:.2, krn: {'127': 0.0833}, tclass: 'normal'}, - {c: 'ς', a:0, d:.2, ic: 0.0799, krn: {'127': 0.0833}, tclass: 'normal'}, - {c: 'ϕ', a:.1, d:.2, krn: {'127': 0.0833}, tclass: 'normal'}, - {c: '↼', a:0, d:-.2, tclass: 'harpoon'}, - {c: '↽', a:0, d:-.1, tclass: 'harpoon'}, - {c: '⇀', a:0, d:-.2, tclass: 'harpoon'}, - {c: '⇁', a:0, d:-.1, tclass: 'harpoon'}, - {c: '˓', a:.1, tclass: 'lucida'}, - {c: '˒', a:.1, tclass: 'lucida'}, - {c: '', tclass: 'symbol'}, - {c: '', tclass: 'symbol'}, - // 30 - 3F - {c: '0', tclass: 'normal'}, - {c: '1', tclass: 'normal'}, - {c: '2', tclass: 'normal'}, - {c: '3', tclass: 'normal'}, - {c: '4', tclass: 'normal'}, - {c: '5', tclass: 'normal'}, - {c: '6', tclass: 'normal'}, - {c: '7', tclass: 'normal'}, - {c: '8', tclass: 'normal'}, - {c: '9', tclass: 'normal'}, - {c: '.', a:-.3, tclass: 'normal'}, - {c: ',', a:-.3, d:.2, tclass: 'normal'}, - {c: '<', a:.1, tclass: 'normal'}, - {c: '/', d:.1, krn: {'1': -0.0556, '65': -0.0556, '77': -0.0556, '78': -0.0556, '89': 0.0556, '90': -0.0556}, tclass: 'normal'}, - {c: '>', a:.1, tclass: 'normal'}, - {c: '', a:0, tclass: 'symbol'}, - // 40 - 4F - {c: '∂', ic: 0.0556, krn: {'127': 0.0833}, tclass: 'normal'}, - {c: 'A', krn: {'127': 0.139}, tclass: 'italic'}, - {c: 'B', ic: 0.0502, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'C', ic: 0.0715, krn: {'61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'D', ic: 0.0278, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'E', ic: 0.0576, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'F', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}, tclass: 'italic'}, - {c: 'G', krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'H', ic: 0.0812, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'italic'}, - {c: 'I', ic: 0.0785, krn: {'127': 0.111}, tclass: 'italic'}, - {c: 'J', ic: 0.0962, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.167}, tclass: 'italic'}, - {c: 'K', ic: 0.0715, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'italic'}, - {c: 'L', krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'M', ic: 0.109, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'N', ic: 0.109, krn: {'61': -0.0833, '61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'O', ic: 0.0278, krn: {'127': 0.0833}, tclass: 'italic'}, - // 50 - 5F - {c: 'P', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}, tclass: 'italic'}, - {c: 'Q', d:.2, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'R', ic: 0.00773, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'S', ic: 0.0576, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'T', ic: 0.139, krn: {'61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'U', ic: 0.109, krn: {'59': -0.111, '58': -0.111, '61': -0.0556, '127': 0.0278}, tclass: 'italic'}, - {c: 'V', ic: 0.222, krn: {'59': -0.167, '58': -0.167, '61': -0.111}, tclass: 'italic'}, - {c: 'W', ic: 0.139, krn: {'59': -0.167, '58': -0.167, '61': -0.111}, tclass: 'italic'}, - {c: 'X', ic: 0.0785, krn: {'61': -0.0833, '61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'Y', ic: 0.222, krn: {'59': -0.167, '58': -0.167, '61': -0.111}, tclass: 'italic'}, - {c: 'Z', ic: 0.0715, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: '♭', tclass: 'symbol2'}, - {c: '♮', tclass: 'symbol2'}, - {c: '♯', tclass: 'symbol2'}, - {c: '', a:0, d:-.1, tclass: 'normal'}, - {c: '', a:0, d:-.1, tclass: 'normal'}, - // 60 - 6F - {c: 'ℓ', krn: {'127': 0.111}, tclass: 'symbol'}, - {c: 'a', a:0, tclass: 'italic'}, - {c: 'b', tclass: 'italic'}, - {c: 'c', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'd', krn: {'89': 0.0556, '90': -0.0556, '106': -0.111, '102': -0.167, '127': 0.167}, tclass: 'italic'}, - {c: 'e', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'f', d:.2, ic: 0.108, krn: {'59': -0.0556, '58': -0.0556, '127': 0.167}, tclass: 'italic'}, - {c: 'g', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'h', krn: {'127': -0.0278}, tclass: 'italic'}, - {c: 'i', tclass: 'italic'}, - {c: 'j', d:.2, ic: 0.0572, krn: {'59': -0.0556, '58': -0.0556}, tclass: 'italic'}, - {c: 'k', ic: 0.0315, tclass: 'italic'}, - {c: 'l', ic: 0.0197, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'm', a:0, tclass: 'italic'}, - {c: 'n', a:0, tclass: 'italic'}, - {c: 'o', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - // 70 - 7F - {c: 'p', a:0, d:.2, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'q', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'r', a:0, ic: 0.0278, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'italic'}, - {c: 's', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 't', krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'u', a:0, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'v', a:0, ic: 0.0359, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'w', a:0, ic: 0.0269, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'x', a:0, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'y', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'z', a:0, ic: 0.044, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'ı', a:0, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'j', d:.2, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: '℘', a:0, d:.2, krn: {'127': 0.111}, tclass: 'normal'}, - {c: '', ic: 0.154, tclass: 'symbol'}, - {c: '̑', ic: 0.399, tclass: 'normal'} - ], - - cmsy10: [ - // 00 - 0F - {c: '−', a:.1, tclass: 'symbol'}, - {c: '·', a:0, d:-.2, tclass: 'symbol'}, - {c: '×', a:0, tclass: 'symbol'}, - {c: '*', a:0, tclass: 'symbol'}, - {c: '÷', a:0, tclass: 'symbol'}, - {c: '◊', tclass: 'lucida'}, - {c: '±', a:.1, tclass: 'symbol'}, - {c: '∓', tclass: 'symbol'}, - {c: '⊕', tclass: 'symbol'}, - {c: '⊖', tclass: 'symbol'}, - {c: '⊗', tclass: 'symbol'}, - {c: '⊘', tclass: 'symbol'}, - {c: '⊙', tclass: 'symbol3'}, - {c: '◯', tclass: 'symbol'}, - {c: '°', a:0, d:-.1, tclass: 'symbol'}, - {c: '•', a:0, d:-.2, tclass: 'symbol'}, - // 10 - 1F - {c: '≍', a:.1, tclass: 'symbol'}, - {c: '≡', a:.1, tclass: 'symbol'}, - {c: '⊆', tclass: 'symbol'}, - {c: '⊇', tclass: 'symbol'}, - {c: '≤', tclass: 'symbol'}, - {c: '≥', tclass: 'symbol'}, - {c: '≼', tclass: 'symbol'}, - {c: '≽', tclass: 'symbol'}, - {c: '~', a:0, d: -.2, tclass: 'normal'}, - {c: '≈', a:.1, d:-.1, tclass: 'symbol'}, - {c: '⊂', tclass: 'symbol'}, - {c: '⊃', tclass: 'symbol'}, - {c: '≪', tclass: 'symbol'}, - {c: '≫', tclass: 'symbol'}, - {c: '≺', tclass: 'symbol'}, - {c: '≻', tclass: 'symbol'}, - // 20 - 2F - {c: '←', a:0, d:-.15, tclass: 'arrow1'}, - {c: '→', a:0, d:-.15, tclass: 'arrow1'}, - {c: '↑', h:1, tclass: 'arrow1a'}, - {c: '↓', h:1, tclass: 'arrow1a'}, - {c: '↔', a:0, tclass: 'arrow1'}, - {c: '↗', h:1, tclass: 'arrows'}, - {c: '↘', h:1, tclass: 'arrows'}, - {c: '≃', a: .1, tclass: 'symbol'}, - {c: '⇐', a:.1, tclass: 'arrow2'}, - {c: '⇒', a:.1, tclass: 'arrow2'}, - {c: '⇑', h:.9, d:.1, tclass: 'arrow2a'}, - {c: '⇓', h:.9, d:.1, tclass: 'arrow2a'}, - {c: '⇔', a:.1, tclass: 'arrow2'}, - {c: '↖', h:1, tclass: 'arrows'}, - {c: '↙', h:1, tclass: 'arrows'}, - {c: '∝', a:.1, tclass: 'symbol'}, - // 30 - 3F - {c: '', a: 0, tclass: 'lucida'}, - {c: '∞', a:.1, tclass: 'symbol'}, - {c: '∈', tclass: 'symbol'}, - {c: '∋', tclass: 'symbol'}, - {c: '△', tclass: 'symbol'}, - {c: '▽', tclass: 'symbol'}, - {c: '/', tclass: 'symbol'}, - {c: '|', a:0, tclass: 'normal'}, - {c: '∀', tclass: 'symbol'}, - {c: '∃', tclass: 'symbol'}, - {c: '¬', a:0, d:-.1, tclass: 'symbol1'}, - {c: '∅', tclass: 'symbol'}, - {c: 'ℜ', tclass: 'symbol'}, - {c: 'ℑ', tclass: 'symbol'}, - {c: '⊤', tclass: 'symbol'}, - {c: '⊥', tclass: 'symbol'}, - // 40 - 4F - {c: 'ℵ', tclass: 'symbol'}, - {c: 'A', krn: {'48': 0.194}, tclass: 'cal'}, - {c: 'B', ic: 0.0304, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'C', ic: 0.0583, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'D', ic: 0.0278, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'E', ic: 0.0894, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'F', ic: 0.0993, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'G', d:.2, ic: 0.0593, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'H', ic: 0.00965, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'I', ic: 0.0738, krn: {'48': 0.0278}, tclass: 'cal'}, - {c: 'J', d:.2, ic: 0.185, krn: {'48': 0.167}, tclass: 'cal'}, - {c: 'K', ic: 0.0144, krn: {'48': 0.0556}, tclass: 'cal'}, - {c: 'L', krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'M', krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'N', ic: 0.147, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'O', ic: 0.0278, krn: {'48': 0.111}, tclass: 'cal'}, - // 50 - 5F - {c: 'P', ic: 0.0822, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'Q', d:.2, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'R', krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'S', ic: 0.075, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'T', ic: 0.254, krn: {'48': 0.0278}, tclass: 'cal'}, - {c: 'U', ic: 0.0993, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'V', ic: 0.0822, krn: {'48': 0.0278}, tclass: 'cal'}, - {c: 'W', ic: 0.0822, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'X', ic: 0.146, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'Y', ic: 0.0822, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'Z', ic: 0.0794, krn: {'48': 0.139}, tclass: 'cal'}, - {c: '⋃', tclass: 'symbol'}, - {c: '⋂', tclass: 'symbol'}, - {c: '⊎', tclass: 'symbol'}, - {c: '⋀', tclass: 'symbol'}, - {c: '⋁', tclass: 'symbol'}, - // 60 - 6F - {c: '⊢', tclass: 'symbol'}, - {c: '⊣', tclass: 'symbol2'}, - {c: '', a:.3, d:.2, tclass: 'normal'}, - {c: '', a:.3, d:.2, tclass: 'normal'}, - {c: '', a:.3, d:.2, tclass: 'normal'}, - {c: '', a:.3, d:.2, tclass: 'normal'}, - {c: '{', d:.2, tclass: 'normal'}, - {c: '}', d:.2, tclass: 'normal'}, - {c: '〈', a:.3, d:.2, tclass: 'normal'}, - {c: '〉', a:.3, d:.2, tclass: 'normal'}, - {c: '|', d:.1, tclass: 'vertical'}, - {c: '||', d:.1, tclass: 'vertical'}, - {c: '↕', h:1, d:.15, tclass: 'arrow1a'}, - {c: '⇕', a:.2, d:.1, tclass: 'arrows'}, - {c: '', a:.3, d:.1, tclass: 'lucida'}, - {c: '', tclass: 'symbol'}, - // 70 - 7F - {c: '', h:.04, d:.9, tclass: 'lucida'}, - {c: '∐', a:.4, tclass: 'symbol'}, - {c: '∇', tclass: 'symbol'}, - {c: '∫', h:1, d:.1, ic: 0.111, tclass: 'root'}, - {c: '⊔', tclass: 'symbol'}, - {c: '⊓', tclass: 'symbol'}, - {c: '⊑', tclass: 'symbol'}, - {c: '⊒', tclass: 'symbol'}, - {c: '§', d:.1, tclass: 'normal'}, - {c: '†', d:.1, tclass: 'normal'}, - {c: '‡', d:.1, tclass: 'normal'}, - {c: '¶', a:.3, d:.1, tclass: 'lucida'}, - {c: '♣', tclass: 'symbol'}, - {c: '♦', tclass: 'symbol'}, - {c: '♥', tclass: 'symbol'}, - {c: '♠', tclass: 'symbol'} - ], - - cmex10: [ - // 00 - 0F - {c: '(', h: 0.04, d: 1.16, n: 16, tclass: 'delim1'}, - {c: ')', h: 0.04, d: 1.16, n: 17, tclass: 'delim1'}, - {c: '[', h: 0.04, d: 1.16, n: 104, tclass: 'delim1'}, - {c: ']', h: 0.04, d: 1.16, n: 105, tclass: 'delim1'}, - {c: '', h: 0.04, d: 1.16, n: 106, tclass: 'delim1'}, - {c: '', h: 0.04, d: 1.16, n: 107, tclass: 'delim1'}, - {c: '', h: 0.04, d: 1.16, n: 108, tclass: 'delim1'}, - {c: '', h: 0.04, d: 1.16, n: 109, tclass: 'delim1'}, - {c: '{', h: 0.04, d: 1.16, n: 110, tclass: 'delim1'}, - {c: '}', h: 0.04, d: 1.16, n: 111, tclass: 'delim1'}, - {c: '〈', h: 0.04, d: 1.16, n: 68, tclass: 'delim1c'}, - {c: '〉', h: 0.04, d: 1.16, n: 69, tclass: 'delim1c'}, - {c: '|', h:.7, d:.15, delim: {rep: 12}, tclass: 'vertical1'}, - {c: '||', h:.7, d:.15, delim: {rep: 13}, tclass: 'vertical1'}, - {c: '∕', h: 0.04, d: 1.16, n: 46, tclass: 'delim1b'}, - {c: '∖', h: 0.04, d: 1.16, n: 47, tclass: 'delim1b'}, - // 10 - 1F - {c: '(', h: 0.04, d: 1.76, n: 18, tclass: 'delim2'}, - {c: ')', h: 0.04, d: 1.76, n: 19, tclass: 'delim2'}, - {c: '(', h: 0.04, d: 2.36, n: 32, tclass: 'delim3'}, - {c: ')', h: 0.04, d: 2.36, n: 33, tclass: 'delim3'}, - {c: '[', h: 0.04, d: 2.36, n: 34, tclass: 'delim3'}, - {c: ']', h: 0.04, d: 2.36, n: 35, tclass: 'delim3'}, - {c: '', h: 0.04, d: 2.36, n: 36, tclass: 'delim3'}, - {c: '', h: 0.04, d: 2.36, n: 37, tclass: 'delim3'}, - {c: '', h: 0.04, d: 2.36, n: 38, tclass: 'delim3'}, - {c: '', h: 0.04, d: 2.36, n: 39, tclass: 'delim3'}, - {c: '{', h: 0.04, d: 2.36, n: 40, tclass: 'delim3'}, - {c: '}', h: 0.04, d: 2.36, n: 41, tclass: 'delim3'}, - {c: '〈', h: 0.04, d: 2.36, n: 42, tclass: 'delim3c'}, - {c: '〉', h: 0.04, d: 2.36, n: 43, tclass: 'delim3c'}, - {c: '∕', h: 0.04, d: 2.36, n: 44, tclass: 'delim3b'}, - {c: '∖', h: 0.04, d: 2.36, n: 45, tclass: 'delim3b'}, - // 20 - 2F - {c: '(', h: 0.04, d: 2.96, n: 48, tclass: 'delim4'}, - {c: ')', h: 0.04, d: 2.96, n: 49, tclass: 'delim4'}, - {c: '[', h: 0.04, d: 2.96, n: 50, tclass: 'delim4'}, - {c: ']', h: 0.04, d: 2.96, n: 51, tclass: 'delim4'}, - {c: '', h: 0.04, d: 2.96, n: 52, tclass: 'delim4'}, - {c: '', h: 0.04, d: 2.96, n: 53, tclass: 'delim4'}, - {c: '', h: 0.04, d: 2.96, n: 54, tclass: 'delim4'}, - {c: '', h: 0.04, d: 2.96, n: 55, tclass: 'delim4'}, - {c: '{', h: 0.04, d: 2.96, n: 56, tclass: 'delim4'}, - {c: '}', h: 0.04, d: 2.96, n: 57, tclass: 'delim4'}, - {c: '〈', h: 0.04, d: 2.96, tclass: 'delim4c'}, - {c: '〉', h: 0.04, d: 2.96, tclass: 'delim4c'}, - {c: '∕', h: 0.04, d: 2.96, tclass: 'delim4b'}, - {c: '∖', h: 0.04, d: 2.96, tclass: 'delim4b'}, - {c: '∕', h: 0.04, d: 1.76, n: 30, tclass: 'delim2b'}, - {c: '∖', h: 0.04, d: 1.76, n: 31, tclass: 'delim2b'}, - // 30 - 3F - {c: '', h: .85, d: .2, delim: {top: 48, bot: 64, rep: 66}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {top: 49, bot: 65, rep: 67}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {top: 50, bot: 52, rep: 54}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {top: 51, bot: 53, rep: 55}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {bot: 52, rep: 54}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {bot: 53, rep: 55}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {top: 50, rep: 54}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {top: 51, rep: 55}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {top: 56, mid: 60, bot: 58, rep: 62}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {top: 57, mid: 61, bot: 59, rep: 62}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {top: 56, bot: 58, rep: 62}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {top: 57, bot: 59, rep: 62}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {rep: 63}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {rep: 119}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {rep: 62}, tclass: 'normal'}, - {c: '|', h: .7, d: .15, delim: {top: 120, bot: 121, rep: 63}, tclass: 'vertical2'}, - // 40 - 4F - {c: '', h: .85, d: .2, delim: {top: 56, bot: 59, rep: 62}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {top: 57, bot: 58, rep: 62}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {rep: 66}, tclass: 'normal'}, - {c: '', h: .85, d: .2, delim: {rep: 67}, tclass: 'normal'}, - {c: '〈', h: 0.04, d: 1.76, n: 28, tclass: 'delim2c'}, - {c: '〉', h: 0.04, d: 1.76, n: 29, tclass: 'delim2c'}, - {c: '⊔', h: 0, d: 1, n: 71, tclass: 'bigop1'}, - {c: '⊔', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '∮', h: 0, d: 1.11, ic: 0.095, n: 73, tclass: 'bigop1c'}, - {c: '∮', h: 0, d: 2.22, ic: 0.222, tclass: 'bigop2c'}, - {c: '⊙', h: 0, d: 1, n: 75, tclass: 'bigop1'}, - {c: '⊙', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '⊕', h: 0, d: 1, n: 77, tclass: 'bigop1'}, - {c: '⊕', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '⊗', h: 0, d: 1, n: 79, tclass: 'bigop1'}, - {c: '⊗', h: 0.1, d: 1.5, tclass: 'bigop2'}, - // 50 - 5F - {c: '∑', h: 0, d: 1, n: 88, tclass: 'bigop1a'}, - {c: '∏', h: 0, d: 1, n: 89, tclass: 'bigop1a'}, - {c: '∫', h: 0, d: 1.11, ic: 0.095, n: 90, tclass: 'bigop1c'}, - {c: '∪', h: 0, d: 1, n: 91, tclass: 'bigop1b'}, - {c: '∩', h: 0, d: 1, n: 92, tclass: 'bigop1b'}, - {c: '⊎', h: 0, d: 1, n: 93, tclass: 'bigop1b'}, - {c: '∧', h: 0, d: 1, n: 94, tclass: 'bigop1'}, - {c: '∨', h: 0, d: 1, n: 95, tclass: 'bigop1'}, - {c: '∑', h: 0.1, d: 1.6, tclass: 'bigop2a'}, - {c: '∏', h: 0.1, d: 1.5, tclass: 'bigop2a'}, - {c: '∫', h: 0, d: 2.22, ic: 0.222, tclass: 'bigop2c'}, - {c: '∪', h: 0.1, d: 1.5, tclass: 'bigop2b'}, - {c: '∩', h: 0.1, d: 1.5, tclass: 'bigop2b'}, - {c: '⊎', h: 0.1, d: 1.5, tclass: 'bigop2b'}, - {c: '∧', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '∨', h: 0.1, d: 1.5, tclass: 'bigop2'}, - // 60 - 6F - {c: '∐', h: 0, d: 1, n: 97, tclass: 'bigop1a'}, - {c: '∐', h: 0.1, d: 1.5, tclass: 'bigop2a'}, - {c: '︿', h: 0.722, w: .65, n: 99, tclass: 'wide1'}, - {c: '︿', h: 0.85, w: 1.1, n: 100, tclass: 'wide2'}, - {c: '︿', h: 0.99, w: 1.65, tclass: 'wide3'}, - {c: '⁓', h: 0.722, w: .75, n: 102, tclass: 'wide1a'}, - {c: '⁓', h: 0.8, w: 1.35, n: 103, tclass: 'wide2a'}, - {c: '⁓', h: 0.99, w: 2, tclass: 'wide3a'}, - {c: '[', h: 0.04, d: 1.76, n: 20, tclass: 'delim2'}, - {c: ']', h: 0.04, d: 1.76, n: 21, tclass: 'delim2'}, - {c: '', h: 0.04, d: 1.76, n: 22, tclass: 'delim2'}, - {c: '', h: 0.04, d: 1.76, n: 23, tclass: 'delim2'}, - {c: '', h: 0.04, d: 1.76, n: 24, tclass: 'delim2'}, - {c: '', h: 0.04, d: 1.76, n: 25, tclass: 'delim2'}, - {c: '{', h: 0.04, d: 1.76, n: 26, tclass: 'delim2'}, - {c: '}', h: 0.04, d: 1.76, n: 27, tclass: 'delim2'}, - // 70 - 7F - {c: '', h: 0.04, d: 1.16, n: 113, tclass: 'root'}, - {c: '', h: 0.04, d: 1.76, n: 114, tclass: 'root'}, - {c: '', h: 0.06, d: 2.36, n: 115, tclass: 'root'}, - {c: '', h: 0.08, d: 2.96, n: 116, tclass: 'root'}, - {c: '', h: 0.1, d: 3.75, n: 117, tclass: 'root'}, - {c: '', h: .12, d: 4.5, n: 118, tclass: 'root'}, - {c: '', h: .14, d: 5.7, tclass: 'root'}, - {c: '||', h:.65, d:.15, delim: {top: 126, bot: 127, rep: 119}, tclass: 'vertical2'}, - {c: '▵', h:.4, delim: {top: 120, rep: 63}, tclass: 'arrow1b'}, - {c: '▿', h:.38, delim: {bot: 121, rep: 63}, tclass: 'arrow1b'}, - {c: '', h:.1, tclass: 'symbol'}, - {c: '', h:.1, tclass: 'symbol'}, - {c: '', h:.1, tclass: 'symbol'}, - {c: '', h:.1, tclass: 'symbol'}, - {c: '▵', h:.5, delim: {top: 126, rep: 119}, tclass: 'arrow2b'}, - {c: '▿', h:.6, d:-.1, delim: {bot: 127, rep: 119}, tclass: 'arrow2b'} - ], - - cmti10: [ - // 00 - 0F - {c: 'Γ', ic: 0.133, tclass: 'igreek'}, - {c: 'Δ', tclass: 'igreek'}, - {c: 'Θ', ic: 0.094, tclass: 'igreek'}, - {c: 'Λ', tclass: 'igreek'}, - {c: 'Ξ', ic: 0.153, tclass: 'igreek'}, - {c: 'Π', ic: 0.164, tclass: 'igreek'}, - {c: 'Σ', ic: 0.12, tclass: 'igreek'}, - {c: 'Υ', ic: 0.111, tclass: 'igreek'}, - {c: 'Φ', ic: 0.0599, tclass: 'igreek'}, - {c: 'Ψ', ic: 0.111, tclass: 'igreek'}, - {c: 'Ω', ic: 0.103, tclass: 'igreek'}, - {c: 'ff', ic: 0.212, krn: {'39': 0.104, '63': 0.104, '33': 0.104, '41': 0.104, '93': 0.104}, lig: {'105': 14, '108': 15}, tclass: 'italic'}, - {c: 'fi', ic: 0.103, tclass: 'italic'}, - {c: 'fl', ic: 0.103, tclass: 'italic'}, - {c: 'ffi', ic: 0.103, tclass: 'italic'}, - {c: 'ffl', ic: 0.103, tclass: 'italic'}, - // 10 - 1F - {c: 'ı', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'j', d:.2, ic: 0.0374, tclass: 'italic'}, - {c: '`', tclass: 'iaccent'}, - {c: '´', ic: 0.0969, tclass: 'iaccent'}, - {c: 'ˇ', ic: 0.083, tclass: 'iaccent'}, - {c: '˘', ic: 0.108, tclass: 'iaccent'}, - {c: 'ˉ', ic: 0.103, tclass: 'iaccent'}, - {c: '˚', tclass: 'iaccent'}, - {c: '?', d: 0.17, w: 0.46, tclass: 'italic'}, - {c: 'ß', ic: 0.105, tclass: 'italic'}, - {c: 'æ', a:0, ic: 0.0751, tclass: 'italic'}, - {c: 'œ', a:0, ic: 0.0751, tclass: 'italic'}, - {c: 'ø', ic: 0.0919, tclass: 'italic'}, - {c: 'Æ', ic: 0.12, tclass: 'italic'}, - {c: 'Œ', ic: 0.12, tclass: 'italic'}, - {c: 'Ø', ic: 0.094, tclass: 'italic'}, - // 20 - 2F - {c: '?', krn: {'108': -0.256, '76': -0.321}, tclass: 'italic'}, - {c: '!', ic: 0.124, lig: {'96': 60}, tclass: 'italic'}, - {c: '”', ic: 0.0696, tclass: 'italic'}, - {c: '#', ic: 0.0662, tclass: 'italic'}, - {c: '$', tclass: 'italic'}, - {c: '%', ic: 0.136, tclass: 'italic'}, - {c: '&', ic: 0.0969, tclass: 'italic'}, - {c: '’', ic: 0.124, krn: {'63': 0.102, '33': 0.102}, lig: {'39': 34}, tclass: 'italic'}, - {c: '(', d:.2, ic: 0.162, tclass: 'italic'}, - {c: ')', d:.2, ic: 0.0369, tclass: 'italic'}, - {c: '*', ic: 0.149, tclass: 'italic'}, - {c: '+', a:.1, ic: 0.0369, tclass: 'italic'}, - {c: ',', a:-.3, d:.2, w: 0.278, tclass: 'italic'}, - {c: '-', a:0, ic: 0.0283, lig: {'45': 123}, tclass: 'italic'}, - {c: '.', a:-.25, tclass: 'italic'}, - {c: '/', ic: 0.162, tclass: 'italic'}, - // 30 - 3F - {c: '0', ic: 0.136, tclass: 'italic'}, - {c: '1', ic: 0.136, tclass: 'italic'}, - {c: '2', ic: 0.136, tclass: 'italic'}, - {c: '3', ic: 0.136, tclass: 'italic'}, - {c: '4', ic: 0.136, tclass: 'italic'}, - {c: '5', ic: 0.136, tclass: 'italic'}, - {c: '6', ic: 0.136, tclass: 'italic'}, - {c: '7', ic: 0.136, tclass: 'italic'}, - {c: '8', ic: 0.136, tclass: 'italic'}, - {c: '9', ic: 0.136, tclass: 'italic'}, - {c: ':', ic: 0.0582, tclass: 'italic'}, - {c: ';', ic: 0.0582, tclass: 'italic'}, - {c: '¡', ic: 0.0756, tclass: 'italic'}, - {c: '=', a:0, d:-.1, ic: 0.0662, tclass: 'italic'}, - {c: '¿', tclass: 'italic'}, - {c: '?', ic: 0.122, lig: {'96': 62}, tclass: 'italic'}, - // 40 - 4F - {c: '@', ic: 0.096, tclass: 'italic'}, - {c: 'A', krn: {'110': -0.0256, '108': -0.0256, '114': -0.0256, '117': -0.0256, '109': -0.0256, '116': -0.0256, '105': -0.0256, '67': -0.0256, '79': -0.0256, '71': -0.0256, '104': -0.0256, '98': -0.0256, '85': -0.0256, '107': -0.0256, '118': -0.0256, '119': -0.0256, '81': -0.0256, '84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'B', ic: 0.103, tclass: 'italic'}, - {c: 'C', ic: 0.145, tclass: 'italic'}, - {c: 'D', ic: 0.094, krn: {'88': -0.0256, '87': -0.0256, '65': -0.0256, '86': -0.0256, '89': -0.0256}, tclass: 'italic'}, - {c: 'E', ic: 0.12, tclass: 'italic'}, - {c: 'F', ic: 0.133, krn: {'111': -0.0767, '101': -0.0767, '117': -0.0767, '114': -0.0767, '97': -0.0767, '65': -0.102, '79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'G', ic: 0.0872, tclass: 'italic'}, - {c: 'H', ic: 0.164, tclass: 'italic'}, - {c: 'I', ic: 0.158, tclass: 'italic'}, - {c: 'J', ic: 0.14, tclass: 'italic'}, - {c: 'K', ic: 0.145, krn: {'79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'L', krn: {'84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'M', ic: 0.164, tclass: 'italic'}, - {c: 'N', ic: 0.164, tclass: 'italic'}, - {c: 'O', ic: 0.094, krn: {'88': -0.0256, '87': -0.0256, '65': -0.0256, '86': -0.0256, '89': -0.0256}, tclass: 'italic'}, - // 50 - 5F - {c: 'P', ic: 0.103, krn: {'65': -0.0767}, tclass: 'italic'}, - {c: 'Q', d:.1, ic: 0.094, tclass: 'italic'}, - {c: 'R', ic: 0.0387, krn: {'110': -0.0256, '108': -0.0256, '114': -0.0256, '117': -0.0256, '109': -0.0256, '116': -0.0256, '105': -0.0256, '67': -0.0256, '79': -0.0256, '71': -0.0256, '104': -0.0256, '98': -0.0256, '85': -0.0256, '107': -0.0256, '118': -0.0256, '119': -0.0256, '81': -0.0256, '84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'S', ic: 0.12, tclass: 'italic'}, - {c: 'T', ic: 0.133, krn: {'121': -0.0767, '101': -0.0767, '111': -0.0767, '114': -0.0767, '97': -0.0767, '117': -0.0767, '65': -0.0767}, tclass: 'italic'}, - {c: 'U', ic: 0.164, tclass: 'italic'}, - {c: 'V', ic: 0.184, krn: {'111': -0.0767, '101': -0.0767, '117': -0.0767, '114': -0.0767, '97': -0.0767, '65': -0.102, '79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'W', ic: 0.184, krn: {'65': -0.0767}, tclass: 'italic'}, - {c: 'X', ic: 0.158, krn: {'79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'Y', ic: 0.194, krn: {'101': -0.0767, '111': -0.0767, '114': -0.0767, '97': -0.0767, '117': -0.0767, '65': -0.0767}, tclass: 'italic'}, - {c: 'Z', ic: 0.145, tclass: 'italic'}, - {c: '[', d:.1, ic: 0.188, tclass: 'italic'}, - {c: '“', ic: 0.169, tclass: 'italic'}, - {c: ']', d:.1, ic: 0.105, tclass: 'italic'}, - {c: 'ˆ', ic: 0.0665, tclass: 'iaccent'}, - {c: '˙', ic: 0.118, tclass: 'iaccent'}, - // 60 - 6F - {c: '‘', ic: 0.124, lig: {'96': 92}, tclass: 'italic'}, - {c: 'a', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'b', ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'c', a:0, ic: 0.0565, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'd', ic: 0.103, krn: {'108': 0.0511}, tclass: 'italic'}, - {c: 'e', a:0, ic: 0.0751, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'f', ic: 0.212, krn: {'39': 0.104, '63': 0.104, '33': 0.104, '41': 0.104, '93': 0.104}, lig: {'105': 12, '102': 11, '108': 13}, tclass: 'italic'}, - {c: 'g', a:0, d:.2, ic: 0.0885, tclass: 'italic'}, - {c: 'h', ic: 0.0767, tclass: 'italic'}, - {c: 'i', ic: 0.102, tclass: 'italic'}, - {c: 'j', d:.2, ic: 0.145, tclass: 'italic'}, - {c: 'k', ic: 0.108, tclass: 'italic'}, - {c: 'l', ic: 0.103, krn: {'108': 0.0511}, tclass: 'italic'}, - {c: 'm', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'n', a:0, ic: 0.0767, krn: {'39': -0.102}, tclass: 'italic'}, - {c: 'o', a:0, ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - // 70 - 7F - {c: 'p', a:0, d:.2, ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'q', a:0, d:.2, ic: 0.0885, tclass: 'italic'}, - {c: 'r', a:0, ic: 0.108, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 's', a:0, ic: 0.0821, tclass: 'italic'}, - {c: 't', ic: 0.0949, tclass: 'italic'}, - {c: 'u', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'v', a:0, ic: 0.108, tclass: 'italic'}, - {c: 'w', a:0, ic: 0.108, krn: {'108': 0.0511}, tclass: 'italic'}, - {c: 'x', a:0, ic: 0.12, tclass: 'italic'}, - {c: 'y', a:0, d:.2, ic: 0.0885, tclass: 'italic'}, - {c: 'z', a:0, ic: 0.123, tclass: 'italic'}, - {c: '–', a:.1, ic: 0.0921, lig: {'45': 124}, tclass: 'italic'}, - {c: '—', a:.1, ic: 0.0921, tclass: 'italic'}, - {c: '˝', ic: 0.122, tclass: 'iaccent'}, - {c: '˜', ic: 0.116, tclass: 'iaccent'}, - {c: '¨', tclass: 'iaccent'} - ], - - cmbx10: [ - // 00 - 0F - {c: 'Γ', tclass: 'bgreek'}, - {c: 'Δ', tclass: 'bgreek'}, - {c: 'Θ', tclass: 'bgreek'}, - {c: 'Λ', tclass: 'bgreek'}, - {c: 'Ξ', tclass: 'bgreek'}, - {c: 'Π', tclass: 'bgreek'}, - {c: 'Σ', tclass: 'bgreek'}, - {c: 'Υ', tclass: 'bgreek'}, - {c: 'Φ', tclass: 'bgreek'}, - {c: 'Ψ', tclass: 'bgreek'}, - {c: 'Ω', tclass: 'bgreek'}, - {c: 'ff', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 14, '108': 15}, tclass: 'bold'}, - {c: 'fi', tclass: 'bold'}, - {c: 'fl', tclass: 'bold'}, - {c: 'ffi', tclass: 'bold'}, - {c: 'ffl', tclass: 'bold'}, - // 10 - 1F - {c: 'ı', a:0, tclass: 'bold'}, - {c: 'j', d:.2, tclass: 'bold'}, - {c: '`', tclass: 'baccent'}, - {c: '´', tclass: 'baccent'}, - {c: 'ˇ', tclass: 'baccent'}, - {c: '˘', tclass: 'baccent'}, - {c: 'ˉ', tclass: 'baccent'}, - {c: '˚', tclass: 'baccent'}, - {c: '?', tclass: 'bold'}, - {c: 'ß', tclass: 'bold'}, - {c: 'æ', a:0, tclass: 'bold'}, - {c: 'œ', a:0, tclass: 'bold'}, - {c: 'ø', tclass: 'bold'}, - {c: 'Æ', tclass: 'bold'}, - {c: 'Œ', tclass: 'bold'}, - {c: 'Ø', tclass: 'bold'}, - // 20 - 2F - {c: '?', krn: {'108': -0.278, '76': -0.319}, tclass: 'bold'}, - {c: '!', lig: {'96': 60}, tclass: 'bold'}, - {c: '”', tclass: 'bold'}, - {c: '#', tclass: 'bold'}, - {c: '$', tclass: 'bold'}, - {c: '%', tclass: 'bold'}, - {c: '&', tclass: 'bold'}, - {c: '’', krn: {'63': 0.111, '33': 0.111}, lig: {'39': 34}, tclass: 'bold'}, - {c: '(', d:.2, tclass: 'bold'}, - {c: ')', d:.2, tclass: 'bold'}, - {c: '*', tclass: 'bold'}, - {c: '+', a:.1, tclass: 'bold'}, - {c: ',', a:-.3, d:.2, w: 0.278, tclass: 'bold'}, - {c: '-', a:0, lig: {'45': 123}, tclass: 'bold'}, - {c: '.', a:-.25, tclass: 'bold'}, - {c: '/', tclass: 'bold'}, - // 30 - 3F - {c: '0', tclass: 'bold'}, - {c: '1', tclass: 'bold'}, - {c: '2', tclass: 'bold'}, - {c: '3', tclass: 'bold'}, - {c: '4', tclass: 'bold'}, - {c: '5', tclass: 'bold'}, - {c: '6', tclass: 'bold'}, - {c: '7', tclass: 'bold'}, - {c: '8', tclass: 'bold'}, - {c: '9', tclass: 'bold'}, - {c: ':', tclass: 'bold'}, - {c: ';', tclass: 'bold'}, - {c: '¡', tclass: 'bold'}, - {c: '=', a:0, d:-.1, tclass: 'bold'}, - {c: '¿', tclass: 'bold'}, - {c: '?', lig: {'96': 62}, tclass: 'bold'}, - // 40 - 4F - {c: '@', tclass: 'bold'}, - {c: 'A', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'bold'}, - {c: 'B', tclass: 'bold'}, - {c: 'C', tclass: 'bold'}, - {c: 'D', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'bold'}, - {c: 'E', tclass: 'bold'}, - {c: 'F', krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'G', tclass: 'bold'}, - {c: 'H', tclass: 'bold'}, - {c: 'I', krn: {'73': 0.0278}, tclass: 'bold'}, - {c: 'J', tclass: 'bold'}, - {c: 'K', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'L', krn: {'84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'bold'}, - {c: 'M', tclass: 'bold'}, - {c: 'N', tclass: 'bold'}, - {c: 'O', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'bold'}, - // 50 - 5F - {c: 'P', krn: {'65': -0.0833, '111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'bold'}, - {c: 'Q', d:.1, tclass: 'bold'}, - {c: 'R', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'bold'}, - {c: 'S', tclass: 'bold'}, - {c: 'T', krn: {'121': -0.0278, '101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'bold'}, - {c: 'U', tclass: 'bold'}, - {c: 'V', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'W', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'X', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'Y', ic: 0.025, krn: {'101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'bold'}, - {c: 'Z', tclass: 'bold'}, - {c: '[', d:.1, tclass: 'bold'}, - {c: '“', tclass: 'bold'}, - {c: ']', d:.1, tclass: 'bold'}, - {c: 'ˆ', tclass: 'baccent'}, - {c: '˙', tclass: 'baccent'}, - // 60 - 6F - {c: '‘', lig: {'96': 92}, tclass: 'bold'}, - {c: 'a', a:0, krn: {'118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'b', krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'c', a:0, krn: {'104': -0.0278, '107': -0.0278}, tclass: 'bold'}, - {c: 'd', tclass: 'bold'}, - {c: 'e', a:0, tclass: 'bold'}, - {c: 'f', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 12, '102': 11, '108': 13}, tclass: 'bold'}, - {c: 'g', a:0, d:.2, ic: 0.0139, krn: {'106': 0.0278}, tclass: 'bold'}, - {c: 'h', krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'i', tclass: 'bold'}, - {c: 'j', d:.2, tclass: 'bold'}, - {c: 'k', krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'bold'}, - {c: 'l', tclass: 'bold'}, - {c: 'm', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'n', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'o', a:0, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - // 70 - 7F - {c: 'p', a:0, d:.2, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'q', a:0, d:.2, tclass: 'bold'}, - {c: 'r', a:0, tclass: 'bold'}, - {c: 's', a:0, tclass: 'bold'}, - {c: 't', krn: {'121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'u', a:0, krn: {'119': -0.0278}, tclass: 'bold'}, - {c: 'v', a:0, ic: 0.0139, krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'bold'}, - {c: 'w', a:0, ic: 0.0139, krn: {'101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'bold'}, - {c: 'x', a:0, tclass: 'bold'}, - {c: 'y', a:0, d:.2, ic: 0.0139, krn: {'111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'bold'}, - {c: 'z', a:0, tclass: 'bold'}, - {c: '–', a:.1, ic: 0.0278, lig: {'45': 124}, tclass: 'bold'}, - {c: '—', a:.1, ic: 0.0278, tclass: 'bold'}, - {c: '˝', tclass: 'baccent'}, - {c: '˜', tclass: 'baccent'}, - {c: '¨', tclass: 'baccent'} - ] -}); - - -jsMath.Setup.Styles({ - '.typeset .cmr10': "font-family: serif", - '.typeset .italic': "font-style: italic", - '.typeset .bold': "font-weight: bold", - '.typeset .lucida': "font-family: 'Lucida Grande'", - '.typeset .asymbol': "font-family: 'Apple Symbols'; font-size: 115%", - '.typeset .cal': "font-family: 'Apple Chancery'", - '.typeset .arrows': "font-family: 'Hiragino Mincho Pro'", - '.typeset .arrow1': "font-family: 'Hiragino Mincho Pro'; position: relative; top: .075em; margin: -1px", - '.typeset .arrow1a': "font-family: 'Hiragino Mincho Pro'; margin:-.3em", - '.typeset .arrow1b': "font-family: AppleGothic; font-size: 50%", - '.typeset .arrow2': "font-family: Symbol; font-size: 140%; position: relative; top: .1em; margin:-1px", - '.typeset .arrow2a': "font-family: Symbol", - '.typeset .arrow2b': "font-family: AppleGothic; font-size: 67%", - '.typeset .harpoon': "font-family: AppleGothic; font-size: 90%", - '.typeset .symbol': "font-family: 'Hiragino Mincho Pro'", - '.typeset .symbol2': "font-family: 'Hiragino Mincho Pro'; margin:-.2em", - '.typeset .symbol3': "font-family: AppleGothic", - '.typeset .delim1': "font-family: Times; font-size: 133%; position:relative; top:.75em", - '.typeset .delim1b': "font-family: 'Hiragino Mincho Pro'; font-size: 133%; position:relative; top:.8em; margin: -.1em", - '.typeset .delim1c': "font-family: Symbol; font-size: 120%; position:relative; top:.8em;", - '.typeset .delim2': "font-family: Baskerville; font-size: 180%; position:relative; top:.75em", - '.typeset .delim2b': "font-family: 'Hiragino Mincho Pro'; font-size: 190%; position:relative; top:.8em; margin: -.1em", - '.typeset .delim2c': "font-family: Symbol; font-size: 167%; position:relative; top:.8em;", - '.typeset .delim3': "font-family: Baskerville; font-size: 250%; position:relative; top:.725em", - '.typeset .delim3b': "font-family: 'Hiragino Mincho Pro'; font-size: 250%; position:relative; top:.8em; margin: -.1em", - '.typeset .delim3c': "font-family: symbol; font-size: 240%; position:relative; top:.775em;", - '.typeset .delim4': "font-family: Baskerville; font-size: 325%; position:relative; top:.7em", - '.typeset .delim4b': "font-family: 'Hiragino Mincho Pro'; font-size: 325%; position:relative; top:.8em; margin: -.1em", - '.typeset .delim4c': "font-family: Symbol; font-size: 300%; position:relative; top:.8em;", - '.typeset .vertical': "font-family: Copperplate", - '.typeset .vertical1': "font-family: Copperplate; font-size: 85%; margin: .15em;", - '.typeset .vertical2': "font-family: Copperplate; font-size: 85%; margin: .17em;", - '.typeset .greek': "font-family: serif", - '.typeset .igreek': "font-family: serif; font-style:italic", - '.typeset .bgreek': "font-family: serif; font-weight:bold", - '.typeset .bigop1': "font-family: 'Hiragino Mincho Pro'; font-size: 133%; position: relative; top: .85em; margin:-.05em", - '.typeset .bigop1a': "font-family: Baskerville; font-size: 100%; position: relative; top: .775em;", - '.typeset .bigop1b': "font-family: 'Hiragino Mincho Pro'; font-size: 160%; position: relative; top: .7em; margin:-.1em", - '.typeset .bigop1c': "font-family: 'Apple Symbols'; font-size: 125%; position: relative; top: .75em; margin:-.1em;", - '.typeset .bigop2': "font-family: 'Hiragino Mincho Pro'; font-size: 200%; position: relative; top: .8em; margin:-.07em", - '.typeset .bigop2a': "font-family: Baskerville; font-size: 175%; position: relative; top: .7em;", - '.typeset .bigop2b': "font-family: 'Hiragino Mincho Pro'; font-size: 270%; position: relative; top: .62em; margin:-.1em", - '.typeset .bigop2c': "font-family: 'Apple Symbols'; font-size: 250%; position: relative; top: .7em; margin:-.17em;", - '.typeset .wide1': "font-size: 67%; position: relative; top:-.8em", - '.typeset .wide2': "font-size: 110%; position: relative; top:-.5em", - '.typeset .wide3': "font-size: 175%; position: relative; top:-.32em", - '.typeset .wide1a': "font-size: 75%; position: relative; top:-.5em", - '.typeset .wide2a': "font-size: 133%; position: relative; top: -.15em", - '.typeset .wide3a': "font-size: 200%; position: relative; top: -.05em", - '.typeset .root': "font-family: Baskerville;", - '.typeset .accent': "position: relative; top: .02em", - '.typeset .iaccent': "position: relative; top: .02em; font-style:italic", - '.typeset .baccent': "position: relative; top: .02em; font-weight:bold" -}); - -/* - * Check for ability to access Apple Symbols font - */ - -jsMath.noAppleSymbols = (jsMath.BBoxFor('∣').w == - jsMath.BBoxFor('').w); - -if (jsMath.noAppleSymbols) { - jsMath.Update.TeXfonts({ - cmsy10: { - '16': {c: '', tclass: 'normal'}, - '22': {c: '≺', tclass: 'normal'}, - '23': {c: '≻', tclass: 'normal'}, - '91': {c: '∪'}, - '92': {c: '∩'}, - '93': {c: '∪+'}, - '94': {c: '∧'}, - '95': {c: '∨'}, - '96': {c: '|', tclass: 'normal'}, - '109': {c: '⇑', h:.9, d:.2, tclass: 'arrow2a'} - }, - - cmex10: { - '85': {c: '∪+'}, - '93': {c: '∪+'} - } - }); - - jsMath.Macro('rightleftharpoons','\\unicode{x21CC}'); -} else { - jsMath.Setup.Styles({ - '.typeset .harpoon': "font-family: 'Apple Symbols'; font-size: 125%" - }); - -} - - -// -// Adjust for OmniWeb -// -if (jsMath.browser == 'OmniWeb') { - jsMath.Update.TeXfonts({ - cmsy10: { - '55': {c: '˫'}, - '104': {c: ''}, - '105': {c: ''} - } - }); - - jsMath.Setup.Styles({ - '.typeset .arrow2': 'font-family: Symbol; font-size: 100%; position: relative; top: -.1em; margin:-1px' - }); - - if (jsMath.noAppleSymbols) { - jsMath.Update.TeXfonts({ - cmsy10: { - '22': {c: '≺', tclass: 'normal'}, - '23': {c: '≻', tclass: 'normal'}, - '96': {c: '|', tclass: 'normal'} - } - }); - } - -} - -// -// Adjust for Opera -// -if (jsMath.browser == 'Opera') { - jsMath.Setup.Styles({ - '.typeset .bigop1c': "margin:0pt .12em 0pt 0pt;", - '.typeset .bigop2c': "margin:0pt .12em 0pt 0pt;" - }); -} - -if (jsMath.browser == 'Mozilla') {jsMath.Setup.Script('jsMath-fallback-mac-mozilla.js')} -if (jsMath.browser == 'MSIE') {jsMath.Setup.Script('jsMath-fallback-mac-msie.js')} - - -/* - * No access to TeX "not" character, so fake this - */ -jsMath.Macro('not','\\mathrel{\\rlap{\\kern 4mu/}}'); - -jsMath.Box.defaultH = 0.8; - diff --git a/sagenb/data/jsmath/uncompressed/jsMath-fallback-pc.js b/sagenb/data/jsmath/uncompressed/jsMath-fallback-pc.js deleted file mode 100644 index 49a93933c..000000000 --- a/sagenb/data/jsmath/uncompressed/jsMath-fallback-pc.js +++ /dev/null @@ -1,977 +0,0 @@ -/* - * jsMath-fallback-pc.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed for when the TeX fonts are not available - * with a browser on the PC. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - - -/******************************************************************** - * - * Here we replace the TeX character mappings by equivalent unicode - * points when possible, and adjust the character dimensions - * based on the fonts we hope we get them from (the styles are set - * to try to use the best characters available in the standard - * fonts). - */ - -jsMath.Add(jsMath.TeX,{ - - cmr10: [ - // 00 - 0F - {c: 'Γ', tclass: 'greek'}, - {c: 'Δ', tclass: 'greek'}, - {c: 'Θ', tclass: 'greek'}, - {c: 'Λ', tclass: 'greek'}, - {c: 'Ξ', tclass: 'greek'}, - {c: 'Π', tclass: 'greek'}, - {c: 'Σ', tclass: 'greek'}, - {c: 'Υ', tclass: 'greek'}, - {c: 'Φ', tclass: 'greek'}, - {c: 'Ψ', tclass: 'greek'}, - {c: 'Ω', tclass: 'greek'}, - {c: 'ff', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 14, '108': 15}, tclass: 'normal'}, - {c: 'fi', tclass: 'normal'}, - {c: 'fl', tclass: 'normal'}, - {c: 'ffi', tclass: 'normal'}, - {c: 'ffl', tclass: 'normal'}, - // 10 - 1F - {c: 'ı', a:0, tclass: 'normal'}, - {c: 'j', d:.2, tclass: 'normal'}, - {c: 'ˋ', tclass: 'accent'}, - {c: 'ˊ', tclass: 'accent'}, - {c: 'ˇ', tclass: 'accent'}, - {c: '˘', tclass: 'accent'}, - {c: 'ˉ', tclass: 'accent'}, - {c: '˚', tclass: 'accent'}, - {c: '̧', tclass: 'normal'}, - {c: 'ß', tclass: 'normal'}, - {c: 'æ', a:0, tclass: 'normal'}, - {c: 'œ', a:0, tclass: 'normal'}, - {c: 'ø', tclass: 'normal'}, - {c: 'Æ', tclass: 'normal'}, - {c: 'Œ', tclass: 'normal'}, - {c: 'Ø', tclass: 'normal'}, - // 20 - 2F - {c: '?', krn: {'108': -0.278, '76': -0.319}, tclass: 'normal'}, - {c: '!', lig: {'96': 60}, tclass: 'normal'}, - {c: '”', tclass: 'normal'}, - {c: '#', tclass: 'normal'}, - {c: '$', tclass: 'normal'}, - {c: '%', tclass: 'normal'}, - {c: '&', tclass: 'normal'}, - {c: '’', krn: {'63': 0.111, '33': 0.111}, lig: {'39': 34}, tclass: 'normal'}, - {c: '(', d:.2, tclass: 'normal'}, - {c: ')', d:.2, tclass: 'normal'}, - {c: '*', tclass: 'normal'}, - {c: '+', a:.1, tclass: 'normal'}, - {c: ',', a:-.3, d:.2, w: 0.278, tclass: 'normal'}, - {c: '-', a:0, lig: {'45': 123}, tclass: 'normal'}, - {c: '.', a:-.25, tclass: 'normal'}, - {c: '/', tclass: 'normal'}, - // 30 - 3F - {c: '0', tclass: 'normal'}, - {c: '1', tclass: 'normal'}, - {c: '2', tclass: 'normal'}, - {c: '3', tclass: 'normal'}, - {c: '4', tclass: 'normal'}, - {c: '5', tclass: 'normal'}, - {c: '6', tclass: 'normal'}, - {c: '7', tclass: 'normal'}, - {c: '8', tclass: 'normal'}, - {c: '9', tclass: 'normal'}, - {c: ':', tclass: 'normal'}, - {c: ';', tclass: 'normal'}, - {c: '¡', tclass: 'normal'}, - {c: '=', a:0, d:-.1, tclass: 'normal'}, - {c: '¿', tclass: 'normal'}, - {c: '?', lig: {'96': 62}, tclass: 'normal'}, - // 40 - 4F - {c: '@', tclass: 'normal'}, - {c: 'A', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'normal'}, - {c: 'B', tclass: 'normal'}, - {c: 'C', tclass: 'normal'}, - {c: 'D', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'normal'}, - {c: 'E', tclass: 'normal'}, - {c: 'F', krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'G', tclass: 'normal'}, - {c: 'H', tclass: 'normal'}, - {c: 'I', krn: {'73': 0.0278}, tclass: 'normal'}, - {c: 'J', tclass: 'normal'}, - {c: 'K', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'L', krn: {'84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'normal'}, - {c: 'M', tclass: 'normal'}, - {c: 'N', tclass: 'normal'}, - {c: 'O', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'normal'}, - // 50 - 5F - {c: 'P', krn: {'65': -0.0833, '111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'normal'}, - {c: 'Q', d:.2, tclass: 'normal'}, - {c: 'R', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'normal'}, - {c: 'S', tclass: 'normal'}, - {c: 'T', krn: {'121': -0.0278, '101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'normal'}, - {c: 'U', tclass: 'normal'}, - {c: 'V', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'W', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'X', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'Y', ic: 0.025, krn: {'101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'normal'}, - {c: 'Z', tclass: 'normal'}, - {c: '[', d:.1, tclass: 'normal'}, - {c: '“', tclass: 'normal'}, - {c: ']', d:.1, tclass: 'normal'}, - {c: 'ˆ', tclass: 'accent'}, - {c: '˙', tclass: 'accent'}, - // 60 - 6F - {c: '‘', lig: {'96': 92}, tclass: 'normal'}, - {c: 'a', a:0, krn: {'118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'b', krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'c', a:0, krn: {'104': -0.0278, '107': -0.0278}, tclass: 'normal'}, - {c: 'd', tclass: 'normal'}, - {c: 'e', a:0, tclass: 'normal'}, - {c: 'f', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 12, '102': 11, '108': 13}, tclass: 'normal'}, - {c: 'g', a:0, d:.2, ic: 0.0139, krn: {'106': 0.0278}, tclass: 'normal'}, - {c: 'h', krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'i', tclass: 'normal'}, - {c: 'j', d:.2, tclass: 'normal'}, - {c: 'k', krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'normal'}, - {c: 'l', tclass: 'normal'}, - {c: 'm', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'n', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'o', a:0, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - // 70 - 7F - {c: 'p', a:0, d:.2, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'q', a:0, d:.2, tclass: 'normal'}, - {c: 'r', a:0, tclass: 'normal'}, - {c: 's', a:0, tclass: 'normal'}, - {c: 't', krn: {'121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'u', a:0, krn: {'119': -0.0278}, tclass: 'normal'}, - {c: 'v', a:0, ic: 0.0139, krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'normal'}, - {c: 'w', a:0, ic: 0.0139, krn: {'101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'normal'}, - {c: 'x', a:0, tclass: 'normal'}, - {c: 'y', a:0, d:.2, ic: 0.0139, krn: {'111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'normal'}, - {c: 'z', a:0, tclass: 'normal'}, - {c: '–', a:.1, ic: 0.0278, lig: {'45': 124}, tclass: 'normal'}, - {c: '—', a:.1, ic: 0.0278, tclass: 'normal'}, - {c: '˝', tclass: 'accent'}, - {c: '˜', tclass: 'accent'}, - {c: '¨', tclass: 'accent'} - ], - - cmmi10: [ - // 00 - 0F - {c: 'Γ', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}, tclass: 'igreek'}, - {c: 'Δ', krn: {'127': 0.167}, tclass: 'igreek'}, - {c: 'Θ', ic: 0.0278, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Λ', krn: {'127': 0.167}, tclass: 'igreek'}, - {c: 'Ξ', ic: 0.0757, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Π', ic: 0.0812, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'igreek'}, - {c: 'Σ', ic: 0.0576, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Υ', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0556}, tclass: 'igreek'}, - {c: 'Φ', krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Ψ', ic: 0.11, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'igreek'}, - {c: 'Ω', ic: 0.0502, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'α', a:0, ic: 0.0037, krn: {'127': 0.0278}, tclass: 'greek'}, - {c: 'β', d:.2, ic: 0.0528, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'γ', a:0, d:.2, ic: 0.0556, tclass: 'greek'}, - {c: 'δ', ic: 0.0378, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'greek'}, - {c: 'ε', a:0, krn: {'127': 0.0556}, tclass: 'lucida'}, - // 10 - 1F - {c: 'ζ', d:.2, ic: 0.0738, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'η', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0556}, tclass: 'greek'}, - {c: 'θ', ic: 0.0278, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'ι', a:0, krn: {'127': 0.0556}, tclass: 'greek'}, - {c: 'κ', a:0, tclass: 'greek'}, - {c: 'λ', tclass: 'greek'}, - {c: 'μ', a:0, d:.2, krn: {'127': 0.0278}, tclass: 'greek'}, - {c: 'ν', a:0, ic: 0.0637, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0278}, tclass: 'greek'}, - {c: 'ξ', d:.2, ic: 0.046, krn: {'127': 0.111}, tclass: 'greek'}, - {c: 'π', a:0, ic: 0.0359, tclass: 'greek'}, - {c: 'ρ', a:0, d:.2, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'σ', a:0, ic: 0.0359, krn: {'59': -0.0556, '58': -0.0556}, tclass: 'greek'}, - {c: 'τ', a:0, ic: 0.113, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0278}, tclass: 'greek'}, - {c: 'υ', a:0, ic: 0.0359, krn: {'127': 0.0278}, tclass: 'greek'}, - {c: 'φ', a:.1, d:.2, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'χ', a:0, d:.2, krn: {'127': 0.0556}, tclass: 'greek'}, - // 20 - 2F - {c: 'ψ', a:.1, d:.2, ic: 0.0359, krn: {'127': 0.111}, tclass: 'greek'}, - {c: 'ω', a:0, ic: 0.0359, tclass: 'greek'}, - {c: 'ε', a:0, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'ϑ', krn: {'127': 0.0833}, tclass: 'lucida'}, - {c: 'ϖ', a:0, ic: 0.0278, tclass: 'lucida'}, - {c: 'ϱ', a:0, d:.2, krn: {'127': 0.0833}, tclass: 'lucida'}, - {c: 'ς', a:0, d:.2, ic: 0.0799, krn: {'127': 0.0833}, tclass: 'lucida'}, - {c: 'ϕ', a:.1, d:.2, krn: {'127': 0.0833}, tclass: 'lucida'}, - {c: '↼', a:0, d:-.2, tclass: 'arrows'}, - {c: '↽', a:0, d:-.1, tclass: 'arrows'}, - {c: '⇀', a:0, d:-.2, tclass: 'arrows'}, - {c: '⇁', a:0, d:-.1, tclass: 'arrows'}, - {c: '˓', a:.1, tclass: 'symbol'}, - {c: '˒', a:.1, tclass: 'symbol'}, - {c: '▹', tclass: 'symbol'}, - {c: '◃', tclass: 'symbol'}, - // 30 - 3F - {c: '0', tclass: 'normal'}, - {c: '1', tclass: 'normal'}, - {c: '2', tclass: 'normal'}, - {c: '3', tclass: 'normal'}, - {c: '4', tclass: 'normal'}, - {c: '5', tclass: 'normal'}, - {c: '6', tclass: 'normal'}, - {c: '7', tclass: 'normal'}, - {c: '8', tclass: 'normal'}, - {c: '9', tclass: 'normal'}, - {c: '.', a:-.3, tclass: 'normal'}, - {c: ',', a:-.3, d:.2, tclass: 'normal'}, - {c: '<', a:.1, tclass: 'normal'}, - {c: '/', d:.1, krn: {'1': -0.0556, '65': -0.0556, '77': -0.0556, '78': -0.0556, '89': 0.0556, '90': -0.0556}, tclass: 'normal'}, - {c: '>', a:.1, tclass: 'normal'}, - {c: '⋆', a:0, tclass: 'arial'}, - // 40 - 4F - {c: '∂', ic: 0.0556, krn: {'127': 0.0833}, tclass: 'normal'}, - {c: 'A', krn: {'127': 0.139}, tclass: 'italic'}, - {c: 'B', ic: 0.0502, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'C', ic: 0.0715, krn: {'61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'D', ic: 0.0278, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'E', ic: 0.0576, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'F', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}, tclass: 'italic'}, - {c: 'G', krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'H', ic: 0.0812, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'italic'}, - {c: 'I', ic: 0.0785, krn: {'127': 0.111}, tclass: 'italic'}, - {c: 'J', ic: 0.0962, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.167}, tclass: 'italic'}, - {c: 'K', ic: 0.0715, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'italic'}, - {c: 'L', krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'M', ic: 0.109, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'N', ic: 0.109, krn: {'61': -0.0833, '61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'O', ic: 0.0278, krn: {'127': 0.0833}, tclass: 'italic'}, - // 50 - 5F - {c: 'P', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}, tclass: 'italic'}, - {c: 'Q', d:.2, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'R', ic: 0.00773, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'S', ic: 0.0576, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'T', ic: 0.139, krn: {'61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'U', ic: 0.109, krn: {'59': -0.111, '58': -0.111, '61': -0.0556, '127': 0.0278}, tclass: 'italic'}, - {c: 'V', ic: 0.222, krn: {'59': -0.167, '58': -0.167, '61': -0.111}, tclass: 'italic'}, - {c: 'W', ic: 0.139, krn: {'59': -0.167, '58': -0.167, '61': -0.111}, tclass: 'italic'}, - {c: 'X', ic: 0.0785, krn: {'61': -0.0833, '61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'Y', ic: 0.222, krn: {'59': -0.167, '58': -0.167, '61': -0.111}, tclass: 'italic'}, - {c: 'Z', ic: 0.0715, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: '♭', tclass: 'symbol'}, - {c: '♮', tclass: 'symbol'}, - {c: '♯', tclass: 'symbol'}, - {c: '', a:0, d:-.1, tclass: 'arial'}, - {c: '', a:0, d:-.1, tclass: 'arial'}, - // 60 - 6F - {c: 'ℓ', krn: {'127': 0.111}, tclass: 'italic'}, - {c: 'a', a:0, tclass: 'italic'}, - {c: 'b', tclass: 'italic'}, - {c: 'c', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'd', krn: {'89': 0.0556, '90': -0.0556, '106': -0.111, '102': -0.167, '127': 0.167}, tclass: 'italic'}, - {c: 'e', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'f', d:.2, ic: 0.108, krn: {'59': -0.0556, '58': -0.0556, '127': 0.167}, tclass: 'italic'}, - {c: 'g', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'h', krn: {'127': -0.0278}, tclass: 'italic'}, - {c: 'i', tclass: 'italic'}, - {c: 'j', d:.2, ic: 0.0572, krn: {'59': -0.0556, '58': -0.0556}, tclass: 'italic'}, - {c: 'k', ic: 0.0315, tclass: 'italic'}, - {c: 'l', ic: 0.0197, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'm', a:0, tclass: 'italic'}, - {c: 'n', a:0, tclass: 'italic'}, - {c: 'o', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - // 70 - 7F - {c: 'p', a:0, d:.2, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'q', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'r', a:0, ic: 0.0278, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'italic'}, - {c: 's', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 't', krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'u', a:0, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'v', a:0, ic: 0.0359, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'w', a:0, ic: 0.0269, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'x', a:0, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'y', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'z', a:0, ic: 0.044, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'ı', a:0, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'j', d:.2, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: '℘', a:0, d:.2, krn: {'127': 0.111}, tclass: 'arial'}, - {c: '', ic: 0.154, tclass: 'symbol'}, - {c: '̑', ic: 0.399, tclass: 'normal'} - ], - - cmsy10: [ - // 00 - 0F - {c: '', a:.1, tclass: 'symbol'}, - {c: '·', a:0, d:-.2, tclass: 'normal'}, - {c: '×', a:0, tclass: 'normal'}, - {c: '*', a:0, tclass: 'normal'}, - {c: '÷', a:0, tclass: 'normal'}, - {c: '◊', tclass: 'symbol'}, - {c: '±', a:.1, tclass: 'normal'}, - {c: '∓', tclass: 'symbol'}, - {c: '⊕', tclass: 'symbol'}, - {c: '⊖', tclass: 'symbol'}, - {c: '⊗', tclass: 'symbol'}, - {c: '⊘', tclass: 'symbol'}, - {c: '⊙', tclass: 'symbol'}, - {c: '◯', tclass: 'arial'}, - {c: '∘', a:0, d:-.1, tclass: 'symbol2'}, - {c: '•', a:0, d:-.2, tclass: 'symbol'}, - // 10 - 1F - {c: '≍', a:.1, tclass: 'symbol2'}, - {c: '≡', a:.1, tclass: 'symbol2'}, - {c: '⊆', tclass: 'symbol'}, - {c: '⊇', tclass: 'symbol'}, - {c: '≤', tclass: 'symbol'}, - {c: '≥', tclass: 'symbol'}, - {c: '≼', tclass: 'symbol'}, - {c: '≽', tclass: 'symbol'}, - {c: '~', a:0, d: -.2, tclass: 'normal'}, - {c: '≈', a:.1, d:-.1, tclass: 'symbol'}, - {c: '⊂', tclass: 'symbol'}, - {c: '⊃', tclass: 'symbol'}, - {c: '≪', tclass: 'symbol'}, - {c: '≫', tclass: 'symbol'}, - {c: '≺', tclass: 'symbol'}, - {c: '≻', tclass: 'symbol'}, - // 20 - 2F - {c: '←', a:-.1, tclass: 'arrow1'}, - {c: '→', a:-.1, tclass: 'arrow1'}, - {c: '↑', a:.2, d:0, tclass: 'arrow1a'}, - {c: '↓', a:.2, d:0, tclass: 'arrow1a'}, - {c: '↔', a:-.1, tclass: 'arrow1'}, - {c: '↗', a:.1, tclass: 'arrows'}, - {c: '↘', a:.1, tclass: 'arrows'}, - {c: '≃', a: .1, tclass: 'symbol2'}, - {c: '⇐', a:-.1, tclass: 'arrow2'}, - {c: '⇒', a:-.1, tclass: 'arrow2'}, - {c: '⇑', a:.2, d:.1, tclass: 'arrow1a'}, - {c: '⇓', a:.2, d:.1, tclass: 'arrow1a'}, - {c: '⇔', a:-.1, tclass: 'arrow2'}, - {c: '↖', a:.1, tclass: 'arrows'}, - {c: '↙', a:.1, tclass: 'arrows'}, - {c: '∝', a:.1, tclass: 'normal'}, - // 30 - 3F - {c: '', a: 0, tclass: 'lucida'}, - {c: '∞', a:.1, tclass: 'symbol'}, - {c: '∈', tclass: 'symbol'}, - {c: '∋', tclass: 'symbol'}, - {c: '', tclass: 'symbol'}, - {c: '', tclass: 'symbol'}, - {c: '/', d:.2, tclass: 'normal'}, - {c: '', tclass: 'symbol'}, - {c: '∀', tclass: 'symbol'}, - {c: '∃', tclass: 'symbol'}, - {c: '¬', a:0, d:-.1, tclass: 'symbol'}, - {c: '∅', tclass: 'symbol'}, - {c: 'ℜ', tclass: 'symbol'}, - {c: 'ℑ', tclass: 'symbol'}, - {c: '⊤', tclass: 'symbol'}, - {c: '⊥', tclass: 'symbol'}, - // 40 - 4F - {c: 'ℵ', tclass: 'symbol'}, - {c: 'A', krn: {'48': 0.194}, tclass: 'cal'}, - {c: 'B', ic: 0.0304, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'C', ic: 0.0583, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'D', ic: 0.0278, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'E', ic: 0.0894, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'F', ic: 0.0993, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'G', d:.2, ic: 0.0593, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'H', ic: 0.00965, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'I', ic: 0.0738, krn: {'48': 0.0278}, tclass: 'cal'}, - {c: 'J', d:.2, ic: 0.185, krn: {'48': 0.167}, tclass: 'cal'}, - {c: 'K', ic: 0.0144, krn: {'48': 0.0556}, tclass: 'cal'}, - {c: 'L', krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'M', krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'N', ic: 0.147, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'O', ic: 0.0278, krn: {'48': 0.111}, tclass: 'cal'}, - // 50 - 5F - {c: 'P', ic: 0.0822, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'Q', d:.2, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'R', krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'S', ic: 0.075, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'T', ic: 0.254, krn: {'48': 0.0278}, tclass: 'cal'}, - {c: 'U', ic: 0.0993, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'V', ic: 0.0822, krn: {'48': 0.0278}, tclass: 'cal'}, - {c: 'W', ic: 0.0822, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'X', ic: 0.146, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'Y', ic: 0.0822, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'Z', ic: 0.0794, krn: {'48': 0.139}, tclass: 'cal'}, - {c: '⋃', tclass: 'symbol'}, - {c: '⋂', tclass: 'symbol'}, - {c: '⊎', tclass: 'symbol'}, - {c: '⋀', tclass: 'symbol'}, - {c: '⋁', tclass: 'symbol'}, - // 60 - 6F - {c: '⊢', tclass: 'symbol'}, - {c: '⊣', tclass: 'symbol'}, - {c: '⌊', a:.3, d:.2, tclass: 'arial'}, - {c: '⌋', a:.3, d:.2, tclass: 'arial'}, - {c: '⌈', a:.3, d:.2, tclass: 'arial'}, - {c: '⌉', a:.3, d:.2, tclass: 'arial'}, - {c: '{', d:.2, tclass: 'normal'}, - {c: '}', d:.2, tclass: 'normal'}, - {c: '〈', a:.3, d:.2, tclass: 'symbol'}, - {c: '〉', a:.3, d:.2, tclass: 'symbol'}, - {c: '∣', d:.1, tclass: 'symbol'}, - {c: '∥', d:.1, tclass: 'symbol'}, - {c: '↕', a:.2, d:0, tclass: 'arrow1a'}, - {c: '⇕', a:.3, d:0, tclass: 'arrow1a'}, - {c: '∖', a:.3, d:.1, tclass: 'symbol'}, - {c: '≀', tclass: 'symbol'}, - // 70 - 7F - {c: '', h:.04, d:.8, tclass: 'symbol'}, - {c: '∐', a:.4, tclass: 'symbol'}, - {c: '∇', tclass: 'symbol'}, - {c: '', a:.4, d:.1, ic: 0.111, tclass: 'lucida'}, - {c: '⊔', tclass: 'symbol'}, - {c: '⊓', tclass: 'symbol'}, - {c: '⊑', tclass: 'symbol'}, - {c: '⊒', tclass: 'symbol'}, - {c: '§', d:.1, tclass: 'normal'}, - {c: '†', d:.1, tclass: 'normal'}, - {c: '‡', d:.1, tclass: 'normal'}, - {c: '¶', a:.3, d:.1, tclass: 'lucida'}, - {c: '♣', tclass: 'arial'}, - {c: '♢', tclass: 'arial'}, - {c: '♡', tclass: 'arial'}, - {c: '♠', tclass: 'arial'} - ], - - cmex10: [ - // 00 - 0F - {c: '(', h: 0.04, d: 1.16, n: 16, tclass: 'delim1'}, - {c: ')', h: 0.04, d: 1.16, n: 17, tclass: 'delim1'}, - {c: '[', h: 0.04, d: 1.16, n: 104, tclass: 'delim1'}, - {c: ']', h: 0.04, d: 1.16, n: 105, tclass: 'delim1'}, - {c: '⌈', h: 0.04, d: 1.16, n: 106, tclass: 'delim1a'}, - {c: '⌉', h: 0.04, d: 1.16, n: 107, tclass: 'delim1a'}, - {c: '⌊', h: 0.04, d: 1.16, n: 108, tclass: 'delim1a'}, - {c: '⌋', h: 0.04, d: 1.16, n: 109, tclass: 'delim1a'}, - {c: '{', h: 0.04, d: 1.16, n: 110, tclass: 'delim1'}, - {c: '}', h: 0.04, d: 1.16, n: 111, tclass: 'delim1'}, - {c: '〈', h: 0.04, d: 1.16, n: 68, tclass: 'delim1b'}, - {c: '〉', h: 0.04, d: 1.16, n: 69, tclass: 'delim1b'}, - {c: '∣', h:.7, d:.1, delim: {rep: 12}, tclass: 'symbol'}, - {c: '∥', h:.7, d:.1, delim: {rep: 13}, tclass: 'symbol'}, - {c: '/', h: 0.04, d: 1.16, n: 46, tclass: 'delim1a'}, - {c: '∖', h: 0.04, d: 1.16, n: 47, tclass: 'delim1a'}, - // 10 - 1F - {c: '(', h: 0.04, d: 1.76, n: 18, tclass: 'delim2'}, - {c: ')', h: 0.04, d: 1.76, n: 19, tclass: 'delim2'}, - {c: '(', h: 0.04, d: 2.36, n: 32, tclass: 'delim3'}, - {c: ')', h: 0.04, d: 2.36, n: 33, tclass: 'delim3'}, - {c: '[', h: 0.04, d: 2.36, n: 34, tclass: 'delim3'}, - {c: ']', h: 0.04, d: 2.36, n: 35, tclass: 'delim3'}, - {c: '⌈', h: 0.04, d: 2.36, n: 36, tclass: 'delim3a'}, - {c: '⌉', h: 0.04, d: 2.36, n: 37, tclass: 'delim3a'}, - {c: '⌊', h: 0.04, d: 2.36, n: 38, tclass: 'delim3a'}, - {c: '⌋', h: 0.04, d: 2.36, n: 39, tclass: 'delim3a'}, - {c: '{', h: 0.04, d: 2.36, n: 40, tclass: 'delim3'}, - {c: '}', h: 0.04, d: 2.36, n: 41, tclass: 'delim3'}, - {c: '〈', h: 0.04, d: 2.36, n: 42, tclass: 'delim3b'}, - {c: '〉', h: 0.04, d: 2.36, n: 43, tclass: 'delim3b'}, - {c: '/', h: 0.04, d: 2.36, n: 44, tclass: 'delim3a'}, - {c: '∖', h: 0.04, d: 2.36, n: 45, tclass: 'delim3a'}, - // 20 - 2F - {c: '(', h: 0.04, d: 2.96, n: 48, tclass: 'delim4'}, - {c: ')', h: 0.04, d: 2.96, n: 49, tclass: 'delim4'}, - {c: '[', h: 0.04, d: 2.96, n: 50, tclass: 'delim4'}, - {c: ']', h: 0.04, d: 2.96, n: 51, tclass: 'delim4'}, - {c: '⌈', h: 0.04, d: 2.96, n: 52, tclass: 'delim4a'}, - {c: '⌉', h: 0.04, d: 2.96, n: 53, tclass: 'delim4a'}, - {c: '⌊', h: 0.04, d: 2.96, n: 54, tclass: 'delim4a'}, - {c: '⌋', h: 0.04, d: 2.96, n: 55, tclass: 'delim4a'}, - {c: '{', h: 0.04, d: 2.96, n: 56, tclass: 'delim4'}, - {c: '}', h: 0.04, d: 2.96, n: 57, tclass: 'delim4'}, - {c: '〈', h: 0.04, d: 2.96, tclass: 'delim4b'}, - {c: '〉', h: 0.04, d: 2.96, tclass: 'delim4b'}, - {c: '/', h: 0.04, d: 2.96, tclass: 'delim4a'}, - {c: '∖', h: 0.04, d: 2.96, tclass: 'delim4a'}, - {c: '/', h: 0.04, d: 1.76, n: 30, tclass: 'delim2a'}, - {c: '∖', h: 0.04, d: 1.76, n: 31, tclass: 'delim2a'}, - // 30 - 3F - {c: 'æ', h: .8, d: .2, delim: {top: 48, bot: 64, rep: 66}, tclass: 'delimx'}, - {c: 'ö', h: .8, d: .2, delim: {top: 49, bot: 65, rep: 67}, tclass: 'delimx'}, - {c: 'é', h: .8, d: .2, delim: {top: 50, bot: 52, rep: 54}, tclass: 'delimx'}, - {c: 'ù', h: .8, d: .2, delim: {top: 51, bot: 53, rep: 55}, tclass: 'delimx'}, - {c: 'ë', h: .8, d: .2, delim: {bot: 52, rep: 54}, tclass: 'delimx'}, - {c: 'û', h: .8, d: .2, delim: {bot: 53, rep: 55}, tclass: 'delimx'}, - {c: 'ê', h: .8, d: .2, delim: {top: 50, rep: 54}, tclass: 'delimx'}, - {c: 'ú', h: .8, d: .2, delim: {top: 51, rep: 55}, tclass: 'delimx'}, - {c: 'ì', h: .8, d: .2, delim: {top: 56, mid: 60, bot: 58, rep: 62}, tclass: 'delimx'}, - {c: 'ü', h: .8, d: .2, delim: {top: 57, mid: 61, bot: 59, rep: 62}, tclass: 'delimx'}, - {c: 'î', h: .8, d: .2, delim: {top: 56, bot: 58, rep: 62}, tclass: 'delimx'}, - {c: 'þ', h: .8, d: .2, delim: {top: 57, bot: 59, rep: 62}, tclass: 'delimx'}, - {c: 'í', h: .8, d: .2, delim: {rep: 63}, tclass: 'delimx'}, - {c: 'ý', h: .8, d: .2, delim: {rep: 119}, tclass: 'delimx'}, - {c: 'ï', h: .8, d: .2, delim: {rep: 62}, tclass: 'delimx'}, - {c: '|', h: .8, d: 0, delim: {top: 120, bot: 121, rep: 63}, tclass: 'normal'}, - // 40 - 4F - {c: 'è', h: .8, d: .2, delim: {top: 56, bot: 59, rep: 62}, tclass: 'delimx'}, - {c: 'ø', h: .8, d: .2, delim: {top: 57, bot: 58, rep: 62}, tclass: 'delimx'}, - {c: 'ç', h: .8, d: .2, delim: {rep: 66}, tclass: 'delimx'}, - {c: '÷', h: .8, d: .2, delim: {rep: 67}, tclass: 'delimx'}, - {c: '〈', h: 0.04, d: 1.76, n: 28, tclass: 'delim2b'}, - {c: '〉', h: 0.04, d: 1.76, n: 29, tclass: 'delim2b'}, - {c: '⊔', h: 0, d: 1, n: 71, tclass: 'bigop1'}, - {c: '⊔', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '∮', h: 0, d: 1.11, ic: 0.095, n: 73, tclass: 'bigop1c'}, - {c: '∮', h: 0, d: 2.22, ic: 0.222, tclass: 'bigop2c'}, - {c: '⊙', h: 0, d: 1, n: 75, tclass: 'bigop1'}, - {c: '⊙', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '⊕', h: 0, d: 1, n: 77, tclass: 'bigop1'}, - {c: '⊕', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '⊗', h: 0, d: 1, n: 79, tclass: 'bigop1'}, - {c: '⊗', h: 0.1, d: 1.5, tclass: 'bigop2'}, - // 50 - 5F - {c: '∑', h: 0, d: 1, n: 88, tclass: 'bigop1a'}, - {c: '∏', h: 0, d: 1, n: 89, tclass: 'bigop1a'}, - {c: '∫', h: 0, d: 1.11, ic: 0.095, n: 90, tclass: 'bigop1c'}, - {c: '∪', h: 0, d: 1, n: 91, tclass: 'bigop1b'}, - {c: '∩', h: 0, d: 1, n: 92, tclass: 'bigop1b'}, - {c: '⊎', h: 0, d: 1, n: 93, tclass: 'bigop1b'}, - {c: '⋀', h: 0, d: 1, n: 94, tclass: 'bigop1'}, - {c: '⋁', h: 0, d: 1, n: 95, tclass: 'bigop1'}, - {c: '∑', h: 0.1, d: 1.6, tclass: 'bigop2a'}, - {c: '∏', h: 0.1, d: 1.5, tclass: 'bigop2a'}, - {c: '∫', h: 0, d: 2.22, ic: 0.222, tclass: 'bigop2c'}, - {c: '∪', h: 0.1, d: 1.5, tclass: 'bigop2b'}, - {c: '∩', h: 0.1, d: 1.5, tclass: 'bigop2b'}, - {c: '⊎', h: 0.1, d: 1.5, tclass: 'bigop2b'}, - {c: '⋀', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '⋁', h: 0.1, d: 1.5, tclass: 'bigop2'}, - // 60 - 6F - {c: '∐', h: 0, d: 1, n: 97, tclass: 'bigop1a'}, - {c: '∐', h: 0.1, d: 1.5, tclass: 'bigop2a'}, - {c: '︿', h: 0.722, w: .65, n: 99, tclass: 'wide1'}, - {c: '︿', h: 0.85, w: 1.1, n: 100, tclass: 'wide2'}, - {c: '︿', h: 0.99, w: 1.65, tclass: 'wide3'}, - {c: '~', h: 0.722, w: .5, n: 102, tclass: 'wide1a'}, - {c: '~', h: 0.8, w: .8, n: 103, tclass: 'wide2a'}, - {c: '~', h: 0.99, w: 1.3, tclass: 'wide3a'}, - {c: '[', h: 0.04, d: 1.76, n: 20, tclass: 'delim2'}, - {c: ']', h: 0.04, d: 1.76, n: 21, tclass: 'delim2'}, - {c: '⌈', h: 0.04, d: 1.76, n: 22, tclass: 'delim2a'}, - {c: '⌉', h: 0.04, d: 1.76, n: 23, tclass: 'delim2a'}, - {c: '⌊', h: 0.04, d: 1.76, n: 24, tclass: 'delim2a'}, - {c: '⌋', h: 0.04, d: 1.76, n: 25, tclass: 'delim2a'}, - {c: '{', h: 0.04, d: 1.76, n: 26, tclass: 'delim2'}, - {c: '}', h: 0.04, d: 1.76, n: 27, tclass: 'delim2'}, - // 70 - 7F - {c: '', h: 0.04, d: 1.16, n: 113, tclass: 'root'}, - {c: '', h: 0.04, d: 1.76, n: 114, tclass: 'root'}, - {c: '', h: 0.06, d: 2.36, n: 115, tclass: 'root'}, - {c: '', h: 0.08, d: 2.96, n: 116, tclass: 'root'}, - {c: '', h: 0.1, d: 3.75, n: 117, tclass: 'root'}, - {c: '', h: .12, d: 4.5, n: 118, tclass: 'root'}, - {c: '', h: .14, d: 5.7, tclass: 'root'}, - {c: '||', h:.8, d:0, delim: {top: 126, bot: 127, rep: 119}, tclass: 'normal'}, - {c: '↑', h:.7, d:0, delim: {top: 120, rep: 63}, tclass: 'arrow1a'}, - {c: '↓', h:.65, d:0, delim: {bot: 121, rep: 63}, tclass: 'arrow1a'}, - {c: '', h: 0.05, tclass: 'symbol'}, - {c: '', h: 0.05, tclass: 'symbol'}, - {c: '', h: 0.05, tclass: 'symbol'}, - {c: '', h: 0.05, tclass: 'symbol'}, - {c: '⇑', h: .7, d:0, delim: {top: 126, rep: 119}, tclass: 'arrow1a'}, - {c: '⇓', h: .7, d:0, delim: {bot: 127, rep: 119}, tclass: 'arrow1a'} - ], - - cmti10: [ - // 00 - 0F - {c: 'Γ', ic: 0.133, tclass: 'igreek'}, - {c: 'Δ', tclass: 'igreek'}, - {c: 'Θ', ic: 0.094, tclass: 'igreek'}, - {c: 'Λ', tclass: 'igreek'}, - {c: 'Ξ', ic: 0.153, tclass: 'igreek'}, - {c: 'Π', ic: 0.164, tclass: 'igreek'}, - {c: 'Σ', ic: 0.12, tclass: 'igreek'}, - {c: 'Υ', ic: 0.111, tclass: 'igreek'}, - {c: 'Φ', ic: 0.0599, tclass: 'igreek'}, - {c: 'Ψ', ic: 0.111, tclass: 'igreek'}, - {c: 'Ω', ic: 0.103, tclass: 'igreek'}, - {c: 'ff', ic: 0.212, krn: {'39': 0.104, '63': 0.104, '33': 0.104, '41': 0.104, '93': 0.104}, lig: {'105': 14, '108': 15}, tclass: 'italic'}, - {c: 'fi', ic: 0.103, tclass: 'italic'}, - {c: 'fl', ic: 0.103, tclass: 'italic'}, - {c: 'ffi', ic: 0.103, tclass: 'italic'}, - {c: 'ffl', ic: 0.103, tclass: 'italic'}, - // 10 - 1F - {c: 'ı', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'j', d:.2, ic: 0.0374, tclass: 'italic'}, - {c: 'ˋ', tclass: 'iaccent'}, - {c: 'ˊ', ic: 0.0969, tclass: 'iaccent'}, - {c: 'ˇ', ic: 0.083, tclass: 'iaccent'}, - {c: '˘', ic: 0.108, tclass: 'iaccent'}, - {c: 'ˉ', ic: 0.103, tclass: 'iaccent'}, - {c: '˚', tclass: 'iaccent'}, - {c: '?', d: 0.17, w: 0.46, tclass: 'italic'}, - {c: 'ß', ic: 0.105, tclass: 'italic'}, - {c: 'æ', a:0, ic: 0.0751, tclass: 'italic'}, - {c: 'œ', a:0, ic: 0.0751, tclass: 'italic'}, - {c: 'ø', ic: 0.0919, tclass: 'italic'}, - {c: 'Æ', ic: 0.12, tclass: 'italic'}, - {c: 'Œ', ic: 0.12, tclass: 'italic'}, - {c: 'Ø', ic: 0.094, tclass: 'italic'}, - // 20 - 2F - {c: '?', krn: {'108': -0.256, '76': -0.321}, tclass: 'italic'}, - {c: '!', ic: 0.124, lig: {'96': 60}, tclass: 'italic'}, - {c: '”', ic: 0.0696, tclass: 'italic'}, - {c: '#', ic: 0.0662, tclass: 'italic'}, - {c: '$', tclass: 'italic'}, - {c: '%', ic: 0.136, tclass: 'italic'}, - {c: '&', ic: 0.0969, tclass: 'italic'}, - {c: '’', ic: 0.124, krn: {'63': 0.102, '33': 0.102}, lig: {'39': 34}, tclass: 'italic'}, - {c: '(', d:.2, ic: 0.162, tclass: 'italic'}, - {c: ')', d:.2, ic: 0.0369, tclass: 'italic'}, - {c: '*', ic: 0.149, tclass: 'italic'}, - {c: '+', a:.1, ic: 0.0369, tclass: 'italic'}, - {c: ',', a:-.3, d:.2, w: 0.278, tclass: 'italic'}, - {c: '-', a:0, ic: 0.0283, lig: {'45': 123}, tclass: 'italic'}, - {c: '.', a:-.25, tclass: 'italic'}, - {c: '/', ic: 0.162, tclass: 'italic'}, - // 30 - 3F - {c: '0', ic: 0.136, tclass: 'italic'}, - {c: '1', ic: 0.136, tclass: 'italic'}, - {c: '2', ic: 0.136, tclass: 'italic'}, - {c: '3', ic: 0.136, tclass: 'italic'}, - {c: '4', ic: 0.136, tclass: 'italic'}, - {c: '5', ic: 0.136, tclass: 'italic'}, - {c: '6', ic: 0.136, tclass: 'italic'}, - {c: '7', ic: 0.136, tclass: 'italic'}, - {c: '8', ic: 0.136, tclass: 'italic'}, - {c: '9', ic: 0.136, tclass: 'italic'}, - {c: ':', ic: 0.0582, tclass: 'italic'}, - {c: ';', ic: 0.0582, tclass: 'italic'}, - {c: '¡', ic: 0.0756, tclass: 'italic'}, - {c: '=', a:0, d:-.1, ic: 0.0662, tclass: 'italic'}, - {c: '¿', tclass: 'italic'}, - {c: '?', ic: 0.122, lig: {'96': 62}, tclass: 'italic'}, - // 40 - 4F - {c: '@', ic: 0.096, tclass: 'italic'}, - {c: 'A', krn: {'110': -0.0256, '108': -0.0256, '114': -0.0256, '117': -0.0256, '109': -0.0256, '116': -0.0256, '105': -0.0256, '67': -0.0256, '79': -0.0256, '71': -0.0256, '104': -0.0256, '98': -0.0256, '85': -0.0256, '107': -0.0256, '118': -0.0256, '119': -0.0256, '81': -0.0256, '84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'B', ic: 0.103, tclass: 'italic'}, - {c: 'C', ic: 0.145, tclass: 'italic'}, - {c: 'D', ic: 0.094, krn: {'88': -0.0256, '87': -0.0256, '65': -0.0256, '86': -0.0256, '89': -0.0256}, tclass: 'italic'}, - {c: 'E', ic: 0.12, tclass: 'italic'}, - {c: 'F', ic: 0.133, krn: {'111': -0.0767, '101': -0.0767, '117': -0.0767, '114': -0.0767, '97': -0.0767, '65': -0.102, '79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'G', ic: 0.0872, tclass: 'italic'}, - {c: 'H', ic: 0.164, tclass: 'italic'}, - {c: 'I', ic: 0.158, tclass: 'italic'}, - {c: 'J', ic: 0.14, tclass: 'italic'}, - {c: 'K', ic: 0.145, krn: {'79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'L', krn: {'84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'M', ic: 0.164, tclass: 'italic'}, - {c: 'N', ic: 0.164, tclass: 'italic'}, - {c: 'O', ic: 0.094, krn: {'88': -0.0256, '87': -0.0256, '65': -0.0256, '86': -0.0256, '89': -0.0256}, tclass: 'italic'}, - // 50 - 5F - {c: 'P', ic: 0.103, krn: {'65': -0.0767}, tclass: 'italic'}, - {c: 'Q', d:.2, ic: 0.094, tclass: 'italic'}, - {c: 'R', ic: 0.0387, krn: {'110': -0.0256, '108': -0.0256, '114': -0.0256, '117': -0.0256, '109': -0.0256, '116': -0.0256, '105': -0.0256, '67': -0.0256, '79': -0.0256, '71': -0.0256, '104': -0.0256, '98': -0.0256, '85': -0.0256, '107': -0.0256, '118': -0.0256, '119': -0.0256, '81': -0.0256, '84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'S', ic: 0.12, tclass: 'italic'}, - {c: 'T', ic: 0.133, krn: {'121': -0.0767, '101': -0.0767, '111': -0.0767, '114': -0.0767, '97': -0.0767, '117': -0.0767, '65': -0.0767}, tclass: 'italic'}, - {c: 'U', ic: 0.164, tclass: 'italic'}, - {c: 'V', ic: 0.184, krn: {'111': -0.0767, '101': -0.0767, '117': -0.0767, '114': -0.0767, '97': -0.0767, '65': -0.102, '79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'W', ic: 0.184, krn: {'65': -0.0767}, tclass: 'italic'}, - {c: 'X', ic: 0.158, krn: {'79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'Y', ic: 0.194, krn: {'101': -0.0767, '111': -0.0767, '114': -0.0767, '97': -0.0767, '117': -0.0767, '65': -0.0767}, tclass: 'italic'}, - {c: 'Z', ic: 0.145, tclass: 'italic'}, - {c: '[', d:.1, ic: 0.188, tclass: 'italic'}, - {c: '“', ic: 0.169, tclass: 'italic'}, - {c: ']', d:.1, ic: 0.105, tclass: 'italic'}, - {c: 'ˆ', ic: 0.0665, tclass: 'iaccent'}, - {c: '˙', ic: 0.118, tclass: 'iaccent'}, - // 60 - 6F - {c: '‘', ic: 0.124, lig: {'96': 92}, tclass: 'italic'}, - {c: 'a', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'b', ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'c', a:0, ic: 0.0565, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'd', ic: 0.103, krn: {'108': 0.0511}, tclass: 'italic'}, - {c: 'e', a:0, ic: 0.0751, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'f', ic: 0.212, krn: {'39': 0.104, '63': 0.104, '33': 0.104, '41': 0.104, '93': 0.104}, lig: {'105': 12, '102': 11, '108': 13}, tclass: 'italic'}, - {c: 'g', a:0, d:.2, ic: 0.0885, tclass: 'italic'}, - {c: 'h', ic: 0.0767, tclass: 'italic'}, - {c: 'i', ic: 0.102, tclass: 'italic'}, - {c: 'j', d:.2, ic: 0.145, tclass: 'italic'}, - {c: 'k', ic: 0.108, tclass: 'italic'}, - {c: 'l', ic: 0.103, krn: {'108': 0.0511}, tclass: 'italic'}, - {c: 'm', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'n', a:0, ic: 0.0767, krn: {'39': -0.102}, tclass: 'italic'}, - {c: 'o', a:0, ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - // 70 - 7F - {c: 'p', a:0, d:.2, ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'q', a:0, d:.2, ic: 0.0885, tclass: 'italic'}, - {c: 'r', a:0, ic: 0.108, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 's', a:0, ic: 0.0821, tclass: 'italic'}, - {c: 't', ic: 0.0949, tclass: 'italic'}, - {c: 'u', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'v', a:0, ic: 0.108, tclass: 'italic'}, - {c: 'w', a:0, ic: 0.108, krn: {'108': 0.0511}, tclass: 'italic'}, - {c: 'x', a:0, ic: 0.12, tclass: 'italic'}, - {c: 'y', a:0, d:.2, ic: 0.0885, tclass: 'italic'}, - {c: 'z', a:0, ic: 0.123, tclass: 'italic'}, - {c: '–', a:.1, ic: 0.0921, lig: {'45': 124}, tclass: 'italic'}, - {c: '—', a:.1, ic: 0.0921, tclass: 'italic'}, - {c: '˝', ic: 0.122, tclass: 'iaccent'}, - {c: '˜', ic: 0.116, tclass: 'iaccent'}, - {c: '¨', tclass: 'iaccent'} - ], - - cmbx10: [ - // 00 - 0F - {c: 'Γ', tclass: 'bgreek'}, - {c: 'Δ', tclass: 'bgreek'}, - {c: 'Θ', tclass: 'bgreek'}, - {c: 'Λ', tclass: 'bgreek'}, - {c: 'Ξ', tclass: 'bgreek'}, - {c: 'Π', tclass: 'bgreek'}, - {c: 'Σ', tclass: 'bgreek'}, - {c: 'Υ', tclass: 'bgreek'}, - {c: 'Φ', tclass: 'bgreek'}, - {c: 'Ψ', tclass: 'bgreek'}, - {c: 'Ω', tclass: 'bgreek'}, - {c: 'ff', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 14, '108': 15}, tclass: 'bold'}, - {c: 'fi', tclass: 'bold'}, - {c: 'fl', tclass: 'bold'}, - {c: 'ffi', tclass: 'bold'}, - {c: 'ffl', tclass: 'bold'}, - // 10 - 1F - {c: 'ı', a:0, tclass: 'bold'}, - {c: 'j', d:.2, tclass: 'bold'}, - {c: 'ˋ', tclass: 'baccent'}, - {c: 'ˊ', tclass: 'baccent'}, - {c: 'ˇ', tclass: 'baccent'}, - {c: '˘', tclass: 'baccent'}, - {c: 'ˉ', tclass: 'baccent'}, - {c: '˚', tclass: 'baccent'}, - {c: '?', tclass: 'bold'}, - {c: 'ß', tclass: 'bold'}, - {c: 'æ', a:0, tclass: 'bold'}, - {c: 'œ', a:0, tclass: 'bold'}, - {c: 'ø', tclass: 'bold'}, - {c: 'Æ', tclass: 'bold'}, - {c: 'Œ', tclass: 'bold'}, - {c: 'Ø', tclass: 'bold'}, - // 20 - 2F - {c: '?', krn: {'108': -0.278, '76': -0.319}, tclass: 'bold'}, - {c: '!', lig: {'96': 60}, tclass: 'bold'}, - {c: '”', tclass: 'bold'}, - {c: '#', tclass: 'bold'}, - {c: '$', tclass: 'bold'}, - {c: '%', tclass: 'bold'}, - {c: '&', tclass: 'bold'}, - {c: '’', krn: {'63': 0.111, '33': 0.111}, lig: {'39': 34}, tclass: 'bold'}, - {c: '(', d:.2, tclass: 'bold'}, - {c: ')', d:.2, tclass: 'bold'}, - {c: '*', tclass: 'bold'}, - {c: '+', a:.1, tclass: 'bold'}, - {c: ',', a:-.3, d:.2, w: 0.278, tclass: 'bold'}, - {c: '-', a:0, lig: {'45': 123}, tclass: 'bold'}, - {c: '.', a:-.25, tclass: 'bold'}, - {c: '/', tclass: 'bold'}, - // 30 - 3F - {c: '0', tclass: 'bold'}, - {c: '1', tclass: 'bold'}, - {c: '2', tclass: 'bold'}, - {c: '3', tclass: 'bold'}, - {c: '4', tclass: 'bold'}, - {c: '5', tclass: 'bold'}, - {c: '6', tclass: 'bold'}, - {c: '7', tclass: 'bold'}, - {c: '8', tclass: 'bold'}, - {c: '9', tclass: 'bold'}, - {c: ':', tclass: 'bold'}, - {c: ';', tclass: 'bold'}, - {c: '¡', tclass: 'bold'}, - {c: '=', a:0, d:-.1, tclass: 'bold'}, - {c: '¿', tclass: 'bold'}, - {c: '?', lig: {'96': 62}, tclass: 'bold'}, - // 40 - 4F - {c: '@', tclass: 'bold'}, - {c: 'A', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'bold'}, - {c: 'B', tclass: 'bold'}, - {c: 'C', tclass: 'bold'}, - {c: 'D', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'bold'}, - {c: 'E', tclass: 'bold'}, - {c: 'F', krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'G', tclass: 'bold'}, - {c: 'H', tclass: 'bold'}, - {c: 'I', krn: {'73': 0.0278}, tclass: 'bold'}, - {c: 'J', tclass: 'bold'}, - {c: 'K', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'L', krn: {'84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'bold'}, - {c: 'M', tclass: 'bold'}, - {c: 'N', tclass: 'bold'}, - {c: 'O', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'bold'}, - // 50 - 5F - {c: 'P', krn: {'65': -0.0833, '111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'bold'}, - {c: 'Q', d:.2, tclass: 'bold'}, - {c: 'R', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'bold'}, - {c: 'S', tclass: 'bold'}, - {c: 'T', krn: {'121': -0.0278, '101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'bold'}, - {c: 'U', tclass: 'bold'}, - {c: 'V', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'W', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'X', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'Y', ic: 0.025, krn: {'101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'bold'}, - {c: 'Z', tclass: 'bold'}, - {c: '[', d:.1, tclass: 'bold'}, - {c: '“', tclass: 'bold'}, - {c: ']', d:.1, tclass: 'bold'}, - {c: 'ˆ', tclass: 'baccent'}, - {c: '˙', tclass: 'baccent'}, - // 60 - 6F - {c: '‘', lig: {'96': 92}, tclass: 'bold'}, - {c: 'a', a:0, krn: {'118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'b', krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'c', a:0, krn: {'104': -0.0278, '107': -0.0278}, tclass: 'bold'}, - {c: 'd', tclass: 'bold'}, - {c: 'e', a:0, tclass: 'bold'}, - {c: 'f', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 12, '102': 11, '108': 13}, tclass: 'bold'}, - {c: 'g', a:0, d:.2, ic: 0.0139, krn: {'106': 0.0278}, tclass: 'bold'}, - {c: 'h', krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'i', tclass: 'bold'}, - {c: 'j', d:.2, tclass: 'bold'}, - {c: 'k', krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'bold'}, - {c: 'l', tclass: 'bold'}, - {c: 'm', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'n', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'o', a:0, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - // 70 - 7F - {c: 'p', a:0, d:.2, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'q', a:0, d:.2, tclass: 'bold'}, - {c: 'r', a:0, tclass: 'bold'}, - {c: 's', a:0, tclass: 'bold'}, - {c: 't', krn: {'121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'u', a:0, krn: {'119': -0.0278}, tclass: 'bold'}, - {c: 'v', a:0, ic: 0.0139, krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'bold'}, - {c: 'w', a:0, ic: 0.0139, krn: {'101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'bold'}, - {c: 'x', a:0, tclass: 'bold'}, - {c: 'y', a:0, d:.2, ic: 0.0139, krn: {'111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'bold'}, - {c: 'z', a:0, tclass: 'bold'}, - {c: '–', a:.1, ic: 0.0278, lig: {'45': 124}, tclass: 'bold'}, - {c: '—', a:.1, ic: 0.0278, tclass: 'bold'}, - {c: '˝', tclass: 'baccent'}, - {c: '˜', tclass: 'baccent'}, - {c: '¨', tclass: 'baccent'} - ] -}); - - -jsMath.Setup.Styles({ - '.typeset .cmr10': "font-family: serif", - '.typeset .italic': "font-style: italic", - '.typeset .bold': "font-weight: bold", - '.typeset .lucida': "font-family: 'lucida sans unicode'", - '.typeset .arial': "font-family: 'Arial unicode MS'", - '.typeset .cal': "font-family: 'Script MT', 'Script MT Bold', cursive", - '.typeset .arrows': "font-family: 'Arial unicode MS'", - '.typeset .arrow1': "font-family: 'Arial unicode MS'", - '.typeset .arrow1a': "font-family: 'Arial unicode MS'; position:relative; top:.05em;left:-.15em; margin-right:-.15em", - '.typeset .arrow2': "font-family: 'Arial unicode MS'; position:relative; top:-.1em;", - '.typeset .arrow3': "font-family: 'Arial unicode MS'; margin:.1em", - '.typeset .symbol': "font-family: 'Arial unicode MS'", - '.typeset .symbol2': "font-family: 'Arial unicode MS'", - '.typeset .delim1': "font-family: 'Times New Roman'; font-size: 133%; position:relative; top:.7em", - '.typeset .delim1a': "font-family: 'Lucida sans unicode'; font-size: 133%; position:relative; top:.8em", - '.typeset .delim1b': "font-family: 'Arial unicode MS'; font-size: 133%; position:relative; top:.8em", - '.typeset .delim2': "font-family: 'Times New Roman'; font-size: 180%; position:relative; top:.75em", - '.typeset .delim2a': "font-family: 'Lucida sans unicode'; font-size: 180%; position:relative; top:.8em", - '.typeset .delim2b': "font-family: 'Arial unicode MS'; font-size: 180%; position:relative; top:.8em", - '.typeset .delim3': "font-family: 'Times New Roman'; font-size: 250%; position:relative; top:.725em", - '.typeset .delim3a': "font-family: 'Lucida sans unicode'; font-size: 250%; position:relative; top:.775em", - '.typeset .delim3b': "font-family: 'Arial unicode MS'; font-size: 250%; position:relative; top:.8em", - '.typeset .delim4': "font-family: 'Times New Roman'; font-size: 325%; position:relative; top:.7em", - '.typeset .delim4a': "font-family: 'Lucida sans unicode'; font-size: 325%; position:relative; top:.775em", - '.typeset .delim4b': "font-family: 'Arial unicode MS'; font-size: 325%; position:relative; top:.8em", - '.typeset .delimx': "font-family: Symbol; position:relative; top:.2em", - '.typeset .greek': "font-family: 'Times New Roman'", - '.typeset .igreek': "font-family: 'Times New Roman'; font-style:italic", - '.typeset .bgreek': "font-family: 'Times New Roman'; font-weight:bold", - '.typeset .bigop1': "font-family: 'Arial unicode MS'; font-size: 130%; position: relative; top: .7em; margin:-.05em", - '.typeset .bigop1a': "font-family: 'Arial unicode MS'; font-size: 110%; position: relative; top: .85em;", - '.typeset .bigop1b': "font-family: 'Arial unicode MS'; font-size: 180%; position: relative; top: .6em", - '.typeset .bigop1c': "font-family: 'Arial unicode MS'; font-size: 85%; position: relative; top: 1em", - '.typeset .bigop2': "font-family: 'Arial unicode MS'; font-size: 230%; position: relative; top: .6em; margin:-.05em", - '.typeset .bigop2a': "font-family: 'Arial unicode MS'; font-size: 185%; position: relative; top: .75em", - '.typeset .bigop2b': "font-family: 'Arial unicode MS'; font-size: 275%; position: relative; top: .55em", - '.typeset .bigop2c': "font-family: 'Arial unicode MS'; font-size: 185%; position: relative; top: 1em; margin-right:-.1em", - '.typeset .wide1': "font-size: 67%; position: relative; top:-.5em;", - '.typeset .wide2': "font-size: 110%; position: relative; top:-.2em;", - '.typeset .wide3': "font-size: 175%;", - '.typeset .wide1a': "font-family: 'Times New Roman'; font-size: 75%; position: relative; top:-.5em", - '.typeset .wide2a': "font-family: 'Times New Roman'; font-size: 133%; position: relative; top:-.2em", - '.typeset .wide3a': "font-family: 'Times New Roman'; font-size: 200%; position: relative; top:-.1em", - '.typeset .root': "font-family: 'Arial unicode MS'; margin-right:-.075em", - '.typeset .accent': "font-family: 'Arial unicode MS'; position:relative; top:.05em; left:.15em", - '.typeset .iaccent': "font-family: 'Arial unicode MS'; position:relative; top:.05em; left:.15em; font-style:italic", - '.typeset .baccent': "font-family: 'Arial unicode MS'; position:relative; top:.05em; left:.15em; font-weight:bold" -}); - -// -// adjust for Mozilla -// -if (jsMath.browser == 'Mozilla') { - jsMath.Update.TeXfonts({ - cmex10: { - '48': {c: ''}, - '49': {c: ''}, - '50': {c: ''}, - '51': {c: ''}, - '52': {c: ''}, - '53': {c: ''}, - '54': {c: ''}, - '55': {c: ''}, - '56': {c: ''}, - '57': {c: ''}, - '58': {c: ''}, - '59': {c: ''}, - '60': {c: ''}, - '61': {c: ''}, - '62': {c: ''}, - '64': {c: ''}, - '65': {c: ''}, - '66': {c: ''}, - '67': {c: ''} - } - }); - jsMath.Setup.Styles({ - '.typeset .accent': 'font-family: Arial unicode MS; position:relative; top:.05em; left:.05em' - }); -} - -// -// adjust for MSIE -// -if (jsMath.browser == "MSIE") { - jsMath.Browser.msieFontBug = 1; - jsMath.Update.TeXfonts({ - cmex10: { - '63': {c: '|'}, - '119': {c: '||'} - } - }); -} - -/* - * No access to TeX "not" character, so fake this - * Also ajust the bowtie spacing - */ -jsMath.Macro('not','\\mathrel{\\rlap{\\kern 3mu/}}'); -jsMath.Macro('bowtie','\\mathrel\\triangleright\\kern-6mu\\mathrel\\triangleleft'); - -jsMath.Box.defaultH = 0.8; diff --git a/sagenb/data/jsmath/uncompressed/jsMath-fallback-symbols.js b/sagenb/data/jsmath/uncompressed/jsMath-fallback-symbols.js deleted file mode 100644 index 05e56e65d..000000000 --- a/sagenb/data/jsmath/uncompressed/jsMath-fallback-symbols.js +++ /dev/null @@ -1,415 +0,0 @@ -/* - * jsMath-fallback-symbols.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed to use image fonts for symbols - * but standard native fonts for letters and numbers. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -jsMath.Add(jsMath.Img,{ - UpdateTeXFonts: function (change) { - for (var font in change) { - for (var code in change[font]) { - jsMath.TeX[font][code] = change[font][code]; - jsMath.TeX[font][code].tclass = 'i' + font; - } - } - } -}); - - -jsMath.Img.UpdateTeXFonts({ - cmr10: { - '33': {c: '!', lig: {'96': 60}}, - '35': {c: '#'}, - '36': {c: '$'}, - '37': {c: '%'}, - '38': {c: '&'}, - '40': {c: '(', d:.2}, - '41': {c: ')', d:.2}, - '42': {c: '*', d:-.3}, - '43': {c: '+', a:.1}, - '44': {c: ',', a:-.3}, - '45': {c: '-', a:0, lig: {'45': 123}}, - '46': {c: '.', a:-.25}, - '47': {c: '/'}, - '48': {c: '0'}, - '49': {c: '1'}, - '50': {c: '2'}, - '51': {c: '3'}, - '52': {c: '4'}, - '53': {c: '5'}, - '54': {c: '6'}, - '55': {c: '7'}, - '56': {c: '8'}, - '57': {c: '9'}, - '58': {c: ':'}, - '59': {c: ';'}, - '61': {c: '=', a:0, d:-.1}, - '63': {c: '?', lig: {'96': 62}}, - '64': {c: '@'}, - '65': {c: 'A', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}}, - '66': {c: 'B'}, - '67': {c: 'C'}, - '68': {c: 'D', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}}, - '69': {c: 'E'}, - '70': {c: 'F', krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}, - '71': {c: 'G'}, - '72': {c: 'H'}, - '73': {c: 'I', krn: {'73': 0.0278}}, - '74': {c: 'J'}, - '75': {c: 'K', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}, - '76': {c: 'L', krn: {'84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}}, - '77': {c: 'M'}, - '78': {c: 'N'}, - '79': {c: 'O', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}}, - '80': {c: 'P', krn: {'65': -0.0833, '111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}}, - '81': {c: 'Q', d: 1}, - '82': {c: 'R', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}}, - '83': {c: 'S'}, - '84': {c: 'T', krn: {'121': -0.0278, '101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}}, - '85': {c: 'U'}, - '86': {c: 'V', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}, - '87': {c: 'W', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}, - '88': {c: 'X', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}, - '89': {c: 'Y', ic: 0.025, krn: {'101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}}, - '90': {c: 'Z'}, - '91': {c: '[', d:.1}, - '93': {c: ']', d:.1}, - '97': {c: 'a', a:0, krn: {'118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}, - '98': {c: 'b', krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}, - '99': {c: 'c', a:0, krn: {'104': -0.0278, '107': -0.0278}}, - '100': {c: 'd'}, - '101': {c: 'e', a:0}, - '102': {c: 'f', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 12, '102': 11, '108': 13}}, - '103': {c: 'g', a:0, d:.2, ic: 0.0139, krn: {'106': 0.0278}}, - '104': {c: 'h', krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}}, - '105': {c: 'i'}, - '106': {c: 'j', d:1}, - '107': {c: 'k', krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}}, - '108': {c: 'l'}, - '109': {c: 'm', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}}, - '110': {c: 'n', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}}, - '111': {c: 'o', a:0, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}, - '112': {c: 'p', a:0, d:.2, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}, - '113': {c: 'q', a:0, d:1}, - '114': {c: 'r', a:0}, - '115': {c: 's', a:0}, - '116': {c: 't', krn: {'121': -0.0278, '119': -0.0278}}, - '117': {c: 'u', a:0, krn: {'119': -0.0278}}, - '118': {c: 'v', a:0, ic: 0.0139, krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}}, - '119': {c: 'w', a:0, ic: 0.0139, krn: {'101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}}, - '120': {c: 'x', a:0}, - '121': {c: 'y', a:0, d:.2, ic: 0.0139, krn: {'111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}}, - '122': {c: 'z', a:0} - }, - cmmi10: { - '65': {c: 'A', krn: {'127': 0.139}}, - '66': {c: 'B', ic: 0.0502, krn: {'127': 0.0833}}, - '67': {c: 'C', ic: 0.0715, krn: {'61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}}, - '68': {c: 'D', ic: 0.0278, krn: {'127': 0.0556}}, - '69': {c: 'E', ic: 0.0576, krn: {'127': 0.0833}}, - '70': {c: 'F', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}}, - '71': {c: 'G', krn: {'127': 0.0833}}, - '72': {c: 'H', ic: 0.0812, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}}, - '73': {c: 'I', ic: 0.0785, krn: {'127': 0.111}}, - '74': {c: 'J', ic: 0.0962, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.167}}, - '75': {c: 'K', ic: 0.0715, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}}, - '76': {c: 'L', krn: {'127': 0.0278}}, - '77': {c: 'M', ic: 0.109, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}}, - '78': {c: 'N', ic: 0.109, krn: {'61': -0.0833, '61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}}, - '79': {c: 'O', ic: 0.0278, krn: {'127': 0.0833}}, - '80': {c: 'P', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}}, - '81': {c: 'Q', d:.2, krn: {'127': 0.0833}}, - '82': {c: 'R', ic: 0.00773, krn: {'127': 0.0833}}, - '83': {c: 'S', ic: 0.0576, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}}, - '84': {c: 'T', ic: 0.139, krn: {'61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}}, - '85': {c: 'U', ic: 0.109, krn: {'59': -0.111, '58': -0.111, '61': -0.0556, '127': 0.0278}}, - '86': {c: 'V', ic: 0.222, krn: {'59': -0.167, '58': -0.167, '61': -0.111}}, - '87': {c: 'W', ic: 0.139, krn: {'59': -0.167, '58': -0.167, '61': -0.111}}, - '88': {c: 'X', ic: 0.0785, krn: {'61': -0.0833, '61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}}, - '89': {c: 'Y', ic: 0.222, krn: {'59': -0.167, '58': -0.167, '61': -0.111}}, - '90': {c: 'Z', ic: 0.0715, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}}, - '97': {c: 'a', a:0}, - '98': {c: 'b'}, - '99': {c: 'c', a:0, krn: {'127': 0.0556}}, - '100': {c: 'd', krn: {'89': 0.0556, '90': -0.0556, '106': -0.111, '102': -0.167, '127': 0.167}}, - '101': {c: 'e', a:0, krn: {'127': 0.0556}}, - '102': {c: 'f', d:.2, ic: 0.108, krn: {'59': -0.0556, '58': -0.0556, '127': 0.167}}, - '103': {c: 'g', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0278}}, - '104': {c: 'h', krn: {'127': -0.0278}}, - '105': {c: 'i'}, - '106': {c: 'j', d:.2, ic: 0.0572, krn: {'59': -0.0556, '58': -0.0556}}, - '107': {c: 'k', ic: 0.0315}, - '108': {c: 'l', ic: 0.0197, krn: {'127': 0.0833}}, - '109': {c: 'm', a:0}, - '110': {c: 'n', a:0}, - '111': {c: 'o', a:0, krn: {'127': 0.0556}}, - '112': {c: 'p', a:0, d:.2, krn: {'127': 0.0833}}, - '113': {c: 'q', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0833}}, - '114': {c: 'r', a:0, ic: 0.0278, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0556}}, - '115': {c: 's', a:0, krn: {'127': 0.0556}}, - '116': {c: 't', krn: {'127': 0.0833}}, - '117': {c: 'u', a:0, krn: {'127': 0.0278}}, - '118': {c: 'v', a:0, ic: 0.0359, krn: {'127': 0.0278}}, - '119': {c: 'w', a:0, ic: 0.0269, krn: {'127': 0.0833}}, - '120': {c: 'x', a:0, krn: {'127': 0.0278}}, - '121': {c: 'y', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0556}}, - '122': {c: 'z', a:0, ic: 0.044, krn: {'127': 0.0556}} - }, - cmsy10: { - '0': {c:'−', a:.1} - }, - cmti10: { - '33': {c: '!', lig: {'96': 60}}, - '35': {c: '#', ic: 0.0662}, - '37': {c: '%', ic: 0.136}, - '38': {c: '&', ic: 0.0969}, - '40': {c: '(', d:.2, ic: 0.162}, - '41': {c: ')', d:.2, ic: 0.0369}, - '42': {c: '*', ic: 0.149}, - '43': {c: '+', a:.1, ic: 0.0369}, - '44': {c: ',', a:-.3, d:.2, w: 0.278}, - '45': {c: '-', a:0, ic: 0.0283, lig: {'45': 123}}, - '46': {c: '.', a:-.25}, - '47': {c: '/', ic: 0.162}, - '48': {c: '0', ic: 0.136}, - '49': {c: '1', ic: 0.136}, - '50': {c: '2', ic: 0.136}, - '51': {c: '3', ic: 0.136}, - '52': {c: '4', ic: 0.136}, - '53': {c: '5', ic: 0.136}, - '54': {c: '6', ic: 0.136}, - '55': {c: '7', ic: 0.136}, - '56': {c: '8', ic: 0.136}, - '57': {c: '9', ic: 0.136}, - '58': {c: ':', ic: 0.0582}, - '59': {c: ';', ic: 0.0582}, - '61': {c: '=', a:0, d:-.1, ic: 0.0662}, - '63': {c: '?', ic: 0.122, lig: {'96': 62}}, - '64': {c: '@', ic: 0.096}, - '65': {c: 'A', krn: {'110': -0.0256, '108': -0.0256, '114': -0.0256, '117': -0.0256, '109': -0.0256, '116': -0.0256, '105': -0.0256, '67': -0.0256, '79': -0.0256, '71': -0.0256, '104': -0.0256, '98': -0.0256, '85': -0.0256, '107': -0.0256, '118': -0.0256, '119': -0.0256, '81': -0.0256, '84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}, - '66': {c: 'B', ic: 0.103}, - '67': {c: 'C', ic: 0.145}, - '68': {c: 'D', ic: 0.094, krn: {'88': -0.0256, '87': -0.0256, '65': -0.0256, '86': -0.0256, '89': -0.0256}}, - '69': {c: 'E', ic: 0.12}, - '70': {c: 'F', ic: 0.133, krn: {'111': -0.0767, '101': -0.0767, '117': -0.0767, '114': -0.0767, '97': -0.0767, '65': -0.102, '79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}}, - '71': {c: 'G', ic: 0.0872}, - '72': {c: 'H', ic: 0.164}, - '73': {c: 'I', ic: 0.158}, - '74': {c: 'J', ic: 0.14}, - '75': {c: 'K', ic: 0.145, krn: {'79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}}, - '76': {c: 'L', krn: {'84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}, - '77': {c: 'M', ic: 0.164}, - '78': {c: 'N', ic: 0.164}, - '79': {c: 'O', ic: 0.094, krn: {'88': -0.0256, '87': -0.0256, '65': -0.0256, '86': -0.0256, '89': -0.0256}}, - '80': {c: 'P', ic: 0.103, krn: {'65': -0.0767}}, - '81': {c: 'Q', d:.2, ic: 0.094}, - '82': {c: 'R', ic: 0.0387, krn: {'110': -0.0256, '108': -0.0256, '114': -0.0256, '117': -0.0256, '109': -0.0256, '116': -0.0256, '105': -0.0256, '67': -0.0256, '79': -0.0256, '71': -0.0256, '104': -0.0256, '98': -0.0256, '85': -0.0256, '107': -0.0256, '118': -0.0256, '119': -0.0256, '81': -0.0256, '84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}, - '83': {c: 'S', ic: 0.12}, - '84': {c: 'T', ic: 0.133, krn: {'121': -0.0767, '101': -0.0767, '111': -0.0767, '114': -0.0767, '97': -0.0767, '117': -0.0767, '65': -0.0767}}, - '85': {c: 'U', ic: 0.164}, - '86': {c: 'V', ic: 0.184, krn: {'111': -0.0767, '101': -0.0767, '117': -0.0767, '114': -0.0767, '97': -0.0767, '65': -0.102, '79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}}, - '87': {c: 'W', ic: 0.184, krn: {'65': -0.0767}}, - '88': {c: 'X', ic: 0.158, krn: {'79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}}, - '89': {c: 'Y', ic: 0.194, krn: {'101': -0.0767, '111': -0.0767, '114': -0.0767, '97': -0.0767, '117': -0.0767, '65': -0.0767}}, - '90': {c: 'Z', ic: 0.145}, - '91': {c: '[', d:.1, ic: 0.188}, - '93': {c: ']', d:.1, ic: 0.105}, - '97': {c: 'a', a:0, ic: 0.0767}, - '98': {c: 'b', ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}, - '99': {c: 'c', a:0, ic: 0.0565, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}, - '100': {c: 'd', ic: 0.103, krn: {'108': 0.0511}}, - '101': {c: 'e', a:0, ic: 0.0751, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}, - '102': {c: 'f', ic: 0.212, krn: {'39': 0.104, '63': 0.104, '33': 0.104, '41': 0.104, '93': 0.104}, lig: {'105': 12, '102': 11, '108': 13}}, - '103': {c: 'g', a:0, d:.2, ic: 0.0885}, - '104': {c: 'h', ic: 0.0767}, - '105': {c: 'i', ic: 0.102}, - '106': {c: 'j', d:.2, ic: 0.145}, - '107': {c: 'k', ic: 0.108}, - '108': {c: 'l', ic: 0.103, krn: {'108': 0.0511}}, - '109': {c: 'm', a:0, ic: 0.0767}, - '110': {c: 'n', a:0, ic: 0.0767, krn: {'39': -0.102}}, - '111': {c: 'o', a:0, ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}, - '112': {c: 'p', a:0, d:.2, ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}, - '113': {c: 'q', a:0, d:.2, ic: 0.0885}, - '114': {c: 'r', a:0, ic: 0.108, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}, - '115': {c: 's', a:0, ic: 0.0821}, - '116': {c: 't', ic: 0.0949}, - '117': {c: 'u', a:0, ic: 0.0767}, - '118': {c: 'v', a:0, ic: 0.108}, - '119': {c: 'w', a:0, ic: 0.108, krn: {'108': 0.0511}}, - '120': {c: 'x', a:0, ic: 0.12}, - '121': {c: 'y', a:0, d:.2, ic: 0.0885}, - '122': {c: 'z', a:0, ic: 0.123} - }, - cmbx10: { - '33': {c: '!', lig: {'96': 60}}, - '35': {c: '#'}, - '36': {c: '$'}, - '37': {c: '%'}, - '38': {c: '&'}, - '40': {c: '(', d:.2}, - '41': {c: ')', d:.2}, - '42': {c: '*'}, - '43': {c: '+', a:.1}, - '44': {c: ',', a:-.3, d:.2, w: 0.278}, - '45': {c: '-', a:0, lig: {'45': 123}}, - '46': {c: '.', a:-.25}, - '47': {c: '/'}, - '48': {c: '0'}, - '49': {c: '1'}, - '50': {c: '2'}, - '51': {c: '3'}, - '52': {c: '4'}, - '53': {c: '5'}, - '54': {c: '6'}, - '55': {c: '7'}, - '56': {c: '8'}, - '57': {c: '9'}, - '58': {c: ':'}, - '59': {c: ';'}, - '61': {c: '=', a:0, d:-.1}, - '63': {c: '?', lig: {'96': 62}}, - '64': {c: '@'}, - '65': {c: 'A', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}}, - '66': {c: 'B'}, - '67': {c: 'C'}, - '68': {c: 'D', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}}, - '69': {c: 'E'}, - '70': {c: 'F', krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}, - '71': {c: 'G'}, - '72': {c: 'H'}, - '73': {c: 'I', krn: {'73': 0.0278}}, - '74': {c: 'J'}, - '75': {c: 'K', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}, - '76': {c: 'L', krn: {'84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}}, - '77': {c: 'M'}, - '78': {c: 'N'}, - '79': {c: 'O', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}}, - '80': {c: 'P', krn: {'65': -0.0833, '111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}}, - '81': {c: 'Q', d: 1}, - '82': {c: 'R', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}}, - '83': {c: 'S'}, - '84': {c: 'T', krn: {'121': -0.0278, '101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}}, - '85': {c: 'U'}, - '86': {c: 'V', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}, - '87': {c: 'W', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}, - '88': {c: 'X', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}, - '89': {c: 'Y', ic: 0.025, krn: {'101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}}, - '90': {c: 'Z'}, - '91': {c: '[', d:.1}, - '93': {c: ']', d:.1}, - '97': {c: 'a', a:0, krn: {'118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}, - '98': {c: 'b', krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}, - '99': {c: 'c', a:0, krn: {'104': -0.0278, '107': -0.0278}}, - '100': {c: 'd'}, - '101': {c: 'e', a:0}, - '102': {c: 'f', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 12, '102': 11, '108': 13}}, - '103': {c: 'g', a:0, d:.2, ic: 0.0139, krn: {'106': 0.0278}}, - '104': {c: 'h', krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}}, - '105': {c: 'i'}, - '106': {c: 'j', d:1}, - '107': {c: 'k', krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}}, - '108': {c: 'l'}, - '109': {c: 'm', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}}, - '110': {c: 'n', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}}, - '111': {c: 'o', a:0, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}, - '112': {c: 'p', a:0, d:.2, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}, - '113': {c: 'q', a:0, d:1}, - '114': {c: 'r', a:0}, - '115': {c: 's', a:0}, - '116': {c: 't', krn: {'121': -0.0278, '119': -0.0278}}, - '117': {c: 'u', a:0, krn: {'119': -0.0278}}, - '118': {c: 'v', a:0, ic: 0.0139, krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}}, - '119': {c: 'w', a:0, ic: 0.0139, krn: {'101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}}, - '120': {c: 'x', a:0}, - '121': {c: 'y', a:0, d:.2, ic: 0.0139, krn: {'111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}}, - '122': {c: 'z', a:0} - } -}); - - -if (jsMath.browser == 'MSIE' && jsMath.platform == 'mac') { - jsMath.Setup.Styles({ - '.typeset .math': 'font-style: normal', - '.typeset .typeset': 'font-style: normal', - '.typeset .icmr10': 'font-family: Times', - '.typeset .icmmi10': 'font-family: Times; font-style: italic', - '.typeset .icmbx10': 'font-family: Times; font-weight: bold', - '.typeset .icmti10': 'font-family: Times; font-style: italic' - }); -} else { - jsMath.Setup.Styles({ - '.typeset .math': 'font-style: normal', - '.typeset .typeset': 'font-style: normal', - '.typeset .icmr10': 'font-family: serif', - '.typeset .icmmi10': 'font-family: serif; font-style: italic', - '.typeset .icmbx10': 'font-family: serif; font-weight: bold', - '.typeset .icmti10': 'font-family: serif; font-style: italic' - }); -} - - -jsMath.Add(jsMath.Img,{ - symbols: [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 34, 39, - 60, 62, - - 92, 94, 95, - 96, - 123,124,125,126,127 - ] -}); - -/* - * for now, use images for everything - */ -jsMath.Img.SetFont({ - cmr10: jsMath.Img.symbols, - cmmi10: [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 64, - 91, 92, 93, 94, 95, - 96, - 123,124,125,126,127 - ], - cmsy10: [ - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, - 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, - 96, 97, 98, 99,100,101,102,103, 104,105,106,107,108,109,110,111, - 112,113,114,115,116,117,118,119, 120,121,122,123,124,125,126,127 - ], - cmex10: ['all'], - cmti10: jsMath.Img.symbols.concat(36), - cmbx10: jsMath.Img.symbols -}); - -jsMath.Img.LoadFont('cm-fonts'); - diff --git a/sagenb/data/jsmath/uncompressed/jsMath-fallback-unix.js b/sagenb/data/jsmath/uncompressed/jsMath-fallback-unix.js deleted file mode 100644 index 63e7856a6..000000000 --- a/sagenb/data/jsmath/uncompressed/jsMath-fallback-unix.js +++ /dev/null @@ -1,935 +0,0 @@ -/* - * jsMath-fallback-mac.js - * - * Part of the jsMath package for mathematics on the web. - * - * This file makes changes needed for when the TeX fonts are not available - * with a browser on the Mac. - * - * --------------------------------------------------------------------- - * - * Copyright 2004-2006 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - - -/******************************************************************** - * - * Here we replace the TeX character mappings by equivalent unicode - * points when possible, and adjust the character dimensions - * based on the fonts we hope we get them from (the styles are set - * to try to use the best characters available in the standard - * fonts). - */ - -jsMath.Add(jsMath.TeX,{ - - cmr10: [ - // 00 - 0F - {c: 'Γ', tclass: 'greek'}, - {c: 'Δ', tclass: 'greek'}, - {c: 'Θ', tclass: 'greek'}, - {c: 'Λ', tclass: 'greek'}, - {c: 'Ξ', tclass: 'greek'}, - {c: 'Π', tclass: 'greek'}, - {c: 'Σ', tclass: 'greek'}, - {c: 'Υ', tclass: 'greek'}, - {c: 'Φ', tclass: 'greek'}, - {c: 'Ψ', tclass: 'greek'}, - {c: 'Ω', tclass: 'greek'}, - {c: 'ff', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 14, '108': 15}, tclass: 'normal'}, - {c: 'fi', tclass: 'normal'}, - {c: 'fl', tclass: 'normal'}, - {c: 'ffi', tclass: 'normal'}, - {c: 'ffl', tclass: 'normal'}, - // 10 - 1F - {c: 'ı', a:0, tclass: 'normal'}, - {c: 'j', d:.2, tclass: 'normal'}, - {c: '`', tclass: 'accent'}, - {c: '´', tclass: 'accent'}, - {c: 'ˇ', tclass: 'accent'}, - {c: '˘', tclass: 'accent'}, - {c: 'ˉ', tclass: 'accent'}, - {c: '˚', tclass: 'accent'}, - {c: '̧', tclass: 'normal'}, - {c: 'ß', tclass: 'normal'}, - {c: 'æ', a:0, tclass: 'normal'}, - {c: 'œ', a:0, tclass: 'normal'}, - {c: 'ø', tclass: 'normal'}, - {c: 'Æ', tclass: 'normal'}, - {c: 'Œ', tclass: 'normal'}, - {c: 'Ø', tclass: 'normal'}, - // 20 - 2F - {c: '?', krn: {'108': -0.278, '76': -0.319}, tclass: 'normal'}, - {c: '!', lig: {'96': 60}, tclass: 'normal'}, - {c: '”', tclass: 'normal'}, - {c: '#', tclass: 'normal'}, - {c: '$', tclass: 'normal'}, - {c: '%', tclass: 'normal'}, - {c: '&', tclass: 'normal'}, - {c: '’', krn: {'63': 0.111, '33': 0.111}, lig: {'39': 34}, tclass: 'normal'}, - {c: '(', d:.2, tclass: 'normal'}, - {c: ')', d:.2, tclass: 'normal'}, - {c: '*', tclass: 'normal'}, - {c: '+', a:.1, tclass: 'normal'}, - {c: ',', a:-.3, d:.2, w: 0.278, tclass: 'normal'}, - {c: '-', a:0, lig: {'45': 123}, tclass: 'normal'}, - {c: '.', a:-.25, tclass: 'normal'}, - {c: '/', tclass: 'normal'}, - // 30 - 3F - {c: '0', tclass: 'normal'}, - {c: '1', tclass: 'normal'}, - {c: '2', tclass: 'normal'}, - {c: '3', tclass: 'normal'}, - {c: '4', tclass: 'normal'}, - {c: '5', tclass: 'normal'}, - {c: '6', tclass: 'normal'}, - {c: '7', tclass: 'normal'}, - {c: '8', tclass: 'normal'}, - {c: '9', tclass: 'normal'}, - {c: ':', tclass: 'normal'}, - {c: ';', tclass: 'normal'}, - {c: '¡', tclass: 'normal'}, - {c: '=', a:0, d:-.1, tclass: 'normal'}, - {c: '¿', tclass: 'normal'}, - {c: '?', lig: {'96': 62}, tclass: 'normal'}, - // 40 - 4F - {c: '@', tclass: 'normal'}, - {c: 'A', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'normal'}, - {c: 'B', tclass: 'normal'}, - {c: 'C', tclass: 'normal'}, - {c: 'D', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'normal'}, - {c: 'E', tclass: 'normal'}, - {c: 'F', krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'G', tclass: 'normal'}, - {c: 'H', tclass: 'normal'}, - {c: 'I', krn: {'73': 0.0278}, tclass: 'normal'}, - {c: 'J', tclass: 'normal'}, - {c: 'K', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'L', krn: {'84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'normal'}, - {c: 'M', tclass: 'normal'}, - {c: 'N', tclass: 'normal'}, - {c: 'O', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'normal'}, - // 50 - 5F - {c: 'P', krn: {'65': -0.0833, '111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'normal'}, - {c: 'Q', d: 1, tclass: 'normal'}, - {c: 'R', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'normal'}, - {c: 'S', tclass: 'normal'}, - {c: 'T', krn: {'121': -0.0278, '101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'normal'}, - {c: 'U', tclass: 'normal'}, - {c: 'V', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'W', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'X', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'normal'}, - {c: 'Y', ic: 0.025, krn: {'101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'normal'}, - {c: 'Z', tclass: 'normal'}, - {c: '[', d:.1, tclass: 'normal'}, - {c: '“', tclass: 'normal'}, - {c: ']', d:.1, tclass: 'normal'}, - {c: 'ˆ', tclass: 'accent'}, - {c: '˙', tclass: 'accent'}, - // 60 - 6F - {c: '‘', lig: {'96': 92}, tclass: 'normal'}, - {c: 'a', a:0, krn: {'118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'b', krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'c', a:0, krn: {'104': -0.0278, '107': -0.0278}, tclass: 'normal'}, - {c: 'd', tclass: 'normal'}, - {c: 'e', a:0, tclass: 'normal'}, - {c: 'f', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 12, '102': 11, '108': 13}, tclass: 'normal'}, - {c: 'g', a:0, d:.2, ic: 0.0139, krn: {'106': 0.0278}, tclass: 'normal'}, - {c: 'h', krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'i', tclass: 'normal'}, - {c: 'j', d:.2, tclass: 'normal'}, - {c: 'k', krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'normal'}, - {c: 'l', tclass: 'normal'}, - {c: 'm', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'n', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'o', a:0, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - // 70 - 7F - {c: 'p', a:0, d:.2, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'q', a:0, d:.2, tclass: 'normal'}, - {c: 'r', a:0, tclass: 'normal'}, - {c: 's', a:0, tclass: 'normal'}, - {c: 't', krn: {'121': -0.0278, '119': -0.0278}, tclass: 'normal'}, - {c: 'u', a:0, krn: {'119': -0.0278}, tclass: 'normal'}, - {c: 'v', a:0, ic: 0.0139, krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'normal'}, - {c: 'w', a:0, ic: 0.0139, krn: {'101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'normal'}, - {c: 'x', a:0, tclass: 'normal'}, - {c: 'y', a:0, d:.2, ic: 0.0139, krn: {'111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'normal'}, - {c: 'z', a:0, tclass: 'normal'}, - {c: '–', a:.1, ic: 0.0278, lig: {'45': 124}, tclass: 'normal'}, - {c: '—', a:.1, ic: 0.0278, tclass: 'normal'}, - {c: '˝', tclass: 'accent'}, - {c: '˜', tclass: 'accent'}, - {c: '¨', tclass: 'accent'} - ], - - cmmi10: [ - // 00 - 0F - {c: 'Γ', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}, tclass: 'igreek'}, - {c: 'Δ', krn: {'127': 0.167}, tclass: 'igreek'}, - {c: 'Θ', ic: 0.0278, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Λ', krn: {'127': 0.167}, tclass: 'igreek'}, - {c: 'Ξ', ic: 0.0757, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Π', ic: 0.0812, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'igreek'}, - {c: 'Σ', ic: 0.0576, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Υ', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0556}, tclass: 'igreek'}, - {c: 'Φ', krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'Ψ', ic: 0.11, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'igreek'}, - {c: 'Ω', ic: 0.0502, krn: {'127': 0.0833}, tclass: 'igreek'}, - {c: 'α', a:0, ic: 0.0037, krn: {'127': 0.0278}, tclass: 'greek'}, - {c: 'β', d:.2, ic: 0.0528, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'γ', a:0, d:.2, ic: 0.0556, tclass: 'greek'}, - {c: 'δ', ic: 0.0378, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'greek'}, - {c: 'ε', a:0, krn: {'127': 0.0556}, tclass: 'symbol'}, - // 10 - 1F - {c: 'ζ', d:.2, ic: 0.0738, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'η', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0556}, tclass: 'greek'}, - {c: 'θ', ic: 0.0278, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'ι', a:0, krn: {'127': 0.0556}, tclass: 'greek'}, - {c: 'κ', a:0, tclass: 'greek'}, - {c: 'λ', tclass: 'greek'}, - {c: 'μ', a:0, d:.2, krn: {'127': 0.0278}, tclass: 'greek'}, - {c: 'ν', a:0, ic: 0.0637, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0278}, tclass: 'greek'}, - {c: 'ξ', d:.2, ic: 0.046, krn: {'127': 0.111}, tclass: 'greek'}, - {c: 'π', a:0, ic: 0.0359, tclass: 'greek'}, - {c: 'ρ', a:0, d:.2, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'σ', a:0, ic: 0.0359, krn: {'59': -0.0556, '58': -0.0556}, tclass: 'greek'}, - {c: 'τ', a:0, ic: 0.113, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0278}, tclass: 'greek'}, - {c: 'υ', a:0, ic: 0.0359, krn: {'127': 0.0278}, tclass: 'greek'}, - {c: 'φ', a:.1, d:.2, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'χ', a:0, d:.2, krn: {'127': 0.0556}, tclass: 'greek'}, - // 20 - 2F - {c: 'ψ', a:.1, d:.2, ic: 0.0359, krn: {'127': 0.111}, tclass: 'greek'}, - {c: 'ω', a:0, ic: 0.0359, tclass: 'greek'}, - {c: 'ε', a:0, krn: {'127': 0.0833}, tclass: 'greek'}, - {c: 'ϑ', krn: {'127': 0.0833}, tclass: 'normal'}, - {c: 'ϖ', a:0, ic: 0.0278, tclass: 'normal'}, - {c: 'ϱ', a:0, d:.2, krn: {'127': 0.0833}, tclass: 'normal'}, - {c: 'ς', a:0, d:.2, ic: 0.0799, krn: {'127': 0.0833}, tclass: 'normal'}, - {c: 'ϕ', a:.1, d:.2, krn: {'127': 0.0833}, tclass: 'normal'}, - {c: '↼', a:0, d:-.2, tclass: 'harpoon'}, - {c: '↽', a:0, d:-.1, tclass: 'harpoon'}, - {c: '⇀', a:0, d:-.2, tclass: 'harpoon'}, - {c: '⇁', a:0, d:-.1, tclass: 'harpoon'}, - {c: '˓', a:.1, tclass: 'symbol'}, - {c: '˒', a:.1, tclass: 'symbol'}, - {c: '', tclass: 'symbol'}, - {c: '', tclass: 'symbol'}, - // 30 - 3F - {c: '0', tclass: 'normal'}, - {c: '1', tclass: 'normal'}, - {c: '2', tclass: 'normal'}, - {c: '3', tclass: 'normal'}, - {c: '4', tclass: 'normal'}, - {c: '5', tclass: 'normal'}, - {c: '6', tclass: 'normal'}, - {c: '7', tclass: 'normal'}, - {c: '8', tclass: 'normal'}, - {c: '9', tclass: 'normal'}, - {c: '.', a:-.3, tclass: 'normal'}, - {c: ',', a:-.3, d:.2, tclass: 'normal'}, - {c: '<', a:.1, tclass: 'normal'}, - {c: '/', krn: {'1': -0.0556, '65': -0.0556, '77': -0.0556, '78': -0.0556, '89': 0.0556, '90': -0.0556}, tclass: 'normal'}, - {c: '>', a:.1, tclass: 'normal'}, - {c: '', a:0, tclass: 'symbol'}, - // 40 - 4F - {c: '∂', ic: 0.0556, krn: {'127': 0.0833}, tclass: 'normal'}, - {c: 'A', krn: {'127': 0.139}, tclass: 'italic'}, - {c: 'B', ic: 0.0502, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'C', ic: 0.0715, krn: {'61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'D', ic: 0.0278, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'E', ic: 0.0576, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'F', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}, tclass: 'italic'}, - {c: 'G', krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'H', ic: 0.0812, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'italic'}, - {c: 'I', ic: 0.0785, krn: {'127': 0.111}, tclass: 'italic'}, - {c: 'J', ic: 0.0962, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.167}, tclass: 'italic'}, - {c: 'K', ic: 0.0715, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'italic'}, - {c: 'L', krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'M', ic: 0.109, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'N', ic: 0.109, krn: {'61': -0.0833, '61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'O', ic: 0.0278, krn: {'127': 0.0833}, tclass: 'italic'}, - // 50 - 5F - {c: 'P', ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}, tclass: 'italic'}, - {c: 'Q', d:.2, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'R', ic: 0.00773, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'S', ic: 0.0576, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'T', ic: 0.139, krn: {'61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'U', ic: 0.109, krn: {'59': -0.111, '58': -0.111, '61': -0.0556, '127': 0.0278}, tclass: 'italic'}, - {c: 'V', ic: 0.222, krn: {'59': -0.167, '58': -0.167, '61': -0.111}, tclass: 'italic'}, - {c: 'W', ic: 0.139, krn: {'59': -0.167, '58': -0.167, '61': -0.111}, tclass: 'italic'}, - {c: 'X', ic: 0.0785, krn: {'61': -0.0833, '61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: 'Y', ic: 0.222, krn: {'59': -0.167, '58': -0.167, '61': -0.111}, tclass: 'italic'}, - {c: 'Z', ic: 0.0715, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}, tclass: 'italic'}, - {c: '♭', tclass: 'symbol2'}, - {c: '♮', tclass: 'symbol2'}, - {c: '♯', tclass: 'symbol2'}, - {c: '⌣', a:0, d:-.1, tclass: 'normal'}, - {c: '⌢', a:0, d:-.1, tclass: 'normal'}, - // 60 - 6F - {c: 'ℓ', krn: {'127': 0.111}, tclass: 'symbol'}, - {c: 'a', a:0, tclass: 'italic'}, - {c: 'b', tclass: 'italic'}, - {c: 'c', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'd', krn: {'89': 0.0556, '90': -0.0556, '106': -0.111, '102': -0.167, '127': 0.167}, tclass: 'italic'}, - {c: 'e', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'f', d:.2, ic: 0.108, krn: {'59': -0.0556, '58': -0.0556, '127': 0.167}, tclass: 'italic'}, - {c: 'g', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'h', krn: {'127': -0.0278}, tclass: 'italic'}, - {c: 'i', tclass: 'italic'}, - {c: 'j', d:.2, ic: 0.0572, krn: {'59': -0.0556, '58': -0.0556}, tclass: 'italic'}, - {c: 'k', ic: 0.0315, tclass: 'italic'}, - {c: 'l', ic: 0.0197, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'm', a:0, tclass: 'italic'}, - {c: 'n', a:0, tclass: 'italic'}, - {c: 'o', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - // 70 - 7F - {c: 'p', a:0, d:.2, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'q', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'r', a:0, ic: 0.0278, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0556}, tclass: 'italic'}, - {c: 's', a:0, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 't', krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'u', a:0, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'v', a:0, ic: 0.0359, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'w', a:0, ic: 0.0269, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: 'x', a:0, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'y', a:0, d:.2, ic: 0.0359, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'z', a:0, ic: 0.044, krn: {'127': 0.0556}, tclass: 'italic'}, - {c: 'ı', a:0, krn: {'127': 0.0278}, tclass: 'italic'}, - {c: 'j', d:.2, krn: {'127': 0.0833}, tclass: 'italic'}, - {c: '℘', a:0, d:.2, krn: {'127': 0.111}, tclass: 'normal'}, - {c: '', ic: 0.154, tclass: 'symbol'}, - {c: '̑', ic: 0.399, tclass: 'normal'} - ], - - cmsy10: [ - // 00 - 0F - {c: '−', a:.1, tclass: 'symbol'}, - {c: '·', a:0, d:-.2, tclass: 'symbol'}, - {c: '×', a:0, tclass: 'symbol'}, - {c: '*', a:0, tclass: 'symbol'}, - {c: '÷', a:0, tclass: 'symbol'}, - {c: '◊', tclass: 'symbol'}, - {c: '±', a:.1, tclass: 'symbol'}, - {c: '∓', tclass: 'symbol'}, - {c: '⊕', tclass: 'symbol'}, - {c: '⊖', tclass: 'symbol'}, - {c: '⊗', tclass: 'symbol'}, - {c: '⊘', tclass: 'symbol'}, - {c: '⊙', tclass: 'symbol'}, - {c: '◯', tclass: 'symbol'}, - {c: '°', a:0, d:-.1, tclass: 'symbol'}, - {c: '•', a:0, d:-.2, tclass: 'symbol'}, - // 10 - 1F - {c: '≍', a:.1, tclass: 'symbol'}, - {c: '≡', a:.1, tclass: 'symbol'}, - {c: '⊆', tclass: 'symbol'}, - {c: '⊇', tclass: 'symbol'}, - {c: '≤', tclass: 'symbol'}, - {c: '≥', tclass: 'symbol'}, - {c: '≼', tclass: 'symbol'}, - {c: '≽', tclass: 'symbol'}, - {c: '~', a:0, d: -.2, tclass: 'normal'}, - {c: '≈', a:.1, d:-.1, tclass: 'symbol'}, - {c: '⊂', tclass: 'symbol'}, - {c: '⊃', tclass: 'symbol'}, - {c: '≪', tclass: 'symbol'}, - {c: '≫', tclass: 'symbol'}, - {c: '≺', tclass: 'symbol'}, - {c: '≻', tclass: 'symbol'}, - // 20 - 2F - {c: '←', a:0, d:-.15, tclass: 'arrows'}, - {c: '→', a:0, d:-.15, tclass: 'arrows'}, - {c: '↑', h:1, tclass: 'arrows'}, - {c: '↓', h:1, tclass: 'arrows'}, - {c: '↔', a:0, tclass: 'arrows'}, - {c: '↗', h:1, tclass: 'arrows'}, - {c: '↘', h:1, tclass: 'arrows'}, - {c: '≃', a: .1, tclass: 'symbol'}, - {c: '⇐', a:.1, tclass: 'arrows'}, - {c: '⇒', a:.1, tclass: 'arrows'}, - {c: '⇑', h:.9, d:.1, tclass: 'arrows'}, - {c: '⇓', h:.9, d:.1, tclass: 'arrows'}, - {c: '⇔', a:.1, tclass: 'arrows'}, - {c: '↖', h:1, tclass: 'arrows'}, - {c: '↙', h:1, tclass: 'arrows'}, - {c: '∝', a:.1, tclass: 'symbol'}, - // 30 - 3F - {c: '', a: 0, tclass: 'symbol'}, - {c: '∞', a:.1, tclass: 'symbol'}, - {c: '∈', tclass: 'symbol'}, - {c: '∋', tclass: 'symbol'}, - {c: '△', tclass: 'symbol'}, - {c: '▽', tclass: 'symbol'}, - {c: '/', tclass: 'symbol'}, - {c: '|', a:0, tclass: 'normal'}, - {c: '∀', tclass: 'symbol'}, - {c: '∃', tclass: 'symbol'}, - {c: '¬', a:0, d:-.1, tclass: 'symbol1'}, - {c: '∅', tclass: 'symbol'}, - {c: 'ℜ', tclass: 'symbol'}, - {c: 'ℑ', tclass: 'symbol'}, - {c: '⊤', tclass: 'symbol'}, - {c: '⊥', tclass: 'symbol'}, - // 40 - 4F - {c: 'ℵ', tclass: 'symbol'}, - {c: 'A', krn: {'48': 0.194}, tclass: 'cal'}, - {c: 'B', ic: 0.0304, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'C', ic: 0.0583, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'D', ic: 0.0278, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'E', ic: 0.0894, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'F', ic: 0.0993, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'G', d:.2, ic: 0.0593, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'H', ic: 0.00965, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'I', ic: 0.0738, krn: {'48': 0.0278}, tclass: 'cal'}, - {c: 'J', d:.2, ic: 0.185, krn: {'48': 0.167}, tclass: 'cal'}, - {c: 'K', ic: 0.0144, krn: {'48': 0.0556}, tclass: 'cal'}, - {c: 'L', krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'M', krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'N', ic: 0.147, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'O', ic: 0.0278, krn: {'48': 0.111}, tclass: 'cal'}, - // 50 - 5F - {c: 'P', ic: 0.0822, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'Q', d:.2, krn: {'48': 0.111}, tclass: 'cal'}, - {c: 'R', krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'S', ic: 0.075, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'T', ic: 0.254, krn: {'48': 0.0278}, tclass: 'cal'}, - {c: 'U', ic: 0.0993, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'V', ic: 0.0822, krn: {'48': 0.0278}, tclass: 'cal'}, - {c: 'W', ic: 0.0822, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'X', ic: 0.146, krn: {'48': 0.139}, tclass: 'cal'}, - {c: 'Y', ic: 0.0822, krn: {'48': 0.0833}, tclass: 'cal'}, - {c: 'Z', ic: 0.0794, krn: {'48': 0.139}, tclass: 'cal'}, - {c: '⋃', tclass: 'symbol'}, - {c: '⋂', tclass: 'symbol'}, - {c: '⊎', tclass: 'symbol'}, - {c: '⋀', tclass: 'symbol'}, - {c: '⋁', tclass: 'symbol'}, - // 60 - 6F - {c: '⊢', tclass: 'symbol'}, - {c: '⊣', tclass: 'symbol2'}, - {c: '', a:.3, d:.2, tclass: 'normal'}, - {c: '', a:.3, d:.2, tclass: 'normal'}, - {c: '', a:.3, d:.2, tclass: 'normal'}, - {c: '', a:.3, d:.2, tclass: 'normal'}, - {c: '{', d:.2, tclass: 'normal'}, - {c: '}', d:.2, tclass: 'normal'}, - {c: '〈', a:.3, d:.2, tclass: 'normal'}, - {c: '〉', a:.3, d:.2, tclass: 'normal'}, - {c: '|', d:.1, tclass: 'vertical'}, - {c: '||', d:0, tclass: 'vertical'}, - {c: '↕', h:1, d:.15, tclass: 'arrows'}, - {c: '⇕', a:.2, d:.1, tclass: 'arrows'}, - {c: '∖', a:.3, d:.1, tclass: 'normal'}, - {c: '≀', tclass: 'symbol'}, - // 70 - 7F - {c: '', h:.04, d:.9, tclass: 'normal'}, - {c: '∐', a:.4, tclass: 'symbol'}, - {c: '∇', tclass: 'symbol'}, - {c: '∫', h:1, d:.1, ic: 0.111, tclass: 'root'}, - {c: '⊔', tclass: 'symbol'}, - {c: '⊓', tclass: 'symbol'}, - {c: '⊑', tclass: 'symbol'}, - {c: '⊒', tclass: 'symbol'}, - {c: '§', d:.1, tclass: 'normal'}, - {c: '†', d:.1, tclass: 'normal'}, - {c: '‡', d:.1, tclass: 'normal'}, - {c: '¶', a:.3, d:.1, tclass: 'normal'}, - {c: '♣', tclass: 'symbol'}, - {c: '♦', tclass: 'symbol'}, - {c: '♥', tclass: 'symbol'}, - {c: '♠', tclass: 'symbol'} - ], - - cmex10: [ - // 00 - 0F - {c: '(', h: 0.04, d: 1.16, n: 16, tclass: 'delim1'}, - {c: ')', h: 0.04, d: 1.16, n: 17, tclass: 'delim1'}, - {c: '[', h: 0.04, d: 1.16, n: 104, tclass: 'delim1'}, - {c: ']', h: 0.04, d: 1.16, n: 105, tclass: 'delim1'}, - {c: '', h: 0.04, d: 1.16, n: 106, tclass: 'delim1'}, - {c: '', h: 0.04, d: 1.16, n: 107, tclass: 'delim1'}, - {c: '', h: 0.04, d: 1.16, n: 108, tclass: 'delim1'}, - {c: '', h: 0.04, d: 1.16, n: 109, tclass: 'delim1'}, - {c: '{', h: 0.04, d: 1.16, n: 110, tclass: 'delim1'}, - {c: '}', h: 0.04, d: 1.16, n: 111, tclass: 'delim1'}, - {c: '〈', h: 0.04, d: 1.16, n: 68, tclass: 'delim1c'}, - {c: '〉', h: 0.04, d: 1.16, n: 69, tclass: 'delim1c'}, - {c: '|', h:.7, d:0, delim: {rep: 12}, tclass: 'vertical'}, - {c: '||', h:.7, d:0, delim: {rep: 13}, tclass: 'vertical'}, - {c: '/', h: 0.04, d: 1.16, n: 46, tclass: 'delim1b'}, - {c: '∖', h: 0.04, d: 1.16, n: 47, tclass: 'delim1b'}, - // 10 - 1F - {c: '(', h: 0.04, d: 1.76, n: 18, tclass: 'delim2'}, - {c: ')', h: 0.04, d: 1.76, n: 19, tclass: 'delim2'}, - {c: '(', h: 0.04, d: 2.36, n: 32, tclass: 'delim3'}, - {c: ')', h: 0.04, d: 2.36, n: 33, tclass: 'delim3'}, - {c: '[', h: 0.04, d: 2.36, n: 34, tclass: 'delim3'}, - {c: ']', h: 0.04, d: 2.36, n: 35, tclass: 'delim3'}, - {c: '', h: 0.04, d: 2.36, n: 36, tclass: 'delim3'}, - {c: '', h: 0.04, d: 2.36, n: 37, tclass: 'delim3'}, - {c: '', h: 0.04, d: 2.36, n: 38, tclass: 'delim3'}, - {c: '', h: 0.04, d: 2.36, n: 39, tclass: 'delim3'}, - {c: '{', h: 0.04, d: 2.36, n: 40, tclass: 'delim3'}, - {c: '}', h: 0.04, d: 2.36, n: 41, tclass: 'delim3'}, - {c: '〈', h: 0.04, d: 2.36, n: 42, tclass: 'delim3c'}, - {c: '〉', h: 0.04, d: 2.36, n: 43, tclass: 'delim3c'}, - {c: '/', h: 0.04, d: 2.36, n: 44, tclass: 'delim3b'}, - {c: '∖', h: 0.04, d: 2.36, n: 45, tclass: 'delim3b'}, - // 20 - 2F - {c: '(', h: 0.04, d: 2.96, n: 48, tclass: 'delim4'}, - {c: ')', h: 0.04, d: 2.96, n: 49, tclass: 'delim4'}, - {c: '[', h: 0.04, d: 2.96, n: 50, tclass: 'delim4'}, - {c: ']', h: 0.04, d: 2.96, n: 51, tclass: 'delim4'}, - {c: '', h: 0.04, d: 2.96, n: 52, tclass: 'delim4'}, - {c: '', h: 0.04, d: 2.96, n: 53, tclass: 'delim4'}, - {c: '', h: 0.04, d: 2.96, n: 54, tclass: 'delim4'}, - {c: '', h: 0.04, d: 2.96, n: 55, tclass: 'delim4'}, - {c: '{', h: 0.04, d: 2.96, n: 56, tclass: 'delim4'}, - {c: '}', h: 0.04, d: 2.96, n: 57, tclass: 'delim4'}, - {c: '〈', h: 0.04, d: 2.96, tclass: 'delim4c'}, - {c: '〉', h: 0.04, d: 2.96, tclass: 'delim4c'}, - {c: '/', h: 0.04, d: 2.96, tclass: 'delim4b'}, - {c: '∖', h: 0.04, d: 2.96, tclass: 'delim4b'}, - {c: '/', h: 0.04, d: 1.76, n: 30, tclass: 'delim2b'}, - {c: '∖', h: 0.04, d: 1.76, n: 31, tclass: 'delim2b'}, - // 30 - 3F - {c: '', h: .8, d: .15, delim: {top: 48, bot: 64, rep: 66}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {top: 49, bot: 65, rep: 67}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {top: 50, bot: 52, rep: 54}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {top: 51, bot: 53, rep: 55}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {bot: 52, rep: 54}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {bot: 53, rep: 55}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {top: 50, rep: 54}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {top: 51, rep: 55}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {top: 56, mid: 60, bot: 58, rep: 62}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {top: 57, mid: 61, bot: 59, rep: 62}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {top: 56, bot: 58, rep: 62}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {top: 57, bot: 59, rep: 62}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {rep: 63}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {rep: 119}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {rep: 62}, tclass: 'delim'}, - {c: '|', h: .65, d: 0, delim: {top: 120, bot: 121, rep: 63}, tclass: 'vertical'}, - // 40 - 4F - {c: '', h: .8, d: .15, delim: {top: 56, bot: 59, rep: 62}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {top: 57, bot: 58, rep: 62}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {rep: 66}, tclass: 'delim'}, - {c: '', h: .8, d: .15, delim: {rep: 67}, tclass: 'delim'}, - {c: '〈', h: 0.04, d: 1.76, n: 28, tclass: 'delim2c'}, - {c: '〉', h: 0.04, d: 1.76, n: 29, tclass: 'delim2c'}, - {c: '⊔', h: 0, d: 1, n: 71, tclass: 'bigop1'}, - {c: '⊔', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '∮', h: 0, d: 1.11, ic: 0.095, n: 73, tclass: 'bigop1c'}, - {c: '∮', h: 0, d: 2.22, ic: 0.222, tclass: 'bigop2c'}, - {c: '⊙', h: 0, d: 1, n: 75, tclass: 'bigop1'}, - {c: '⊙', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '⊕', h: 0, d: 1, n: 77, tclass: 'bigop1'}, - {c: '⊕', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '⊗', h: 0, d: 1, n: 79, tclass: 'bigop1'}, - {c: '⊗', h: 0.1, d: 1.5, tclass: 'bigop2'}, - // 50 - 5F - {c: '∑', h: 0, d: 1, n: 88, tclass: 'bigop1a'}, - {c: '∏', h: 0, d: 1, n: 89, tclass: 'bigop1a'}, - {c: '∫', h: 0, d: 1.11, ic: 0.095, n: 90, tclass: 'bigop1c'}, - {c: '∪', h: 0, d: 1, n: 91, tclass: 'bigop1b'}, - {c: '∩', h: 0, d: 1, n: 92, tclass: 'bigop1b'}, - {c: '⊎', h: 0, d: 1, n: 93, tclass: 'bigop1b'}, - {c: '∧', h: 0, d: 1, n: 94, tclass: 'bigop1'}, - {c: '∨', h: 0, d: 1, n: 95, tclass: 'bigop1'}, - {c: '∑', h: 0.1, d: 1.6, tclass: 'bigop2a'}, - {c: '∏', h: 0.1, d: 1.5, tclass: 'bigop2a'}, - {c: '∫', h: 0, d: 2.22, ic: 0.222, tclass: 'bigop2c'}, - {c: '∪', h: 0.1, d: 1.5, tclass: 'bigop2b'}, - {c: '∩', h: 0.1, d: 1.5, tclass: 'bigop2b'}, - {c: '⊎', h: 0.1, d: 1.5, tclass: 'bigop2b'}, - {c: '∧', h: 0.1, d: 1.5, tclass: 'bigop2'}, - {c: '∨', h: 0.1, d: 1.5, tclass: 'bigop2'}, - // 60 - 6F - {c: '∐', h: 0, d: 1, n: 97, tclass: 'bigop1a'}, - {c: '∐', h: 0.1, d: 1.5, tclass: 'bigop2a'}, - {c: '︿', h: 0.722, w: .65, n: 99, tclass: 'wide1'}, - {c: '︿', h: 0.85, w: 1.1, n: 100, tclass: 'wide2'}, - {c: '︿', h: 0.99, w: 1.65, tclass: 'wide3'}, - {c: '⁓', h: 0.722, w: .75, n: 102, tclass: 'wide1a'}, - {c: '⁓', h: 0.8, w: 1.35, n: 103, tclass: 'wide2a'}, - {c: '⁓', h: 0.99, w: 2, tclass: 'wide3a'}, - {c: '[', h: 0.04, d: 1.76, n: 20, tclass: 'delim2'}, - {c: ']', h: 0.04, d: 1.76, n: 21, tclass: 'delim2'}, - {c: '', h: 0.04, d: 1.76, n: 22, tclass: 'delim2'}, - {c: '', h: 0.04, d: 1.76, n: 23, tclass: 'delim2'}, - {c: '', h: 0.04, d: 1.76, n: 24, tclass: 'delim2'}, - {c: '', h: 0.04, d: 1.76, n: 25, tclass: 'delim2'}, - {c: '{', h: 0.04, d: 1.76, n: 26, tclass: 'delim2'}, - {c: '}', h: 0.04, d: 1.76, n: 27, tclass: 'delim2'}, - // 70 - 7F - {c: '', h: 0.04, d: 1.16, n: 113, tclass: 'root'}, - {c: '', h: 0.04, d: 1.76, n: 114, tclass: 'root'}, - {c: '', h: 0.06, d: 2.36, n: 115, tclass: 'root'}, - {c: '', h: 0.08, d: 2.96, n: 116, tclass: 'root'}, - {c: '', h: 0.1, d: 3.75, n: 117, tclass: 'root'}, - {c: '', h: .12, d: 4.5, n: 118, tclass: 'root'}, - {c: '', h: .14, d: 5.7, tclass: 'root'}, - {c: '||', h:.65, d:0, delim: {top: 126, bot: 127, rep: 119}, tclass: 'vertical'}, - {c: '▵', h:.45, delim: {top: 120, rep: 63}, tclass: 'arrow1'}, - {c: '▿', h:.45, delim: {bot: 121, rep: 63}, tclass: 'arrow1'}, - {c: '', h:.1, tclass: 'symbol'}, - {c: '', h:.1, tclass: 'symbol'}, - {c: '', h:.1, tclass: 'symbol'}, - {c: '', h:.1, tclass: 'symbol'}, - {c: '▵', h:.5, delim: {top: 126, rep: 119}, tclass: 'arrow2'}, - {c: '▿', h:.5, delim: {bot: 127, rep: 119}, tclass: 'arrow2'} - ], - - cmti10: [ - // 00 - 0F - {c: 'Γ', ic: 0.133, tclass: 'igreek'}, - {c: 'Δ', tclass: 'igreek'}, - {c: 'Θ', ic: 0.094, tclass: 'igreek'}, - {c: 'Λ', tclass: 'igreek'}, - {c: 'Ξ', ic: 0.153, tclass: 'igreek'}, - {c: 'Π', ic: 0.164, tclass: 'igreek'}, - {c: 'Σ', ic: 0.12, tclass: 'igreek'}, - {c: 'Υ', ic: 0.111, tclass: 'igreek'}, - {c: 'Φ', ic: 0.0599, tclass: 'igreek'}, - {c: 'Ψ', ic: 0.111, tclass: 'igreek'}, - {c: 'Ω', ic: 0.103, tclass: 'igreek'}, - {c: 'ff', ic: 0.212, krn: {'39': 0.104, '63': 0.104, '33': 0.104, '41': 0.104, '93': 0.104}, lig: {'105': 14, '108': 15}, tclass: 'italic'}, - {c: 'fi', ic: 0.103, tclass: 'italic'}, - {c: 'fl', ic: 0.103, tclass: 'italic'}, - {c: 'ffi', ic: 0.103, tclass: 'italic'}, - {c: 'ffl', ic: 0.103, tclass: 'italic'}, - // 10 - 1F - {c: 'ı', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'j', d:.2, ic: 0.0374, tclass: 'italic'}, - {c: '`', tclass: 'iaccent'}, - {c: '´', ic: 0.0969, tclass: 'iaccent'}, - {c: 'ˇ', ic: 0.083, tclass: 'iaccent'}, - {c: '˘', ic: 0.108, tclass: 'iaccent'}, - {c: 'ˉ', ic: 0.103, tclass: 'iaccent'}, - {c: '˚', tclass: 'iaccent'}, - {c: '?', d: 0.17, w: 0.46, tclass: 'italic'}, - {c: 'ß', ic: 0.105, tclass: 'italic'}, - {c: 'æ', a:0, ic: 0.0751, tclass: 'italic'}, - {c: 'œ', a:0, ic: 0.0751, tclass: 'italic'}, - {c: 'ø', ic: 0.0919, tclass: 'italic'}, - {c: 'Æ', ic: 0.12, tclass: 'italic'}, - {c: 'Œ', ic: 0.12, tclass: 'italic'}, - {c: 'Ø', ic: 0.094, tclass: 'italic'}, - // 20 - 2F - {c: '?', krn: {'108': -0.256, '76': -0.321}, tclass: 'italic'}, - {c: '!', ic: 0.124, lig: {'96': 60}, tclass: 'italic'}, - {c: '”', ic: 0.0696, tclass: 'italic'}, - {c: '#', ic: 0.0662, tclass: 'italic'}, - {c: '$', tclass: 'italic'}, - {c: '%', ic: 0.136, tclass: 'italic'}, - {c: '&', ic: 0.0969, tclass: 'italic'}, - {c: '’', ic: 0.124, krn: {'63': 0.102, '33': 0.102}, lig: {'39': 34}, tclass: 'italic'}, - {c: '(', d:.2, ic: 0.162, tclass: 'italic'}, - {c: ')', d:.2, ic: 0.0369, tclass: 'italic'}, - {c: '*', ic: 0.149, tclass: 'italic'}, - {c: '+', a:.1, ic: 0.0369, tclass: 'italic'}, - {c: ',', a:-.3, d:.2, w: 0.278, tclass: 'italic'}, - {c: '-', a:0, ic: 0.0283, lig: {'45': 123}, tclass: 'italic'}, - {c: '.', a:-.25, tclass: 'italic'}, - {c: '/', ic: 0.162, tclass: 'italic'}, - // 30 - 3F - {c: '0', ic: 0.136, tclass: 'italic'}, - {c: '1', ic: 0.136, tclass: 'italic'}, - {c: '2', ic: 0.136, tclass: 'italic'}, - {c: '3', ic: 0.136, tclass: 'italic'}, - {c: '4', ic: 0.136, tclass: 'italic'}, - {c: '5', ic: 0.136, tclass: 'italic'}, - {c: '6', ic: 0.136, tclass: 'italic'}, - {c: '7', ic: 0.136, tclass: 'italic'}, - {c: '8', ic: 0.136, tclass: 'italic'}, - {c: '9', ic: 0.136, tclass: 'italic'}, - {c: ':', ic: 0.0582, tclass: 'italic'}, - {c: ';', ic: 0.0582, tclass: 'italic'}, - {c: '¡', ic: 0.0756, tclass: 'italic'}, - {c: '=', a:0, d:-.1, ic: 0.0662, tclass: 'italic'}, - {c: '¿', tclass: 'italic'}, - {c: '?', ic: 0.122, lig: {'96': 62}, tclass: 'italic'}, - // 40 - 4F - {c: '@', ic: 0.096, tclass: 'italic'}, - {c: 'A', krn: {'110': -0.0256, '108': -0.0256, '114': -0.0256, '117': -0.0256, '109': -0.0256, '116': -0.0256, '105': -0.0256, '67': -0.0256, '79': -0.0256, '71': -0.0256, '104': -0.0256, '98': -0.0256, '85': -0.0256, '107': -0.0256, '118': -0.0256, '119': -0.0256, '81': -0.0256, '84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'B', ic: 0.103, tclass: 'italic'}, - {c: 'C', ic: 0.145, tclass: 'italic'}, - {c: 'D', ic: 0.094, krn: {'88': -0.0256, '87': -0.0256, '65': -0.0256, '86': -0.0256, '89': -0.0256}, tclass: 'italic'}, - {c: 'E', ic: 0.12, tclass: 'italic'}, - {c: 'F', ic: 0.133, krn: {'111': -0.0767, '101': -0.0767, '117': -0.0767, '114': -0.0767, '97': -0.0767, '65': -0.102, '79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'G', ic: 0.0872, tclass: 'italic'}, - {c: 'H', ic: 0.164, tclass: 'italic'}, - {c: 'I', ic: 0.158, tclass: 'italic'}, - {c: 'J', ic: 0.14, tclass: 'italic'}, - {c: 'K', ic: 0.145, krn: {'79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'L', krn: {'84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'M', ic: 0.164, tclass: 'italic'}, - {c: 'N', ic: 0.164, tclass: 'italic'}, - {c: 'O', ic: 0.094, krn: {'88': -0.0256, '87': -0.0256, '65': -0.0256, '86': -0.0256, '89': -0.0256}, tclass: 'italic'}, - // 50 - 5F - {c: 'P', ic: 0.103, krn: {'65': -0.0767}, tclass: 'italic'}, - {c: 'Q', d: 1, ic: 0.094, tclass: 'italic'}, - {c: 'R', ic: 0.0387, krn: {'110': -0.0256, '108': -0.0256, '114': -0.0256, '117': -0.0256, '109': -0.0256, '116': -0.0256, '105': -0.0256, '67': -0.0256, '79': -0.0256, '71': -0.0256, '104': -0.0256, '98': -0.0256, '85': -0.0256, '107': -0.0256, '118': -0.0256, '119': -0.0256, '81': -0.0256, '84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'S', ic: 0.12, tclass: 'italic'}, - {c: 'T', ic: 0.133, krn: {'121': -0.0767, '101': -0.0767, '111': -0.0767, '114': -0.0767, '97': -0.0767, '117': -0.0767, '65': -0.0767}, tclass: 'italic'}, - {c: 'U', ic: 0.164, tclass: 'italic'}, - {c: 'V', ic: 0.184, krn: {'111': -0.0767, '101': -0.0767, '117': -0.0767, '114': -0.0767, '97': -0.0767, '65': -0.102, '79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'W', ic: 0.184, krn: {'65': -0.0767}, tclass: 'italic'}, - {c: 'X', ic: 0.158, krn: {'79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}, tclass: 'italic'}, - {c: 'Y', ic: 0.194, krn: {'101': -0.0767, '111': -0.0767, '114': -0.0767, '97': -0.0767, '117': -0.0767, '65': -0.0767}, tclass: 'italic'}, - {c: 'Z', ic: 0.145, tclass: 'italic'}, - {c: '[', d:.1, ic: 0.188, tclass: 'italic'}, - {c: '“', ic: 0.169, tclass: 'italic'}, - {c: ']', d:.1, ic: 0.105, tclass: 'italic'}, - {c: 'ˆ', ic: 0.0665, tclass: 'iaccent'}, - {c: '˙', ic: 0.118, tclass: 'iaccent'}, - // 60 - 6F - {c: '‘', ic: 0.124, lig: {'96': 92}, tclass: 'italic'}, - {c: 'a', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'b', ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'c', a:0, ic: 0.0565, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'd', ic: 0.103, krn: {'108': 0.0511}, tclass: 'italic'}, - {c: 'e', a:0, ic: 0.0751, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'f', ic: 0.212, krn: {'39': 0.104, '63': 0.104, '33': 0.104, '41': 0.104, '93': 0.104}, lig: {'105': 12, '102': 11, '108': 13}, tclass: 'italic'}, - {c: 'g', a:0, d:.2, ic: 0.0885, tclass: 'italic'}, - {c: 'h', ic: 0.0767, tclass: 'italic'}, - {c: 'i', ic: 0.102, tclass: 'italic'}, - {c: 'j', d:.2, ic: 0.145, tclass: 'italic'}, - {c: 'k', ic: 0.108, tclass: 'italic'}, - {c: 'l', ic: 0.103, krn: {'108': 0.0511}, tclass: 'italic'}, - {c: 'm', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'n', a:0, ic: 0.0767, krn: {'39': -0.102}, tclass: 'italic'}, - {c: 'o', a:0, ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - // 70 - 7F - {c: 'p', a:0, d:.2, ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 'q', a:0, d:.2, ic: 0.0885, tclass: 'italic'}, - {c: 'r', a:0, ic: 0.108, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}, tclass: 'italic'}, - {c: 's', a:0, ic: 0.0821, tclass: 'italic'}, - {c: 't', ic: 0.0949, tclass: 'italic'}, - {c: 'u', a:0, ic: 0.0767, tclass: 'italic'}, - {c: 'v', a:0, ic: 0.108, tclass: 'italic'}, - {c: 'w', a:0, ic: 0.108, krn: {'108': 0.0511}, tclass: 'italic'}, - {c: 'x', a:0, ic: 0.12, tclass: 'italic'}, - {c: 'y', a:0, d:.2, ic: 0.0885, tclass: 'italic'}, - {c: 'z', a:0, ic: 0.123, tclass: 'italic'}, - {c: '–', a:.1, ic: 0.0921, lig: {'45': 124}, tclass: 'italic'}, - {c: '—', a:.1, ic: 0.0921, tclass: 'italic'}, - {c: '˝', ic: 0.122, tclass: 'iaccent'}, - {c: '˜', ic: 0.116, tclass: 'iaccent'}, - {c: '¨', tclass: 'iaccent'} - ], - - cmbx10: [ - // 00 - 0F - {c: 'Γ', tclass: 'bgreek'}, - {c: 'Δ', tclass: 'bgreek'}, - {c: 'Θ', tclass: 'bgreek'}, - {c: 'Λ', tclass: 'bgreek'}, - {c: 'Ξ', tclass: 'bgreek'}, - {c: 'Π', tclass: 'bgreek'}, - {c: 'Σ', tclass: 'bgreek'}, - {c: 'Υ', tclass: 'bgreek'}, - {c: 'Φ', tclass: 'bgreek'}, - {c: 'Ψ', tclass: 'bgreek'}, - {c: 'Ω', tclass: 'bgreek'}, - {c: 'ff', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 14, '108': 15}, tclass: 'bold'}, - {c: 'fi', tclass: 'bold'}, - {c: 'fl', tclass: 'bold'}, - {c: 'ffi', tclass: 'bold'}, - {c: 'ffl', tclass: 'bold'}, - // 10 - 1F - {c: 'ı', a:0, tclass: 'bold'}, - {c: 'j', d:.2, tclass: 'bold'}, - {c: '`', tclass: 'baccent'}, - {c: '´', tclass: 'baccent'}, - {c: 'ˇ', tclass: 'baccent'}, - {c: '˘', tclass: 'baccent'}, - {c: 'ˉ', tclass: 'baccent'}, - {c: '˚', tclass: 'baccent'}, - {c: '?', tclass: 'bold'}, - {c: 'ß', tclass: 'bold'}, - {c: 'æ', a:0, tclass: 'bold'}, - {c: 'œ', a:0, tclass: 'bold'}, - {c: 'ø', tclass: 'bold'}, - {c: 'Æ', tclass: 'bold'}, - {c: 'Œ', tclass: 'bold'}, - {c: 'Ø', tclass: 'bold'}, - // 20 - 2F - {c: '?', krn: {'108': -0.278, '76': -0.319}, tclass: 'bold'}, - {c: '!', lig: {'96': 60}, tclass: 'bold'}, - {c: '”', tclass: 'bold'}, - {c: '#', tclass: 'bold'}, - {c: '$', tclass: 'bold'}, - {c: '%', tclass: 'bold'}, - {c: '&', tclass: 'bold'}, - {c: '’', krn: {'63': 0.111, '33': 0.111}, lig: {'39': 34}, tclass: 'bold'}, - {c: '(', d:.2, tclass: 'bold'}, - {c: ')', d:.2, tclass: 'bold'}, - {c: '*', tclass: 'bold'}, - {c: '+', a:.1, tclass: 'bold'}, - {c: ',', a:-.3, d:.2, w: 0.278, tclass: 'bold'}, - {c: '-', a:0, lig: {'45': 123}, tclass: 'bold'}, - {c: '.', a:-.25, tclass: 'bold'}, - {c: '/', tclass: 'bold'}, - // 30 - 3F - {c: '0', tclass: 'bold'}, - {c: '1', tclass: 'bold'}, - {c: '2', tclass: 'bold'}, - {c: '3', tclass: 'bold'}, - {c: '4', tclass: 'bold'}, - {c: '5', tclass: 'bold'}, - {c: '6', tclass: 'bold'}, - {c: '7', tclass: 'bold'}, - {c: '8', tclass: 'bold'}, - {c: '9', tclass: 'bold'}, - {c: ':', tclass: 'bold'}, - {c: ';', tclass: 'bold'}, - {c: '¡', tclass: 'bold'}, - {c: '=', a:0, d:-.1, tclass: 'bold'}, - {c: '¿', tclass: 'bold'}, - {c: '?', lig: {'96': 62}, tclass: 'bold'}, - // 40 - 4F - {c: '@', tclass: 'bold'}, - {c: 'A', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'bold'}, - {c: 'B', tclass: 'bold'}, - {c: 'C', tclass: 'bold'}, - {c: 'D', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'bold'}, - {c: 'E', tclass: 'bold'}, - {c: 'F', krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'G', tclass: 'bold'}, - {c: 'H', tclass: 'bold'}, - {c: 'I', krn: {'73': 0.0278}, tclass: 'bold'}, - {c: 'J', tclass: 'bold'}, - {c: 'K', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'L', krn: {'84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'bold'}, - {c: 'M', tclass: 'bold'}, - {c: 'N', tclass: 'bold'}, - {c: 'O', krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}, tclass: 'bold'}, - // 50 - 5F - {c: 'P', krn: {'65': -0.0833, '111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'bold'}, - {c: 'Q', d: 1, tclass: 'bold'}, - {c: 'R', krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}, tclass: 'bold'}, - {c: 'S', tclass: 'bold'}, - {c: 'T', krn: {'121': -0.0278, '101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'bold'}, - {c: 'U', tclass: 'bold'}, - {c: 'V', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'W', ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'X', krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}, tclass: 'bold'}, - {c: 'Y', ic: 0.025, krn: {'101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}, tclass: 'bold'}, - {c: 'Z', tclass: 'bold'}, - {c: '[', d:.1, tclass: 'bold'}, - {c: '“', tclass: 'bold'}, - {c: ']', d:.1, tclass: 'bold'}, - {c: 'ˆ', tclass: 'baccent'}, - {c: '˙', tclass: 'baccent'}, - // 60 - 6F - {c: '‘', lig: {'96': 92}, tclass: 'bold'}, - {c: 'a', a:0, krn: {'118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'b', krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'c', a:0, krn: {'104': -0.0278, '107': -0.0278}, tclass: 'bold'}, - {c: 'd', tclass: 'bold'}, - {c: 'e', a:0, tclass: 'bold'}, - {c: 'f', ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 12, '102': 11, '108': 13}, tclass: 'bold'}, - {c: 'g', a:0, d:.2, ic: 0.0139, krn: {'106': 0.0278}, tclass: 'bold'}, - {c: 'h', krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'i', tclass: 'bold'}, - {c: 'j', d:.2, tclass: 'bold'}, - {c: 'k', krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'bold'}, - {c: 'l', tclass: 'bold'}, - {c: 'm', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'n', a:0, krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'o', a:0, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - // 70 - 7F - {c: 'p', a:0, d:.2, krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'q', a:0, d:.2, tclass: 'bold'}, - {c: 'r', a:0, tclass: 'bold'}, - {c: 's', a:0, tclass: 'bold'}, - {c: 't', krn: {'121': -0.0278, '119': -0.0278}, tclass: 'bold'}, - {c: 'u', a:0, krn: {'119': -0.0278}, tclass: 'bold'}, - {c: 'v', a:0, ic: 0.0139, krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'bold'}, - {c: 'w', a:0, ic: 0.0139, krn: {'101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}, tclass: 'bold'}, - {c: 'x', a:0, tclass: 'bold'}, - {c: 'y', a:0, d:.2, ic: 0.0139, krn: {'111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}, tclass: 'bold'}, - {c: 'z', a:0, tclass: 'bold'}, - {c: '–', a:.1, ic: 0.0278, lig: {'45': 124}, tclass: 'bold'}, - {c: '—', a:.1, ic: 0.0278, tclass: 'bold'}, - {c: '˝', tclass: 'baccent'}, - {c: '˜', tclass: 'baccent'}, - {c: '¨', tclass: 'baccent'} - ] -}); - -jsMath.Setup.Styles({ - '.typeset .math': 'font-style: normal', - '.typeset .italic': 'font-style: italic', - '.typeset .bold': 'font-weight: bold', - '.typeset .cmr10': 'font-family: serif', - '.typeset .cal': 'font-family: cursive', - '.typeset .arrows': '', - '.typeset .arrow1': '', - '.typeset .arrow2': '', - '.typeset .harpoon': 'font-size: 125%', - '.typeset .symbol': '', - '.typeset .symbol2': '', - '.typeset .delim1': 'font-size: 133%; position:relative; top:.75em', - '.typeset .delim1b': 'font-size: 133%; position:relative; top:.8em; margin: -.1em', - '.typeset .delim1c': 'font-size: 120%; position:relative; top:.8em;', - '.typeset .delim2': 'font-size: 180%; position:relative; top:.75em', - '.typeset .delim2b': 'font-size: 190%; position:relative; top:.8em; margin: -.1em', - '.typeset .delim2c': 'font-size: 167%; position:relative; top:.8em;', - '.typeset .delim3': 'font-size: 250%; position:relative; top:.725em', - '.typeset .delim3b': 'font-size: 250%; position:relative; top:.8em; margin: -.1em', - '.typeset .delim3c': 'font-size: 240%; position:relative; top:.775em;', - '.typeset .delim4': 'font-size: 325%; position:relative; top:.7em', - '.typeset .delim4b': 'font-size: 325%; position:relative; top:.8em; margin: -.1em', - '.typeset .delim4c': 'font-size: 300%; position:relative; top:.8em;', - '.typeset .delim': '', - '.typeset .vertical': '', - '.typeset .greek': '', - '.typeset .igreek': 'font-style: italic', - '.typeset .bgreek': 'font-weight: bold', - '.typeset .bigop1': 'font-size: 133%; position: relative; top: .85em; margin:-.05em', - '.typeset .bigop1a': 'font-size: 100%; position: relative; top: .775em;', - '.typeset .bigop1b': 'font-size: 160%; position: relative; top: .7em; margin:-.1em', - '.typeset .bigop1c': 'font-size: 125%; position: relative; top: .75em; margin:-.1em;', - '.typeset .bigop2': 'font-size: 200%; position: relative; top: .8em; margin:-.07em', - '.typeset .bigop2a': 'font-size: 175%; position: relative; top: .7em;', - '.typeset .bigop2b': 'font-size: 270%; position: relative; top: .62em; margin:-.1em', - '.typeset .bigop2c': 'font-size: 250%; position: relative; top: .7em; margin:-.17em;', - '.typeset .wide1': 'font-size: 67%; position: relative; top:-.8em', - '.typeset .wide2': 'font-size: 110%; position: relative; top:-.5em', - '.typeset .wide3': 'font-size: 175%; position: relative; top:-.32em', - '.typeset .wide1a': 'font-size: 75%; position: relative; top:-.5em', - '.typeset .wide2a': 'font-size: 133%; position: relative; top: -.15em', - '.typeset .wide3a': 'font-size: 200%; position: relative; top: -.05em', - '.typeset .root': '', - '.typeset .accent': 'position: relative; top: .02em', - '.typeset .iaccent': 'position: relative; top: .02em; font-style: italic', - '.typeset .baccent': 'position: relative; top: .02em; font-weight: bold' -}); - - -jsMath.Setup.Styles(); - -/* - * No access to TeX "not" character, so fake this - */ -jsMath.Macro('not','\\mathrel{\\rlap{\\kern 4mu/}}'); -jsMath.Macro('joinrel','\\mathrel{\\kern-2mu}'); - - -jsMath.Box.DelimExtend = jsMath.Box.DelimExtendRelative; - -jsMath.Box.defaultH = 0.8; diff --git a/sagenb/data/jsmath/uncompressed/jsMath.js b/sagenb/data/jsmath/uncompressed/jsMath.js deleted file mode 100644 index 566d0d9b1..000000000 --- a/sagenb/data/jsmath/uncompressed/jsMath.js +++ /dev/null @@ -1,6569 +0,0 @@ -/***************************************************************************** - * - * jsMath: Mathematics on the Web - * - * This jsMath package makes it possible to display mathematics in HTML pages - * that are viewable by a wide range of browsers on both the Mac and the IBM PC, - * including browsers that don't process MathML. See - * - * http://www.math.union.edu/locate/jsMath - * - * for the latest version, and for documentation on how to use jsMath. - * - * Copyright 2004-2008 by Davide P. Cervone - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - *****************************************************************************/ - -/* - * Prevent running everything again if this file is loaded twice - */ -if (!window.jsMath || !window.jsMath.loaded) { - -var jsMath_old = window.jsMath; // save user customizations - -// -// debugging routine -// -/* - * function ShowObject (obj,spaces) { - * var s = ''; if (!spaces) {spaces = ""} - * for (var i in obj) { - * if (obj[i] != null) { - * if (typeof(obj[i]) == "object") { - * s += spaces + i + ": {\n" - * + ShowObject(obj[i],spaces + ' ') - * + spaces + "}\n"; - * } else if (typeof(obj[i]) != "function") { - * s += spaces + i + ': ' + obj[i] + "\n"; - * } - * } - * } - * return s; - * } - */ - -/***************************************************************************/ -// -// Check for DOM support -// -if (!document.getElementById || !document.childNodes || !document.createElement) { - alert('The mathematics on this page requires W3C DOM support in its JavaScript. ' - + 'Unfortunately, your browser doesn\'t seem to have this.'); -} else { - -/***************************************************************************/ - -window.jsMath = { - - version: "3.6c", // change this if you edit the file, but don't edit this file - - document: document, // the document loading jsMath - window: window, // the window of the of loading document - - platform: (navigator.platform.match(/Mac/) ? "mac" : - navigator.platform.match(/Win/) ? "pc" : "unix"), - - // Font sizes for \tiny, \small, etc. (must match styles below) - sizes: [50, 60, 70, 85, 100, 120, 144, 173, 207, 249], - - // - // The styles needed for the TeX fonts and other jsMath elements - // - styles: { - '.math': { // unprocessed mathematics - 'font-family': 'serif', - 'font-style': 'normal', - 'font-weight': 'normal' - }, - - '.typeset': { // final typeset mathematics - 'font-family': 'serif', - 'font-style': 'normal', - 'font-weight': 'normal', - 'line-height': 'normal', - 'text-indent': '0px', - 'white-space': 'normal' - }, - - '.typeset .normal': { // \hbox contents style - 'font-family': 'serif', - 'font-style': 'normal', - 'font-weight': 'normal' - }, - - 'div.typeset': { // display mathematics - 'text-align': 'center', - margin: '1em 0px' - }, - - 'span.typeset': { // in-line mathematics - 'text-align': 'left' - }, - - '.typeset span': { // prevent outside CSS from setting these - 'text-align': 'left', - border: '0px', - margin: '0px', - padding: '0px' - }, - - 'a .typeset img, .typeset a img': { // links in image mode - border: '0px', - 'border-bottom': '1px solid blue;' - }, - - // Font sizes - '.typeset .size0': {'font-size': '50%'}, // tiny (\scriptscriptsize) - '.typeset .size1': {'font-size': '60%'}, // (50% of \large for consistency) - '.typeset .size2': {'font-size': '70%'}, // scriptsize - '.typeset .size3': {'font-size': '85%'}, // small (70% of \large for consistency) - '.typeset .size4': {'font-size': '100%'}, // normalsize - '.typeset .size5': {'font-size': '120%'}, // large - '.typeset .size6': {'font-size': '144%'}, // Large - '.typeset .size7': {'font-size': '173%'}, // LARGE - '.typeset .size8': {'font-size': '207%'}, // huge - '.typeset .size9': {'font-size': '249%'}, // Huge - - // TeX fonts - '.typeset .cmr10': {'font-family': 'jsMath-cmr10, serif'}, - '.typeset .cmbx10': {'font-family': 'jsMath-cmbx10, jsMath-cmr10'}, - '.typeset .cmti10': {'font-family': 'jsMath-cmti10, jsMath-cmr10'}, - '.typeset .cmmi10': {'font-family': 'jsMath-cmmi10'}, - '.typeset .cmsy10': {'font-family': 'jsMath-cmsy10'}, - '.typeset .cmex10': {'font-family': 'jsMath-cmex10'}, - - '.typeset .textit': {'font-family': 'serif', 'font-style': 'italic'}, - '.typeset .textbf': {'font-family': 'serif', 'font-weight': 'bold'}, - - '.typeset .link': {'text-decoration': 'none'}, // links in mathematics - - '.typeset .error': { // in-line error messages - 'font-size': '90%', - 'font-style': 'italic', - 'background-color': '#FFFFCC', - padding: '1px', - border: '1px solid #CC0000' - }, - - '.typeset .blank': { // internal use - display: 'inline-block', - overflow: 'hidden', - border: '0px none', - width: '0px', - height: '0px' - }, - '.typeset .spacer': { // internal use - display: 'inline-block' - }, - - '#jsMath_hiddenSpan': { // used for measuring BBoxes - visibility: 'hidden', - position: 'absolute', - top: '0px', - left: '0px', - 'line-height': 'normal', - 'text-indent': '0px' - }, - - '#jsMath_message': { // percentage complete message - position: 'fixed', - bottom: '1px', - left: '2px', - 'background-color': '#E6E6E6', - border: 'solid 1px #959595', - margin: '0px', - padding: '1px 8px', - 'z-index': '102', - color: 'black', - 'font-size': 'small', - width: 'auto' - }, - - '#jsMath_panel': { // control panel - position: 'fixed', - bottom: '1.75em', - right: '1.5em', - padding: '.8em 1.6em', - 'background-color': '#DDDDDD', - border: 'outset 2px', - 'z-index': '103', - width: 'auto', - color: 'black', - 'font-size': '10pt', - 'font-style': 'normal' - }, - '#jsMath_panel .disabled': {color: '#888888'}, // disabled items in the panel - '#jsMath_panel .infoLink': {'font-size': '85%'}, // links to web pages - - // avoid CSS polution from outside the panel - '#jsMath_panel *': { - 'font-size': 'inherit', - 'font-style': 'inherit', - 'font-family': 'inherit', - 'line-height': 'normal' - }, - '#jsMath_panel div': {'background-color': 'inherit', color: 'inherit'}, - '#jsMath_panel span': {'background-color': 'inherit', color: 'inherit'}, - '#jsMath_panel td': { - border: '0px', padding: '0px', margin: '0px', - 'background-color': 'inherit', color: 'inherit' - }, - '#jsMath_panel tr': { - border: '0px', padding: '0px', margin: '0px', - 'background-color': 'inherit', color: 'inherit' - }, - '#jsMath_panel table': { - border: '0px', padding: '0px', margin: '0px', - 'background-color': 'inherit', color: 'inherit', - height: 'auto', width: 'auto' - }, - - '#jsMath_button': { // the jsMath floating button (to open control panel) - position: 'fixed', - bottom: '1px', - right: '2px', - 'background-color': 'white', - border: 'solid 1px #959595', - margin: '0px', - padding: '0px 3px 1px 3px', - 'z-index': '102', - color: 'black', - 'text-decoration': 'none', - 'font-size': 'x-small', - width: 'auto', - cursor: 'hand' - }, - '#jsMath_button *': { - padding: '0px', border: '0px', margin: '0px', 'line-height': 'normal', - 'font-size': 'inherit', 'font-style': 'inherit', 'font-family': 'inherit' - }, - - '#jsMath_global': {'font-style': 'italic'}, // 'global' in jsMath button - - '#jsMath_noFont .message': { // missing font message window - 'text-align': 'center', - padding: '.8em 1.6em', - border: '3px solid #DD0000', - 'background-color': '#FFF8F8', - color: '#AA0000', - 'font-size': 'small', - width: 'auto' - }, - '#jsMath_noFont .link': { - padding: '0px 5px 2px 5px', - border: '2px outset', - 'background-color': '#E8E8E8', - color: 'black', - 'font-size': '80%', - width: 'auto', - cursor: 'hand' - }, - - '#jsMath_PrintWarning .message': { // warning on print pages - 'text-align': 'center', - padding: '.8em 1.6em', - border: '3px solid #DD0000', - 'background-color': '#FFF8F8', - color: '#AA0000', - 'font-size': 'x-small', - width: 'auto' - }, - - '@media print': { - '#jsMath_button': {display: 'none'}, - '#jsMath_Warning': {display: 'none'} - }, - - '@media screen': { - '#jsMath_PrintWarning': {display:'none'} - } - - }, - - - /***************************************************************************/ - - /* - * Get a jsMath DOM element - */ - Element: function (name) {return jsMath.document.getElementById('jsMath_'+name)}, - - /* - * Get the width and height (in pixels) of an HTML string - */ - BBoxFor: function (s) { - this.hidden.innerHTML = - ''+s+''; - var bbox = {w: this.hidden.offsetWidth, h: this.hidden.offsetHeight}; - this.hidden.innerHTML = ''; - return bbox; - }, - - /* - * Get the width and height (in ems) of an HTML string. - * Check the cache first to see if we've already measured it. - */ - EmBoxFor: function (s) { - var cache = jsMath.Global.cache.R; - if (!cache[this.em]) {cache[this.em] = {}} - if (!cache[this.em][s]) { - var bbox = this.BBoxFor(s); - cache[this.em][s] = {w: bbox.w/this.em, h: bbox.h/this.em}; - } - return cache[this.em][s]; - }, - - /* - * For browsers that don't handle sizes of italics properly (MSIE). - * Check the cache first to see if we've already measured it. - */ - EmBoxForItalics: function (s) { - var cache = jsMath.Global.cache.R; - if (!cache[this.em]) {cache[this.em] = {}} - if (!cache[this.em][s]) { - var bbox = this.BBoxFor(s); - if (s.match(/|class=\"(icm|italic|igreek|iaccent)/i)) { - bbox.w = bbox.Mw = this.BBoxFor(s+jsMath.Browser.italicString).w - - jsMath.Browser.italicCorrection; - } - cache[this.em][s] = {w: bbox.w/this.em, h: bbox.h/this.em}; - } - return cache[this.em][s]; - }, - - /* - * Initialize jsMath. This determines the em size, and a variety - * of other parameters used throughout jsMath. - */ - Init: function () { - if (jsMath.Setup.inited != 1) { - if (!jsMath.Setup.inited) {jsMath.Setup.Body()} - if (jsMath.Setup.inited != 1) { - if (jsMath.Setup.inited == -100) return; - alert("It looks like jsMath failed to set up properly (error code " - + jsMath.Setup.inited + "). " - + "I will try to keep going, but it could get ugly."); - jsMath.Setup.inited = 1; - } - } - this.em = this.CurrentEm(); - var cache = jsMath.Global.cache.B; - if (!cache[this.em]) { - cache[this.em] = {}; - cache[this.em].bb = this.BBoxFor('x'); var hh = cache[this.em].bb.h; - cache[this.em].d = this.BBoxFor('x'+jsMath.HTML.Rule(1,hh/jsMath.em)).h - hh; - if (jsMath.Browser.italicString) - {cache[this.em].ic = jsMath.BBoxFor(jsMath.Browser.italicString).w} - } - jsMath.Browser.italicCorrection = cache[this.em].ic; - var bb = cache[this.em].bb; var h = bb.h; var d = cache[this.em].d - this.h = (h-d)/this.em; this.d = d/this.em; - this.hd = this.h + this.d; - - this.Setup.TeXfonts(); - - var x_height = this.EmBoxFor('M').w/2; - this.TeX.M_height = x_height*(26/14); - this.TeX.h = this.h; this.TeX.d = this.d; this.TeX.hd = this.hd; - - this.Img.Scale(); - if (!this.initialized) { - this.Setup.Sizes(); - this.Img.UpdateFonts(); - } - - // factor for \big and its brethren - this.p_height = (this.TeX.cmex10[0].h + this.TeX.cmex10[0].d) / .85; - - this.initialized = 1; - }, - - /* - * Get the x size and if it has changed, reinitialize the sizes - */ - ReInit: function () { - if (this.em != this.CurrentEm()) {this.Init()} - }, - - /* - * Find the em size in effect at the current text location - */ - CurrentEm: function () { - var em = this.BBoxFor('').w/27; - if (em > 0) {return em} - // handle older browsers - return this.BBoxFor('').w/13; - }, - - /* - * Mark jsMath as loaded and copy any user-provided overrides - */ - Loaded: function () { - if (jsMath_old) { - var override = ['Process', 'ProcessBeforeShowing','ProcessElement', - 'ConvertTeX','ConvertTeX2','ConvertLaTeX','ConvertCustom', - 'CustomSearch', 'Synchronize', 'Macro', 'document']; - for (var i = 0; i < override.length; i++) { - if (jsMath_old[override[i]]) {delete jsMath_old[override[i]]} - } - } - if (jsMath_old) {this.Insert(jsMath,jsMath_old)} - jsMath_old = null; - jsMath.loaded = 1; - }, - - /* - * Manage JavaScript objects: - * - * Add: add/replace items in an object - * Insert: add items to an object - * Package: add items to an object prototype - */ - Add: function (dst,src) {for (var id in src) {dst[id] = src[id]}}, - Insert: function (dst,src) { - for (var id in src) { - if (dst[id] && typeof(src[id]) == 'object' - && (typeof(dst[id]) == 'object' - || typeof(dst[id]) == 'function')) { - this.Insert(dst[id],src[id]); - } else { - dst[id] = src[id]; - } - } - }, - Package: function (obj,def) {this.Insert(obj.prototype,def)} - -}; - - -/***************************************************************************/ - - /* - * Implements items associated with the global cache. - * - * This object will be replaced by a global version when - * (and if) jsMath-global.html is loaded. - */ -jsMath.Global = { - isLocal: 1, // a local copy if jsMath-global.html hasn't been loaded - cache: {T: {}, D: {}, R: {}, B: {}}, - - /* - * Clear the global (or local) cache - */ - ClearCache: function () {jsMath.Global.cache = {T: {}, D: {}, R: {}, B: {}}}, - - /* - * Initiate global mode - */ - GoGlobal: function (cookie) { - var url = String(jsMath.window.location); - var c = (jsMath.isCHMmode ? '#' : '?'); - if (cookie) {url = url.replace(/\?.*/,'') + '?' + cookie} - jsMath.Controls.Reload(jsMath.root + "jsMath-global.html" + c +escape(url)); - }, - - /* - * Check if we need to go to global mode - */ - Init: function () { - if (jsMath.Controls.cookie.global == "always" && !jsMath.noGoGlobal) { - if (navigator.accentColorName) return; // OmniWeb crashes on GoGlobal - if (!jsMath.window) {jsMath.window = window} - jsMath.Controls.loaded = 1; - jsMath.Controls.defaults.hiddenGlobal = null; - this.GoGlobal(jsMath.Controls.SetCookie(2)); - } - }, - - /* - * Try to register with a global.html window that contains us - */ - Register: function () { - var parent = jsMath.window.parent; - if (!jsMath.isCHMmode) - {jsMath.isCHMmode = (jsMath.window.location.protocol == 'mk:')} - try { - if (!jsMath.isCHMmode) this.Domain(); - if (parent.jsMath && parent.jsMath.isGlobal) - {parent.jsMath.Register(jsMath.window)} - } catch (err) {jsMath.noGoGlobal = 1} - }, - - /* - * If we're not the parent window, try to set the domain to - * match the parent's domain (so we can use the Global data - * if the surrounding frame is a Global frame). - */ - Domain: function () { - // MSIE/Mac can't do domain changes, so don't bother trying - if (navigator.appName == 'Microsoft Internet Explorer' && - jsMath.platform == 'mac' && navigator.userProfile != null) return; - // MSIE/PC can do domain change, but gets mixed up if we don't - // find a domain that works, and then can't look in window.location - // any longer. So don't try, since we can't afford to leave it confused. - if (jsMath.document.all && !jsMath.window.opera) return; - - if (window == parent) return; - var oldDomain = jsMath.document.domain; - try { - while (true) { - try {if (parent.document.title != null) return} catch (err) {} - if (!document.domain.match(/\..*\./)) break; - jsMath.document.domain = jsMath.document.domain.replace(/^[^.]*\./,''); - } - } catch (err) {} - jsMath.document.domain = oldDomain; - } - -}; - - - -/***************************************************************************/ - -/* - * - * Implement loading of remote scripts using XMLHttpRequest, if - * possible, otherwise use a hidden IFRAME and fake it. That - * method runs asynchronously, which causes lots of headaches. - * Solve these using Push command, which queues actions - * until files have loaded. - */ - -jsMath.Script = { - - request: null, // the XMLHttpRequest object - - /* - * Create the XMLHttpRequest object, if we can. - * Otherwise, use the iframe-based fallback method. - */ - Init: function () { - if (!(jsMath.Controls.cookie.asynch && jsMath.Controls.cookie.progress)) { - if (window.XMLHttpRequest) { - try {this.request = new XMLHttpRequest} catch (err) {} - // MSIE and FireFox3 can't use xmlRequest on local files, - // but we don't have jsMath.browser yet to tell, so use this check - if (this.request && jsMath.root.match(/^file:\/\//)) { - try { - this.request.open("GET",jsMath.root+"jsMath.js",false); - this.request.send(null); - } catch (err) { - this.request = null; - // Firefox3 has window.postMessage for inter-window communication. - // It can be used to handle the new file:// security model, - // so set up the listener. - if (window.postMessage && window.addEventListener) { - this.mustPost = 1; - jsMath.window.addEventListener("message",jsMath.Post.Listener,false); - } - } - } - } - if (!this.request && window.ActiveXObject && !this.mustPost) { - var xml = ["MSXML2.XMLHTTP.5.0","MSXML2.XMLHTTP.4.0","MSXML2.XMLHTTP.3.0", - "MSXML2.XMLHTTP","Microsoft.XMLHTTP"]; - for (var i = 0; i < xml.length && !this.request; i++) { - try {this.request = new ActiveXObject(xml[i])} catch (err) {} - } - } - } - // - // Use the delayed-script fallback for MSIE/Mac and old versions - // of several browsers (Opera 7.5, OmniWeb 4.5). - // - if (!this.request || jsMath.Setup.domainChanged) - {this.Load = this.delayedLoad; this.needsBody = 1} - }, - - /* - * Load a script and evaluate it in the window's context - */ - Load: function (url,show) { - if (show) { - jsMath.Message.Set("Loading "+url); - jsMath.Script.Delay(1); - jsMath.Script.Push(this,'xmlRequest',url); - jsMath.Script.Push(jsMath.Message,'Clear'); - } else { - jsMath.Script.Push(this,'xmlRequest',url); - } - }, - - /* - * Load a URL and run the contents of the file - */ - xmlRequest: function (url) { - this.blocking = 1; -// this.debug('xmlRequest: '+url); - try { - this.request.open("GET",url,false); - this.request.send(null); - } catch (err) { - this.blocking = 0; - if (jsMath.Translate.restart && jsMath.Translate.asynchronous) {return ""} - throw Error("jsMath can't load the file '"+url+"'\n" - + "Message: "+err.message); - } - if (this.request.status != null && (this.request.status >= 400 || this.request.status < 0)) { - // Do we need to deal with redirected links? - this.blocking = 0; - if (jsMath.Translate.restart && jsMath.Translate.asynchronous) {return ""} - throw Error("jsMath can't load the file '"+url+"'\n" - + "Error status: "+this.request.status); - } - if (!url.match(/\.js$/)) {return(this.request.responseText)} - var tmpQueue = this.queue; this.queue = []; -// this.debug('xml Eval ['+tmpQueue.length+']'); - jsMath.window.eval(this.request.responseText); -// this.debug('xml Done ['+this.queue.length+' + '+tmpQueue.length+']'); - this.blocking = 0; this.queue = this.queue.concat(tmpQueue); - this.Process(); - return ""; - }, - - /******************************************************************** - * - * Implement asynchronous loading and execution of scripts - * (via hidden IFRAME) interleved with other JavaScript commands - * that must be synchronized with the file loading. (Basically, this - * is for MSIE/Mac and Opera 7.5, which don't have XMLHttpRequest.) - */ - - cancelTimeout: 30*1000, // delay for canceling load (30 sec) - - blocking: 0, // true when an asynchronous action is being performed - cancelTimer: null, // timer to cancel load if it takes too long - needsBody: 0, // true if loading files requires BODY to be present - - queue: [], // the stack of pending actions - - /* - * Provide mechanism for synchronizing with the asynchronous jsMath - * file-loading mechanism. 'code' can be a string or a function. - */ - Synchronize: function (code,data) { - if (typeof(code) != 'string') {jsMath.Script.Push(null,code,data)} - else {jsMath.Script.Push(jsMath.window,'eval',code)} - }, - - /* - * Queue a function to be processed. - * If nothing is being loaded, do the pending commands. - */ - Push: function (object,method,data) { -// this.debug('Pushing: '+method+' at '+this.queue.length); // debug - this.queue[this.queue.length] = [object,method,data]; - if (!(this.blocking || (this.needsBody && !jsMath.document.body))) this.Process(); - }, - - /* - * Do any pending functions (stopping if a file load is started) - */ - Process: function () { - while (this.queue.length && !this.blocking) { - var call = this.queue[0]; this.queue = this.queue.slice(1); - var savedQueue = this.SaveQueue(); - var object = call[0]; var method = call[1]; var data = call[2]; -// this.debug('Calling: '+method+' ['+savedQueue.length+']'); // debug - if (object) {object[method](data)} else if (method) {method(data)} -// this.debug('Done: '+method+' ['+this.queue.length+' + '+savedQueue.length+'] ('+this.blocking+')'); // debug - this.RestoreQueue(savedQueue); - } - }, - - /* - * Allows pushes to occur at the FRONT of the queue - * (so a command acts as a single unit, including anything - * that it pushes on to the command stack) - */ - SaveQueue: function () { - var queue = this.queue; - this.queue = []; - return queue; - }, - RestoreQueue: function (queue) { - this.queue = this.queue.concat(queue); - }, - - /* - * Handle loading of scripts that run asynchronously - */ - delayedLoad: function (url) { -// this.debug('Loading: '+url); - this.Push(this,'startLoad',url); - }, - startLoad: function (url) { - var iframe = jsMath.document.createElement('iframe'); - iframe.style.visibility = 'hidden'; - iframe.style.position = 'absolute'; - iframe.style.width = '0px'; - iframe.style.height = '0px'; - if (jsMath.document.body.firstChild) { - jsMath.document.body.insertBefore(iframe,jsMath.document.body.firstChild); - } else { - jsMath.document.body.appendChild(iframe); - } - this.blocking = 1; this.url = url; - if (url.substr(0,jsMath.root.length) == jsMath.root) - {url = url.substr(jsMath.root.length)} - jsMath.Message.Set("Loading "+url); - this.cancelTimer = setTimeout('jsMath.Script.cancelLoad()',this.cancelTimeout); - if (this.mustPost) {iframe.src = jsMath.Post.startLoad(url,iframe)} - else if (url.match(/\.js$/)) {iframe.src = jsMath.root+"jsMath-loader.html"} - else {iframe.src = this.url} - }, - endLoad: function (action) { - if (this.cancelTimer) {clearTimeout(this.cancelTimer); this.cancelTimer = null} - jsMath.Post.endLoad(); - jsMath.Message.Clear(); - if (action != 'cancel') {this.blocking = 0; this.Process()} - }, - - Start: function () { -// this.debug('Starting: ['+this.queue.length+'] '+this.url); - this.tmpQueue = this.queue; this.queue = []; - }, - End: function () { -// this.debug('Ending: ['+this.queue.length+' + '+this.tmpQueue.length+'] '+this.url); - this.queue = this.queue.concat(this.tmpQueue); delete this.tmpQueue; - }, - - /* - * If the loading takes too long, cancel it and end the load. - */ - cancelLoad: function (message,delay) { - if (this.cancelTimer) {clearTimeout(this.cancelTimer); this.cancelTimer = null} - if (message == null) {message = "Can't load file"} - if (delay == null) {delay = 2000} - jsMath.Message.Set(message); - setTimeout('jsMath.Script.endLoad("cancel")',delay); - }, - - /* - * Perform a delay (to let the browser catch up) - */ - Delay: function (time) { - this.blocking = 1; - setTimeout('jsMath.Script.endDelay()',time); - }, - endDelay: function () { -// this.debug('endDelay'); - this.blocking = 0; - this.Process(); - }, - - /* - * Load an image and wait for it - * (so MSIE won't load extra copies of it) - */ - imageCount: 0, - WaitForImage: function (file) { - this.blocking = 1; this.imageCount++; - if (this.img == null) {this.img = []} - var img = new Image(); this.img[this.img.length] = img; - img.onload = function () {if (--jsMath.Script.imageCount == 0) jsMath.Script.endDelay()} - img.onerror = img.onload; img.onabort = img.onload; - img.src = file; - }, - - /* - * The code uncompressor - */ - Uncompress: function (data) { - for (var k = 0; k < data.length; k++) { - var d = data[k]; var n = d.length; - for (var i = 0; i < n; i++) {if (typeof(d[i]) == 'number') {d[i] = d[d[i]]}} - data[k] = d.join(''); - } - window.eval(data.join('')); - } - - /* - * for debugging the event queue - */ - /* - * ,debug: function (message) { - * if (jsMath.document.body && jsMath.window.debug) {jsMath.window.debug(message)} - * else {alert(message)} - * } - */ - -}; - -/***************************************************************************/ - -/* - * Handle window.postMessage() events in Firefox3 - */ - -jsMath.Post = { - window: null, // iframe we are listening to - - Listener: function (event) { - if (event.source != jsMath.Post.window) return; - var domain = event.origin.replace(/^file:\/\//,''); - var ddomain = document.domain.replace(/^file:\/\//,''); - if (domain == null || domain == "" || domain == "null") {domain = "localhost"} - if (ddomain == null || ddomain == "" || ddomain == "null") {ddomain = "localhost"} - if (domain != ddomain || !event.data.substr(0,6).match(/jsM(CP|LD|AL):/)) return; - var type = event.data.substr(6,3).replace(/ /g,''); - var message = event.data.substr(10); - if (jsMath.Post.Commands[type]) (jsMath.Post.Commands[type])(message); - // cancel event? - }, - - /* - * Commands that can be performed by the listener - */ - Commands: { - SCR: function (message) {jsMath.window.eval(message)}, - ERR: function (message) {jsMath.Script.cancelLoad(message,3000)}, - BGN: function (message) {jsMath.Script.Start()}, - END: function (message) {if (message) jsMath.Script.End(); jsMath.Script.endLoad()} - }, - - startLoad: function (url,iframe) { - this.window = iframe.contentWindow; - if (!url.match(/\.js$/)) {return jsMath.root+url} - return jsMath.root+"jsMath-loader-post.html?"+url; - }, - endLoad: function () {this.window = null} -}; - -/***************************************************************************/ - -/* - * Message and screen blanking facility - */ - -jsMath.Message = { - - blank: null, // the div to blank out the screen - message: null, // the div for the messages - text: null, // the text node for messages - clear: null, // timer for clearing message - - /* - * Create the elements needed for the message box - */ - Init: function () { - if (!jsMath.document.body || !jsMath.Controls.cookie.progress) return; - this.message = jsMath.Element('message'); - if (!this.message) { - if (jsMath.Setup.stylesReady) { - this.message = jsMath.Setup.DIV('message',{visibility:'hidden'},jsMath.fixedDiv); - } else { - this.message = jsMath.Setup.DIV('message',{ - visibility:'hidden', position:'absolute', bottom:'1px', left:'2px', - backgroundColor:'#E6E6E6', border:'solid 1px #959595', - margin:'0px', padding:'1px 8px', zIndex:102, - color:'black', fontSize:'small', width:'auto' - },jsMath.fixedDiv); - } - } - this.text = jsMath.document.createTextNode(''); - this.message.appendChild(this.text); - this.message.onmousedown = jsMath.Translate.Cancel; - }, - - /* - * Set the contents of the message box, or use the window status line - */ - Set: function (text,canCancel) { - if (this.clear) {clearTimeout(this.clear); this.clear = null} - if (jsMath.Controls.cookie.progress) { - if (!this.text) {this.Init(); if (!this.text) return} - if (jsMath.Browser.textNodeBug) {this.message.innerHTML = text} - else {this.text.nodeValue = text} - this.message.style.visibility = 'visible'; - if (canCancel) { - this.message.style.cursor = 'pointer'; - if (!this.message.style.cursor) {this.message.style.cursor = 'hand'} - this.message.title = ' Cancel Processing of Math '; - } else { - this.message.style.cursor = ''; - this.message.title = ''; - } - } else { - if (text.substr(0,8) != "Loading ") {jsMath.window.status = text} - } - }, - - /* - * Clear the message box or status line - */ - Clear: function () { - if (this.clear) {clearTimeout(this.clear)} - this.clear = setTimeout("jsMath.Message.doClear()",1000); - }, - doClear: function () { - if (this.clear) { - this.clear = null; - jsMath.window.status = ''; - if (this.text) {this.text.nodeValue = ''} - if (this.message) {this.message.style.visibility = 'hidden'} - } - }, - - - /* - * Put up a DIV that covers the window so that the - * "flicker" of processing the mathematics will not be visible - */ - Blank: function () { - if (this.blank || !jsMath.document.body) return; - this.blank = jsMath.Setup.DIV("blank",{ - position:(jsMath.Browser.msiePositionFixedBug? 'absolute': 'fixed'), - top:'0px', left:'0px', bottom:'0px', right:'0px', - zIndex:101, backgroundColor:'white' - },jsMath.fixedDiv); - if (jsMath.Browser.msieBlankBug) { - this.blank.innerHTML = ' '; - this.blank.style.width = "110%"; - this.blank.style.height = "110%"; - } - }, - - UnBlank: function () { - if (this.blank) {jsMath.document.body.removeChild(this.blank)} - this.blank = null; - } -}; - - -/***************************************************************************/ - -/* - * Miscellaneous setup and initialization - */ -jsMath.Setup = { - - loaded: [], // array of files already loaded - - /* - * Insert a DIV at the top of the page with given ID, - * attributes, and style settings - */ - DIV: function (id,styles,parent) { - if (parent == null) {parent = jsMath.document.body} - var div = jsMath.document.createElement('div'); - div.id = 'jsMath_'+id; - for (var i in styles) {div.style[i]= styles[i]} - if (!parent.hasChildNodes) {parent.appendChild(div)} - else {parent.insertBefore(div,parent.firstChild)} - return div; - }, - - /* - * Source a jsMath JavaScript file (only load any given file once) - */ - Script: function (file,show) { - if (this.loaded[file]) {return} else {this.loaded[file] = 1} - if (!file.match('^([a-zA-Z]+:/?)?/')) {file = jsMath.root + file} - jsMath.Script.Load(file,show); - }, - - /* - * Use a hidden
for measuring the BBoxes of things - */ - Hidden: function () { - jsMath.hidden = this.DIV("Hidden",{ - visibility: 'hidden', position:"absolute", - top:0, left:0, border:0, padding:0, margin:0 - }); - jsMath.hiddenTop = jsMath.hidden; - return; - }, - - /* - * Find the root URL for the jsMath files (so we can load - * the other .js and .gif files) - */ - Source: function () { - if (jsMath.Autoload && jsMath.Autoload.root) { - jsMath.root = jsMath.Autoload.root; - } else { - jsMath.root = ''; - var script = jsMath.document.getElementsByTagName('script'); - if (script) { - for (var i = 0; i < script.length; i++) { - var src = script[i].src; - if (src && src.match('(^|/|\\\\)jsMath.js$')) { - jsMath.root = src.replace(/jsMath.js$/,''); - break; - } - } - } - } - if (jsMath.root.charAt(0) == '\\') {jsMath.root = jsMath.root.replace(/\\/g,'/')} - if (jsMath.root.charAt(0) == '/') { - if (jsMath.root.charAt(1) != '/') - {jsMath.root = '//' + jsMath.document.location.host + jsMath.root} - jsMath.root = jsMath.document.location.protocol + jsMath.root; - } else if (!jsMath.root.match(/^[a-z]+:/i)) { - var src = new String(jsMath.document.location); - var pattern = new RegExp('/[^/]*/\\.\\./') - jsMath.root = src.replace(new RegExp('[^/]*$'),'') + jsMath.root; - while (jsMath.root.match(pattern)) - {jsMath.root = jsMath.root.replace(pattern,'/')} - } - jsMath.Img.root = jsMath.root + "fonts/"; - jsMath.blank = jsMath.root + "blank.gif"; - this.Domain(); - }, - - /* - * Find the most restricted common domain for the main - * page and jsMath. Report an error if jsMath is outside - * the domain of the calling page. - */ - Domain: function () { - try {jsMath.document.domain} catch (err) {return} - var jsDomain = ''; var pageDomain = jsMath.document.domain; - if (jsMath.root.match('://([^/]*)/')) {jsDomain = RegExp.$1} - jsDomain = jsDomain.replace(/:\d+$/,''); - if (jsDomain == "" || jsDomain == pageDomain) return; - // - // MSIE on the Mac can't change jsMath.document.domain and 'try' won't - // catch the error (Grrr!), so exit for them. - // - if (navigator.appName == 'Microsoft Internet Explorer' && - jsMath.platform == 'mac' && navigator.onLine && - navigator.userProfile && jsMath.document.all) return; - jsDomain = jsDomain.split(/\./); pageDomain = pageDomain.split(/\./); - if (jsDomain.length < 2 || pageDomain.length < 2 || - jsDomain[jsDomain.length-1] != pageDomain[pageDomain.length-1] || - jsDomain[jsDomain.length-2] != pageDomain[pageDomain.length-2]) { - this.DomainWarning(); - return; - } - var domain = jsDomain[jsDomain.length-2] + '.' + jsDomain[jsDomain.length-1]; - for (var i = 3; i <= jsDomain.length && i <= pageDomain.length; i++) { - if (jsDomain[jsDomain.length-i] != pageDomain[pageDomain.length-i]) break; - domain = jsDomain[jsDomain.length-i] + '.' + domain; - } - jsMath.document.domain = domain; - this.domainChanged = 1; - }, - - DomainWarning: function () { - alert("In order for jsMath to be able to load the additional " - + "components that it may need, the jsMath.js file must be " - + "loaded from a server in the same domain as the page that " - + "contains it. Because that is not the case for this page, " - + "the mathematics displayed here may not appear correctly."); - }, - - /* - * Initialize a font's encoding array - */ - EncodeFont: function (name) { - var font = jsMath.TeX[name]; - if (font[0].c != null) return; - for (var k = 0; k < 128; k++) { - var data = font[k]; font[k] = data[3]; - if (font[k] == null) {font[k] = {}}; - font[k].w = data[0]; font[k].h = data[1]; - if (data[2] != null) {font[k].d = data[2]} - font[k].c = jsMath.TeX.encoding[k]; - } - }, - - /* - * Initialize the encodings for all fonts - */ - Fonts: function () { - for (var i = 0; i < jsMath.TeX.fam.length; i++) { - var name = jsMath.TeX.fam[i]; - if (name) {this.EncodeFont(name)} - } - }, - - /* - * Look up the default height and depth for a TeX font - * and set the skewchar - */ - TeXfont: function (name) { - var font = jsMath.TeX[name]; if (font == null) return; - var WH = jsMath.EmBoxFor(''+font[65].c+''); - font.hd = WH.h; - font.d = jsMath.EmBoxFor(''+ font[65].c + - jsMath.HTML.Rule(1,font.hd) + '').h - font.hd; - font.h = font.hd - font.d; - if (name == 'cmmi10') {font.skewchar = 0177} - else if (name == 'cmsy10') {font.skewchar = 060} - }, - - /* - * Init all the TeX fonts - */ - TeXfonts: function () { - for (var i = 0; i < jsMath.TeX.fam.length; i++) - {if (jsMath.TeX.fam[i]) {this.TeXfont(jsMath.TeX.fam[i])}} - }, - - /* - * Compute font parameters for various sizes - */ - Sizes: function () { - jsMath.TeXparams = []; var i; var j; - for (j=0; j < jsMath.sizes.length; j++) {jsMath.TeXparams[j] = {}} - for (i in jsMath.TeX) { - if (typeof(jsMath.TeX[i]) != 'object') { - for (j=0; j < jsMath.sizes.length; j++) { - jsMath.TeXparams[j][i] = jsMath.sizes[j]*jsMath.TeX[i]/100; - } - } - } - }, - - /* - * Send the style definitions to the browser (these may be adjusted - * by the browser-specific code) - */ - Styles: function (styles) { - if (!styles) { - styles = jsMath.styles; - styles['.typeset .scale'] = {'font-size': jsMath.Controls.cookie.scale+'%'}; - this.stylesReady = 1; - } - jsMath.Script.Push(this,'AddStyleSheet',styles); - if (jsMath.Browser.styleChangeDelay) {jsMath.Script.Push(jsMath.Script,'Delay',1)} - }, - - /* - * Make a style string from a hash of style definitions, which are - * either strings themselves or hashes of style settings. - */ - StyleString: function (styles) { - var styleString = {}, id; - for (id in styles) { - if (typeof styles[id] === 'string') { - styleString[id] = styles[id]; - } else if (id.substr(0,1) === '@') { - styleString[id] = this.StyleString(styles[id]); - } else if (styles[id] != null) { - var style = []; - for (var name in styles[id]) { - if (styles[id][name] != null) - {style[style.length] = name + ': ' + styles[id][name]} - } - styleString[id] = style.join('; '); - } - } - var string = ''; - for (id in styleString) {string += id + " {"+styleString[id]+"}\n"} - return string; - }, - - AddStyleSheet: function (styles) { - var head = jsMath.document.getElementsByTagName('head')[0]; - if (head) { - var string = this.StyleString(styles); - if (jsMath.document.createStyleSheet) {// check for MSIE - head.insertAdjacentHTML('beforeEnd', - 'x' // MSIE needs this for some reason - + ''); - } else { - var style = jsMath.document.createElement('style'); style.type = "text/css"; - style.appendChild(jsMath.document.createTextNode(string)); - head.appendChild(style); - } - } else if (!jsMath.noHEAD) { - jsMath.noHEAD = 1; - alert("Document is missing its section. Style sheet can't be created without it."); - } - }, - - /* - * Do the initialization that requires the to be in place. - */ - Body: function () { - if (this.inited) return; - - this.inited = -1; - - jsMath.Setup.Hidden(); this.inited = -2; - jsMath.Browser.Init(); this.inited = -3; - - // blank screen if necessary - if (jsMath.Controls.cookie.blank) {jsMath.Message.Blank()}; this.inited = -4; - - jsMath.Setup.Styles(); this.inited = -5; - jsMath.Controls.Init(); this.inited = -6; - - // do user-specific initialization - jsMath.Script.Push(jsMath.Setup,'User','pre-font'); this.inited = -7; - - // make sure browser-specific loads are done before this - jsMath.Script.Push(jsMath.Font,'Check'); - if (jsMath.Font.register.length) - {jsMath.Script.Push(jsMath.Font,'LoadRegistered')} - - this.inited = 1; - }, - - /* - * Web page author can override the entries to the UserEvent hash - * functions that will be run at various times during jsMath's setup - * process. - */ - User: function (when) { - if (jsMath.Setup.UserEvent[when]) {(jsMath.Setup.UserEvent[when])()} - }, - - UserEvent: { - "pre-font": null, // after browser is set up but before fonts are tested - "onload": null // after jsMath.js is loaded and finished running - } - -}; - -jsMath.Update = { - - /* - * Update specific parameters for a limited number of font entries - */ - TeXfonts: function (change) { - for (var font in change) { - for (var code in change[font]) { - for (var id in change[font][code]) { - jsMath.TeX[font][code][id] = change[font][code][id]; - } - } - } - }, - - /* - * Update the character code for every character in a list - * of fonts - */ - TeXfontCodes: function (change) { - for (var font in change) { - for (var i = 0; i < change[font].length; i++) { - jsMath.TeX[font][i].c = change[font][i]; - } - } - } - -}; - -/***************************************************************************/ - -/* - * Implement browser-specific checks - */ - -jsMath.Browser = { - - allowAbsolute: 1, // tells if browser can nest absolutely positioned - // SPANs inside relative SPANs - allowAbsoluteDelim: 0, // OK to use absolute placement for building delims? - separateSkips: 0, // MSIE doesn't do negative left margins, and - // Netscape doesn't combine skips well - - valignBug: 0, // Konqueror doesn't nest vertical-align - operaHiddenFix: '', // for Opera to fix bug with math in tables - msieCenterBugFix: '', // for MSIE centering bug with image fonts - msieInlineBlockFix: '', // for MSIE alignment bug in non-quirks mode - msieSpaceFix: '', // for MSIE to avoid dropping empty spans - imgScale: 1, // MSI scales images for 120dpi screens, so compensate - - renameOK: 1, // tells if brower will find a tag whose name - // has been set via setAttributes - styleChangeDelay: 0, // true if style changes need a delay in order - // for them to be available - - delay: 1, // delay for asynchronous math processing - - version: 0, // browser version number (when needed) - - /* - * Determine if the "top" of a is always at the same height - * or varies with the height of the rest of the line (MSIE). - */ - TestSpanHeight: function () { - jsMath.hidden.innerHTML = ''; - var span = jsMath.hidden.firstChild; - var img = span.firstChild; - this.spanHeightVaries = (span.offsetHeight >= img.offsetHeight && span.offsetHeight > 0); - this.spanHeightTooBig = (span.offsetHeight > img.offsetHeight); - jsMath.hidden.innerHTML = ''; - }, - - /* - * Determine if an inline-block with 0 width is OK or not - * and decide whether to use spans or images for spacing - */ - TestInlineBlock: function () { - this.block = "display:-moz-inline-box"; - this.hasInlineBlock = jsMath.BBoxFor('').w > 0; - if (this.hasInlineBlock) { - jsMath.styles['.typeset .blank'].display = '-moz-inline-box'; - delete jsMath.styles['.typeset .spacer'].display; - } else { - this.block = "display:inline-block"; - this.hasInlineBlock = jsMath.BBoxFor('').w > 0; - if (!this.hasInlineBlock) return; - } - this.block += ';overflow:hidden'; - var h = jsMath.BBoxFor('x').h; - this.mozInlineBlockBug = jsMath.BBoxFor( - 'x'+ - '').h > 2*h; - this.widthAddsBorder = jsMath.BBoxFor('').w > 10; - this.msieBorderBug = - jsMath.BBoxFor('x').h != - jsMath.BBoxFor('x').h; - this.blankWidthBug = this.msieBorderBug || - jsMath.BBoxFor('').h == 0; - }, - - /* - * Determine if the NAME attribute of a tag can be changed - * using the setAttribute function, and then be properly - * returned by getElementByName. - */ - TestRenameOK: function () { - jsMath.hidden.innerHTML = ''; - var test = jsMath.hidden.firstChild; - test.setAttribute('name','jsMath_test'); - this.renameOK = (jsMath.document.getElementsByName('jsMath_test').length > 0); - jsMath.hidden.innerHTML = ''; - }, - - /* - * See if style changes occur immediately, or if we need to delay - * in order to let them take effect. - */ - TestStyleChange: function () { - jsMath.hidden.innerHTML = 'x'; - var span = jsMath.hidden.firstChild; - var w = span.offsetWidth; - jsMath.Setup.AddStyleSheet({'#jsMath_test': 'font-size:200%'}); - this.styleChangeDelay = (span.offsetWidth == w); - jsMath.hidden.innerHTML = ''; - }, - - /* - * Perform a version check on a standard version string - */ - VersionAtLeast: function (v) { - var bv = new String(this.version).split('.'); - v = new String(v).split('.'); if (v[1] == null) {v[1] = '0'} - return bv[0] > v[0] || (bv[0] == v[0] && bv[1] >= v[1]); - }, - - /* - * Test for browser characteristics, and adjust things - * to overcome specific browser bugs - */ - Init: function () { - jsMath.browser = 'unknown'; - this.TestInlineBlock(); - this.TestSpanHeight(); - this.TestRenameOK(); - this.TestStyleChange(); - - this.MSIE(); - this.Mozilla(); - this.Opera(); - this.OmniWeb(); - this.Safari(); - this.Konqueror(); - - // - // Change some routines depending on the browser - // - if (this.allowAbsoluteDelim) { - jsMath.Box.DelimExtend = jsMath.Box.DelimExtendAbsolute; - jsMath.Box.Layout = jsMath.Box.LayoutAbsolute; - } else { - jsMath.Box.DelimExtend = jsMath.Box.DelimExtendRelative; - jsMath.Box.Layout = jsMath.Box.LayoutRelative; - } - - if (this.separateSkips) { - jsMath.HTML.Place = jsMath.HTML.PlaceSeparateSkips; - jsMath.Typeset.prototype.Place = jsMath.Typeset.prototype.PlaceSeparateSkips; - } - }, - - // - // Handle bug-filled Internet Explorer - // - MSIE: function () { - if (this.spanHeightVaries && !this.spanHeightTooBig) { - jsMath.browser = 'MSIE'; - if (jsMath.platform == 'pc') { - this.IE7 = (window.XMLHttpRequest != null); - this.quirks = (jsMath.document.compatMode == "BackCompat"); - this.msieStandard6 = !this.quirks && !this.IE7; - this.allowAbsoluteDelim = 1; this.separateSkips = 1; - this.buttonCheck = 1; this.msieBlankBug = 1; - this.msieAccentBug = 1; this.msieRelativeClipBug = 1; - this.msieDivWidthBug = 1; this.msiePositionFixedBug = 1; - this.msieIntegralBug = 1; this.waitForImages = 1; - this.msieAlphaBug = !this.IE7; this.alphaPrintBug = !this.IE7; - this.msieCenterBugFix = 'position:relative; '; - this.msieInlineBlockFix = ' display:inline-block;'; - this.msieTeXfontBaselineBug = !this.quirks; - this.msieBorderBug = this.blankWidthBug = 1; // force these, since IE7 doesn't register it - this.msieSpaceFix = ''; - jsMath.Macro('joinrel','\\mathrel{\\kern-5mu}'), - jsMath.Parser.prototype.mathchardef.mapstocharOrig = jsMath.Parser.prototype.mathchardef.mapstochar; - delete jsMath.Parser.prototype.mathchardef.mapstochar; - jsMath.Macro('mapstochar','\\rlap{\\mapstocharOrig\\,}\\kern1mu'), - jsMath.styles['.typeset .arial'] = {'font-family': "'Arial unicode MS'"}; - if (!this.IE7 || this.quirks) { - // MSIE doesn't implement fixed positioning, so use absolute - jsMath.styles['#jsMath_message'].position = 'absolute'; - delete jsMath.styles['#jsMath_message'].width; - jsMath.styles['#jsMath_panel'].position = 'absolute'; - delete jsMath.styles['#jsMath_panel'].width; - jsMath.styles['#jsMath_button'].width = '1px'; - jsMath.styles['#jsMath_button'].position = 'absolute' - delete jsMath.styles['#jsMath_button'].width; - jsMath.fixedDiv = jsMath.Setup.DIV("fixedDiv",{position:'absolute', zIndex: 101}); - jsMath.window.attachEvent("onscroll",jsMath.Controls.MoveButton); - jsMath.window.attachEvent("onresize",jsMath.Controls.MoveButton); - jsMath.Controls.MoveButton(); - } - // Make MSIE put borders around the whole button - jsMath.styles['#jsMath_noFont .link'].display = "inline-block"; - // MSIE needs this NOT to be inline-block - delete jsMath.styles['.typeset .spacer'].display; - // MSIE can't insert DIV's into text nodes, so tex2math must use SPAN's to fake DIV's - jsMath.styles['.tex2math_div'] = {}; jsMath.Add(jsMath.styles['.tex2math_div'],jsMath.styles['div.typeset']); - jsMath.styles['.tex2math_div'].width = '100%'; - jsMath.styles['.tex2math_div'].display = 'inline-block'; - // Reduce occurrance of zoom bug in IE7 - jsMath.styles['.typeset']['letter-spacing'] = '0'; - // MSIE will rescale images if the DPIs differ - if (screen.deviceXDPI && screen.logicalXDPI - && screen.deviceXDPI != screen.logicalXDPI) { - this.imgScale *= screen.logicalXDPI/screen.deviceXDPI; - jsMath.Controls.cookie.alpha = 0; - } - // Handle bug with getting width of italic text - this.italicString = 'x'; - jsMath.EmBoxFor = jsMath.EmBoxForItalics; - } else if (jsMath.platform == 'mac') { - this.msieAbsoluteBug = 1; this.msieButtonBug = 1; - this.msieDivWidthBug = 1; this.msieBlankBug = 1; - this.quirks = 1; - jsMath.Setup.Script('jsMath-msie-mac.js'); - jsMath.Parser.prototype.macros.angle = ['Replace','ord','','normal']; - jsMath.styles['#jsMath_panel'].width = '42em'; - jsMath.Controls.cookie.printwarn = 0; // MSIE/Mac doesn't handle '@media screen' - } - jsMath.Macro('not','\\mathrel{\\rlap{\\kern3mu/}}'); - jsMath.Macro('angle','\\raise1.84pt{\\kern2.5mu\\rlap{\\scriptstyle/}\\kern.5pt\\rule{.4em}{-1.5pt}{1.84pt}\\kern2.5mu}'); - } - }, - - // - // Handle Netscape/Mozilla (any flavor) - // - Mozilla: function () { - if (jsMath.hidden.ATTRIBUTE_NODE && jsMath.window.directories) { - jsMath.browser = 'Mozilla'; - if (jsMath.platform == 'pc') {this.alphaPrintBug = 1} - this.allowAbsoluteDelim = 1; - jsMath.styles['#jsMath_button'].cursor = jsMath.styles['#jsMath_noFont .link'].cursor = 'pointer', - jsMath.Macro('not','\\mathrel{\\rlap{\\kern3mu/}}'); - jsMath.Macro('angle','\\raise1.34pt{\\kern2.5mu\\rlap{\\scriptstyle/}\\rule{.4em}{-1pt}{1.34pt}\\kern2.5mu}'); - if (navigator.vendor == 'Firefox') { - this.version = navigator.vendorSub; - } else if (navigator.userAgent.match(' Firefox/([0-9.]+)([a-z ]|$)')) { - this.version = RegExp.$1; - } - if (this.VersionAtLeast("3.0")) {this.mozImageSizeBug = 1} - } - }, - - // - // Handle OmniWeb - // - OmniWeb: function () { - if (navigator.accentColorName) { - jsMath.browser = 'OmniWeb'; - this.allowAbsolute = this.hasInlineBlock; - this.allowAbsoluteDelim = this.allowAbsolute; - this.valignBug = !this.allowAbsolute; - this.buttonCheck = 1; this.textNodeBug = 1; - jsMath.noChangeGlobal = 1; // OmniWeb craches on GoGlobal - if (!this.hasInlineBlock) {jsMath.Setup.Script('jsMath-old-browsers.js')} - } - }, - - // - // Handle Opera - // - Opera: function () { - if (this.spanHeightTooBig) { - jsMath.browser = 'Opera'; - var isOld = navigator.userAgent.match("Opera 7"); - this.allowAbsolute = 0; - this.delay = 10; - this.operaHiddenFix = '[Processing]'; - if (isOld) {jsMath.Setup.Script('jsMath-old-browsers.js')} - var version = navigator.appVersion.match(/^(\d+\.\d+)/); - if (version) {this.version = version[1]} else {this.vesion = 0} - this.operaAbsoluteWidthBug = this.operaLineHeightBug = (version[1] >= 9.5 && version[1] < 9.6); - } - }, - - // - // Handle Safari - // - Safari: function () { - if (navigator.appVersion.match(/Safari\//)) { - jsMath.browser = 'Safari'; - if (navigator.vendor.match(/Google/)) {jsMath.browser = 'Chrome'} - var version = navigator.userAgent.match("Safari/([0-9]+)"); - version = (version)? version[1] : 400; this.version = version; - jsMath.TeX.axis_height += .05; - this.allowAbsoluteDelim = version >= 125; - this.safariIFRAMEbug = version >= 312 && version < 412; - this.safariButtonBug = version < 412; - this.safariImgBug = 1; this.textNodeBug = 1; - this.buttonCheck = version < 500; - this.styleChangeDelay = 1; - jsMath.Macro('not','\\mathrel{\\rlap{\\kern3.25mu/}}'); - } - }, - - // - // Handle Konqueror - // - Konqueror: function () { - if (navigator.product && navigator.product.match("Konqueror")) { - jsMath.browser = 'Konqueror'; - this.allowAbsolute = 0; - this.allowAbsoluteDelim = 0; - if (navigator.userAgent.match(/Konqueror\/(\d+)\.(\d+)/)) { - if (RegExp.$1 < 3 || (RegExp.$1 == 3 && RegExp.$2 < 3)) { - this.separateSkips = 1; - this.valignBug = 1; - jsMath.Setup.Script('jsMath-old-browsers.js'); - } - } - // Apparently, Konqueror wants the names without the hyphen - jsMath.Add(jsMath.styles,{ - '.typeset .cmr10': 'font-family: jsMath-cmr10, jsMath cmr10, serif', - '.typeset .cmbx10': 'font-family: jsMath-cmbx10, jsMath cmbx10, jsMath-cmr10, jsMath cmr10', - '.typeset .cmti10': 'font-family: jsMath-cmti10, jsMath cmti10, jsMath-cmr10, jsMath cmr10', - '.typeset .cmmi10': 'font-family: jsMath-cmmi10, jsMath cmmi10', - '.typeset .cmsy10': 'font-family: jsMath-cmsy10, jsMath cmsy10', - '.typeset .cmex10': 'font-family: jsMath-cmex10, jsMath cmex10' - }); - jsMath.Font.testFont = "jsMath-cmex10, jsMath cmex10"; - } - } - -}; - -/***************************************************************************/ - -/* - * Implement font check and messages - */ -jsMath.Font = { - - testFont: "jsMath-cmex10", - fallback: "symbol", // the default fallback method - register: [], // list of fonts registered before jsMath.Init() - - // the HTML for the missing font message - message: - 'No jsMath TeX fonts found -- using image fonts instead.
\n' - + 'These may be slow and might not print well.
\n' - + 'Use the jsMath control panel to get additional information.', - - extra_message: - 'Extra TeX fonts not found:
' - + 'Using image fonts instead. This may be slow and might not print well.
\n' - + 'Use the jsMath control panel to get additional information.', - - print_message: - 'To print higher-resolution math symbols, click the
\n' - + 'Hi-Res Fonts for Printing button on the jsMath control panel.
\n', - - alpha_message: - 'If the math symbols print as black boxes, turn off image alpha channels
\n' - + 'using the Options pane of the jsMath control panel.
\n', - - /* - * Look to see if a font is found. - * Check the character in a given position, and see if it is - * wider than the usual one in that position. - */ - Test1: function (name,n,factor,prefix) { - if (n == null) {n = 0x7C}; if (factor == null) {factor = 2}; if (prefix == null) {prefix = ''} - var wh1 = jsMath.BBoxFor(''+jsMath.TeX[name][n].c+''); - var wh2 = jsMath.BBoxFor(''+jsMath.TeX[name][n].c+''); - //alert([wh1.w,wh2.w,wh1.h,factor*wh2.w]); - return (wh1.w > factor*wh2.w && wh1.h != 0); - }, - - Test2: function (name,n,factor,prefix) { - if (n == null) {n = 0x7C}; if (factor == null) {factor = 2}; if (prefix == null) {prefix = ''} - var wh1 = jsMath.BBoxFor(''+jsMath.TeX[name][n].c+''); - var wh2 = jsMath.BBoxFor(''+jsMath.TeX[name][n].c+''); - //alert([wh2.w,wh1.w,wh1.h,factor*wh1.w]); - return (wh2.w > factor*wh1.w && wh1.h != 0); - }, - - /* - * Check for the new jsMath versions of the fonts (blacker with - * different encoding) and if not found, look for old-style fonts. - * If they are found, load the BaKoMa encoding information. - */ - CheckTeX: function () { - var wh = jsMath.BBoxFor(''+jsMath.TeX.cmex10[1].c+''); - jsMath.nofonts = ((wh.w*3 > wh.h || wh.h == 0) && !this.Test1('cmr10',null,null,'jsMath-')); - if (!jsMath.nofonts) return; - if (jsMath.browser != 'Mozilla' || - (jsMath.platform == "mac" && - (!jsMath.Browser.VersionAtLeast(1.5) || jsMath.Browser.VersionAtLeast(3.0))) || - (jsMath.platform != "mac" && !jsMath.Browser.VersionAtLeast(3.0))) { - wh = jsMath.BBoxFor(''+jsMath.TeX.cmex10[1].c+''); - jsMath.nofonts = ((wh.w*3 > wh.h || wh.h == 0) && !this.Test1('cmr10')); - if (!jsMath.nofonts) {jsMath.Setup.Script("jsMath-BaKoMa-fonts.js")} - } - }, - - /* - * Check for the availability of TeX fonts. We do this by looking at - * the width and height of a character in the cmex10 font. The cmex10 - * font has depth considerably greater than most characters' widths (the - * whole font has the depth of the character with greatest depth). This - * is not the case for most fonts, so if we can access cmex10, the - * height of a character should be much bigger than the width. - * Otherwise, if we don't have cmex10, we'll get a character in another - * font with normal height and width. In this case, we insert a message - * pointing the user to the jsMath site, and load one of the fallback - * definitions. - * - */ - Check: function () { - var cookie = jsMath.Controls.cookie; - this.CheckTeX(); - if (jsMath.nofonts) { - if (cookie.autofont || cookie.font == 'tex') { - cookie.font = this.fallback; - if (cookie.warn) { - jsMath.nofontMessage = 1; - cookie.warn = 0; jsMath.Controls.SetCookie(0); - if (jsMath.window.NoFontMessage) {jsMath.window.NoFontMessage()} - else {this.Message(this.message)} - } - } - } else { - if (cookie.autofont) {cookie.font = 'tex'} - if (cookie.font == 'tex') return; - } - if (jsMath.noImgFonts) {cookie.font = 'unicode'} - if (cookie.font == 'unicode') { - jsMath.Setup.Script('jsMath-fallback-'+jsMath.platform+'.js'); - jsMath.Box.TeXnonfallback = jsMath.Box.TeX; - jsMath.Box.TeX = jsMath.Box.TeXfallback; - return; - } - if (!cookie.print && cookie.printwarn) { - this.PrintMessage( - (jsMath.Browser.alphaPrintBug && jsMath.Controls.cookie.alpha) ? - this.print_message + this.alpha_message : this.print_message); - } - if (jsMath.Browser.waitForImages) { - jsMath.Script.Push(jsMath.Script,"WaitForImage",jsMath.blank); - } - if (cookie.font == 'symbol') { - jsMath.Setup.Script('jsMath-fallback-symbols.js'); - jsMath.Box.TeXnonfallback = jsMath.Box.TeX; - jsMath.Box.TeX = jsMath.Box.TeXfallback; - return; - } - jsMath.Img.SetFont({ - cmr10: ['all'], cmmi10: ['all'], cmsy10: ['all'], - cmex10: ['all'], cmbx10: ['all'], cmti10: ['all'] - }); - jsMath.Img.LoadFont('cm-fonts'); - }, - - /* - * The message for when no TeX fonts. You can eliminate this message - * by including - * - * - * - * in your HTML file, before loading jsMath.js, if you want. But this - * means the user may not know that he or she can get a better version - * of your page. - */ - Message: function (message) { - if (jsMath.Element("Warning")) return; - var div = jsMath.Setup.DIV("Warning",{}); - div.innerHTML = - '
' - + '
' + message - + '
' - + 'jsMath Control Panel' - + '' - + 'Hide this Message' - + '

' - + '
' - + '

'; - }, - - HideMessage: function () { - var message = jsMath.Element("Warning"); - if (message) {message.style.display = "none"} - }, - - PrintMessage: function (message) { - if (jsMath.Element("PrintWarning")) return; - var div = jsMath.Setup.DIV("PrintWarning",{}); - div.innerHTML = - '
' - + '
' + message + '
' - + '
' - + '

'; - }, - - /* - * Register an extra font so jsMath knows about it - */ - Register: function (data,force) { - if (typeof(data) == 'string') {data = {name: data}} - if (!jsMath.Setup.inited && !force) { - this.register[this.register.length] = data; - return; - } - var fontname = data.name; var name = fontname.replace(/10$/,''); - var fontfam = jsMath.TeX.fam.length; - if (data.prefix == null) {data.prefix = ""} - if (!data.style) {data.style = "font-family: "+data.prefix+fontname+", serif"} - if (!data.styles) {data.styles = {}} - if (!data.macros) {data.macros = {}} - /* - * Register font family - */ - jsMath.TeX.fam[fontfam] = fontname; - jsMath.TeX.famName[fontname] = fontfam; - data.macros[name] = ['HandleFont',fontfam]; - jsMath.Add(jsMath.Parser.prototype.macros,data.macros); - /* - * Set up styles - */ - data.styles['.typeset .'+fontname] = data.style; - jsMath.Setup.Styles(data.styles); - if (jsMath.initialized) {jsMath.Script.Push(jsMath.Setup,'TeXfont',fontname)} - /* - * Check for font and give message if missing - */ - var cookie = jsMath.Controls.cookie; - var hasTeXfont = !jsMath.nofonts && - data.test(fontname,data.testChar,data.testFactor,data.prefix); - if (hasTeXfont && cookie.font == 'tex') { - if (data.tex) {data.tex(fontname,fontfam,data)} - return; - } - if (!hasTeXfont && cookie.warn && cookie.font == 'tex' && !jsMath.nofonts) { - if (!cookie.fonts.match("/"+fontname+"/")) { - cookie.fonts += fontname + "/"; jsMath.Controls.SetCookie(0); - if (!jsMath.Element("Warning")) this.Message(this.extra_message); - var extra = jsMath.Element("ExtraFonts"); - if (extra) { - if (extra.innerHTML != "") {extra.innerHTML += ','} - extra.innerHTML += " " + data.prefix+fontname; - } - } - } - if (cookie.font == 'unicode' || jsMath.noImgFonts) { - if (data.fallback) {data.fallback(fontname,fontfam,data)} - return; - } - // Image fonts - var font = {}; - if (cookie.font == 'symbol' && data.symbol != null) { - font[fontname] = data.symbol(fontname,fontfam,data); - } else { - font[fontname] = ['all']; - } - jsMath.Img.SetFont(font); - jsMath.Img.LoadFont(fontname); - if (jsMath.initialized) { - jsMath.Script.Push(jsMath.Img,'Scale'); - jsMath.Script.Push(jsMath.Img,'UpdateFonts'); - } - }, - /* - * If fonts are registered before jsMath.Init() is called, jsMath.em - * will not be available, so they need to be delayed. - */ - LoadRegistered: function () { - var i = 0; - while (i < this.register.length) {this.Register(this.register[i++],1)} - this.register = []; - }, - - /* - * Load a font - */ - Load: function (name) {jsMath.Setup.Script(this.URL(name))}, - URL: function (name) {return jsMath.Img.root+name+'/def.js'} - -}; - -/***************************************************************************/ - -/* - * Implements the jsMath control panel. - * Much of the code is in jsMath-controls.html, which is - * loaded into a hidden IFRAME on demand - */ -jsMath.Controls = { - - // Data stored in the jsMath cookie - cookie: { - scale: 100, - font: 'tex', autofont: 1, scaleImg: 0, alpha: 1, - warn: 1, fonts: '/', printwarn: 1, stayhires: 0, - button: 1, progress: 1, asynch: 0, blank: 0, - print: 0, keep: '0D', global: 'auto', hiddenGlobal: 1 - }, - - cookiePath: '/', // can also set cookieDomain - noCookiePattern: /^(file|mk):$/, // pattern for handling cookies locally - - - /* - * Create the HTML needed for control panel - */ - Init: function () { - this.panel = jsMath.Setup.DIV("panel",{display:'none'},jsMath.fixedDiv); - if (!jsMath.Browser.msieButtonBug) {this.Button()} - else {setTimeout("jsMath.Controls.Button()",500)} - }, - - /* - * Load the control panel - */ - Panel: function () { - jsMath.Translate.Cancel(); - if (this.loaded) {this.Main()} - else {jsMath.Script.delayedLoad(jsMath.root+"jsMath-controls.html")} - }, - - /* - * Create the control panel button - */ - Button: function () { - var button = jsMath.Setup.DIV("button",{},jsMath.fixedDiv); - button.title = ' Open jsMath Control Panel '; - button.innerHTML = - 'jsMath'; - if (!jsMath.Global.isLocal && !jsMath.noShowGlobal) { - button.innerHTML += - 'Global '; - } - if (button.offsetWidth < 30) {button.style.width = "auto"} - if (!this.cookie.button) {button.style.display = "none"} - }, - - /* - * Since MSIE doesn't handle position:float, we need to have the - * window repositioned every time the window scrolls. We do that - * putting the floating elements into a window-sized DIV, but - * absolutely positioned, and then move the DIV. - */ - MoveButton: function () { - jsMath.fixedDiv.style.left = document.body.scrollLeft + 'px'; -// jsMath.fixedDiv.style.top = document.body.scrollTop + 'px'; - jsMath.fixedDiv.style.top = document.body.scrollTop + document.body.clientHeight + 'px'; - jsMath.fixedDiv.style.width = document.body.clientWidth + 'px'; -// jsMath.fixedDiv.style.height = document.body.clientHeight + 'px'; - }, - - /* - * Get the cookie data from the browser - * (for file: references, use url '?' syntax) - */ - GetCookie: function () { - // save the current cookie settings as the defaults - if (this.defaults == null) {this.defaults = {}} - jsMath.Add(this.defaults,this.cookie); this.userSet = {}; - // get the browser's cookie data - var cookies = jsMath.document.cookie; - if (jsMath.window.location.protocol.match(this.noCookiePattern)) { - cookies = this.localGetCookie(); - this.isLocalCookie = 1; - } - if (cookies.match(/jsMath=([^;]+)/)) { - var data = unescape(RegExp.$1).split(/,/); - for (var i = 0; i < data.length; i++) { - var x = data[i].match(/(.*):(.*)/); - if (x[2].match(/^\d+$/)) {x[2] = 1*x[2]} // convert from string - this.cookie[x[1]] = x[2]; - this.userSet[x[1]] = 1; - } - } - }, - localGetCookie: function () { - return jsMath.window.location.search.substr(1); - }, - - /* - * Save the cookie data in the browser - * (for file: urls, append data like CGI reference) - */ - SetCookie: function (warn) { - var cookie = []; - for (var id in this.cookie) { - if (this.defaults[id] == null || this.cookie[id] != this.defaults[id]) - {cookie[cookie.length] = id + ':' + this.cookie[id]} - } - cookie = cookie.join(','); - if (this.isLocalCookie) { - if (warn == 2) {return 'jsMath='+escape(cookie)} - this.localSetCookie(cookie,warn); - } else { - cookie = escape(cookie); - if (cookie == '') {warn = 0} - if (this.cookiePath) {cookie += '; path='+this.cookiePath} - if (this.cookieDomain) {cookie += '; domain='+this.cookieDomain} - if (this.cookie.keep != '0D') { - var ms = { - D: 1000*60*60*24, - W: 1000*60*60*24*7, - M: 1000*60*60*24*30, - Y: 1000*60*60*24*365 - }; - var exp = new Date; - exp.setTime(exp.getTime() + - this.cookie.keep.substr(0,1) * ms[this.cookie.keep.substr(1,1)]); - cookie += '; expires=' + exp.toGMTString(); - } - if (cookie != '') { - jsMath.document.cookie = 'jsMath='+cookie; - var cookies = jsMath.document.cookie; - if (warn && !cookies.match(/jsMath=/)) - {alert("Cookies must be enabled in order to save jsMath options")} - } - } - return null; - }, - localSetCookie: function (cookie,warn) { - if (!warn) return; - var href = String(jsMath.window.location).replace(/\?.*/,""); - if (cookie != '') {href += '?jsMath=' + escape(cookie)} - if (href != jsMath.window.location.href) {this.Reload(href)} - }, - - /* - * Reload the page (with the given URL) - */ - Reload: function (url) { - if (!this.loaded) return; - this.loaded = 0; jsMath.Setup.inited = -100; - jsMath.Global.ClearCache(); - if (url) {jsMath.window.location.replace(url)} - else {jsMath.window.location.reload()} - } - -}; - -/***************************************************************************/ - -/* - * Implements the actions for clicking and double-clicking - * on math formulas - */ -jsMath.Click = { - - /* - * Handle clicking on math to get control panel - */ - CheckClick: function (event) { - if (!event) {event = jsMath.window.event} - if (event.altKey) jsMath.Controls.Panel(); - }, - - /* - * Handle double-click for seeing TeX code - */ - - CheckDblClick: function (event) { - if (!event) {event = jsMath.window.event} - if (!jsMath.Click.DblClick) { - jsMath.Extension.Require('double-click',1); - // Firefox clears the event, so copy it - var tmpEvent = event; event = {}; - for (var id in tmpEvent) {event[id] = tmpEvent[id]} - } - jsMath.Script.Push(jsMath.Click,'DblClick',[event,this.alt]); - } - -}; - -/***************************************************************************/ - -/* - * The TeX font information - */ -jsMath.TeX = { - - // - // The TeX font parameters - // - thinmuskip: 3/18, - medmuskip: 4/18, - thickmuskip: 5/18, - - x_height: .430554, - quad: 1, - num1: .676508, - num2: .393732, - num3: .44373, - denom1: .685951, - denom2: .344841, - sup1: .412892, - sup2: .362892, - sup3: .288888, - sub1: .15, - sub2: .247217, - sup_drop: .386108, - sub_drop: .05, - delim1: 2.39, - delim2: 1.0, - axis_height: .25, - default_rule_thickness: .06, - big_op_spacing1: .111111, - big_op_spacing2: .166666, - big_op_spacing3: .2, - big_op_spacing4: .6, - big_op_spacing5: .1, - - integer: 6553.6, // conversion of em's to TeX internal integer - scriptspace: .05, - nulldelimiterspace: .12, - delimiterfactor: 901, - delimitershortfall: .5, - scale: 1, // scaling factor for font dimensions - - // The TeX math atom types (see Appendix G of the TeXbook) - atom: ['ord', 'op', 'bin', 'rel', 'open', 'close', 'punct', 'ord'], - - // The TeX font families - fam: ['cmr10','cmmi10','cmsy10','cmex10','cmti10','','cmbx10',''], - famName: {cmr10:0, cmmi10:1, cmsy10:2, cmex10:3, cmti10:4, cmbx10:6}, - - // Encoding used by jsMath fonts - encoding: [ - 'À', 'Á', 'Â', 'Ã', 'Ä', 'Å', 'Æ', 'Ç', - 'È', 'É', 'Ê', 'Ë', 'Ì', 'Í', 'Î', 'Ï', - - '°', 'Ñ', 'Ò', 'Ó', 'Ô', 'Õ', 'Ö', '·', - 'Ø', 'Ù', 'Ú', 'Û', 'Ü', 'µ', '¶', 'ß', - - 'ï', '!', '"', '#', '$', '%', '&', ''', - '(', ')', '*', '+', ',', '-', '.', '/', - - '0', '1', '2', '3', '4', '5', '6', '7', - '8', '9', ':', ';', '<', '=', '>', '?', - - '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', - 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', - - 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', - 'X', 'Y', 'Z', '[', '\', ']', '^', '_', - - '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g', - 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', - - 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', - 'x', 'y', 'z', '{', '|', '}', '~', 'ÿ' - ], - - /* - * The following are the TeX font mappings and metrics. The metric - * information comes directly from the TeX .tfm files. Browser-specific - * adjustments are made to these tables in the Browser.Init() routine - */ - cmr10: [ - [0.625,0.683], [0.833,0.683], [0.778,0.683], [0.694,0.683], - [0.667,0.683], [0.75,0.683], [0.722,0.683], [0.778,0.683], - [0.722,0.683], [0.778,0.683], [0.722,0.683], - [0.583,0.694,0,{ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 14, '108': 15}}], - [0.556,0.694], [0.556,0.694], [0.833,0.694], [0.833,0.694], - - [0.278,0.431], [0.306,0.431,0.194], [0.5,0.694], [0.5,0.694], - [0.5,0.628], [0.5,0.694], [0.5,0.568], [0.75,0.694], - [0.444,0,0.17], [0.5,0.694], [0.722,0.431], [0.778,0.431], - [0.5,0.528,0.0972], [0.903,0.683], [1.01,0.683], [0.778,0.732,0.0486], - - [0.278,0.431,0,{krn: {'108': -0.278, '76': -0.319}}], - [0.278,0.694,0,{lig: {'96': 60}}], - [0.5,0.694], [0.833,0.694,0.194], [0.5,0.75,0.0556], - [0.833,0.75,0.0556], [0.778,0.694], - [0.278,0.694,0,{krn: {'63': 0.111, '33': 0.111}, lig: {'39': 34}}], - [0.389,0.75,0.25], [0.389,0.75,0.25], [0.5,0.75], - [0.778,0.583,0.0833], [0.278,0.106,0.194], - [0.333,0.431,0,{lig: {'45': 123}}], - [0.278,0.106], [0.5,0.75,0.25], - - [0.5,0.644], [0.5,0.644], [0.5,0.644], [0.5,0.644], - [0.5,0.644], [0.5,0.644], [0.5,0.644], [0.5,0.644], - [0.5,0.644], [0.5,0.644], [0.278,0.431], [0.278,0.431,0.194], - [0.278,0.5,0.194], [0.778,0.367,-0.133], [0.472,0.5,0.194], - [0.472,0.694,0,{lig: {'96': 62}}], - - [0.778,0.694], - [0.75,0.683,0,{krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}}], - [0.708,0.683], [0.722,0.683], - [0.764,0.683,0,{krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}}], - [0.681,0.683], - [0.653,0.683,0,{krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}], - [0.785,0.683], [0.75,0.683], [0.361,0.683,0,{krn: {'73': 0.0278}}], - [0.514,0.683], - [0.778,0.683,0,{krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}], - [0.625,0.683,0,{krn: {'84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}}], - [0.917,0.683], [0.75,0.683], - [0.778,0.683,0,{krn: {'88': -0.0278, '87': -0.0278, '65': -0.0278, '86': -0.0278, '89': -0.0278}}], - - [0.681,0.683,0,{krn: {'65': -0.0833, '111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}}], - [0.778,0.683,0.194], - [0.736,0.683,0,{krn: {'116': -0.0278, '67': -0.0278, '79': -0.0278, '71': -0.0278, '85': -0.0278, '81': -0.0278, '84': -0.0833, '89': -0.0833, '86': -0.111, '87': -0.111}}], - [0.556,0.683], - [0.722,0.683,0,{krn: {'121': -0.0278, '101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}}], - [0.75,0.683], - [0.75,0.683,0,{ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}], - [1.03,0.683,0,{ic: 0.0139, krn: {'111': -0.0833, '101': -0.0833, '117': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.111, '79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}], - [0.75,0.683,0,{krn: {'79': -0.0278, '67': -0.0278, '71': -0.0278, '81': -0.0278}}], - [0.75,0.683,0,{ic: 0.025, krn: {'101': -0.0833, '111': -0.0833, '114': -0.0833, '97': -0.0833, '65': -0.0833, '117': -0.0833}}], - [0.611,0.683], [0.278,0.75,0.25], [0.5,0.694], - [0.278,0.75,0.25], [0.5,0.694], [0.278,0.668], - - [0.278,0.694,0,{lig: {'96': 92}}], - [0.5,0.431,0,{krn: {'118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}], - [0.556,0.694,0,{krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}], - [0.444,0.431,0,{krn: {'104': -0.0278, '107': -0.0278}}], - [0.556,0.694], [0.444,0.431], - [0.306,0.694,0,{ic: 0.0778, krn: {'39': 0.0778, '63': 0.0778, '33': 0.0778, '41': 0.0778, '93': 0.0778}, lig: {'105': 12, '102': 11, '108': 13}}], - [0.5,0.431,0.194,{ic: 0.0139, krn: {'106': 0.0278}}], - [0.556,0.694,0,{krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}}], - [0.278,0.668], [0.306,0.668,0.194], - [0.528,0.694,0,{krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}}], - [0.278,0.694], - [0.833,0.431,0,{krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}}], - [0.556,0.431,0,{krn: {'116': -0.0278, '117': -0.0278, '98': -0.0278, '121': -0.0278, '118': -0.0278, '119': -0.0278}}], - [0.5,0.431,0,{krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}], - - [0.556,0.431,0.194,{krn: {'101': 0.0278, '111': 0.0278, '120': -0.0278, '100': 0.0278, '99': 0.0278, '113': 0.0278, '118': -0.0278, '106': 0.0556, '121': -0.0278, '119': -0.0278}}], - [0.528,0.431,0.194], [0.392,0.431], [0.394,0.431], - [0.389,0.615,0,{krn: {'121': -0.0278, '119': -0.0278}}], - [0.556,0.431,0,{krn: {'119': -0.0278}}], - [0.528,0.431,0,{ic: 0.0139, krn: {'97': -0.0556, '101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}}], - [0.722,0.431,0,{ic: 0.0139, krn: {'101': -0.0278, '97': -0.0278, '111': -0.0278, '99': -0.0278}}], - [0.528,0.431], - [0.528,0.431,0.194,{ic: 0.0139, krn: {'111': -0.0278, '101': -0.0278, '97': -0.0278, '46': -0.0833, '44': -0.0833}}], - [0.444,0.431], [0.5,0.431,0,{ic: 0.0278, lig: {'45': 124}}], - [1,0.431,0,{ic: 0.0278}], [0.5,0.694], [0.5,0.668], [0.5,0.668] - ], - - cmmi10: [ - [0.615,0.683,0,{ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}}], - [0.833,0.683,0,{krn: {'127': 0.167}}], - [0.763,0.683,0,{ic: 0.0278, krn: {'127': 0.0833}}], - [0.694,0.683,0,{krn: {'127': 0.167}}], - [0.742,0.683,0,{ic: 0.0757, krn: {'127': 0.0833}}], - [0.831,0.683,0,{ic: 0.0812, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}}], - [0.78,0.683,0,{ic: 0.0576, krn: {'127': 0.0833}}], - [0.583,0.683,0,{ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0556}}], - [0.667,0.683,0,{krn: {'127': 0.0833}}], - [0.612,0.683,0,{ic: 0.11, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}}], - [0.772,0.683,0,{ic: 0.0502, krn: {'127': 0.0833}}], - [0.64,0.431,0,{ic: 0.0037, krn: {'127': 0.0278}}], - [0.566,0.694,0.194,{ic: 0.0528, krn: {'127': 0.0833}}], - [0.518,0.431,0.194,{ic: 0.0556}], - [0.444,0.694,0,{ic: 0.0378, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0556}}], - [0.406,0.431,0,{krn: {'127': 0.0556}}], - - [0.438,0.694,0.194,{ic: 0.0738, krn: {'127': 0.0833}}], - [0.497,0.431,0.194,{ic: 0.0359, krn: {'127': 0.0556}}], - [0.469,0.694,0,{ic: 0.0278, krn: {'127': 0.0833}}], - [0.354,0.431,0,{krn: {'127': 0.0556}}], - [0.576,0.431], [0.583,0.694], - [0.603,0.431,0.194,{krn: {'127': 0.0278}}], - [0.494,0.431,0,{ic: 0.0637, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0278}}], - [0.438,0.694,0.194,{ic: 0.046, krn: {'127': 0.111}}], - [0.57,0.431,0,{ic: 0.0359}], - [0.517,0.431,0.194,{krn: {'127': 0.0833}}], - [0.571,0.431,0,{ic: 0.0359, krn: {'59': -0.0556, '58': -0.0556}}], - [0.437,0.431,0,{ic: 0.113, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0278}}], - [0.54,0.431,0,{ic: 0.0359, krn: {'127': 0.0278}}], - [0.596,0.694,0.194,{krn: {'127': 0.0833}}], - [0.626,0.431,0.194,{krn: {'127': 0.0556}}], - - [0.651,0.694,0.194,{ic: 0.0359, krn: {'127': 0.111}}], - [0.622,0.431,0,{ic: 0.0359}], - [0.466,0.431,0,{krn: {'127': 0.0833}}], - [0.591,0.694,0,{krn: {'127': 0.0833}}], - [0.828,0.431,0,{ic: 0.0278}], - [0.517,0.431,0.194,{krn: {'127': 0.0833}}], - [0.363,0.431,0.0972,{ic: 0.0799, krn: {'127': 0.0833}}], - [0.654,0.431,0.194,{krn: {'127': 0.0833}}], - [1,0.367,-0.133], [1,0.367,-0.133], [1,0.367,-0.133], [1,0.367,-0.133], - [0.278,0.464,-0.0363], [0.278,0.464,-0.0363], [0.5,0.465,-0.0347], [0.5,0.465,-0.0347], - - [0.5,0.431], [0.5,0.431], [0.5,0.431], [0.5,0.431,0.194], - [0.5,0.431,0.194], [0.5,0.431,0.194], [0.5,0.644], [0.5,0.431,0.194], - [0.5,0.644], [0.5,0.431,0.194], [0.278,0.106], [0.278,0.106,0.194], - [0.778,0.539,0.0391], - [0.5,0.75,0.25,{krn: {'1': -0.0556, '65': -0.0556, '77': -0.0556, '78': -0.0556, '89': 0.0556, '90': -0.0556}}], - [0.778,0.539,0.0391], [0.5,0.465,-0.0347], - - [0.531,0.694,0,{ic: 0.0556, krn: {'127': 0.0833}}], - [0.75,0.683,0,{krn: {'127': 0.139}}], - [0.759,0.683,0,{ic: 0.0502, krn: {'127': 0.0833}}], - [0.715,0.683,0,{ic: 0.0715, krn: {'61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}}], - [0.828,0.683,0,{ic: 0.0278, krn: {'127': 0.0556}}], - [0.738,0.683,0,{ic: 0.0576, krn: {'127': 0.0833}}], - [0.643,0.683,0,{ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}}], - [0.786,0.683,0,{krn: {'127': 0.0833}}], - [0.831,0.683,0,{ic: 0.0812, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}}], - [0.44,0.683,0,{ic: 0.0785, krn: {'127': 0.111}}], - [0.555,0.683,0,{ic: 0.0962, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.167}}], - [0.849,0.683,0,{ic: 0.0715, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0556}}], - [0.681,0.683,0,{krn: {'127': 0.0278}}], - [0.97,0.683,0,{ic: 0.109, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}}], - [0.803,0.683,0,{ic: 0.109, krn: {'61': -0.0833, '61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}}], - [0.763,0.683,0,{ic: 0.0278, krn: {'127': 0.0833}}], - - [0.642,0.683,0,{ic: 0.139, krn: {'61': -0.0556, '59': -0.111, '58': -0.111, '127': 0.0833}}], - [0.791,0.683,0.194,{krn: {'127': 0.0833}}], - [0.759,0.683,0,{ic: 0.00773, krn: {'127': 0.0833}}], - [0.613,0.683,0,{ic: 0.0576, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}}], - [0.584,0.683,0,{ic: 0.139, krn: {'61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}}], - [0.683,0.683,0,{ic: 0.109, krn: {'59': -0.111, '58': -0.111, '61': -0.0556, '127': 0.0278}}], - [0.583,0.683,0,{ic: 0.222, krn: {'59': -0.167, '58': -0.167, '61': -0.111}}], - [0.944,0.683,0,{ic: 0.139, krn: {'59': -0.167, '58': -0.167, '61': -0.111}}], - [0.828,0.683,0,{ic: 0.0785, krn: {'61': -0.0833, '61': -0.0278, '59': -0.0556, '58': -0.0556, '127': 0.0833}}], - [0.581,0.683,0,{ic: 0.222, krn: {'59': -0.167, '58': -0.167, '61': -0.111}}], - [0.683,0.683,0,{ic: 0.0715, krn: {'61': -0.0556, '59': -0.0556, '58': -0.0556, '127': 0.0833}}], - [0.389,0.75], [0.389,0.694,0.194], [0.389,0.694,0.194], - [1,0.358,-0.142], [1,0.358,-0.142], - - [0.417,0.694,0,{krn: {'127': 0.111}}], - [0.529,0.431], [0.429,0.694], [0.433,0.431,0,{krn: {'127': 0.0556}}], - [0.52,0.694,0,{krn: {'89': 0.0556, '90': -0.0556, '106': -0.111, '102': -0.167, '127': 0.167}}], - [0.466,0.431,0,{krn: {'127': 0.0556}}], - [0.49,0.694,0.194,{ic: 0.108, krn: {'59': -0.0556, '58': -0.0556, '127': 0.167}}], - [0.477,0.431,0.194,{ic: 0.0359, krn: {'127': 0.0278}}], - [0.576,0.694,0,{krn: {'127': -0.0278}}], [0.345,0.66], - [0.412,0.66,0.194,{ic: 0.0572, krn: {'59': -0.0556, '58': -0.0556}}], - [0.521,0.694,0,{ic: 0.0315}], [0.298,0.694,0,{ic: 0.0197, krn: {'127': 0.0833}}], - [0.878,0.431], [0.6,0.431], [0.485,0.431,0,{krn: {'127': 0.0556}}], - - [0.503,0.431,0.194,{krn: {'127': 0.0833}}], - [0.446,0.431,0.194,{ic: 0.0359, krn: {'127': 0.0833}}], - [0.451,0.431,0,{ic: 0.0278, krn: {'59': -0.0556, '58': -0.0556, '127': 0.0556}}], - [0.469,0.431,0,{krn: {'127': 0.0556}}], [0.361,0.615,0,{krn: {'127': 0.0833}}], - [0.572,0.431,0,{krn: {'127': 0.0278}}], - [0.485,0.431,0,{ic: 0.0359, krn: {'127': 0.0278}}], - [0.716,0.431,0,{ic: 0.0269, krn: {'127': 0.0833}}], - [0.572,0.431,0,{krn: {'127': 0.0278}}], - [0.49,0.431,0.194,{ic: 0.0359, krn: {'127': 0.0556}}], - [0.465,0.431,0,{ic: 0.044, krn: {'127': 0.0556}}], - [0.322,0.431,0,{krn: {'127': 0.0278}}], - [0.384,0.431,0.194,{krn: {'127': 0.0833}}], - [0.636,0.431,0.194,{krn: {'127': 0.111}}], - [0.5,0.714,0,{ic: 0.154}], [0.278,0.694,0,{ic: 0.399}] - ], - - cmsy10: [ - [0.778,0.583,0.0833], [0.278,0.444,-0.0556], [0.778,0.583,0.0833], - [0.5,0.465,-0.0347], [0.778,0.583,0.0833], [0.5,0.444,-0.0556], - [0.778,0.583,0.0833], [0.778,0.583,0.0833], [0.778,0.583,0.0833], - [0.778,0.583,0.0833], [0.778,0.583,0.0833], [0.778,0.583,0.0833], - [0.778,0.583,0.0833], [1,0.694,0.194], [0.5,0.444,-0.0556], [0.5,0.444,-0.0556], - - [0.778,0.464,-0.0363], [0.778,0.464,-0.0363], [0.778,0.636,0.136], - [0.778,0.636,0.136], [0.778,0.636,0.136], [0.778,0.636,0.136], - [0.778,0.636,0.136], [0.778,0.636,0.136], [0.778,0.367,-0.133], - [0.778,0.483,-0.0169], [0.778,0.539,0.0391], [0.778,0.539,0.0391], - [1,0.539,0.0391], [1,0.539,0.0391], [0.778,0.539,0.0391], [0.778,0.539,0.0391], - - [1,0.367,-0.133], [1,0.367,-0.133], [0.5,0.694,0.194], [0.5,0.694,0.194], - [1,0.367,-0.133], [1,0.694,0.194], [1,0.694,0.194], [0.778,0.464,-0.0363], - [1,0.367,-0.133], [1,0.367,-0.133], [0.611,0.694,0.194], [0.611,0.694,0.194], - [1,0.367,-0.133], [1,0.694,0.194], [1,0.694,0.194], [0.778,0.431], - - [0.275,0.556], [1,0.431], [0.667,0.539,0.0391], [0.667,0.539,0.0391], - [0.889,0.694,0.194], [0.889,0.694,0.194], [0,0.694,0.194], [0,0.367,-0.133], - [0.556,0.694], [0.556,0.694], [0.667,0.431], [0.5,0.75,0.0556], - [0.722,0.694], [0.722,0.694], [0.778,0.694], [0.778,0.694], - - [0.611,0.694], [0.798,0.683,0,{krn: {'48': 0.194}}], - [0.657,0.683,0,{ic: 0.0304, krn: {'48': 0.139}}], - [0.527,0.683,0,{ic: 0.0583, krn: {'48': 0.139}}], - [0.771,0.683,0,{ic: 0.0278, krn: {'48': 0.0833}}], - [0.528,0.683,0,{ic: 0.0894, krn: {'48': 0.111}}], - [0.719,0.683,0,{ic: 0.0993, krn: {'48': 0.111}}], - [0.595,0.683,0.0972,{ic: 0.0593, krn: {'48': 0.111}}], - [0.845,0.683,0,{ic: 0.00965, krn: {'48': 0.111}}], - [0.545,0.683,0,{ic: 0.0738, krn: {'48': 0.0278}}], - [0.678,0.683,0.0972,{ic: 0.185, krn: {'48': 0.167}}], - [0.762,0.683,0,{ic: 0.0144, krn: {'48': 0.0556}}], - [0.69,0.683,0,{krn: {'48': 0.139}}], [1.2,0.683,0,{krn: {'48': 0.139}}], - [0.82,0.683,0,{ic: 0.147, krn: {'48': 0.0833}}], - [0.796,0.683,0,{ic: 0.0278, krn: {'48': 0.111}}], - - [0.696,0.683,0,{ic: 0.0822, krn: {'48': 0.0833}}], - [0.817,0.683,0.0972,{krn: {'48': 0.111}}], - [0.848,0.683,0,{krn: {'48': 0.0833}}], - [0.606,0.683,0,{ic: 0.075, krn: {'48': 0.139}}], - [0.545,0.683,0,{ic: 0.254, krn: {'48': 0.0278}}], - [0.626,0.683,0,{ic: 0.0993, krn: {'48': 0.0833}}], - [0.613,0.683,0,{ic: 0.0822, krn: {'48': 0.0278}}], - [0.988,0.683,0,{ic: 0.0822, krn: {'48': 0.0833}}], - [0.713,0.683,0,{ic: 0.146, krn: {'48': 0.139}}], - [0.668,0.683,0.0972,{ic: 0.0822, krn: {'48': 0.0833}}], - [0.725,0.683,0,{ic: 0.0794, krn: {'48': 0.139}}], - [0.667,0.556], [0.667,0.556], [0.667,0.556], [0.667,0.556], [0.667,0.556], - - [0.611,0.694], [0.611,0.694], [0.444,0.75,0.25], [0.444,0.75,0.25], - [0.444,0.75,0.25], [0.444,0.75,0.25], [0.5,0.75,0.25], [0.5,0.75,0.25], - [0.389,0.75,0.25], [0.389,0.75,0.25], [0.278,0.75,0.25], [0.5,0.75,0.25], - [0.5,0.75,0.25], [0.611,0.75,0.25], [0.5,0.75,0.25], [0.278,0.694,0.194], - - [0.833,0.04,0.96], [0.75,0.683], [0.833,0.683], [0.417,0.694,0.194,{ic: 0.111}], - [0.667,0.556], [0.667,0.556], [0.778,0.636,0.136], [0.778,0.636,0.136], - [0.444,0.694,0.194], [0.444,0.694,0.194], [0.444,0.694,0.194], - [0.611,0.694,0.194], [0.778,0.694,0.13], [0.778,0.694,0.13], - [0.778,0.694,0.13], [0.778,0.694,0.13] - ], - - cmex10: [ - [0.458,0.04,1.16,{n: 16}], [0.458,0.04,1.16,{n: 17}], - [0.417,0.04,1.16,{n: 104}], [0.417,0.04,1.16,{n: 105}], - [0.472,0.04,1.16,{n: 106}], [0.472,0.04,1.16,{n: 107}], - [0.472,0.04,1.16,{n: 108}], [0.472,0.04,1.16,{n: 109}], - [0.583,0.04,1.16,{n: 110}], [0.583,0.04,1.16,{n: 111}], - [0.472,0.04,1.16,{n: 68}], [0.472,0.04,1.16,{n: 69}], - [0.333,0,0.6,{delim: {rep: 12}}], [0.556,0,0.6,{delim: {rep: 13}}], - [0.578,0.04,1.16,{n: 46}], [0.578,0.04,1.16,{n: 47}], - - [0.597,0.04,1.76,{n: 18}], [0.597,0.04,1.76,{n: 19}], - [0.736,0.04,2.36,{n: 32}], [0.736,0.04,2.36,{n: 33}], - [0.528,0.04,2.36,{n: 34}], [0.528,0.04,2.36,{n: 35}], - [0.583,0.04,2.36,{n: 36}], [0.583,0.04,2.36,{n: 37}], - [0.583,0.04,2.36,{n: 38}], [0.583,0.04,2.36,{n: 39}], - [0.75,0.04,2.36,{n: 40}], [0.75,0.04,2.36,{n: 41}], - [0.75,0.04,2.36,{n: 42}], [0.75,0.04,2.36,{n: 43}], - [1.04,0.04,2.36,{n: 44}], [1.04,0.04,2.36,{n: 45}], - - [0.792,0.04,2.96,{n: 48}], [0.792,0.04,2.96,{n: 49}], - [0.583,0.04,2.96,{n: 50}], [0.583,0.04,2.96,{n: 51}], - [0.639,0.04,2.96,{n: 52}], [0.639,0.04,2.96,{n: 53}], - [0.639,0.04,2.96,{n: 54}], [0.639,0.04,2.96,{n: 55}], - [0.806,0.04,2.96,{n: 56}], [0.806,0.04,2.96,{n: 57}], - [0.806,0.04,2.96], [0.806,0.04,2.96], - [1.28,0.04,2.96], [1.28,0.04,2.96], - [0.811,0.04,1.76,{n: 30}], [0.811,0.04,1.76,{n: 31}], - - [0.875,0.04,1.76,{delim: {top: 48, bot: 64, rep: 66}}], - [0.875,0.04,1.76,{delim: {top: 49, bot: 65, rep: 67}}], - [0.667,0.04,1.76,{delim: {top: 50, bot: 52, rep: 54}}], - [0.667,0.04,1.76,{delim: {top: 51, bot: 53, rep: 55}}], - [0.667,0.04,1.76,{delim: {bot: 52, rep: 54}}], - [0.667,0.04,1.76,{delim: {bot: 53, rep: 55}}], - [0.667,0,0.6,{delim: {top: 50, rep: 54}}], - [0.667,0,0.6,{delim: {top: 51, rep: 55}}], - [0.889,0,0.9,{delim: {top: 56, mid: 60, bot: 58, rep: 62}}], - [0.889,0,0.9,{delim: {top: 57, mid: 61, bot: 59, rep: 62}}], - [0.889,0,0.9,{delim: {top: 56, bot: 58, rep: 62}}], - [0.889,0,0.9,{delim: {top: 57, bot: 59, rep: 62}}], - [0.889,0,1.8,{delim: {rep: 63}}], - [0.889,0,1.8,{delim: {rep: 119}}], - [0.889,0,0.3,{delim: {rep: 62}}], - [0.667,0,0.6,{delim: {top: 120, bot: 121, rep: 63}}], - - [0.875,0.04,1.76,{delim: {top: 56, bot: 59, rep: 62}}], - [0.875,0.04,1.76,{delim: {top: 57, bot: 58, rep: 62}}], - [0.875,0,0.6,{delim: {rep: 66}}], [0.875,0,0.6,{delim: {rep: 67}}], - [0.611,0.04,1.76,{n: 28}], [0.611,0.04,1.76,{n: 29}], - [0.833,0,1,{n: 71}], [1.11,0.1,1.5], [0.472,0,1.11,{ic: 0.194, n: 73}], - [0.556,0,2.22,{ic: 0.444}], [1.11,0,1,{n: 75}], [1.51,0.1,1.5], - [1.11,0,1,{n: 77}], [1.51,0.1,1.5], [1.11,0,1,{n: 79}], [1.51,0.1,1.5], - - [1.06,0,1,{n: 88}], [0.944,0,1,{n: 89}], [0.472,0,1.11,{ic: 0.194, n: 90}], - [0.833,0,1,{n: 91}], [0.833,0,1,{n: 92}], [0.833,0,1,{n: 93}], - [0.833,0,1,{n: 94}], [0.833,0,1,{n: 95}], [1.44,0.1,1.5], - [1.28,0.1,1.5], [0.556,0,2.22,{ic: 0.444}], [1.11,0.1,1.5], - [1.11,0.1,1.5], [1.11,0.1,1.5], [1.11,0.1,1.5], [1.11,0.1,1.5], - - [0.944,0,1,{n: 97}], [1.28,0.1,1.5], [0.556,0.722,0,{n: 99}], - [1,0.75,0,{n: 100}], [1.44,0.75], [0.556,0.722,0,{n: 102}], - [1,0.75,0,{n: 103}], [1.44,0.75], [0.472,0.04,1.76,{n: 20}], - [0.472,0.04,1.76,{n: 21}], [0.528,0.04,1.76,{n: 22}], - [0.528,0.04,1.76,{n: 23}], [0.528,0.04,1.76,{n: 24}], - [0.528,0.04,1.76,{n: 25}], [0.667,0.04,1.76,{n: 26}], - [0.667,0.04,1.76,{n: 27}], - - [1,0.04,1.16,{n: 113}], [1,0.04,1.76,{n: 114}], [1,0.04,2.36,{n: 115}], - [1,0.04,2.96,{n: 116}], [1.06,0,1.8,{delim: {top: 118, bot: 116, rep: 117}}], - [1.06,0,0.6], [1.06,0.04,0.56], - [0.778,0,0.6,{delim: {top: 126, bot: 127, rep: 119}}], - [0.667,0,0.6,{delim: {top: 120, rep: 63}}], - [0.667,0,0.6,{delim: {bot: 121, rep: 63}}], - [0.45,0.12], [0.45,0.12], [0.45,0.12], [0.45,0.12], - [0.778,0,0.6,{delim: {top: 126, rep: 119}}], - [0.778,0,0.6,{delim: {bot: 127, rep: 119}}] - ], - - cmti10: [ - [0.627,0.683,0,{ic: 0.133}], [0.818,0.683], [0.767,0.683,0,{ic: 0.094}], - [0.692,0.683], [0.664,0.683,0,{ic: 0.153}], [0.743,0.683,0,{ic: 0.164}], - [0.716,0.683,0,{ic: 0.12}], [0.767,0.683,0,{ic: 0.111}], - [0.716,0.683,0,{ic: 0.0599}], [0.767,0.683,0,{ic: 0.111}], - [0.716,0.683,0,{ic: 0.103}], - [0.613,0.694,0.194,{ic: 0.212, krn: {'39': 0.104, '63': 0.104, '33': 0.104, '41': 0.104, '93': 0.104}, lig: {'105': 14, '108': 15}}], - [0.562,0.694,0.194,{ic: 0.103}], [0.588,0.694,0.194,{ic: 0.103}], - [0.882,0.694,0.194,{ic: 0.103}], [0.894,0.694,0.194,{ic: 0.103}], - - [0.307,0.431,0,{ic: 0.0767}], [0.332,0.431,0.194,{ic: 0.0374}], - [0.511,0.694], [0.511,0.694,0,{ic: 0.0969}], [0.511,0.628,0,{ic: 0.083}], - [0.511,0.694,0,{ic: 0.108}], [0.511,0.562,0,{ic: 0.103}], [0.831,0.694], - [0.46,0,0.17], [0.537,0.694,0.194,{ic: 0.105}], [0.716,0.431,0,{ic: 0.0751}], - [0.716,0.431,0,{ic: 0.0751}], [0.511,0.528,0.0972,{ic: 0.0919}], - [0.883,0.683,0,{ic: 0.12}], [0.985,0.683,0,{ic: 0.12}], - [0.767,0.732,0.0486,{ic: 0.094}], - - [0.256,0.431,0,{krn: {'108': -0.256, '76': -0.321}}], - [0.307,0.694,0,{ic: 0.124, lig: {'96': 60}}], - [0.514,0.694,0,{ic: 0.0696}], [0.818,0.694,0.194,{ic: 0.0662}], - [0.769,0.694], [0.818,0.75,0.0556,{ic: 0.136}], - [0.767,0.694,0,{ic: 0.0969}], - [0.307,0.694,0,{ic: 0.124, krn: {'63': 0.102, '33': 0.102}, lig: {'39': 34}}], - [0.409,0.75,0.25,{ic: 0.162}], [0.409,0.75,0.25,{ic: 0.0369}], - [0.511,0.75,0,{ic: 0.149}], [0.767,0.562,0.0567,{ic: 0.0369}], - [0.307,0.106,0.194], [0.358,0.431,0,{ic: 0.0283, lig: {'45': 123}}], - [0.307,0.106], [0.511,0.75,0.25,{ic: 0.162}], - - [0.511,0.644,0,{ic: 0.136}], [0.511,0.644,0,{ic: 0.136}], - [0.511,0.644,0,{ic: 0.136}], [0.511,0.644,0,{ic: 0.136}], - [0.511,0.644,0.194,{ic: 0.136}], [0.511,0.644,0,{ic: 0.136}], - [0.511,0.644,0,{ic: 0.136}], [0.511,0.644,0.194,{ic: 0.136}], - [0.511,0.644,0,{ic: 0.136}], [0.511,0.644,0,{ic: 0.136}], - [0.307,0.431,0,{ic: 0.0582}], [0.307,0.431,0.194,{ic: 0.0582}], - [0.307,0.5,0.194,{ic: 0.0756}], [0.767,0.367,-0.133,{ic: 0.0662}], - [0.511,0.5,0.194], [0.511,0.694,0,{ic: 0.122, lig: {'96': 62}}], - - [0.767,0.694,0,{ic: 0.096}], - [0.743,0.683,0,{krn: {'110': -0.0256, '108': -0.0256, '114': -0.0256, '117': -0.0256, '109': -0.0256, '116': -0.0256, '105': -0.0256, '67': -0.0256, '79': -0.0256, '71': -0.0256, '104': -0.0256, '98': -0.0256, '85': -0.0256, '107': -0.0256, '118': -0.0256, '119': -0.0256, '81': -0.0256, '84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}], - [0.704,0.683,0,{ic: 0.103}], [0.716,0.683,0,{ic: 0.145}], - [0.755,0.683,0,{ic: 0.094, krn: {'88': -0.0256, '87': -0.0256, '65': -0.0256, '86': -0.0256, '89': -0.0256}}], - [0.678,0.683,0,{ic: 0.12}], - [0.653,0.683,0,{ic: 0.133, krn: {'111': -0.0767, '101': -0.0767, '117': -0.0767, '114': -0.0767, '97': -0.0767, '65': -0.102, '79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}}], - [0.774,0.683,0,{ic: 0.0872}], [0.743,0.683,0,{ic: 0.164}], - [0.386,0.683,0,{ic: 0.158}], [0.525,0.683,0,{ic: 0.14}], - [0.769,0.683,0,{ic: 0.145, krn: {'79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}}], - [0.627,0.683,0,{krn: {'84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}], - [0.897,0.683,0,{ic: 0.164}], [0.743,0.683,0,{ic: 0.164}], - [0.767,0.683,0,{ic: 0.094, krn: {'88': -0.0256, '87': -0.0256, '65': -0.0256, '86': -0.0256, '89': -0.0256}}], - - [0.678,0.683,0,{ic: 0.103, krn: {'65': -0.0767}}], - [0.767,0.683,0.194,{ic: 0.094}], - [0.729,0.683,0,{ic: 0.0387, krn: {'110': -0.0256, '108': -0.0256, '114': -0.0256, '117': -0.0256, '109': -0.0256, '116': -0.0256, '105': -0.0256, '67': -0.0256, '79': -0.0256, '71': -0.0256, '104': -0.0256, '98': -0.0256, '85': -0.0256, '107': -0.0256, '118': -0.0256, '119': -0.0256, '81': -0.0256, '84': -0.0767, '89': -0.0767, '86': -0.102, '87': -0.102, '101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}], - [0.562,0.683,0,{ic: 0.12}], - [0.716,0.683,0,{ic: 0.133, krn: {'121': -0.0767, '101': -0.0767, '111': -0.0767, '114': -0.0767, '97': -0.0767, '117': -0.0767, '65': -0.0767}}], - [0.743,0.683,0,{ic: 0.164}], - [0.743,0.683,0,{ic: 0.184, krn: {'111': -0.0767, '101': -0.0767, '117': -0.0767, '114': -0.0767, '97': -0.0767, '65': -0.102, '79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}}], - [0.999,0.683,0,{ic: 0.184, krn: {'65': -0.0767}}], - [0.743,0.683,0,{ic: 0.158, krn: {'79': -0.0256, '67': -0.0256, '71': -0.0256, '81': -0.0256}}], - [0.743,0.683,0,{ic: 0.194, krn: {'101': -0.0767, '111': -0.0767, '114': -0.0767, '97': -0.0767, '117': -0.0767, '65': -0.0767}}], - [0.613,0.683,0,{ic: 0.145}], [0.307,0.75,0.25,{ic: 0.188}], - [0.514,0.694,0,{ic: 0.169}], [0.307,0.75,0.25,{ic: 0.105}], - [0.511,0.694,0,{ic: 0.0665}], [0.307,0.668,0,{ic: 0.118}], - - [0.307,0.694,0,{ic: 0.124, lig: {'96': 92}}], [0.511,0.431,0,{ic: 0.0767}], - [0.46,0.694,0,{ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}], - [0.46,0.431,0,{ic: 0.0565, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}], - [0.511,0.694,0,{ic: 0.103, krn: {'108': 0.0511}}], - [0.46,0.431,0,{ic: 0.0751, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}], - [0.307,0.694,0.194,{ic: 0.212, krn: {'39': 0.104, '63': 0.104, '33': 0.104, '41': 0.104, '93': 0.104}, lig: {'105': 12, '102': 11, '108': 13}}], - [0.46,0.431,0.194,{ic: 0.0885}], [0.511,0.694,0,{ic: 0.0767}], - [0.307,0.655,0,{ic: 0.102}], [0.307,0.655,0.194,{ic: 0.145}], - [0.46,0.694,0,{ic: 0.108}], [0.256,0.694,0,{ic: 0.103, krn: {'108': 0.0511}}], - [0.818,0.431,0,{ic: 0.0767}], [0.562,0.431,0,{ic: 0.0767, krn: {'39': -0.102}}], - [0.511,0.431,0,{ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}], - - [0.511,0.431,0.194,{ic: 0.0631, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}], - [0.46,0.431,0.194,{ic: 0.0885}], - [0.422,0.431,0,{ic: 0.108, krn: {'101': -0.0511, '97': -0.0511, '111': -0.0511, '100': -0.0511, '99': -0.0511, '103': -0.0511, '113': -0.0511}}], - [0.409,0.431,0,{ic: 0.0821}], [0.332,0.615,0,{ic: 0.0949}], - [0.537,0.431,0,{ic: 0.0767}], [0.46,0.431,0,{ic: 0.108}], - [0.664,0.431,0,{ic: 0.108, krn: {'108': 0.0511}}], - [0.464,0.431,0,{ic: 0.12}], [0.486,0.431,0.194,{ic: 0.0885}], - [0.409,0.431,0,{ic: 0.123}], [0.511,0.431,0,{ic: 0.0921, lig: {'45': 124}}], - [1.02,0.431,0,{ic: 0.0921}], [0.511,0.694,0,{ic: 0.122}], - [0.511,0.668,0,{ic: 0.116}], [0.511,0.668,0,{ic: 0.105}] - ], - - cmbx10: [ - [0.692,0.686], [0.958,0.686], [0.894,0.686], [0.806,0.686], - [0.767,0.686], [0.9,0.686], [0.831,0.686], [0.894,0.686], - [0.831,0.686], [0.894,0.686], [0.831,0.686], - [0.671,0.694,0,{ic: 0.109, krn: {'39': 0.109, '63': 0.109, '33': 0.109, '41': 0.109, '93': 0.109}, lig: {'105': 14, '108': 15}}], - [0.639,0.694], [0.639,0.694], [0.958,0.694], [0.958,0.694], - - [0.319,0.444], [0.351,0.444,0.194], [0.575,0.694], [0.575,0.694], - [0.575,0.632], [0.575,0.694], [0.575,0.596], [0.869,0.694], - [0.511,0,0.17], [0.597,0.694], [0.831,0.444], [0.894,0.444], - [0.575,0.542,0.0972], [1.04,0.686], [1.17,0.686], [0.894,0.735,0.0486], - - [0.319,0.444,0,{krn: {'108': -0.319, '76': -0.378}}], - [0.35,0.694,0,{lig: {'96': 60}}], [0.603,0.694], [0.958,0.694,0.194], - [0.575,0.75,0.0556], [0.958,0.75,0.0556], [0.894,0.694], - [0.319,0.694,0,{krn: {'63': 0.128, '33': 0.128}, lig: {'39': 34}}], - [0.447,0.75,0.25], [0.447,0.75,0.25], [0.575,0.75], [0.894,0.633,0.133], - [0.319,0.156,0.194], [0.383,0.444,0,{lig: {'45': 123}}], - [0.319,0.156], [0.575,0.75,0.25], - - [0.575,0.644], [0.575,0.644], [0.575,0.644], [0.575,0.644], - [0.575,0.644], [0.575,0.644], [0.575,0.644], [0.575,0.644], - [0.575,0.644], [0.575,0.644], [0.319,0.444], [0.319,0.444,0.194], - [0.35,0.5,0.194], [0.894,0.391,-0.109], [0.543,0.5,0.194], - [0.543,0.694,0,{lig: {'96': 62}}], - - [0.894,0.694], - [0.869,0.686,0,{krn: {'116': -0.0319, '67': -0.0319, '79': -0.0319, '71': -0.0319, '85': -0.0319, '81': -0.0319, '84': -0.0958, '89': -0.0958, '86': -0.128, '87': -0.128}}], - [0.818,0.686], [0.831,0.686], - [0.882,0.686,0,{krn: {'88': -0.0319, '87': -0.0319, '65': -0.0319, '86': -0.0319, '89': -0.0319}}], - [0.756,0.686], - [0.724,0.686,0,{krn: {'111': -0.0958, '101': -0.0958, '117': -0.0958, '114': -0.0958, '97': -0.0958, '65': -0.128, '79': -0.0319, '67': -0.0319, '71': -0.0319, '81': -0.0319}}], - [0.904,0.686], [0.9,0.686], [0.436,0.686,0,{krn: {'73': 0.0319}}], - [0.594,0.686], - [0.901,0.686,0,{krn: {'79': -0.0319, '67': -0.0319, '71': -0.0319, '81': -0.0319}}], - [0.692,0.686,0,{krn: {'84': -0.0958, '89': -0.0958, '86': -0.128, '87': -0.128}}], - [1.09,0.686], [0.9,0.686], - [0.864,0.686,0,{krn: {'88': -0.0319, '87': -0.0319, '65': -0.0319, '86': -0.0319, '89': -0.0319}}], - - [0.786,0.686,0,{krn: {'65': -0.0958, '111': -0.0319, '101': -0.0319, '97': -0.0319, '46': -0.0958, '44': -0.0958}}], - [0.864,0.686,0.194], - [0.862,0.686,0,{krn: {'116': -0.0319, '67': -0.0319, '79': -0.0319, '71': -0.0319, '85': -0.0319, '81': -0.0319, '84': -0.0958, '89': -0.0958, '86': -0.128, '87': -0.128}}], - [0.639,0.686], - [0.8,0.686,0,{krn: {'121': -0.0319, '101': -0.0958, '111': -0.0958, '114': -0.0958, '97': -0.0958, '65': -0.0958, '117': -0.0958}}], - [0.885,0.686], - [0.869,0.686,0,{ic: 0.016, krn: {'111': -0.0958, '101': -0.0958, '117': -0.0958, '114': -0.0958, '97': -0.0958, '65': -0.128, '79': -0.0319, '67': -0.0319, '71': -0.0319, '81': -0.0319}}], - [1.19,0.686,0,{ic: 0.016, krn: {'111': -0.0958, '101': -0.0958, '117': -0.0958, '114': -0.0958, '97': -0.0958, '65': -0.128, '79': -0.0319, '67': -0.0319, '71': -0.0319, '81': -0.0319}}], - [0.869,0.686,0,{krn: {'79': -0.0319, '67': -0.0319, '71': -0.0319, '81': -0.0319}}], - [0.869,0.686,0,{ic: 0.0287, krn: {'101': -0.0958, '111': -0.0958, '114': -0.0958, '97': -0.0958, '65': -0.0958, '117': -0.0958}}], - [0.703,0.686], [0.319,0.75,0.25], [0.603,0.694], [0.319,0.75,0.25], - [0.575,0.694], [0.319,0.694], - - [0.319,0.694,0,{lig: {'96': 92}}], - [0.559,0.444,0,{krn: {'118': -0.0319, '106': 0.0639, '121': -0.0319, '119': -0.0319}}], - [0.639,0.694,0,{krn: {'101': 0.0319, '111': 0.0319, '120': -0.0319, '100': 0.0319, '99': 0.0319, '113': 0.0319, '118': -0.0319, '106': 0.0639, '121': -0.0319, '119': -0.0319}}], - [0.511,0.444,0,{krn: {'104': -0.0319, '107': -0.0319}}], - [0.639,0.694], [0.527,0.444], - [0.351,0.694,0,{ic: 0.109, krn: {'39': 0.109, '63': 0.109, '33': 0.109, '41': 0.109, '93': 0.109}, lig: {'105': 12, '102': 11, '108': 13}}], - [0.575,0.444,0.194,{ic: 0.016, krn: {'106': 0.0319}}], - [0.639,0.694,0,{krn: {'116': -0.0319, '117': -0.0319, '98': -0.0319, '121': -0.0319, '118': -0.0319, '119': -0.0319}}], - [0.319,0.694], [0.351,0.694,0.194], - [0.607,0.694,0,{krn: {'97': -0.0639, '101': -0.0319, '97': -0.0319, '111': -0.0319, '99': -0.0319}}], - [0.319,0.694], - [0.958,0.444,0,{krn: {'116': -0.0319, '117': -0.0319, '98': -0.0319, '121': -0.0319, '118': -0.0319, '119': -0.0319}}], - [0.639,0.444,0,{krn: {'116': -0.0319, '117': -0.0319, '98': -0.0319, '121': -0.0319, '118': -0.0319, '119': -0.0319}}], - [0.575,0.444,0,{krn: {'101': 0.0319, '111': 0.0319, '120': -0.0319, '100': 0.0319, '99': 0.0319, '113': 0.0319, '118': -0.0319, '106': 0.0639, '121': -0.0319, '119': -0.0319}}], - - [0.639,0.444,0.194,{krn: {'101': 0.0319, '111': 0.0319, '120': -0.0319, '100': 0.0319, '99': 0.0319, '113': 0.0319, '118': -0.0319, '106': 0.0639, '121': -0.0319, '119': -0.0319}}], - [0.607,0.444,0.194], [0.474,0.444], [0.454,0.444], - [0.447,0.635,0,{krn: {'121': -0.0319, '119': -0.0319}}], - [0.639,0.444,0,{krn: {'119': -0.0319}}], - [0.607,0.444,0,{ic: 0.016, krn: {'97': -0.0639, '101': -0.0319, '97': -0.0319, '111': -0.0319, '99': -0.0319}}], - [0.831,0.444,0,{ic: 0.016, krn: {'101': -0.0319, '97': -0.0319, '111': -0.0319, '99': -0.0319}}], - [0.607,0.444], - [0.607,0.444,0.194,{ic: 0.016, krn: {'111': -0.0319, '101': -0.0319, '97': -0.0319, '46': -0.0958, '44': -0.0958}}], - [0.511,0.444], [0.575,0.444,0,{ic: 0.0319, lig: {'45': 124}}], - [1.15,0.444,0,{ic: 0.0319}], [0.575,0.694], [0.575,0.694], [0.575,0.694] - ] -}; - -/***************************************************************************/ - -/* - * Implement image-based fonts for fallback method - */ -jsMath.Img = { - - // font sizes available - fonts: [50, 60, 70, 85, 100, 120, 144, 173, 207, 249, 298, 358, 430], - - // em widths for the various font size directories - w: {'50': 6.9, '60': 8.3, '70': 9.7, '85': 11.8, '100': 13.9, - '120': 16.7, '144': 20.0, '173': 24.0, '207': 28.8, '249': 34.6, - '298': 41.4, '358': 49.8, '430': 59.8}, - - best: 4, // index of best font size in the fonts list - update: {}, // fonts to update (see UpdateFonts below) - factor: 1, // factor by which to shrink images (for better printing) - loaded: 0, // image fonts are loaded - - // add characters to be drawn using images - SetFont: function (change) { - for (var font in change) { - if (!this.update[font]) {this.update[font] = []} - this.update[font] = this.update[font].concat(change[font]); - } - }, - - /* - * Called by the exta-font definition files to add an image font - * into the mix - */ - AddFont: function (size,def) { - if (!jsMath.Img[size]) {jsMath.Img[size] = {}}; - jsMath.Add(jsMath.Img[size],def); - }, - - /* - * Update font(s) to use image data rather than native fonts - * It looks in the jsMath.Img.update array to find the names - * of the fonts to udpate, and the arrays of character codes - * to set (or 'all' to change every character); - */ - UpdateFonts: function () { - var change = this.update; if (!this.loaded) return; - for (var font in change) { - for (var i = 0; i < change[font].length; i++) { - var c = change[font][i]; - if (c == 'all') {for (c in jsMath.TeX[font]) {jsMath.TeX[font][c].img = {}}} - else {jsMath.TeX[font][c].img = {}} - } - } - this.update = {}; - }, - - /* - * Find the font size that best fits our current font - * (this is the directory name for the img files used - * in some fallback modes). - */ - BestSize: function () { - var w = jsMath.em * this.factor; - var m = this.w[this.fonts[0]]; - for (var i = 1; i < this.fonts.length; i++) { - if (w < (this.w[this.fonts[i]] + 2*m) / 3) {return i-1} - m = this.w[this.fonts[i]]; - } - return i-1; - }, - - /* - * Get the scaling factor for the image fonts - */ - Scale: function () { - if (!this.loaded) return; - this.best = this.BestSize(); - this.em = jsMath.Img.w[this.fonts[this.best]]; - this.scale = (jsMath.em/this.em); - if (Math.abs(this.scale - 1) < .12) {this.scale = 1} - }, - - /* - * Get URL to directory for given font and size, based on the - * user's alpha/plain setting - */ - URL: function (name,size,C) { - var type = (jsMath.Controls.cookie.alpha) ? '/alpha/': '/plain/'; - if (C == null) {C = "def.js"} else {C = 'char'+C+'.png'} - if (size != "") {size += '/'} - return this.root+name+type+size+C; - }, - - /* - * Laod the data for an image font - */ - LoadFont: function (name) { - if (!this.loaded) this.Init(); - jsMath.Setup.Script(this.URL(name,"")); - }, - - /* - * Setup for print mode, and create the hex code table - */ - Init: function () { - if (jsMath.Controls.cookie.print || jsMath.Controls.cookie.stayhires) { - jsMath.Controls.cookie.print = jsMath.Controls.cookie.stayhires; - this.factor *= 3; - if (!jsMath.Controls.isLocalCookie || !jsMath.Global.isLocal) {jsMath.Controls.SetCookie(0)} - if (jsMath.Browser.alphaPrintBug) {jsMath.Controls.cookie.alpha = 0} - } - var codes = '0123456789ABCDEF'; - this.HexCode = []; - for (var i = 0; i < 128; i++) { - var h = Math.floor(i/16); var l = i - 16*h; - this.HexCode[i] = codes.charAt(h)+codes.charAt(l); - } - this.loaded = 1; - } - -}; - -/***************************************************************************/ - -/* - * jsMath.HTML handles creation of most of the HTML needed for - * presenting mathematics in HTML pages. - */ - -jsMath.HTML = { - - /* - * Produce a string version of a measurement in ems, - * showing only a limited number of digits, and - * using 0 when the value is near zero. - */ - Em: function (m) { - if (Math.abs(m) < .000001) {m = 0} - var s = String(m); s = s.replace(/(\.\d\d\d).+/,'$1'); - return s+'em' - }, - - /* - * Create a horizontal space of width w - */ - Spacer: function (w) { - if (w == 0) {return ''}; - return jsMath.Browser.msieSpaceFix+''; - }, - - /* - * Create a blank rectangle of the given size - * If the height is small, it is converted to pixels so that it - * will not disappear at small font sizes. - */ - - Blank: function (w,h,d,isRule) { - var backspace = ''; var style = '' - if (isRule) { - style += 'border-left:'+this.Em(w)+' solid;'; - if (jsMath.Browser.widthAddsBorder) {w = 0}; - } - if (w == 0) { - if (jsMath.Browser.blankWidthBug) { - if (jsMath.Browser.quirks) { - style += 'width:1px;'; - backspace = '' - } else if (!isRule) { - style += 'width:1px;margin-right:-1px;'; - } - } - } else {style += 'width:'+this.Em(w)+';'} - if (d == null) {d = 0} - if (h) { - var H = this.Em(h+d); - if (isRule && h*jsMath.em <= 1.5) {H = "1.5px"; h = 1.5/jsMath.em} - style += 'height:'+H+';'; - } - if (jsMath.Browser.mozInlineBlockBug) {d = -h} - if (jsMath.Browser.msieBorderBug && !isRule) {d -= jsMath.d} - if (d) {style += 'vertical-align:'+this.Em(-d)} - return backspace+''; - }, - - /* - * Create a rule line for fractions, etc. - */ - Rule: function (w,h) { - if (h == null) {h = jsMath.TeX.default_rule_thickness} - return this.Blank(w,h,0,1); - }, - - /* - * Add a tag to activate a specific CSS class - */ - Class: function (tclass,html) { - return ''+html+''; - }, - - /* - * Use a to place some HTML at a specific position. - * (This can be replaced by the ones below to overcome - * some browser-specific bugs.) - */ - Place: function (html,x,y) { - if (Math.abs(x) < .0001) {x = 0} - if (Math.abs(y) < .0001) {y = 0} - if (x || y) { - var span = '' + html + ''; - } - return html; - }, - - /* - * For MSIE on Windows, backspacing must be done in a separate - * , otherwise the contents will be clipped. Netscape - * also doesn't combine vertical and horizontal spacing well. - * Here the x and y positioning are done in separate tags - */ - PlaceSeparateSkips: function (html,x,y,mw,Mw,w) { - if (Math.abs(x) < .0001) {x = 0} - if (Math.abs(y) < .0001) {y = 0} - if (y) { - var lw = 0; var rw = 0; var width = ""; - if (mw != null) { - rw = Mw - w; lw = mw; - width = ' width:'+this.Em(Mw-mw)+';'; - } - html = - this.Spacer(lw-rw) + - '' + - this.Spacer(-lw) + - html + - this.Spacer(rw) + - '' - } - if (x) {html = this.Spacer(x) + html} - return html; - }, - - /* - * Place a SPAN with absolute coordinates - */ - PlaceAbsolute: function (html,x,y,mw,Mw,w) { - if (Math.abs(x) < .0001) {x = 0} - if (Math.abs(y) < .0001) {y = 0} - var leftSpace = ""; var rightSpace = ""; var width = ""; - if (jsMath.Browser.msieRelativeClipBug && mw != null) { - leftSpace = this.Spacer(-mw); x += mw; - rightSpace = this.Spacer(Mw-w); - } - if (jsMath.Browser.operaAbsoluteWidthBug) {width = " width: "+this.Em(w+2)} - html = - '' + - leftSpace + html + rightSpace + - ' ' + // space normalizes line height in script styles - ''; - return html; - }, - - Absolute: function(html,w,h,d,y) { - if (y != "none") { - if (Math.abs(y) < .0001) {y = 0} - html = '' - + html + ' ' // space normalizes line height in script styles - + ''; - } - if (d == "none") {d = 0} - html += this.Blank(w,h-d,d); - if (jsMath.Browser.msieAbsoluteBug) { // for MSIE (Mac) - html = '' + html + ''; - } - html = '' + html + ''; - return html; - } - -}; - - -/***************************************************************************/ - -/* - * jsMath.Box handles TeX's math boxes and jsMath's equivalent of hboxes. - */ - -jsMath.Box = function (format,text,w,h,d) { - if (d == null) {d = jsMath.d} - this.type = 'typeset'; - this.w = w; this.h = h; this.d = d; this.bh = h; this.bd = d; - this.x = 0; this.y = 0; this.mw = 0; this.Mw = w; - this.html = text; this.format = format; -}; - - -jsMath.Add(jsMath.Box,{ - - defaultH: 0, // default height for characters with none specified - - /* - * An empty box - */ - Null: function () {return new jsMath.Box('null','',0,0,0)}, - - /* - * A box containing only text whose class and style haven't been added - * yet (so that we can combine ones with the same styles). It gets - * the text dimensions, if needed. (In general, this has been - * replaced by TeX() below, but is still used in fallback mode.) - */ - Text: function (text,tclass,style,size,a,d) { - var html = jsMath.Typeset.AddClass(tclass,text); - html = jsMath.Typeset.AddStyle(style,size,html); - var BB = jsMath.EmBoxFor(html); var TeX = jsMath.Typeset.TeX(style,size); - var bd = ((tclass == 'cmsy10' || tclass == 'cmex10')? BB.h-TeX.h: TeX.d*BB.h/TeX.hd); - var box = new jsMath.Box('text',text,BB.w,BB.h-bd,bd); - box.style = style; box.size = size; box.tclass = tclass; - if (d != null) {box.d = d*TeX.scale} else {box.d = 0} - if (a == null || a == 1) {box.h = .9*TeX.M_height} - else {box.h = 1.1*TeX.x_height + TeX.scale*a} - return box; - }, - - /* - * Produce a box containing a given TeX character from a given font. - * The box is a text box (like the ones above), so that characters from - * the same font can be combined. - */ - TeX: function (C,font,style,size) { - var c = jsMath.TeX[font][C]; - if (c.d == null) {c.d = 0}; if (c.h == null) {c.h = 0} - if (c.img != null && c.c != '') this.TeXIMG(font,C,jsMath.Typeset.StyleSize(style,size)); - var scale = jsMath.Typeset.TeX(style,size).scale; - var box = new jsMath.Box('text',c.c,c.w*scale,c.h*scale,c.d*scale); - box.style = style; box.size = size; - if (c.tclass) { - box.tclass = c.tclass; - if (c.img) {box.bh = c.img.bh; box.bd = c.img.bd} - else {box.bh = scale*jsMath.h; box.bd = scale*jsMath.d} - } else { - box.tclass = font; - box.bh = scale*jsMath.TeX[font].h; - box.bd = scale*jsMath.TeX[font].d; - if (jsMath.Browser.msieFontBug && box.html.match(/&#/)) { - // hack to avoid font changing back to the default - // font when a unicode reference is not followed - // by a letter or number - box.html += 'x'; - } - } - return box; - }, - - /* - * In fallback modes, handle the fact that we don't have the - * sizes of the characters precomputed - */ - TeXfallback: function (C,font,style,size) { - var c = jsMath.TeX[font][C]; if (!c.tclass) {c.tclass = font} - if (c.img != null) {return this.TeXnonfallback(C,font,style,size)} - if (c.h != null && c.a == null) {c.a = c.h-1.1*jsMath.TeX.x_height} - var a = c.a; var d = c.d; // avoid Firefox warnings - var box = this.Text(c.c,c.tclass,style,size,a,d); - var scale = jsMath.Typeset.TeX(style,size).scale; - if (c.bh != null) { - box.bh = c.bh*scale; - box.bd = c.bd*scale; - } else { - var h = box.bd+box.bh; - var html = jsMath.Typeset.AddClass(box.tclass,box.html); - html = jsMath.Typeset.AddStyle(style,size,html); - box.bd = jsMath.EmBoxFor(html+jsMath.HTML.Blank(1,h)).h - h; - box.bh = h - box.bd; - if (scale == 1) {c.bh = box.bh; c.bd = box.bd} - } - if (jsMath.msieFontBug && box.html.match(/&#/)) - {box.html += 'x'} - return box; - }, - - /* - * Set the character's string to the appropriate image file - */ - TeXIMG: function (font,C,size) { - var c = jsMath.TeX[font][C]; - if (c.img.size != null && c.img.size == size && - c.img.best != null && c.img.best == jsMath.Img.best) return; - var mustScale = (jsMath.Img.scale != 1); - var id = jsMath.Img.best + size - 4; - if (id < 0) {id = 0; mustScale = 1} else - if (id >= jsMath.Img.fonts.length) {id = jsMath.Img.fonts.length-1; mustScale = 1} - var imgFont = jsMath.Img[jsMath.Img.fonts[id]]; - var img = imgFont[font][C]; - var scale = 1/jsMath.Img.w[jsMath.Img.fonts[id]]; - if (id != jsMath.Img.best + size - 4) { - if (c.w != null) {scale = c.w/img[0]} else { - scale *= jsMath.Img.fonts[size]/jsMath.Img.fonts[4] - * jsMath.Img.fonts[jsMath.Img.best]/jsMath.Img.fonts[id]; - } - } - var w = img[0]*scale; var h = img[1]*scale; var d = -img[2]*scale; var v; - var wadjust = (c.w == null || Math.abs(c.w-w) < .01)? "" : " margin-right:"+jsMath.HTML.Em(c.w-w)+';'; - var resize = ""; C = jsMath.Img.HexCode[C]; - if (!mustScale && !jsMath.Controls.cookie.scaleImg) { - if (jsMath.Browser.mozImageSizeBug || 2*w < h || - (jsMath.Browser.msieAlphaBug && jsMath.Controls.cookie.alpha)) - {resize = "height:"+(img[1]*jsMath.Browser.imgScale)+'px;'} - resize += " width:"+(img[0]*jsMath.Browser.imgScale)+'px;' - v = -img[2]+'px'; - } else { - if (jsMath.Browser.mozImageSizeBug || 2*w < h || - (jsMath.Browser.msieAlphaBug && jsMath.Controls.cookie.alpha)) - {resize = "height:"+jsMath.HTML.Em(h*jsMath.Browser.imgScale)+';'} - resize += " width:"+jsMath.HTML.Em(w*jsMath.Browser.imgScale)+';' - v = jsMath.HTML.Em(d); - } - var vadjust = (Math.abs(d) < .01 && !jsMath.Browser.valignBug)? - "": " vertical-align:"+v+';'; - var URL = jsMath.Img.URL(font,jsMath.Img.fonts[id],C); - if (jsMath.Browser.msieAlphaBug && jsMath.Controls.cookie.alpha) { - c.c = ''; - } else { - c.c = ''; - } - c.tclass = "normal"; - c.img.bh = h+d; c.img.bd = -d; - c.img.size = size; c.img.best = jsMath.Img.best; - }, - - /* - * A box containing a spacer of a specific width - */ - Space: function (w) { - return new jsMath.Box('html',jsMath.HTML.Spacer(w),w,0,0); - }, - - /* - * A box containing a horizontal rule - */ - Rule: function (w,h) { - if (h == null) {h = jsMath.TeX.default_rule_thickness} - var html = jsMath.HTML.Rule(w,h); - return new jsMath.Box('html',html,w,h,0); - }, - - /* - * Get a character from a TeX font, and make sure that it has - * its metrics specified. - */ - GetChar: function (code,font) { - var c = jsMath.TeX[font][code]; - if (c.img != null) {this.TeXIMG(font,code,4)} - if (c.tclass == null) {c.tclass = font} - if (!c.computedW) { - c.w = jsMath.EmBoxFor(jsMath.Typeset.AddClass(c.tclass,c.c)).w; - if (c.h == null) {c.h = jsMath.Box.defaultH}; if (c.d == null) {c.d = 0} - c.computedW = 1; - } - return c; - }, - - /* - * Locate the TeX delimiter character that matches a given height. - * Return the character, font, style and actual height used. - */ - DelimBestFit: function (H,c,font,style) { - if (c == 0 && font == 0) return null; - var C; var h; font = jsMath.TeX.fam[font]; - var isSS = (style.charAt(1) == 'S'); - var isS = (style.charAt(0) == 'S'); - while (c != null) { - C = jsMath.TeX[font][c]; - if (C.h == null) {C.h = jsMath.Box.defaultH}; if (C.d == null) {C.d = 0} - h = C.h+C.d; - if (C.delim) {return [c,font,'',H]} - if (isSS && .5*h >= H) {return [c,font,'SS',.5*h]} - if (isS && .7*h >= H) {return [c,font,'S',.7*h]} - if (h >= H || C.n == null) {return [c,font,'T',h]} - c = C.n; - } - return null; - }, - - /* - * Create the HTML needed for a stretchable delimiter of a given height, - * either centered or not. This version uses relative placement (i.e., - * backspaces, not line-breaks). This works with more browsers, but - * if the font size changes, the backspacing may not be right, so the - * delimiters may become jagged. - */ - DelimExtendRelative: function (H,c,font,a,nocenter) { - var C = jsMath.TeX[font][c]; - var top = this.GetChar(C.delim.top? C.delim.top: C.delim.rep,font); - var rep = this.GetChar(C.delim.rep,font); - var bot = this.GetChar(C.delim.bot? C.delim.bot: C.delim.rep,font); - var ext = jsMath.Typeset.AddClass(rep.tclass,rep.c); - var w = rep.w; var h = rep.h+rep.d - var y; var Y; var html; var dx; var i; var n; - if (C.delim.mid) {// braces - var mid = this.GetChar(C.delim.mid,font); - n = Math.ceil((H-(top.h+top.d)-(mid.h+mid.d)-(bot.h+bot.d))/(2*(rep.h+rep.d))); - H = 2*n*(rep.h+rep.d) + (top.h+top.d) + (mid.h+mid.d) + (bot.h+bot.d); - if (nocenter) {y = 0} else {y = H/2+a}; Y = y; - html = jsMath.HTML.Place(jsMath.Typeset.AddClass(top.tclass,top.c),0,y-top.h) - + jsMath.HTML.Place(jsMath.Typeset.AddClass(bot.tclass,bot.c),-(top.w+bot.w)/2,y-(H-bot.d)) - + jsMath.HTML.Place(jsMath.Typeset.AddClass(mid.tclass,mid.c),-(bot.w+mid.w)/2,y-(H+mid.h-mid.d)/2); - dx = (w-mid.w)/2; if (Math.abs(dx) < .0001) {dx = 0} - if (dx) {html += jsMath.HTML.Spacer(dx)} - y -= top.h+top.d + rep.h; - for (i = 0; i < n; i++) {html += jsMath.HTML.Place(ext,-w,y-i*h)} - y -= H/2 - rep.h/2; - for (i = 0; i < n; i++) {html += jsMath.HTML.Place(ext,-w,y-i*h)} - } else {// everything else - n = Math.ceil((H - (top.h+top.d) - (bot.h+bot.d))/(rep.h+rep.d)); - // make sure two-headed arrows have an extender - if (top.h+top.d < .9*(rep.h+rep.d)) {n = Math.max(1,n)} - H = n*(rep.h+rep.d) + (top.h+top.d) + (bot.h+bot.d); - if (nocenter) {y = 0} else {y = H/2+a}; Y = y; - html = jsMath.HTML.Place(jsMath.Typeset.AddClass(top.tclass,top.c),0,y-top.h) - dx = (w-top.w)/2; if (Math.abs(dx) < .0001) {dx = 0} - if (dx) {html += jsMath.HTML.Spacer(dx)} - y -= top.h+top.d + rep.h; - for (i = 0; i < n; i++) {html += jsMath.HTML.Place(ext,-w,y-i*h)} - html += jsMath.HTML.Place(jsMath.Typeset.AddClass(bot.tclass,bot.c),-(w+bot.w)/2,Y-(H-bot.d)); - } - if (nocenter) {h = top.h} else {h = H/2+a} - var box = new jsMath.Box('html',html,rep.w,h,H-h); - box.bh = jsMath.TeX[font].h; box.bd = jsMath.TeX[font].d; - return box; - }, - - /* - * Create the HTML needed for a stretchable delimiter of a given height, - * either centered or not. This version uses absolute placement (i.e., - * line-breaks, not backspacing). This gives more reliable results, - * but doesn't work with all browsers. - */ - DelimExtendAbsolute: function (H,c,font,a,nocenter) { - var Font = jsMath.TeX[font]; - var C = Font[c]; var html; - var top = this.GetChar(C.delim.top? C.delim.top: C.delim.rep,font); - var rep = this.GetChar(C.delim.rep,font); - var bot = this.GetChar(C.delim.bot? C.delim.bot: C.delim.rep,font); - var n; var h; var y; var ext; var i; - - if (C.delim.mid) {// braces - var mid = this.GetChar(C.delim.mid,font); - n = Math.ceil((H-(top.h+top.d)-(mid.h+mid.d-.05)-(bot.h+bot.d-.05))/(2*(rep.h+rep.d-.05))); - H = 2*n*(rep.h+rep.d-.05) + (top.h+top.d) + (mid.h+mid.d-.05) + (bot.h+bot.d-.05); - - html = jsMath.HTML.PlaceAbsolute(jsMath.Typeset.AddClass(top.tclass,top.c),0,0); - h = rep.h+rep.d - .05; y = top.d-.05 + rep.h; - ext = jsMath.Typeset.AddClass(font,rep.c) - for (i = 0; i < n; i++) {html += jsMath.HTML.PlaceAbsolute(ext,0,y+i*h)} - html += jsMath.HTML.PlaceAbsolute(jsMath.Typeset.AddClass(mid.tclass,mid.c),0,y+n*h-rep.h+mid.h); - y += n*h + mid.h+mid.d - .05; - for (i = 0; i < n; i++) {html += jsMath.HTML.PlaceAbsolute(ext,0,y+i*h)} - html += jsMath.HTML.PlaceAbsolute(jsMath.Typeset.AddClass(bot.tclass,bot.c),0,y+n*h-rep.h+bot.h); - } else {// all others - n = Math.ceil((H - (top.h+top.d) - (bot.h+bot.d-.05))/(rep.h+rep.d-.05)); - H = n*(rep.h+rep.d-.05) + (top.h+top.d) + (bot.h+bot.d-.05); - - html = jsMath.HTML.PlaceAbsolute(jsMath.Typeset.AddClass(top.tclass,top.c),0,0); - h = rep.h+rep.d-.05; y = top.d-.05 + rep.h; - ext = jsMath.Typeset.AddClass(rep.tclass,rep.c); - for (i = 0; i < n; i++) {html += jsMath.HTML.PlaceAbsolute(ext,0,y+i*h)} - html += jsMath.HTML.PlaceAbsolute(jsMath.Typeset.AddClass(bot.tclass,bot.c),0,y+n*h-rep.h+bot.h); - } - - var w = top.w; - if (nocenter) {h = top.h; y = 0} else {h = H/2 + a; y = h - top.h} - html = jsMath.HTML.Absolute(html,w,Font.h,"none",-y); - var box = new jsMath.Box('html',html,rep.w,h,H-h); - box.bh = jsMath.TeX[font].h; box.bd = jsMath.TeX[font].d; - return box; - }, - - /* - * Get the HTML for a given delimiter of a given height. - * It will return either a single character, if one exists, or the - * more complex HTML needed for a stretchable delimiter. - */ - Delimiter: function (H,delim,style,nocenter) { - var size = 4; //### pass this? - var TeX = jsMath.Typeset.TeX(style,size); - if (!delim) {return this.Space(TeX.nulldelimiterspace)} - var CFSH = this.DelimBestFit(H,delim[2],delim[1],style); - if (CFSH == null || CFSH[3] < H) - {CFSH = this.DelimBestFit(H,delim[4],delim[3],style)} - if (CFSH == null) {return this.Space(TeX.nulldelimiterspace)} - if (CFSH[2] == '') - {return this.DelimExtend(H,CFSH[0],CFSH[1],TeX.axis_height,nocenter)} - var box = jsMath.Box.TeX(CFSH[0],CFSH[1],CFSH[2],size).Styled(); - if (!nocenter) {box.y = -((box.h+box.d)/2 - box.d - TeX.axis_height)} - if (Math.abs(box.y) < .0001) {box.y = 0} - if (box.y) {box = jsMath.Box.SetList([box],CFSH[2],size)} - return box; - }, - - /* - * Get a character by its TeX charcode, and make sure its width - * is specified. - */ - GetCharCode: function (code) { - var font = jsMath.TeX.fam[code[0]]; - var Font = jsMath.TeX[font]; - var c = Font[code[1]]; - if (c.img != null) {this.TeXIMG(font,code[1],4)} - if (c.w == null) {c.w = jsMath.EmBoxFor(jsMath.Typeset.AddClass(c.tclass,c.c)).w} - if (c.font == null) {c.font = font} - return c; - }, - - /* - * Add the class to the html, and use the font if there isn't one - * specified already - */ - - AddClass: function (tclass,html,font) { - if (tclass == null) {tclass = font} - return jsMath.Typeset.AddClass(tclass,html); - }, - - /* - * Create the HTML for an alignment (e.g., array or matrix) - * Since the widths are not really accurate (they are based on pixel - * widths not the sub-pixel widths of the actual characters), there - * is some drift involved. We lay out the table column by column - * to help reduce the problem. - * - * ### still need to allow users to specify row and column attributes, - * and do things like \span and \multispan ### - */ - LayoutRelative: function (size,table,align,cspacing,rspacing,vspace,useStrut,addWidth) { - if (align == null) {align = []} - if (cspacing == null) {cspacing = []} - if (rspacing == null) {rspacing = []} - if (useStrut == null) {useStrut = 1} - if (addWidth == null) {addWidth = 1} - - // get row and column maximum dimensions - var scale = jsMath.sizes[size]/100; - var W = []; var H = []; var D = []; - var unset = -1000; var bh = unset; var bd = unset; - var i; var j; var row; - for (i = 0; i < table.length; i++) { - if (rspacing[i] == null) {rspacing[i] = 0} - row = table[i]; - H[i] = useStrut*jsMath.h*scale; D[i] = useStrut*jsMath.d*scale; - for (j = 0; j < row.length; j++) { - row[j] = row[j].Remeasured(); - if (row[j].h > H[i]) {H[i] = row[j].h} - if (row[j].d > D[i]) {D[i] = row[j].d} - if (j >= W.length) {W[j] = row[j].w} - else if (row[j].w > W[j]) {W[j] = row[j].w} - if (row[j].bh > bh) {bh = row[j].bh} - if (row[j].bd > bd) {bd = row[j].bd} - } - } - if (rspacing[table.length] == null) {rspacing[table.length] = 0} - if (bh == unset) {bh = 0}; if (bd == unset) {bd = 0} - - // lay out the columns - var HD = useStrut*(jsMath.hd-.01)*scale; - var dy = (vspace || 1) * scale/6; - var html = ''; var pW = 0; var cW = 0; - var w; var h; var y; - var box; var mlist; var entry; - for (j = 0; j < W.length; j++) { - mlist = []; y = -H[0]-rspacing[0]; pW = 0; - for (i = 0; i < table.length; i++) { - entry = table[i][j]; - if (entry && entry.format != 'null') { - if (align[j] == 'l') {w = 0} else - if (align[j] == 'r') {w = W[j] - entry.w} else - {w = (W[j] - entry.w)/2} - entry.x = w - pW; pW = entry.w + w; entry.y = y; - mlist[mlist.length] = entry; - } - if (i+1 < table.length) {y -= Math.max(HD,D[i]+H[i+1]) + dy + rspacing[i+1]} - } - if (cspacing[j] == null) cspacing[j] = scale; - if (mlist.length > 0) { - box = jsMath.Box.SetList(mlist,'T',size); - html += jsMath.HTML.Place(box.html,cW,0); - cW = W[j] - box.w + cspacing[j]; - } else {cW += cspacing[j]} - } - - // get the full width and height - w = -cspacing[W.length-1]; y = (H.length-1)*dy + rspacing[0]; - for (i = 0; i < W.length; i++) {w += W[i] + cspacing[i]} - for (i = 0; i < H.length; i++) {y += Math.max(HD,H[i]+D[i]) + rspacing[i+1]} - h = y/2 + jsMath.TeX.axis_height; var d = y-h; - - // adjust the final row width, and vcenter the table - // (add 1/6em at each side for the \,) - html += jsMath.HTML.Spacer(cW-cspacing[W.length-1] + addWidth*scale/6); - html = jsMath.HTML.Place(html,addWidth*scale/6,h); - box = new jsMath.Box('html',html,w+addWidth*scale/3,h,d); - box.bh = bh; box.bd = bd; - return box; - }, - - /* - * Create the HTML for an alignment (e.g., array or matrix) - * Use absolute position for elements in the array. - * - * ### still need to allow users to specify row and column attributes, - * and do things like \span and \multispan ### - */ - LayoutAbsolute: function (size,table,align,cspacing,rspacing,vspace,useStrut,addWidth) { - if (align == null) {align = []} - if (cspacing == null) {cspacing = []} - if (rspacing == null) {rspacing = []} - if (useStrut == null) {useStrut = 1} - if (addWidth == null) {addWidth = 1} - // get row and column maximum dimensions - var scale = jsMath.sizes[size]/100; - var HD = useStrut*(jsMath.hd-.01)*scale; - var dy = (vspace || 1) * scale/6; - var W = []; var H = []; var D = []; - var w = 0; var h; var x; var y; - var i; var j; var row; - for (i = 0; i < table.length; i++) { - if (rspacing[i] == null) {rspacing[i] = 0} - row = table[i]; - H[i] = useStrut*jsMath.h*scale; D[i] = useStrut*jsMath.d*scale; - for (j = 0; j < row.length; j++) { - row[j] = row[j].Remeasured(); - if (row[j].h > H[i]) {H[i] = row[j].h} - if (row[j].d > D[i]) {D[i] = row[j].d} - if (j >= W.length) {W[j] = row[j].w} - else if (row[j].w > W[j]) {W[j] = row[j].w} - } - } - if (rspacing[table.length] == null) {rspacing[table.length] = 0} - - // get the height and depth of the centered table - y = (H.length-1)*dy + rspacing[0]; - for (i = 0; i < H.length; i++) {y += Math.max(HD,H[i]+D[i]) + rspacing[i+1]} - h = y/2 + jsMath.TeX.axis_height; var d = y - h; - - // lay out the columns - var html = ''; var entry; w = addWidth*scale/6; - for (j = 0; j < W.length; j++) { - y = H[0]-h + rspacing[0]; - for (i = 0; i < table.length; i++) { - entry = table[i][j]; - if (entry && entry.format != 'null') { - if (align[j] && align[j] == 'l') {x = 0} else - if (align[j] && align[j] == 'r') {x = W[j] - entry.w} else - {x = (W[j] - entry.w)/2} - html += jsMath.HTML.PlaceAbsolute(entry.html,w+x, - y-Math.max(0,entry.bh-jsMath.h*scale), - entry.mw,entry.Mw,entry.w); - } - if (i+1 < table.length) {y += Math.max(HD,D[i]+H[i+1]) + dy + rspacing[i+1]} - } - if (cspacing[j] == null) cspacing[j] = scale; - w += W[j] + cspacing[j]; - } - - // get the full width - w = -cspacing[W.length-1]+addWidth*scale/3; - for (i = 0; i < W.length; i++) {w += W[i] + cspacing[i]} - - html = jsMath.HTML.Spacer(addWidth*scale/6)+html+jsMath.HTML.Spacer(addWidth*scale/6); - if (jsMath.Browser.spanHeightVaries) {y = h-jsMath.h} else {y = 0} - html = jsMath.HTML.Absolute(html,w,h+d,d,y); - var box = new jsMath.Box('html',html,w+addWidth*scale/3,h,d); - return box; - }, - - /* - * Look for math within \hbox and other non-math text - */ - InternalMath: function (text,size) { - if (!jsMath.safeHBoxes) {text = text.replace(/@\(([^)]*)\)/g,'<$1>')} - if (!text.match(/\$|\\\(/)) - {return this.Text(this.safeHTML(text),'normal','T',size).Styled()} - - var i = 0; var k = 0; var c; var match = ''; - var mlist = []; var parse, s; - while (i < text.length) { - c = text.charAt(i++); - if (c == '$') { - if (match == '$') { - parse = jsMath.Parse(text.slice(k,i-1),null,size); - if (parse.error) { - mlist[mlist.length] = this.Text(parse.error,'error','T',size,1,.2); - } else { - parse.Atomize(); - mlist[mlist.length] = parse.mlist.Typeset('T',size).Styled(); - } - match = ''; k = i; - } else { - s = this.safeHTML(text.slice(k,i-1)); - mlist[mlist.length] = this.Text(s,'normal','T',size,1,.2); - match = '$'; k = i; - } - } else if (c == '\\') { - c = text.charAt(i++); - if (c == '(' && match == '') { - s = this.safeHTML(text.slice(k,i-2)); - mlist[mlist.length] = this.Text(s,'normal','T',size,1,.2); - match = ')'; k = i; - } else if (c == ')' && match == ')') { - parse = jsMath.Parse(text.slice(k,i-2),null,size); - if (parse.error) { - mlist[mlist.length] = this.Text(parse.error,'error','T',size,1,.2); - } else { - parse.Atomize(); - mlist[mlist.length] = parse.mlist.Typeset('T',size).Styled(); - } - match = ''; k = i; - } - } - } - s = this.safeHTML(text.slice(k)); - mlist[mlist.length] = this.Text(s,'normal','T',size,1,.2); - return this.SetList(mlist,'T',size); - }, - - /* - * Quote HTML characters if we are in safe mode - */ - safeHTML: function (s) { - if (jsMath.safeHBoxes) { - s = s.replace(/&/g,'&') - .replace(//g,'>'); - } - return s; - }, - - /* - * Convert an abitrary box to a typeset box. I.e., make an - * HTML version of the contents of the box, at its desired (x,y) - * position. - */ - Set: function (box,style,size,addstyle) { - if (box && box.type) { - if (box.type == 'typeset') {return box} - if (box.type == 'mlist') { - box.mlist.Atomize(style,size); - return box.mlist.Typeset(style,size); - } - if (box.type == 'text') { - box = this.Text(box.text,box.tclass,style,size,box.ascend||null,box.descend||null); - if (addstyle != 0) {box.Styled()} - return box; - } - box = this.TeX(box.c,box.font,style,size); - if (addstyle != 0) {box.Styled()} - return box; - } - return jsMath.Box.Null(); - }, - - /* - * Convert a list of boxes to a single typeset box. I.e., finalize - * the HTML for the list of boxes, properly spaced and positioned. - */ - SetList: function (boxes,style,size) { - var mlist = []; var box; - for (var i = 0; i < boxes.length; i++) { - box = boxes[i]; - if (box.type == 'typeset') {box = jsMath.mItem.Typeset(box)} - mlist[mlist.length] = box; - } - var typeset = new jsMath.Typeset(mlist); - return typeset.Typeset(style,size); - } - -}); - - -jsMath.Package(jsMath.Box,{ - - /* - * Add the class and style to a text box (i.e., finalize the - * unpositioned HTML for the box). - */ - Styled: function () { - if (this.format == 'text') { - this.html = jsMath.Typeset.AddClass(this.tclass,this.html); - this.html = jsMath.Typeset.AddStyle(this.style,this.size,this.html); - delete this.tclass; delete this.style; - this.format = 'html'; - } - return this; - }, - - /* - * Recompute the box width to make it more accurate. - */ - Remeasured: function () { - if (this.w > 0) { - var w = this.w; this.w = jsMath.EmBoxFor(this.html).w; - if (this.w > this.Mw) {this.Mw = this.w} - w = this.w/w; if (Math.abs(w-1) > .05) {this.h *= w; this.d *= w} - } - return this; - } - -}); - - -/***************************************************************************/ - -/* - * mItems are the building blocks of mLists (math lists) used to - * store the information about a mathematical expression. These are - * basically the items listed in the TeXbook in Appendix G (plus some - * minor extensions). - */ -jsMath.mItem = function (type,def) { - this.type = type; - jsMath.Add(this,def); -} - -jsMath.Add(jsMath.mItem,{ - - /* - * A general atom (given a nucleus for the atom) - */ - Atom: function (type,nucleus) { - return new jsMath.mItem(type,{atom: 1, nuc: nucleus}); - }, - - /* - * An atom whose nucleus is a piece of text, in a given - * class, with a given additional height and depth - */ - TextAtom: function (type,text,tclass,a,d) { - var atom = new jsMath.mItem(type,{ - atom: 1, - nuc: { - type: 'text', - text: text, - tclass: tclass - } - }); - if (a != null) {atom.nuc.ascend = a} - if (d != null) {atom.nuc.descend = d} - return atom; - }, - - /* - * An atom whose nucleus is a TeX character in a specific font - */ - TeXAtom: function (type,c,font) { - return new jsMath.mItem(type,{ - atom: 1, - nuc: { - type: 'TeX', - c: c, - font: font - } - }); - }, - - /* - * A generalized fraction atom, with given delimiters, rule - * thickness, and a numerator and denominator. - */ - Fraction: function (name,num,den,thickness,left,right) { - return new jsMath.mItem('fraction',{ - from: name, num: num, den: den, - thickness: thickness, left: left, right: right - }); - }, - - /* - * An atom that inserts some glue - */ - Space: function (w) {return new jsMath.mItem('space',{w: w})}, - - /* - * An atom that contains a typeset box (like an hbox or vbox) - */ - Typeset: function (box) {return new jsMath.mItem('ord',{atom:1, nuc: box})}, - - /* - * An atom that contains some finished HTML (acts like a typeset box) - */ - HTML: function (html) {return new jsMath.mItem('html',{html: html})} - -}); - -/***************************************************************************/ - -/* - * mLists are lists of mItems, and encode the contents of - * mathematical expressions and sub-expressions. They act as - * the expression "stack" as the mathematics is parsed, and - * contain some state information, like the position of the - * most recent open paren and \over command, and the current font. - */ -jsMath.mList = function (list,font,size,style) { - if (list) {this.mlist = list} else {this.mlist = []} - if (style == null) {style = 'T'}; if (size == null) {size = 4} - this.data = {openI: null, overI: null, overF: null, - font: font, size: size, style: style}; - this.init = {size: size, style: style}; -} - -jsMath.Package(jsMath.mList,{ - - /* - * Add an mItem to the list - */ - Add: function (box) {return (this.mlist[this.mlist.length] = box)}, - - /* - * Get the i-th mItem from the list - */ - Get: function (i) {return this.mlist[i]}, - - /* - * Get the length of the list - */ - Length: function() {return this.mlist.length}, - - /* - * Get the tail mItem of the list - */ - Last: function () { - if (this.mlist.length == 0) {return null} - return this.mlist[this.mlist.length-1] - }, - - /* - * Get a sublist of an mList - */ - Range: function (i,j) { - if (j == null) {j = this.mlist.length} - return new jsMath.mList(this.mlist.slice(i,j+1)); - }, - - /* - * Remove a range of mItems from the list. - */ - Delete: function (i,j) { - if (j == null) {j = i} - if (this.mlist.splice) {this.mlist.splice(i,j-i+1)} else { - var mlist = []; - for (var k = 0; k < this.mlist.length; k++) - {if (k < i || k > j) {mlist[mlist.length] = this.mlist[k]}} - this.mlist = mlist; - } - }, - - /* - * Add an open brace and maintain the stack information - * about the previous open brace so we can recover it - * when this one os closed. - */ - Open: function (left) { - var box = this.Add(new jsMath.mItem('boundary',{data: this.data})); - var olddata = this.data; - this.data = {}; for (var i in olddata) {this.data[i] = olddata[i]} - delete this.data.overI; delete this.data.overF; - this.data.openI = this.mlist.length-1; - if (left != null) {box.left = left} - return box; - }, - - /* - * Attempt to close a brace. Recover the stack information - * about previous open braces and \over commands. If there was an - * \over (or \above, etc) in this set of braces, create a fraction - * atom from the two halves, otherwise create an inner or ord - * from the contents of the braces. - * Remove the braced material from the list and add the newly - * created atom (the fraction, inner or ord). - */ - Close: function (right) { - if (right != null) {right = new jsMath.mItem('boundary',{right: right})} - var atom; var open = this.data.openI; - var over = this.data.overI; var from = this.data.overF; - this.data = this.mlist[open].data; - if (over) { - atom = jsMath.mItem.Fraction(from.name, - {type: 'mlist', mlist: this.Range(open+1,over-1)}, - {type: 'mlist', mlist: this.Range(over)}, - from.thickness,from.left,from.right); - if (right) { - var mlist = new jsMath.mList([this.mlist[open],atom,right]); - atom = jsMath.mItem.Atom('inner',{type: 'mlist', mlist: mlist}); - } - } else { - var openI = open+1; if (right) {this.Add(right); openI--} - atom = jsMath.mItem.Atom((right)?'inner':'ord', - {type: 'mlist', mlist: this.Range(openI)}); - } - this.Delete(open,this.Length()); - return this.Add(atom); - }, - - /* - * Create a generalized fraction from an mlist that - * contains an \over (or \above, etc). - */ - Over: function () { - var over = this.data.overI; var from = this.data.overF; - var atom = jsMath.mItem.Fraction(from.name, - {type: 'mlist', mlist: this.Range(open+1,over-1)}, - {type: 'mlist', mlist: this.Range(over)}, - from.thickness,from.left,from.right); - this.mlist = [atom]; - }, - - /* - * Take a raw mList (that has been produced by parsing some TeX - * expression), and perform the modifications outlined in - * Appendix G of the TeXbook. - */ - Atomize: function (style,size) { - var mitem; var prev = ''; - this.style = style; this.size = size; - for (var i = 0; i < this.mlist.length; i++) { - mitem = this.mlist[i]; mitem.delta = 0; - if (mitem.type == 'choice') - {this.mlist = this.Atomize.choice(this.style,mitem,i,this.mlist); i--} - else if (this.Atomize[mitem.type]) { - var f = this.Atomize[mitem.type]; // Opera needs separate name - f(this.style,this.size,mitem,prev,this,i); - } - prev = mitem; - } - if (mitem && mitem.type == 'bin') {mitem.type = 'ord'} - if (this.mlist.length >= 2 && mitem.type == 'boundary' && - this.mlist[0].type == 'boundary') {this.AddDelimiters(style,size)} - }, - - /* - * For a list that has boundary delimiters as its first and last - * entries, we replace the boundary atoms by open and close - * atoms whose nuclii are the specified delimiters properly sized - * for the contents of the list. (Rule 19) - */ - AddDelimiters: function(style,size) { - var unset = -10000; var h = unset; var d = unset; - for (var i = 0; i < this.mlist.length; i++) { - var mitem = this.mlist[i]; - if (mitem.atom || mitem.type == 'box') { - h = Math.max(h,mitem.nuc.h+mitem.nuc.y); - d = Math.max(d,mitem.nuc.d-mitem.nuc.y); - } - } - var TeX = jsMath.TeX; var a = jsMath.Typeset.TeX(style,size).axis_height; - var delta = Math.max(h-a,d+a); - var H = Math.max(Math.floor(TeX.integer*delta/500)*TeX.delimiterfactor, - TeX.integer*(2*delta-TeX.delimitershortfall))/TeX.integer; - var left = this.mlist[0]; var right = this.mlist[this.mlist.length-1]; - left.nuc = jsMath.Box.Delimiter(H,left.left,style); - right.nuc = jsMath.Box.Delimiter(H,right.right,style); - left.type = 'open'; left.atom = 1; delete left.left; - right.type = 'close'; right.atom = 1; delete right.right; - }, - - /* - * Typeset a math list to produce final HTML for the list. - */ - Typeset: function (style,size) { - var typeset = new jsMath.Typeset(this.mlist); - return typeset.Typeset(style,size); - } - -}); - - -/* - * These routines implement the main rules given in Appendix G of the - * TeXbook - */ - -jsMath.Add(jsMath.mList.prototype.Atomize,{ - - /* - * Handle \displaystyle, \textstyle, etc. - */ - style: function (style,size,mitem,prev,mlist) { - mlist.style = mitem.style; - }, - - /* - * Handle \tiny, \small, etc. - */ - size: function (style,size,mitem,prev,mlist) { - mlist.size = mitem.size; - }, - - /* - * Create empty boxes of the proper sizes for the various - * phantom-type commands - */ - phantom: function (style,size,mitem) { - var box = mitem.nuc = jsMath.Box.Set(mitem.phantom,style,size); - if (mitem.h) {box.Remeasured(); box.html = jsMath.HTML.Spacer(box.w)} - else {box.html = '', box.w = box.Mw = box.mw = 0;} - if (!mitem.v) {box.h = box.d = 0} - box.bd = box.bh = 0; - delete mitem.phantom; - mitem.type = 'box'; - }, - - /* - * Create a box of zero height and depth containing the - * contents of the atom - */ - smash: function (style,size,mitem) { - var box = mitem.nuc = jsMath.Box.Set(mitem.smash,style,size).Remeasured(); - box.h = box.d = 0; - delete mitem.smash; - mitem.type = 'box'; - }, - - /* - * Move a box up or down vertically - */ - raise: function (style,size,mitem) { - mitem.nuc = jsMath.Box.Set(mitem.nuc,style,size); - var y = mitem.raise; - mitem.nuc.html = - jsMath.HTML.Place(mitem.nuc.html,0,y,mitem.nuc.mw,mitem.nuc.Mw,mitem.nuc.w); - mitem.nuc.h += y; mitem.nuc.d -= y; - mitem.type = 'ord'; mitem.atom = 1; - }, - - /* - * Hide the size of a box so that it laps to the left or right, or - * up or down. - */ - lap: function (style,size,mitem) { - var box = jsMath.Box.Set(mitem.nuc,style,size).Remeasured(); - var mlist = [box]; - if (mitem.lap == 'llap') {box.x = -box.w} else - if (mitem.lap == 'rlap') {mlist[1] = jsMath.mItem.Space(-box.w)} else - if (mitem.lap == 'ulap') {box.y = box.d; box.h = box.d = 0} else - if (mitem.lap == 'dlap') {box.y = -box.h; box.h = box.d = 0} - mitem.nuc = jsMath.Box.SetList(mlist,style,size); - if (mitem.lap == 'ulap' || mitem.lap == 'dlap') {mitem.nuc.h = mitem.nuc.d = 0} - mitem.type = 'box'; delete mitem.atom; - }, - - /* - * Handle a Bin atom. (Rule 5) - */ - bin: function (style,size,mitem,prev) { - if (prev && prev.type) { - var type = prev.type; - if (type == 'bin' || type == 'op' || type == 'rel' || - type == 'open' || type == 'punct' || type == '' || - (type == 'boundary' && prev.left != '')) {mitem.type = 'ord'} - } else {mitem.type = 'ord'} - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle a Rel atom. (Rule 6) - */ - rel: function (style,size,mitem,prev) { - if (prev.type && prev.type == 'bin') {prev.type = 'ord'} - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle a Close atom. (Rule 6) - */ - close: function (style,size,mitem,prev) { - if (prev.type && prev.type == 'bin') {prev.type = 'ord'} - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle a Punct atom. (Rule 6) - */ - punct: function (style,size,mitem,prev) { - if (prev.type && prev.type == 'bin') {prev.type = 'ord'} - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle an Open atom. (Rule 7) - */ - open: function (style,size,mitem) { - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle an Inner atom. (Rule 7) - */ - inner: function (style,size,mitem) { - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle a Vcent atom. (Rule 8) - */ - vcenter: function (style,size,mitem) { - var box = jsMath.Box.Set(mitem.nuc,style,size); - var TeX = jsMath.Typeset.TeX(style,size); - box.y = TeX.axis_height - (box.h-box.d)/2; - mitem.nuc = box; mitem.type = 'ord'; - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle an Over atom. (Rule 9) - */ - overline: function (style,size,mitem) { - var TeX = jsMath.Typeset.TeX(style,size); - var box = jsMath.Box.Set(mitem.nuc,jsMath.Typeset.PrimeStyle(style),size).Remeasured(); - var t = TeX.default_rule_thickness; - var rule = jsMath.Box.Rule(box.w,t); - rule.x = -rule.w; rule.y = box.h + 3*t; - mitem.nuc = jsMath.Box.SetList([box,rule],style,size); - mitem.nuc.h += t; - mitem.type = 'ord'; - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle an Under atom. (Rule 10) - */ - underline: function (style,size,mitem) { - var TeX = jsMath.Typeset.TeX(style,size); - var box = jsMath.Box.Set(mitem.nuc,jsMath.Typeset.PrimeStyle(style),size).Remeasured(); - var t = TeX.default_rule_thickness; - var rule = jsMath.Box.Rule(box.w,t); - rule.x = -rule.w; rule.y = -box.d - 3*t - t; - mitem.nuc = jsMath.Box.SetList([box,rule],style,size); - mitem.nuc.d += t; - mitem.type = 'ord'; - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle a Rad atom. (Rule 11 plus stuff for \root..\of) - */ - radical: function (style,size,mitem) { - var TeX = jsMath.Typeset.TeX(style,size); - var Cp = jsMath.Typeset.PrimeStyle(style); - var box = jsMath.Box.Set(mitem.nuc,Cp,size).Remeasured(); - var t = TeX.default_rule_thickness; - var p = t; if (style == 'D' || style == "D'") {p = TeX.x_height} - var r = t + p/4; - var surd = jsMath.Box.Delimiter(box.h+box.d+r+t,[0,2,0x70,3,0x70],style,1); -// if (surd.h > 0) {t = surd.h} // thickness of rule is height of surd character - if (surd.d > box.h+box.d+r) {r = (r+surd.d-box.h-box.d)/2} - surd.y = box.h+r; - var rule = jsMath.Box.Rule(box.w,t); - rule.y = surd.y-t/2; rule.h += 3*t/2; box.x = -box.w; - var Cr = jsMath.Typeset.UpStyle(jsMath.Typeset.UpStyle(style)); - var root = jsMath.Box.Set(mitem.root || null,Cr,size).Remeasured(); - if (mitem.root) { - root.y = .55*(box.h+box.d+3*t+r)-box.d; - surd.x = Math.max(root.w-(11/18)*surd.w,0); - rule.x = (7/18)*surd.w; - root.x = -(root.w+rule.x); - } - mitem.nuc = jsMath.Box.SetList([surd,root,rule,box],style,size); - mitem.type = 'ord'; - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle an Acc atom. (Rule 12) - */ - accent: function (style,size,mitem) { - var TeX = jsMath.Typeset.TeX(style,size); - var Cp = jsMath.Typeset.PrimeStyle(style); - var box = jsMath.Box.Set(mitem.nuc,Cp,size); - var u = box.w; var s; var Font; var ic = 0; - if (mitem.nuc.type == 'TeX') { - Font = jsMath.TeX[mitem.nuc.font]; - if (Font[mitem.nuc.c].krn && Font.skewchar) - {s = Font[mitem.nuc.c].krn[Font.skewchar]} - ic = Font[mitem.nuc.c].ic; if (ic == null) {ic = 0} - } - if (s == null) {s = 0} - - var c = mitem.accent[2]; - var font = jsMath.TeX.fam[mitem.accent[1]]; Font = jsMath.TeX[font]; - while (Font[c].n && Font[Font[c].n].w <= u) {c = Font[c].n} - - var delta = Math.min(box.h,TeX.x_height); - if (mitem.nuc.type == 'TeX') { - var nitem = jsMath.mItem.Atom('ord',mitem.nuc); - nitem.sup = mitem.sup; nitem.sub = mitem.sub; nitem.delta = 0; - jsMath.mList.prototype.Atomize.SupSub(style,size,nitem); - delta += (nitem.nuc.h - box.h); - box = mitem.nuc = nitem.nuc; - delete mitem.sup; delete mitem.sub; - } - var acc = jsMath.Box.TeX(c,font,style,size); - acc.y = box.h - delta; acc.x = -box.w + s + (u-acc.w)/2; - if (jsMath.Browser.msieAccentBug) - {acc.html += jsMath.HTML.Spacer(.1); acc.w += .1; acc.Mw += .1} - if (Font[c].ic || ic) {acc.x += (ic - (Font[c].ic||0)) * TeX.scale} - - mitem.nuc = jsMath.Box.SetList([box,acc],style,size); - if (mitem.nuc.w != box.w) { - var space = jsMath.mItem.Space(box.w-mitem.nuc.w); - mitem.nuc = jsMath.Box.SetList([mitem.nuc,space],style,size); - } - mitem.type = 'ord'; - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle an Op atom. (Rules 13 and 13a) - */ - op: function (style,size,mitem) { - var TeX = jsMath.Typeset.TeX(style,size); var box; - mitem.delta = 0; var isD = (style.charAt(0) == 'D'); - if (mitem.limits == null && isD) {mitem.limits = 1} - - if (mitem.nuc.type == 'TeX') { - var C = jsMath.TeX[mitem.nuc.font][mitem.nuc.c]; - if (isD && C.n) {mitem.nuc.c = C.n; C = jsMath.TeX[mitem.nuc.font][C.n]} - box = mitem.nuc = jsMath.Box.Set(mitem.nuc,style,size); - if (C.ic) { - mitem.delta = C.ic * TeX.scale; - if (mitem.limits || !mitem.sub || jsMath.Browser.msieIntegralBug) { - box = mitem.nuc = jsMath.Box.SetList([box,jsMath.mItem.Space(mitem.delta)],style,size); - } - } - box.y = -((box.h+box.d)/2 - box.d - TeX.axis_height); - if (Math.abs(box.y) < .0001) {box.y = 0} - } - - if (!box) {box = mitem.nuc = jsMath.Box.Set(mitem.nuc,style,size).Remeasured()} - if (mitem.limits) { - var W = box.w; var x = box.w; - var mlist = [box]; var dh = 0; var dd = 0; - if (mitem.sup) { - var sup = jsMath.Box.Set(mitem.sup,jsMath.Typeset.UpStyle(style),size).Remeasured(); - sup.x = ((box.w-sup.w)/2 + mitem.delta/2) - x; dh = TeX.big_op_spacing5; - W = Math.max(W,sup.w); x += sup.x + sup.w; - sup.y = box.h+sup.d + box.y + - Math.max(TeX.big_op_spacing1,TeX.big_op_spacing3-sup.d); - mlist[mlist.length] = sup; delete mitem.sup; - } - if (mitem.sub) { - var sub = jsMath.Box.Set(mitem.sub,jsMath.Typeset.DownStyle(style),size).Remeasured(); - sub.x = ((box.w-sub.w)/2 - mitem.delta/2) - x; dd = TeX.big_op_spacing5; - W = Math.max(W,sub.w); x += sub.x + sub.w; - sub.y = -box.d-sub.h + box.y - - Math.max(TeX.big_op_spacing2,TeX.big_op_spacing4-sub.h); - mlist[mlist.length] = sub; delete mitem.sub; - } - if (W > box.w) {box.x = (W-box.w)/2; x += box.x} - if (x < W) {mlist[mlist.length] = jsMath.mItem.Space(W-x)} - mitem.nuc = jsMath.Box.SetList(mlist,style,size); - mitem.nuc.h += dh; mitem.nuc.d += dd; - } else { - if (jsMath.Browser.msieIntegralBug && mitem.sub && C && C.ic) - {mitem.nuc = jsMath.Box.SetList([box,jsMath.Box.Space(-C.ic*TeX.scale)],style,size)} - else if (box.y) {mitem.nuc = jsMath.Box.SetList([box],style,size)} - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - } - }, - - /* - * Handle an Ord atom. (Rule 14) - */ - ord: function (style,size,mitem,prev,mList,i) { - if (mitem.nuc.type == 'TeX' && !mitem.sup && !mitem.sub) { - var nitem = mList.mlist[i+1]; - if (nitem && nitem.atom && nitem.type && - (nitem.type == 'ord' || nitem.type == 'op' || nitem.type == 'bin' || - nitem.type == 'rel' || nitem.type == 'open' || - nitem.type == 'close' || nitem.type == 'punct')) { - if (nitem.nuc.type == 'TeX' && nitem.nuc.font == mitem.nuc.font) { - mitem.textsymbol = 1; - var krn = jsMath.TeX[mitem.nuc.font][mitem.nuc.c].krn; - krn *= jsMath.Typeset.TeX(style,size).scale; - if (krn && krn[nitem.nuc.c]) { - for (var k = mList.mlist.length-1; k > i; k--) - {mList.mlist[k+1] = mList.mlist[k]} - mList.mlist[i+1] = jsMath.mItem.Space(krn[nitem.nuc.c]); - } - } - } - } - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Handle a generalized fraction. (Rules 15 to 15e) - */ - fraction: function (style,size,mitem) { - var TeX = jsMath.Typeset.TeX(style,size); var t = 0; - if (mitem.thickness != null) {t = mitem.thickness} - else if (mitem.from.match(/over/)) {t = TeX.default_rule_thickness} - var isD = (style.charAt(0) == 'D'); - var Cn = (style == 'D')? 'T': (style == "D'")? "T'": jsMath.Typeset.UpStyle(style); - var Cd = (isD)? "T'": jsMath.Typeset.DownStyle(style); - var num = jsMath.Box.Set(mitem.num,Cn,size).Remeasured(); - var den = jsMath.Box.Set(mitem.den,Cd,size).Remeasured(); - - var u; var v; var w; var p; var r; - var H = (isD)? TeX.delim1 : TeX.delim2; - var mlist = [jsMath.Box.Delimiter(H,mitem.left,style)] - var right = jsMath.Box.Delimiter(H,mitem.right,style); - - if (num.w < den.w) { - num.x = (den.w-num.w)/2; - den.x = -(num.w + num.x); - w = den.w; mlist[1] = num; mlist[2] = den; - } else { - den.x = (num.w-den.w)/2; - num.x = -(den.w + den.x); - w = num.w; mlist[1] = den; mlist[2] = num; - } - if (isD) {u = TeX.num1; v = TeX.denom1} else { - u = (t != 0)? TeX.num2: TeX.num3; - v = TeX.denom2; - } - if (t == 0) {// atop - p = (isD)? 7*TeX.default_rule_thickness: 3*TeX.default_rule_thickness; - r = (u - num.d) - (den.h - v); - if (r < p) {u += (p-r)/2; v += (p-r)/2} - } else {// over - p = (isD)? 3*t: t; var a = TeX.axis_height; - r = (u-num.d)-(a+t/2); if (r < p) {u += p-r} - r = (a-t/2)-(den.h-v); if (r < p) {v += p-r} - var rule = jsMath.Box.Rule(w,t); rule.x = -w; rule.y = a - t/2; - mlist[mlist.length] = rule; - } - num.y = u; den.y = -v; - - mlist[mlist.length] = right; - mitem.nuc = jsMath.Box.SetList(mlist,style,size); - mitem.type = 'ord'; mitem.atom = 1; - delete mitem.num; delete mitem.den; - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); - }, - - /* - * Add subscripts and superscripts. (Rules 17-18f) - */ - SupSub: function (style,size,mitem) { - var TeX = jsMath.Typeset.TeX(style,size); - var nuc = mitem.nuc; - var box = mitem.nuc = jsMath.Box.Set(mitem.nuc,style,size,0); - if (box.format == 'null') - {box = mitem.nuc = jsMath.Box.Text('','normal',style,size)} - - if (nuc.type == 'TeX') { - if (!mitem.textsymbol) { - var C = jsMath.TeX[nuc.font][nuc.c]; - if (C.ic) { - mitem.delta = C.ic * TeX.scale; - if (!mitem.sub) { - box = mitem.nuc = jsMath.Box.SetList([box,jsMath.Box.Space(mitem.delta)],style,size); - mitem.delta = 0; - } - } - } else {mitem.delta = 0} - } - - if (!mitem.sup && !mitem.sub) return; - mitem.nuc.Styled(); - - var Cd = jsMath.Typeset.DownStyle(style); - var Cu = jsMath.Typeset.UpStyle(style); - var q = jsMath.Typeset.TeX(Cu,size).sup_drop; - var r = jsMath.Typeset.TeX(Cd,size).sub_drop; - var u = 0; var v = 0; var p; - if (nuc.type && nuc.type != 'text' && nuc.type != 'TeX' && nuc.type != 'null') - {u = box.h - q; v = box.d + r} - - if (mitem.sub) { - var sub = jsMath.Box.Set(mitem.sub,Cd,size); - sub = jsMath.Box.SetList([sub,jsMath.mItem.Space(TeX.scriptspace)],style,size); - } - - if (!mitem.sup) { - sub.y = -Math.max(v,TeX.sub1,sub.h-(4/5)*jsMath.Typeset.TeX(Cd,size).x_height); - mitem.nuc = jsMath.Box.SetList([box,sub],style,size).Styled(); delete mitem.sub; - return; - } - - var sup = jsMath.Box.Set(mitem.sup,Cu,size); - sup = jsMath.Box.SetList([sup,jsMath.mItem.Space(TeX.scriptspace)],style,size); - if (style == 'D') {p = TeX.sup1} - else if (style.charAt(style.length-1) == "'") {p = TeX.sup3} - else {p = TeX.sup2} - u = Math.max(u,p,sup.d+jsMath.Typeset.TeX(Cu,size).x_height/4); - - if (!mitem.sub) { - sup.y = u; - mitem.nuc = jsMath.Box.SetList([box,sup],style,size); delete mitem.sup; - return; - } - - v = Math.max(v,jsMath.Typeset.TeX(Cd,size).sub2); - var t = TeX.default_rule_thickness; - if ((u-sup.d) - (sub.h -v) < 4*t) { - v = 4*t + sub.h - (u-sup.d); - p = (4/5)*TeX.x_height - (u-sup.d); - if (p > 0) {u += p; v -= p} - } - sup.Remeasured(); sub.Remeasured(); - sup.y = u; sub.y = -v; sup.x = mitem.delta; - if (sup.w+sup.x > sub.w) - {sup.x -= sub.w; mitem.nuc = jsMath.Box.SetList([box,sub,sup],style,size)} else - {sub.x -= (sup.w+sup.x); mitem.nuc = jsMath.Box.SetList([box,sup,sub],style,size)} - - delete mitem.sup; delete mitem.sub; - } - -}); - - -/***************************************************************************/ - -/* - * The Typeset object handles most of the TeX-specific processing - */ - -jsMath.Typeset = function (mlist) { - this.type = 'typeset'; - this.mlist = mlist; -} - -jsMath.Add(jsMath.Typeset,{ - - /* - * The "C-uparrow" style table (TeXbook, p. 441) - */ - upStyle: { - D: "S", T: "S", "D'": "S'", "T'": "S'", - S: "SS", SS: "SS", "S'": "SS'", "SS'": "SS'" - }, - - /* - * The "C-downarrow" style table (TeXbook, p. 441) - */ - downStyle: { - D: "S'", T: "S'", "D'": "S'", "T'": "S'", - S: "SS'", SS: "SS'", "S'": "SS'", "SS'": "SS'" - }, - - /* - * Get the various styles given the current style - * (see TeXbook, p. 441) - */ - UpStyle: function (style) {return this.upStyle[style]}, - DownStyle: function (style) {return this.downStyle[style]}, - PrimeStyle: function (style) { - if (style.charAt(style.length-1) == "'") {return style} - return style + "'" - }, - - /* - * A value scaled to the appropriate size for scripts - */ - StyleValue: function (style,v) { - if (style == "S" || style == "S'") {return .7*v} - if (style == "SS" || style == "SS'") {return .5*v} - return v; - }, - - /* - * Return the size associated with a given style and size - */ - StyleSize: function (style,size) { - if (style == "S" || style == "S'") {size = Math.max(0,size-2)} - else if (style == "SS" || style == "SS'") {size = Math.max(0,size-4)} - return size; - }, - - /* - * Return the font parameter table for the given style - */ - TeX: function (style,size) { - if (style == "S" || style == "S'") {size = Math.max(0,size-2)} - else if (style == "SS" || style == "SS'") {size = Math.max(0,size-4)} - return jsMath.TeXparams[size]; - }, - - - /* - * Add the CSS class for the given TeX style - */ - AddStyle: function (style,size,html) { - if (style == "S" || style == "S'") {size = Math.max(0,size-2)} - else if (style == "SS" || style == "SS'") {size = Math.max(0,size-4)} - if (size != 4) {html = '' + html + ''} - return html; - }, - - /* - * Add the font class, if needed - */ - AddClass: function (tclass,html) { - if (tclass != '' && tclass != 'normal') {html = jsMath.HTML.Class(tclass,html)} - return html; - } - -}); - - -jsMath.Package(jsMath.Typeset,{ - - /* - * The spacing tables for inter-atom spacing - * (See rule 20, and Chapter 18, p 170) - */ - DTsep: { - ord: {op: 1, bin: 2, rel: 3, inner: 1}, - op: {ord: 1, op: 1, rel: 3, inner: 1}, - bin: {ord: 2, op: 2, open: 2, inner: 2}, - rel: {ord: 3, op: 3, open: 3, inner: 3}, - open: {}, - close: {op: 1, bin:2, rel: 3, inner: 1}, - punct: {ord: 1, op: 1, rel: 1, open: 1, close: 1, punct: 1, inner: 1}, - inner: {ord: 1, op: 1, bin: 2, rel: 3, open: 1, punct: 1, inner: 1} - }, - - SSsep: { - ord: {op: 1}, - op: {ord: 1, op: 1}, - bin: {}, - rel: {}, - open: {}, - close: {op: 1}, - punct: {}, - inner: {op: 1} - }, - - /* - * The sizes used in the tables above - */ - sepW: ['','thinmuskip','medmuskip','thickmuskip'], - - - /* - * Find the amount of separation to use between two adjacent - * atoms in the given style - */ - GetSeparation: function (l,r,style) { - if (l && l.atom && r.atom) { - var table = this.DTsep; if (style.charAt(0) == "S") {table = this.SSsep} - var row = table[l.type]; - if (row && row[r.type] != null) {return jsMath.TeX[this.sepW[row[r.type]]]} - } - return 0; - }, - - /* - * Typeset an mlist (i.e., turn it into HTML). - * Here, text items of the same class and style are combined - * to reduce the number of tags used (though it is still - * huge). Spaces are combined, when possible. - * ### More needs to be done with that. ### - * The width of the final box is recomputed at the end, since - * the final width is not necessarily the sum of the widths of - * the individual parts (widths are in pixels, but the browsers - * puts pieces together using sub-pixel accuracy). - */ - Typeset: function (style,size) { - this.style = style; this.size = size; var unset = -10000 - this.w = 0; this.mw = 0; this.Mw = 0; - this.h = unset; this.d = unset; - this.bh = this.h; this.bd = this.d; - this.tbuf = ''; this.tx = 0; this.tclass = ''; - this.cbuf = ''; this.hbuf = ''; this.hx = 0; - var mitem = null; var prev; this.x = 0; this.dx = 0; - - for (var i = 0; i < this.mlist.length; i++) { - prev = mitem; mitem = this.mlist[i]; - switch (mitem.type) { - - case 'size': - this.FlushClassed(); - this.size = mitem.size; - mitem = prev; // hide this from TeX - break; - - case 'style': - this.FlushClassed(); - if (this.style.charAt(this.style.length-1) == "'") - {this.style = mitem.style + "'"} else {this.style = mitem.style} - mitem = prev; // hide this from TeX - break; - - case 'space': - if (typeof(mitem.w) == 'object') { - if (this.style.charAt(1) == 'S') {mitem.w = .5*mitem.w[0]/18} - else if (this.style.charAt(0) == 'S') {mitem.w = .7*mitem.w[0]/18} - else {mitem.w = mitem.w[0]/18} - } - this.dx += mitem.w-0; // mitem.w is sometimes a string? - mitem = prev; // hide this from TeX - break; - - case 'html': - this.FlushClassed(); - if (this.hbuf == '') {this.hx = this.x} - this.hbuf += mitem.html; - mitem = prev; // hide this from TeX - break; - - default: // atom - if (!mitem.atom && mitem.type != 'box') break; - mitem.nuc.x += this.dx + this.GetSeparation(prev,mitem,this.style); - if (mitem.nuc.x || mitem.nuc.y) mitem.nuc.Styled(); - this.dx = 0; this.x = this.x + this.w; - if (this.x + mitem.nuc.x + mitem.nuc.mw < this.mw) - {this.mw = this.x + mitem.nuc.x + mitem.nuc.mw} - if (this.w + mitem.nuc.x + mitem.nuc.Mw > this.Mw) - {this.Mw = this.w + mitem.nuc.x + mitem.nuc.Mw} - this.w += mitem.nuc.w + mitem.nuc.x; - if (mitem.nuc.format == 'text') { - if (this.tclass != mitem.nuc.tclass && this.tclass != '') this.FlushText(); - if (this.tbuf == '' && this.cbuf == '') {this.tx = this.x} - this.tbuf += mitem.nuc.html; this.tclass = mitem.nuc.tclass; - } else { - this.FlushClassed(); - if (mitem.nuc.x || mitem.nuc.y) this.Place(mitem.nuc); - if (this.hbuf == '') {this.hx = this.x} - this.hbuf += mitem.nuc.html; - } - this.h = Math.max(this.h,mitem.nuc.h+mitem.nuc.y); this.bh = Math.max(this.bh,mitem.nuc.bh); - this.d = Math.max(this.d,mitem.nuc.d-mitem.nuc.y); this.bd = Math.max(this.bd,mitem.nuc.bd); - break; - } - } - - this.FlushClassed(); // make sure scaling is included - if (this.dx) { - this.hbuf += jsMath.HTML.Spacer(this.dx); this.w += this.dx; - if (this.w > this.Mw) {this.Mw = this.w} - if (this.w < this.mw) {this.mw = this.w} - } - if (this.hbuf == '') {return jsMath.Box.Null()} - if (this.h == unset) {this.h = 0} - if (this.d == unset) {this.d = 0} - var box = new jsMath.Box('html',this.hbuf,this.w,this.h,this.d); - box.bh = this.bh; box.bd = this.bd; - box.mw = this.mw; box.Mw = this.Mw; - return box; - }, - - /* - * Add the font to the buffered text and move it to the - * classed-text buffer. - */ - FlushText: function () { - if (this.tbuf == '') return; - this.cbuf += jsMath.Typeset.AddClass(this.tclass,this.tbuf); - this.tbuf = ''; this.tclass = ''; - }, - - /* - * Add the script or scriptscript style to the text and - * move it to the HTML buffer - */ - FlushClassed: function () { - this.FlushText(); - if (this.cbuf == '') return; - if (this.hbuf == '') {this.hx = this.tx} - this.hbuf += jsMath.Typeset.AddStyle(this.style,this.size,this.cbuf); - this.cbuf = ''; - }, - - /* - * Add a to position an item's HTML, and - * adjust the item's height and depth. - * (This may be replaced buy one of the following browser-specific - * versions by Browser.Init().) - */ - Place: function (item) { - var html = '' + item.html + ''; - item.h += item.y; item.d -= item.y; - item.x = 0; item.y = 0; - }, - - /* - * For MSIE on Windows, backspacing must be done in a separate - * , otherwise the contents will be clipped. Netscape - * also doesn't combine vertical and horizontal spacing well. - * Here, the horizontal and vertical spacing are done separately. - */ - - PlaceSeparateSkips: function (item) { - if (item.y) { - var rw = item.Mw - item.w; var lw = item.mw; - var W = item.Mw - item.mw; - item.html = - jsMath.HTML.Spacer(lw-rw) + - '' + - jsMath.HTML.Spacer(-lw) + - item.html + - jsMath.HTML.Spacer(rw) + - '' - } - if (item.x) {item.html = jsMath.HTML.Spacer(item.x) + item.html} - item.h += item.y; item.d -= item.y; - item.x = 0; item.y = 0; - } - -}); - - - -/***************************************************************************/ - -/* - * The Parse object handles the parsing of the TeX input string, and creates - * the mList to be typeset by the Typeset object above. - */ - -jsMath.Parse = function (s,font,size,style) { - var parse = new jsMath.Parser(s,font,size,style); - parse.Parse(); - return parse; -} - -jsMath.Parser = function (s,font,size,style) { - this.string = s; this.i = 0; - this.mlist = new jsMath.mList(null,font,size,style); -} - -jsMath.Package(jsMath.Parser,{ - - // special characters - cmd: '\\', - open: '{', - close: '}', - - // patterns for letters and numbers - letter: /[a-z]/i, - number: /[0-9]/, - // pattern for macros to ^ and _ that should be read with arguments - scriptargs: /^((math|text)..|mathcal|[hm]box)$/, - - // the \mathchar definitions (see Appendix B of the TeXbook). - mathchar: { - '!': [5,0,0x21], - '(': [4,0,0x28], - ')': [5,0,0x29], - '*': [2,2,0x03], // \ast - '+': [2,0,0x2B], - ',': [6,1,0x3B], - '-': [2,2,0x00], - '.': [0,1,0x3A], - '/': [0,1,0x3D], - ':': [3,0,0x3A], - ';': [6,0,0x3B], - '<': [3,1,0x3C], - '=': [3,0,0x3D], - '>': [3,1,0x3E], - '?': [5,0,0x3F], - '[': [4,0,0x5B], - ']': [5,0,0x5D], -// '{': [4,2,0x66], -// '}': [5,2,0x67], - '|': [0,2,0x6A] - }, - - // handle special \catcode characters - special: { - '~': 'Tilde', - '^': 'HandleSuperscript', - '_': 'HandleSubscript', - ' ': 'Space', - '\01': 'Space', - "\t": 'Space', - "\r": 'Space', - "\n": 'Space', - "'": 'Prime', - '%': 'HandleComment', - '&': 'HandleEntry', - '#': 'Hash' - }, - - // the \mathchardef table (see Appendix B of the TeXbook). - mathchardef: { - // brace parts - braceld: [0,3,0x7A], - bracerd: [0,3,0x7B], - bracelu: [0,3,0x7C], - braceru: [0,3,0x7D], - - // Greek letters - alpha: [0,1,0x0B], - beta: [0,1,0x0C], - gamma: [0,1,0x0D], - delta: [0,1,0x0E], - epsilon: [0,1,0x0F], - zeta: [0,1,0x10], - eta: [0,1,0x11], - theta: [0,1,0x12], - iota: [0,1,0x13], - kappa: [0,1,0x14], - lambda: [0,1,0x15], - mu: [0,1,0x16], - nu: [0,1,0x17], - xi: [0,1,0x18], - pi: [0,1,0x19], - rho: [0,1,0x1A], - sigma: [0,1,0x1B], - tau: [0,1,0x1C], - upsilon: [0,1,0x1D], - phi: [0,1,0x1E], - chi: [0,1,0x1F], - psi: [0,1,0x20], - omega: [0,1,0x21], - varepsilon: [0,1,0x22], - vartheta: [0,1,0x23], - varpi: [0,1,0x24], - varrho: [0,1,0x25], - varsigma: [0,1,0x26], - varphi: [0,1,0x27], - - Gamma: [7,0,0x00], - Delta: [7,0,0x01], - Theta: [7,0,0x02], - Lambda: [7,0,0x03], - Xi: [7,0,0x04], - Pi: [7,0,0x05], - Sigma: [7,0,0x06], - Upsilon: [7,0,0x07], - Phi: [7,0,0x08], - Psi: [7,0,0x09], - Omega: [7,0,0x0A], - - // Ord symbols - aleph: [0,2,0x40], - imath: [0,1,0x7B], - jmath: [0,1,0x7C], - ell: [0,1,0x60], - wp: [0,1,0x7D], - Re: [0,2,0x3C], - Im: [0,2,0x3D], - partial: [0,1,0x40], - infty: [0,2,0x31], - prime: [0,2,0x30], - emptyset: [0,2,0x3B], - nabla: [0,2,0x72], - surd: [1,2,0x70], - top: [0,2,0x3E], - bot: [0,2,0x3F], - triangle: [0,2,0x34], - forall: [0,2,0x38], - exists: [0,2,0x39], - neg: [0,2,0x3A], - lnot: [0,2,0x3A], - flat: [0,1,0x5B], - natural: [0,1,0x5C], - sharp: [0,1,0x5D], - clubsuit: [0,2,0x7C], - diamondsuit: [0,2,0x7D], - heartsuit: [0,2,0x7E], - spadesuit: [0,2,0x7F], - - // big ops - coprod: [1,3,0x60], - bigvee: [1,3,0x57], - bigwedge: [1,3,0x56], - biguplus: [1,3,0x55], - bigcap: [1,3,0x54], - bigcup: [1,3,0x53], - intop: [1,3,0x52], - prod: [1,3,0x51], - sum: [1,3,0x50], - bigotimes: [1,3,0x4E], - bigoplus: [1,3,0x4C], - bigodot: [1,3,0x4A], - ointop: [1,3,0x48], - bigsqcup: [1,3,0x46], - smallint: [1,2,0x73], - - // binary operations - triangleleft: [2,1,0x2F], - triangleright: [2,1,0x2E], - bigtriangleup: [2,2,0x34], - bigtriangledown: [2,2,0x35], - wedge: [2,2,0x5E], - land: [2,2,0x5E], - vee: [2,2,0x5F], - lor: [2,2,0x5F], - cap: [2,2,0x5C], - cup: [2,2,0x5B], - ddagger: [2,2,0x7A], - dagger: [2,2,0x79], - sqcap: [2,2,0x75], - sqcup: [2,2,0x74], - uplus: [2,2,0x5D], - amalg: [2,2,0x71], - diamond: [2,2,0x05], - bullet: [2,2,0x0F], - wr: [2,2,0x6F], - div: [2,2,0x04], - odot: [2,2,0x0C], - oslash: [2,2,0x0B], - otimes: [2,2,0x0A], - ominus: [2,2,0x09], - oplus: [2,2,0x08], - mp: [2,2,0x07], - pm: [2,2,0x06], - circ: [2,2,0x0E], - bigcirc: [2,2,0x0D], - setminus: [2,2,0x6E], // for set difference A\setminus B - cdot: [2,2,0x01], - ast: [2,2,0x03], - times: [2,2,0x02], - star: [2,1,0x3F], - - // Relations - propto: [3,2,0x2F], - sqsubseteq: [3,2,0x76], - sqsupseteq: [3,2,0x77], - parallel: [3,2,0x6B], - mid: [3,2,0x6A], - dashv: [3,2,0x61], - vdash: [3,2,0x60], - leq: [3,2,0x14], - le: [3,2,0x14], - geq: [3,2,0x15], - ge: [3,2,0x15], - lt: [3,1,0x3C], // extra since < and > are hard - gt: [3,1,0x3E], // to get in HTML - succ: [3,2,0x1F], - prec: [3,2,0x1E], - approx: [3,2,0x19], - succeq: [3,2,0x17], - preceq: [3,2,0x16], - supset: [3,2,0x1B], - subset: [3,2,0x1A], - supseteq: [3,2,0x13], - subseteq: [3,2,0x12], - 'in': [3,2,0x32], - ni: [3,2,0x33], - owns: [3,2,0x33], - gg: [3,2,0x1D], - ll: [3,2,0x1C], - not: [3,2,0x36], - sim: [3,2,0x18], - simeq: [3,2,0x27], - perp: [3,2,0x3F], - equiv: [3,2,0x11], - asymp: [3,2,0x10], - smile: [3,1,0x5E], - frown: [3,1,0x5F], - - // Arrows - Leftrightarrow: [3,2,0x2C], - Leftarrow: [3,2,0x28], - Rightarrow: [3,2,0x29], - leftrightarrow: [3,2,0x24], - leftarrow: [3,2,0x20], - gets: [3,2,0x20], - rightarrow: [3,2,0x21], - to: [3,2,0x21], - mapstochar: [3,2,0x37], - leftharpoonup: [3,1,0x28], - leftharpoondown: [3,1,0x29], - rightharpoonup: [3,1,0x2A], - rightharpoondown: [3,1,0x2B], - nearrow: [3,2,0x25], - searrow: [3,2,0x26], - nwarrow: [3,2,0x2D], - swarrow: [3,2,0x2E], - - minuschar: [3,2,0x00], // for longmapsto - hbarchar: [0,0,0x16], // for \hbar - lhook: [3,1,0x2C], - rhook: [3,1,0x2D], - - ldotp: [6,1,0x3A], // ldot as a punctuation mark - cdotp: [6,2,0x01], // cdot as a punctuation mark - colon: [6,0,0x3A], // colon as a punctuation mark - - '#': [7,0,0x23], - '$': [7,0,0x24], - '%': [7,0,0x25], - '&': [7,0,0x26] - }, - - // The delimiter table (see Appendix B of the TeXbook) - delimiter: { - '(': [0,0,0x28,3,0x00], - ')': [0,0,0x29,3,0x01], - '[': [0,0,0x5B,3,0x02], - ']': [0,0,0x5D,3,0x03], - '<': [0,2,0x68,3,0x0A], - '>': [0,2,0x69,3,0x0B], - '\\lt': [0,2,0x68,3,0x0A], // extra since < and > are - '\\gt': [0,2,0x69,3,0x0B], // hard to get in HTML - '/': [0,0,0x2F,3,0x0E], - '|': [0,2,0x6A,3,0x0C], - '.': [0,0,0x00,0,0x00], - '\\': [0,2,0x6E,3,0x0F], - '\\lmoustache': [4,3,0x7A,3,0x40], // top from (, bottom from ) - '\\rmoustache': [5,3,0x7B,3,0x41], // top from ), bottom from ( - '\\lgroup': [4,6,0x28,3,0x3A], // extensible ( with sharper tips - '\\rgroup': [5,6,0x29,3,0x3B], // extensible ) with sharper tips - '\\arrowvert': [0,2,0x6A,3,0x3C], // arrow without arrowheads - '\\Arrowvert': [0,2,0x6B,3,0x3D], // double arrow without arrowheads -// '\\bracevert': [0,7,0x7C,3,0x3E], // the vertical bar that extends braces - '\\bracevert': [0,2,0x6A,3,0x3E], // we don't load tt, so use | instead - '\\Vert': [0,2,0x6B,3,0x0D], - '\\|': [0,2,0x6B,3,0x0D], - '\\vert': [0,2,0x6A,3,0x0C], - '\\uparrow': [3,2,0x22,3,0x78], - '\\downarrow': [3,2,0x23,3,0x79], - '\\updownarrow': [3,2,0x6C,3,0x3F], - '\\Uparrow': [3,2,0x2A,3,0x7E], - '\\Downarrow': [3,2,0x2B,3,0x7F], - '\\Updownarrow': [3,2,0x6D,3,0x77], - '\\backslash': [0,2,0x6E,3,0x0F], // for double coset G\backslash H - '\\rangle': [5,2,0x69,3,0x0B], - '\\langle': [4,2,0x68,3,0x0A], - '\\rbrace': [5,2,0x67,3,0x09], - '\\lbrace': [4,2,0x66,3,0x08], - '\\}': [5,2,0x67,3,0x09], - '\\{': [4,2,0x66,3,0x08], - '\\rceil': [5,2,0x65,3,0x07], - '\\lceil': [4,2,0x64,3,0x06], - '\\rfloor': [5,2,0x63,3,0x05], - '\\lfloor': [4,2,0x62,3,0x04], - '\\lbrack': [0,0,0x5B,3,0x02], - '\\rbrack': [0,0,0x5D,3,0x03] - }, - - /* - * The basic macros for plain TeX. - * - * When the control sequence on the left is called, the JavaScript - * funtion on the right is called, with the name of the control sequence - * as its first parameter (this way, the same function can be called by - * several different control sequences to do similar actions, and the - * function can still tell which TeX command was issued). If the right - * is an array, the first entry is the routine to call, and the - * remaining entries in the array are parameters to pass to the function - * as the second parameter (they are in an array reference). - * - * Note: TeX macros as defined by the user are discussed below. - */ - macros: { - displaystyle: ['HandleStyle','D'], - textstyle: ['HandleStyle','T'], - scriptstyle: ['HandleStyle','S'], - scriptscriptstyle: ['HandleStyle','SS'], - - rm: ['HandleFont',0], - mit: ['HandleFont',1], - oldstyle: ['HandleFont',1], - cal: ['HandleFont',2], - it: ['HandleFont',4], - bf: ['HandleFont',6], - - font: ['Extension','font'], - - left: 'HandleLeft', - right: 'HandleRight', - - arcsin: ['NamedOp',0], - arccos: ['NamedOp',0], - arctan: ['NamedOp',0], - arg: ['NamedOp',0], - cos: ['NamedOp',0], - cosh: ['NamedOp',0], - cot: ['NamedOp',0], - coth: ['NamedOp',0], - csc: ['NamedOp',0], - deg: ['NamedOp',0], - det: 'NamedOp', - dim: ['NamedOp',0], - exp: ['NamedOp',0], - gcd: 'NamedOp', - hom: ['NamedOp',0], - inf: 'NamedOp', - ker: ['NamedOp',0], - lg: ['NamedOp',0], - lim: 'NamedOp', - liminf: ['NamedOp',null,'liminf'], - limsup: ['NamedOp',null,'limsup'], - ln: ['NamedOp',0], - log: ['NamedOp',0], - max: 'NamedOp', - min: 'NamedOp', - Pr: 'NamedOp', - sec: ['NamedOp',0], - sin: ['NamedOp',0], - sinh: ['NamedOp',0], - sup: 'NamedOp', - tan: ['NamedOp',0], - tanh: ['NamedOp',0], - - vcenter: ['HandleAtom','vcenter'], - overline: ['HandleAtom','overline'], - underline: ['HandleAtom','underline'], - over: 'HandleOver', - overwithdelims: 'HandleOver', - atop: 'HandleOver', - atopwithdelims: 'HandleOver', - above: 'HandleOver', - abovewithdelims: 'HandleOver', - brace: ['HandleOver','\\{','\\}'], - brack: ['HandleOver','[',']'], - choose: ['HandleOver','(',')'], - - overbrace: ['Extension','leaders'], - underbrace: ['Extension','leaders'], - overrightarrow: ['Extension','leaders'], - underrightarrow: ['Extension','leaders'], - overleftarrow: ['Extension','leaders'], - underleftarrow: ['Extension','leaders'], - overleftrightarrow: ['Extension','leaders'], - underleftrightarrow: ['Extension','leaders'], - overset: ['Extension','underset-overset'], - underset: ['Extension','underset-overset'], - - llap: 'HandleLap', - rlap: 'HandleLap', - ulap: 'HandleLap', - dlap: 'HandleLap', - raise: 'RaiseLower', - lower: 'RaiseLower', - moveleft: 'MoveLeftRight', - moveright: 'MoveLeftRight', - - frac: 'Frac', - root: 'Root', - sqrt: 'Sqrt', - - // TeX substitution macros - hbar: ['Macro','\\hbarchar\\kern-.5em h'], - ne: ['Macro','\\not='], - neq: ['Macro','\\not='], - notin: ['Macro','\\mathrel{\\rlap{\\kern2mu/}}\\in'], - cong: ['Macro','\\mathrel{\\lower2mu{\\mathrel{{\\rlap{=}\\raise6mu\\sim}}}}'], - bmod: ['Macro','\\mathbin{\\rm mod}'], - pmod: ['Macro','\\kern 18mu ({\\rm mod}\\,\\,#1)',1], - 'int': ['Macro','\\intop\\nolimits'], - oint: ['Macro','\\ointop\\nolimits'], - doteq: ['Macro','\\buildrel\\textstyle.\\over='], - ldots: ['Macro','\\mathinner{\\ldotp\\ldotp\\ldotp}'], - cdots: ['Macro','\\mathinner{\\cdotp\\cdotp\\cdotp}'], - vdots: ['Macro','\\mathinner{\\rlap{\\raise8pt{.\\rule 0pt 6pt 0pt}}\\rlap{\\raise4pt{.}}.}'], - ddots: ['Macro','\\mathinner{\\kern1mu\\raise7pt{\\rule 0pt 7pt 0pt .}\\kern2mu\\raise4pt{.}\\kern2mu\\raise1pt{.}\\kern1mu}'], - joinrel: ['Macro','\\mathrel{\\kern-4mu}'], - relbar: ['Macro','\\mathrel{\\smash-}'], // \smash, because - has the same height as + - Relbar: ['Macro','\\mathrel='], - bowtie: ['Macro','\\mathrel\\triangleright\\joinrel\\mathrel\\triangleleft'], - models: ['Macro','\\mathrel|\\joinrel='], - mapsto: ['Macro','\\mathrel{\\mapstochar\\rightarrow}'], - rightleftharpoons: ['Macro','\\vcenter{\\mathrel{\\rlap{\\raise3mu{\\rightharpoonup}}}\\leftharpoondown}'], - hookrightarrow: ['Macro','\\lhook\\joinrel\\rightarrow'], - hookleftarrow: ['Macro','\\leftarrow\\joinrel\\rhook'], - Longrightarrow: ['Macro','\\Relbar\\joinrel\\Rightarrow'], - longrightarrow: ['Macro','\\relbar\\joinrel\\rightarrow'], - longleftarrow: ['Macro','\\leftarrow\\joinrel\\relbar'], - Longleftarrow: ['Macro','\\Leftarrow\\joinrel\\Relbar'], - longmapsto: ['Macro','\\mathrel{\\mapstochar\\minuschar\\joinrel\\rightarrow}'], - longleftrightarrow: ['Macro','\\leftarrow\\joinrel\\rightarrow'], - Longleftrightarrow: ['Macro','\\Leftarrow\\joinrel\\Rightarrow'], - iff: ['Macro','\\;\\Longleftrightarrow\\;'], - mathcal: ['Macro','{\\cal #1}',1], - mathrm: ['Macro','{\\rm #1}',1], - mathbf: ['Macro','{\\bf #1}',1], - mathbb: ['Macro','{\\bf #1}',1], - mathit: ['Macro','{\\it #1}',1], - textrm: ['Macro','\\mathord{\\hbox{#1}}',1], - textit: ['Macro','\\mathord{\\class{textit}{\\hbox{#1}}}',1], - textbf: ['Macro','\\mathord{\\class{textbf}{\\hbox{#1}}}',1], - pmb: ['Macro','\\rlap{#1}\\kern1px{#1}',1], - - TeX: ['Macro','T\\kern-.1667em\\lower.5ex{E}\\kern-.125em X'], - - limits: ['Limits',1], - nolimits: ['Limits',0], - - ',': ['Spacer',1/6], - ':': ['Spacer',1/6], // for LaTeX - '>': ['Spacer',2/9], - ';': ['Spacer',5/18], - '!': ['Spacer',-1/6], - enspace: ['Spacer',1/2], - quad: ['Spacer',1], - qquad: ['Spacer',2], - thinspace: ['Spacer',1/6], - negthinspace: ['Spacer',-1/6], - - hskip: 'Hskip', - kern: 'Hskip', - rule: ['Rule','colored'], - space: ['Rule','blank'], - - big: ['MakeBig','ord',0.85], - Big: ['MakeBig','ord',1.15], - bigg: ['MakeBig','ord',1.45], - Bigg: ['MakeBig','ord',1.75], - bigl: ['MakeBig','open',0.85], - Bigl: ['MakeBig','open',1.15], - biggl: ['MakeBig','open',1.45], - Biggl: ['MakeBig','open',1.75], - bigr: ['MakeBig','close',0.85], - Bigr: ['MakeBig','close',1.15], - biggr: ['MakeBig','close',1.45], - Biggr: ['MakeBig','close',1.75], - bigm: ['MakeBig','rel',0.85], - Bigm: ['MakeBig','rel',1.15], - biggm: ['MakeBig','rel',1.45], - Biggm: ['MakeBig','rel',1.75], - - mathord: ['HandleAtom','ord'], - mathop: ['HandleAtom','op'], - mathopen: ['HandleAtom','open'], - mathclose: ['HandleAtom','close'], - mathbin: ['HandleAtom','bin'], - mathrel: ['HandleAtom','rel'], - mathpunct: ['HandleAtom','punct'], - mathinner: ['HandleAtom','inner'], - - mathchoice: ['Extension','mathchoice'], - buildrel: 'BuildRel', - - hbox: 'HBox', - text: 'HBox', - mbox: 'HBox', - fbox: ['Extension','fbox'], - - strut: 'Strut', - mathstrut: ['Macro','\\vphantom{(}'], - phantom: ['Phantom',1,1], - vphantom: ['Phantom',1,0], - hphantom: ['Phantom',0,1], - smash: 'Smash', - - acute: ['MathAccent', [7,0,0x13]], - grave: ['MathAccent', [7,0,0x12]], - ddot: ['MathAccent', [7,0,0x7F]], - tilde: ['MathAccent', [7,0,0x7E]], - bar: ['MathAccent', [7,0,0x16]], - breve: ['MathAccent', [7,0,0x15]], - check: ['MathAccent', [7,0,0x14]], - hat: ['MathAccent', [7,0,0x5E]], - vec: ['MathAccent', [0,1,0x7E]], - dot: ['MathAccent', [7,0,0x5F]], - widetilde: ['MathAccent', [0,3,0x65]], - widehat: ['MathAccent', [0,3,0x62]], - - '_': ['Replace','ord','_','normal',-.4,.1], - ' ': ['Replace','ord',' ','normal'], -// angle: ['Replace','ord','∠','normal'], - angle: ['Macro','\\kern2.5mu\\raise1.54pt{\\rlap{\\scriptstyle \\char{cmsy10}{54}}\\kern1pt\\rule{.45em}{-1.2pt}{1.54pt}\\kern2.5mu}'], - - matrix: 'Matrix', - array: 'Matrix', // ### still need to do alignment options ### - pmatrix: ['Matrix','(',')','c'], - cases: ['Matrix','\\{','.',['l','l'],null,2], - eqalign: ['Matrix',null,null,['r','l'],[5/18],3,'D'], - displaylines: ['Matrix',null,null,['c'],null,3,'D'], - cr: 'HandleRow', - '\\': 'HandleRow', - newline: 'HandleRow', - noalign: 'HandleNoAlign', - eqalignno: ['Matrix',null,null,['r','l','r'],[5/8,3],3,'D'], - leqalignno: ['Matrix',null,null,['r','l','r'],[5/8,3],3,'D'], - - // LaTeX - begin: 'Begin', - end: 'End', - tiny: ['HandleSize',0], - Tiny: ['HandleSize',1], // non-standard - scriptsize: ['HandleSize',2], - small: ['HandleSize',3], - normalsize: ['HandleSize',4], - large: ['HandleSize',5], - Large: ['HandleSize',6], - LARGE: ['HandleSize',7], - huge: ['HandleSize',8], - Huge: ['HandleSize',9], - dots: ['Macro','\\ldots'], - - newcommand: ['Extension','newcommand'], - newenvironment: ['Extension','newcommand'], - def: ['Extension','newcommand'], - - // Extensions to TeX - color: ['Extension','HTML'], - href: ['Extension','HTML'], - 'class': ['Extension','HTML'], - style: ['Extension','HTML'], - cssId: ['Extension','HTML'], - unicode: ['Extension','HTML'], - bbox: ['Extension','bbox'], - - require: 'Require', - - // debugging and test routines - 'char': 'Char' - }, - - /* - * LaTeX environments - */ - environments: { - array: 'Array', - matrix: ['Array',null,null,'c'], - pmatrix: ['Array','(',')','c'], - bmatrix: ['Array','[',']','c'], - Bmatrix: ['Array','\\{','\\}','c'], - vmatrix: ['Array','\\vert','\\vert','c'], - Vmatrix: ['Array','\\Vert','\\Vert','c'], - cases: ['Array','\\{','.','ll',null,2], - eqnarray: ['Array',null,null,'rcl',[5/18,5/18],3,'D'], - 'eqnarray*': ['Array',null,null,'rcl',[5/18,5/18],3,'D'], - equation: 'Equation', - 'equation*': 'Equation', - - align: ['Extension','AMSmath'], - 'align*': ['Extension','AMSmath'], - aligned: ['Extension','AMSmath'], - multline: ['Extension','AMSmath'], - 'multline*': ['Extension','AMSmath'], - split: ['Extension','AMSmath'], - gather: ['Extension','AMSmath'], - 'gather*': ['Extension','AMSmath'], - gathered: ['Extension','AMSmath'] - }, - - - /***************************************************************************/ - - /* - * Add special characters to list above. (This makes it possible - * to define them in a variable that the user can change.) - */ - AddSpecial: function (obj) { - for (var id in obj) { - jsMath.Parser.prototype.special[jsMath.Parser.prototype[id]] = obj[id]; - } - }, - - /* - * Throw an error - */ - Error: function (s) { - this.i = this.string.length; - if (s.error) {this.error = s.error} else { - if (!this.error) {this.error = s} - } - }, - - /***************************************************************************/ - - /* - * Check if the next character is a space - */ - nextIsSpace: function () { - return this.string.charAt(this.i).match(/[ \n\r\t]/); - }, - - /* - * Trim spaces from a string - */ - trimSpaces: function (text) { - if (typeof(text) != 'string') {return text} - return text.replace(/^\s+|\s+$/g,''); - }, - - /* - * Parse a substring to get its mList, and return it. - * Check that no errors occured - */ - Process: function (arg) { - var data = this.mlist.data; - arg = jsMath.Parse(arg,data.font,data.size,data.style); - if (arg.error) {this.Error(arg); return null} - if (arg.mlist.Length() == 0) {return null} - if (arg.mlist.Length() == 1) { - var atom = arg.mlist.Last(); - if (atom.atom && atom.type == 'ord' && atom.nuc && - !atom.sub && !atom.sup && (atom.nuc.type == 'text' || atom.nuc.type == 'TeX')) - {return atom.nuc} - } - return {type: 'mlist', mlist: arg.mlist}; - }, - - /* - * Get and return a control-sequence name from the TeX string - */ - GetCommand: function () { - var letter = /^([a-z]+|.) ?/i; - var cmd = letter.exec(this.string.slice(this.i)); - if (cmd) {this.i += cmd[1].length; return cmd[1]} - this.i++; return " "; - }, - - /* - * Get and return a TeX argument (either a single character or control sequence, - * or the contents of the next set of braces). - */ - GetArgument: function (name,noneOK) { - while (this.nextIsSpace()) {this.i++} - if (this.i >= this.string.length) {if (!noneOK) this.Error("Missing argument for "+name); return null} - if (this.string.charAt(this.i) == this.close) {if (!noneOK) this.Error("Extra close brace"); return null} - if (this.string.charAt(this.i) == this.cmd) {this.i++; return this.cmd+this.GetCommand()} - if (this.string.charAt(this.i) != this.open) {return this.string.charAt(this.i++)} - var j = ++this.i; var pcount = 1; var c = ''; - while (this.i < this.string.length) { - c = this.string.charAt(this.i++); - if (c == this.cmd) {this.i++} - else if (c == this.open) {pcount++} - else if (c == this.close) { - if (pcount == 0) {this.Error("Extra close brace"); return null} - if (--pcount == 0) {return this.string.slice(j,this.i-1)} - } - } - this.Error("Missing close brace"); - return null; - }, - - /* - * Get an argument and process it into an mList - */ - ProcessArg: function (name) { - var arg = this.GetArgument(name); if (this.error) {return null} - return this.Process(arg); - }, - - /* - * Get and process an argument for a super- or subscript. - * (read extra args for \frac, \sqrt, \mathrm, etc.) - * This handles these macros as special cases, so is really - * rather a hack. A more general method for indicating - * how to handle macros in scripts needs to be developed. - */ - ProcessScriptArg: function (name) { - var arg = this.GetArgument(name); if (this.error) {return null} - if (arg.charAt(0) == this.cmd) { - var csname = arg.substr(1); - if (csname == "frac") { - arg += '{'+this.GetArgument(csname)+'}'; if (this.error) {return null} - arg += '{'+this.GetArgument(csname)+'}'; if (this.error) {return null} - } else if (csname == "sqrt") { - arg += '['+this.GetBrackets(csname)+']'; if (this.error) {return null} - arg += '{'+this.GetArgument(csname)+'}'; if (this.error) {return null} - } else if (csname.match(this.scriptargs)) { - arg += '{'+this.GetArgument(csname)+'}'; if (this.error) {return null} - } - } - return this.Process(arg); - }, - - /* - * Get the name of a delimiter (check it in the delimiter list). - */ - GetDelimiter: function (name) { - while (this.nextIsSpace()) {this.i++} - var c = this.string.charAt(this.i); - if (this.i < this.string.length) { - this.i++; - if (c == this.cmd) {c = '\\'+this.GetCommand(name); if (this.error) return null} - if (this.delimiter[c] != null) {return this.delimiter[c]} - } - this.Error("Missing or unrecognized delimiter for "+name); - return null; - }, - - /* - * Get a dimension (including its units). - * Convert the dimen to em's, except for mu's, which must be - * converted when typeset. - */ - GetDimen: function (name,nomu) { - var rest; var advance = 0; - if (this.nextIsSpace()) {this.i++} - if (this.string.charAt(this.i) == '{') { - rest = this.GetArgument(name); - } else { - rest = this.string.slice(this.i); - advance = 1; - } - return this.ParseDimen(rest,name,advance,nomu); - }, - - ParseDimen: function (dimen,name,advance,nomu) { - var match = dimen.match(/^\s*([-+]?(\.\d+|\d+(\.\d*)?))(pt|em|ex|mu|px)/); - if (!match) {this.Error("Missing dimension or its units for "+name); return null} - if (advance) { - this.i += match[0].length; - if (this.nextIsSpace()) {this.i++} - } - var d = match[1]-0; - if (match[4] == 'px') {d /= jsMath.em} - else if (match[4] == 'pt') {d /= 10} - else if (match[4] == 'ex') {d *= jsMath.TeX.x_height} - else if (match[4] == 'mu') {if (nomu) {d = d/18} else {d = [d,'mu']}} - return d; - }, - - /* - * Get the next non-space character - */ - GetNext: function () { - while (this.nextIsSpace()) {this.i++} - return this.string.charAt(this.i); - }, - - /* - * Get an optional LaTeX argument in brackets - */ - GetBrackets: function (name) { - var c = this.GetNext(); if (c != '[') return ''; - var start = ++this.i; var pcount = 0; - while (this.i < this.string.length) { - c = this.string.charAt(this.i++); - if (c == '{') {pcount++} - else if (c == '}') { - if (pcount == 0) - {this.Error("Extra close brace while looking for ']'"); return null} - pcount --; - } else if (c == this.cmd) { - this.i++; - } else if (c == ']') { - if (pcount == 0) {return this.string.slice(start,this.i-1)} - } - } - this.Error("Couldn't find closing ']' for argument to "+this.cmd+name); - return null; - }, - - /* - * Get everything up to the given control sequence name (token) - */ - GetUpto: function (name,token) { - while (this.nextIsSpace()) {this.i++} - var start = this.i; var pcount = 0; - while (this.i < this.string.length) { - var c = this.string.charAt(this.i++); - if (c == '{') {pcount++} - else if (c == '}') { - if (pcount == 0) - {this.Error("Extra close brace while looking for "+this.cmd+token); return null} - pcount --; - } else if (c == this.cmd) { - // really need separate counter for begin/end - // and it should really be a stack (new pcount for each begin) - if (this.string.slice(this.i,this.i+5) == "begin") {pcount++; this.i+=4} - else if (this.string.slice(this.i,this.i+3) == "end") { - if (pcount > 0) {pcount--; this.i += 2} - } - if (pcount == 0) { - if (this.string.slice(this.i,this.i+token.length) == token) { - c = this.string.charAt(this.i+token.length); - if (c.match(/[^a-z]/i) || !token.match(/[a-z]/i)) { - var arg = this.string.slice(start,this.i-1); - this.i += token.length; - return arg; - } - } - } - this.i++; - } - } - this.Error("Couldn't find "+this.cmd+token+" for "+name); - return null; - }, - - /* - * Get a parameter delimited by a control sequence, and - * process it to get its mlist - */ - ProcessUpto: function (name,token) { - var arg = this.GetUpto(name,token); if (this.error) return null; - return this.Process(arg); - }, - - /* - * Get everything up to \end{env} - */ - GetEnd: function (env) { - var body = ''; var name = ''; - while (name != env) { - body += this.GetUpto('begin{'+env+'}','end'); if (this.error) return null; - name = this.GetArgument(this.cmd+'end'); if (this.error) return null; - } - return body; - }, - - - /***************************************************************************/ - - - /* - * Ignore spaces - */ - Space: function () {}, - - /* - * Collect together any primes and convert them to a superscript - */ - Prime: function (c) { - var base = this.mlist.Last(); - if (base == null || (!base.atom && base.type != 'box' && base.type != 'frac')) - {base = this.mlist.Add(jsMath.mItem.Atom('ord',{type:null}))} - if (base.sup) {this.Error("Prime causes double exponent: use braces to clarify"); return} - var sup = ''; - while (c == "'") {sup += this.cmd+'prime'; c = this.GetNext(); if (c == "'") {this.i++}} - base.sup = this.Process(sup); - base.sup.isPrime = 1; - }, - - /* - * Raise or lower its parameter by a given amount - * @@@ Note that this is different from TeX, which requires an \hbox @@@ - * ### make this work with mu's ### - */ - RaiseLower: function (name) { - var h = this.GetDimen(this.cmd+name,1); if (this.error) return; - var box = this.ProcessScriptArg(this.cmd+name); if (this.error) return; - if (name == 'lower') {h = -h} - this.mlist.Add(new jsMath.mItem('raise',{nuc: box, raise: h})); - }, - - /* - * Shift an expression to the right or left - * @@@ Note that this is different from TeX, which requires a \vbox @@@ - * ### make this work with mu's ### - */ - MoveLeftRight: function (name) { - var x = this.GetDimen(this.cmd+name,1); if (this.error) return; - var box = this.ProcessScriptArg(this.cmd+name); if (this.error) return; - if (name == 'moveleft') {x = -x} - this.mlist.Add(jsMath.mItem.Space(x)); - this.mlist.Add(jsMath.mItem.Atom('ord',box)); - this.mlist.Add(jsMath.mItem.Space(-x)); - }, - - /* - * Load an extension if it has not already been loaded - */ - Require: function (name) { - var file = this.GetArgument(this.cmd+name); if (this.error) return; - file = jsMath.Extension.URL(file); - if (jsMath.Setup.loaded[file]) return; - this.Extension(null,[file]); - }, - - /* - * Load an extension file and restart processing the math - */ - Extension: function (name,data) { - jsMath.Translate.restart = 1; - if (name != null) {delete jsMath.Parser.prototype[data[1]||'macros'][name]} - jsMath.Extension.Require(data[0],jsMath.Translate.asynchronous); - throw "restart"; - }, - - /* - * Implements \frac{num}{den} - */ - Frac: function (name) { - var num = this.ProcessArg(this.cmd+name); if (this.error) return; - var den = this.ProcessArg(this.cmd+name); if (this.error) return; - this.mlist.Add(jsMath.mItem.Fraction('over',num,den)); - }, - - /* - * Implements \sqrt[n]{...} - */ - Sqrt: function (name) { - var n = this.GetBrackets(this.cmd+name); if (this.error) return; - var arg = this.ProcessArg(this.cmd+name); if (this.error) return; - var box = jsMath.mItem.Atom('radical',arg); - if (n != '') {box.root = this.Process(n); if (this.error) return} - this.mlist.Add(box); - }, - - /* - * Implements \root...\of{...} - */ - Root: function (name) { - var n = this.ProcessUpto(this.cmd+name,'of'); if (this.error) return; - var arg = this.ProcessArg(this.cmd+name); if (this.error) return; - var box = jsMath.mItem.Atom('radical',arg); - box.root = n; this.mlist.Add(box); - }, - - - /* - * Implements \buildrel...\over{...} - */ - BuildRel: function (name) { - var top = this.ProcessUpto(this.cmd+name,'over'); if (this.error) return; - var bot = this.ProcessArg(this.cmd+name); if (this.error) return; - var op = jsMath.mItem.Atom('op',bot); - op.limits = 1; op.sup = top; - this.mlist.Add(op); - }, - - /* - * Create a delimiter of the type and size specified in the parameters - */ - MakeBig: function (name,data) { - var type = data[0]; var h = data[1] * jsMath.p_height; - var delim = this.GetDelimiter(this.cmd+name); if (this.error) return; - this.mlist.Add(jsMath.mItem.Atom(type,jsMath.Box.Delimiter(h,delim,'T'))); - }, - - /* - * Insert the specified character in the given font. - * (Try to load the font if it is not already available.) - */ - Char: function (name) { - var font = this.GetArgument(this.cmd+name); if (this.error) return; - var n = this.GetArgument(this.cmd+name); if (this.error) return; - if (!jsMath.TeX[font]) { - jsMath.TeX[font] = []; - this.Extension(null,[jsMath.Font.URL(font)]); - } else { - this.mlist.Add(jsMath.mItem.Typeset(jsMath.Box.TeX(n-0,font,this.mlist.data.style,this.mlist.data.size))); - } - }, - - /* - * Create an array or matrix. - */ - Matrix: function (name,delim) { - var data = this.mlist.data; - var arg = this.GetArgument(this.cmd+name); if (this.error) return; - var parse = new jsMath.Parser(arg+this.cmd+'\\',null,data.size,delim[5] || 'T'); - parse.matrix = name; parse.row = []; parse.table = []; parse.rspacing = []; - parse.Parse(); if (parse.error) {this.Error(parse); return} - parse.HandleRow(name,1); // be sure the last row is recorded - var box = jsMath.Box.Layout(data.size,parse.table,delim[2]||null,delim[3]||null,parse.rspacing,delim[4]||null); - // Add parentheses, if needed - if (delim[0] && delim[1]) { - var left = jsMath.Box.Delimiter(box.h+box.d-jsMath.hd/4,this.delimiter[delim[0]],'T'); - var right = jsMath.Box.Delimiter(box.h+box.d-jsMath.hd/4,this.delimiter[delim[1]],'T'); - box = jsMath.Box.SetList([left,box,right],data.style,data.size); - } - this.mlist.Add(jsMath.mItem.Atom((delim[0]? 'inner': 'ord'),box)); - }, - - /* - * When we see an '&', try to add a matrix entry to the row data. - * (Use all the data in the current mList, and then clear it) - */ - HandleEntry: function (name) { - if (!this.matrix) - {this.Error(name+" can only appear in a matrix or array"); return} - if (this.mlist.data.openI != null) { - var open = this.mlist.Get(this.mlist.data.openI); - if (open.left) {this.Error("Missing "+this.cmd+"right")} - else {this.Error("Missing close brace")} - } - if (this.mlist.data.overI != null) {this.mlist.Over()} - var data = this.mlist.data; - this.mlist.Atomize(data.style,data.size); - var box = this.mlist.Typeset(data.style,data.size); - box.entry = data.entry; delete data.entry; if (!box.entry) {box.entry = {}}; - this.row[this.row.length] = box; - this.mlist = new jsMath.mList(null,null,data.size,data.style); - }, - - /* - * When we see a \cr or \\, try to add a row to the table - */ - HandleRow: function (name,last) { - var dimen; - if (!this.matrix) {this.Error(this.cmd+name+" can only appear in a matrix or array"); return} - if (name == "\\") { - dimen = this.GetBrackets(this.cmd+name); if (this.error) return; - if (dimen) {dimen = this.ParseDimen(dimen,this.cmd+name,0,1)} - } - this.HandleEntry(name); - if (!last || this.row.length > 1 || this.row[0].format != 'null') - {this.table[this.table.length] = this.row} - if (dimen) {this.rspacing[this.table.length] = dimen} - this.row = []; - }, - - /* - * Look for \vskip or \vspace in \noalign parameters - */ - HandleNoAlign: function (name) { - var arg = this.GetArgument(this.cmd+name); if (this.error) return; - var skip = arg.replace(/^.*(vskip|vspace)([^a-z])/i,'$2'); - if (skip.length == arg.length) return; - var d = this.ParseDimen(skip,this.cmd+RegExp.$1,0,1); if (this.error) return; - this.rspacing[this.table.length] = (this.rspacing[this.table.length] || 0) + d; - }, - - /* - * LaTeX array environment - */ - Array: function (name,delim) { - var columns = delim[2]; var cspacing = delim[3]; - if (!columns) { - columns = this.GetArgument(this.cmd+'begin{'+name+'}'); - if (this.error) return; - } - columns = columns.replace(/[^clr]/g,''); - columns = columns.split(''); - var data = this.mlist.data; var style = delim[5] || 'T'; - var arg = this.GetEnd(name); if (this.error) return; - var parse = new jsMath.Parser(arg+this.cmd+'\\',null,data.size,style); - parse.matrix = name; parse.row = []; parse.table = []; parse.rspacing = []; - parse.Parse(); if (parse.error) {this.Error(parse); return} - parse.HandleRow(name,1); // be sure the last row is recorded - var box = jsMath.Box.Layout(data.size,parse.table,columns,cspacing,parse.rspacing,delim[4],delim[6],delim[7]); - // Add parentheses, if needed - if (delim[0] && delim[1]) { - var left = jsMath.Box.Delimiter(box.h+box.d-jsMath.hd/4,this.delimiter[delim[0]],'T'); - var right = jsMath.Box.Delimiter(box.h+box.d-jsMath.hd/4,this.delimiter[delim[1]],'T'); - box = jsMath.Box.SetList([left,box,right],data.style,data.size); - } - this.mlist.Add(jsMath.mItem.Atom((delim[0]? 'inner': 'ord'),box)); - }, - - /* - * LaTeX \begin{env} - */ - Begin: function (name) { - var env = this.GetArgument(this.cmd+name); if (this.error) return; - if (env.match(/[^a-z*]/i)) {this.Error('Invalid environment name "'+env+'"'); return} - if (!this.environments[env]) {this.Error('Unknown environment "'+env+'"'); return} - var cmd = this.environments[env]; - if (typeof(cmd) == "string") {cmd = [cmd]} - this[cmd[0]](env,cmd.slice(1)); - }, - - /* - * LaTeX \end{env} - */ - End: function (name) { - var env = this.GetArgument(this.cmd+name); if (this.error) return; - this.Error(this.cmd+name+'{'+env+'} without matching '+this.cmd+'begin'); - }, - - /* - * LaTeX equation environment (just remove the environment) - */ - Equation: function (name) { - var arg = this.GetEnd(name); if (this.error) return; - this.string = arg+this.string.slice(this.i); this.i = 0; - }, - - /* - * Add a fixed amount of horizontal space - */ - Spacer: function (name,w) { - this.mlist.Add(jsMath.mItem.Space(w-0)); - }, - - /* - * Add horizontal space given by the argument - */ - Hskip: function (name) { - var w = this.GetDimen(this.cmd+name); if (this.error) return; - this.mlist.Add(jsMath.mItem.Space(w)); - }, - - /* - * Typeset the argument as plain text rather than math. - */ - HBox: function (name) { - var text = this.GetArgument(this.cmd+name); if (this.error) return; - var box = jsMath.Box.InternalMath(text,this.mlist.data.size); - this.mlist.Add(jsMath.mItem.Typeset(box)); - }, - - /* - * Insert a rule of a particular width, height and depth - * This replaces \hrule and \vrule - * @@@ not a standard TeX command, and all three parameters must be given @@@ - */ - Rule: function (name,style) { - var w = this.GetDimen(this.cmd+name,1); if (this.error) return; - var h = this.GetDimen(this.cmd+name,1); if (this.error) return; - var d = this.GetDimen(this.cmd+name,1); if (this.error) return; - h += d; var html; - if (h != 0) {h = Math.max(1.05/jsMath.em,h)} - if (h == 0 || w == 0 || style == "blank") - {html = jsMath.HTML.Blank(w,h)} else {html = jsMath.HTML.Rule(w,h)} - if (d) { - html = '' - + html + ''; - } - this.mlist.Add(jsMath.mItem.Typeset(new jsMath.Box('html',html,w,h-d,d))); - }, - - /* - * Inserts an empty box of a specific height and depth - */ - Strut: function () { - var size = this.mlist.data.size; - var box = jsMath.Box.Text('','normal','T',size).Styled(); - box.bh = box.bd = 0; box.h = .8; box.d = .3; box.w = box.Mw = 0; - this.mlist.Add(jsMath.mItem.Typeset(box)); - }, - - /* - * Handles \phantom, \vphantom and \hphantom - */ - Phantom: function (name,data) { - var arg = this.ProcessArg(this.cmd+name); if (this.error) return; - this.mlist.Add(new jsMath.mItem('phantom',{phantom: arg, v: data[0], h: data[1]})); - }, - - /* - * Implements \smash - */ - Smash: function (name,data) { - var arg = this.ProcessArg(this.cmd+name); if (this.error) return; - this.mlist.Add(new jsMath.mItem('smash',{smash: arg})); - }, - - /* - * Puts an accent on the following argument - */ - MathAccent: function (name,accent) { - var c = this.ProcessArg(this.cmd+name); if (this.error) return; - var atom = jsMath.mItem.Atom('accent',c); atom.accent = accent[0]; - this.mlist.Add(atom); - }, - - /* - * Handles functions and operators like sin, cos, sum, etc. - */ - NamedOp: function (name,data) { - var a = (name.match(/[^acegm-su-z]/)) ? 1: 0; - var d = (name.match(/[gjpqy]/)) ? .2: 0; - if (data[1]) {name = data[1]} - var box = jsMath.mItem.TextAtom('op',name,jsMath.TeX.fam[0],a,d); - if (data[0] != null) {box.limits = data[0]} - this.mlist.Add(box); - }, - - /* - * Implements \limits - */ - Limits: function (name,data) { - var atom = this.mlist.Last(); - if (!atom || atom.type != 'op') - {this.Error(this.cmd+name+" is allowed only on operators"); return} - atom.limits = data[0]; - }, - - /* - * Implements macros like those created by \def. The named control - * sequence is replaced by the string given as the first data value. - * If there is a second data value, this specifies how many arguments - * the macro uses, and in this case, those arguments are substituted - * for #1, #2, etc. within the replacement string. - * - * See the jsMath.Macro() command below for more details. - * The "newcommand" extension implements \newcommand and \def - * and are loaded automatically if needed. - */ - Macro: function (name,data) { - var text = data[0]; - if (data[1]) { - var args = []; - for (var i = 0; i < data[1]; i++) - {args[args.length] = this.GetArgument(this.cmd+name); if (this.error) return} - text = this.SubstituteArgs(args,text); - } - this.string = this.AddArgs(text,this.string.slice(this.i)); - this.i = 0; - }, - - /* - * Replace macro paramters with their values - */ - SubstituteArgs: function (args,string) { - var text = ''; var newstring = ''; var c; var i = 0; - while (i < string.length) { - c = string.charAt(i++); - if (c == this.cmd) {text += c + string.charAt(i++)} - else if (c == '#') { - c = string.charAt(i++); - if (c == "#") {text += c} else { - if (!c.match(/[1-9]/) || c > args.length) - {this.Error("Illegal macro parameter reference"); return null} - newstring = this.AddArgs(this.AddArgs(newstring,text),args[c-1]); - text = ''; - } - } else {text += c} - } - return this.AddArgs(newstring,text); - }, - - /* - * Make sure that macros are followed by a space if their names - * could accidentally be continued into the following text. - */ - AddArgs: function (s1,s2) { - if (s2.match(/^[a-z]/i) && s1.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)) {s1 += ' '} - return s1+s2; - }, - - /* - * Replace the control sequence with the given text - */ - Replace: function (name,data) { - this.mlist.Add(jsMath.mItem.TextAtom(data[0],data[1],data[2],data[3])); - }, - - /* - * Error for # (must use \#) - */ - Hash: function (name) { - this.Error("You can't use 'macro parameter character #' in math mode"); - }, - - /* - * Insert space for ~ - */ - Tilde: function (name) { - this.mlist.Add(jsMath.mItem.TextAtom('ord',' ','normal')); - }, - - /* - * Implements \llap, \rlap, etc. - */ - HandleLap: function (name) { - var box = this.ProcessArg(); if (this.error) return; - box = this.mlist.Add(new jsMath.mItem('lap',{nuc: box, lap: name})); - }, - - /* - * Adds the argument as a specific type of atom (for commands like - * \overline, etc.) - */ - HandleAtom: function (name,data) { - var arg = this.ProcessArg(this.cmd+name); if (this.error) return; - this.mlist.Add(jsMath.mItem.Atom(data[0],arg)); - }, - - - /* - * Process the character associated with a specific \mathcharcode - */ - HandleMathCode: function (name,code) { - this.HandleTeXchar(code[0],code[1],code[2]); - }, - - /* - * Add a specific character from a TeX font (use the current - * font if the type is 7 (variable) or the font is not specified) - * Load the font if it is not already loaded. - */ - HandleTeXchar: function (type,font,code) { - if (type == 7 && this.mlist.data.font != null) {font = this.mlist.data.font} - font = jsMath.TeX.fam[font]; - if (!jsMath.TeX[font]) { - jsMath.TeX[font] = []; - this.Extension(null,[jsMath.Font.URL(font)]); - } else { - this.mlist.Add(jsMath.mItem.TeXAtom(jsMath.TeX.atom[type],code,font)); - } - }, - - /* - * Add a TeX variable character or number - */ - HandleVariable: function (c) {this.HandleTeXchar(7,1,c.charCodeAt(0))}, - HandleNumber: function (c) {this.HandleTeXchar(7,0,c.charCodeAt(0))}, - - /* - * For unmapped characters, just add them in as normal - * (non-TeX) characters - */ - HandleOther: function (c) { - this.mlist.Add(jsMath.mItem.TextAtom('ord',c,'normal')); - }, - - /* - * Ignore comments in TeX data - * ### Some browsers remove the newlines, so this might cause - * extra stuff to be ignored; look into this ### - */ - HandleComment: function () { - var c; - while (this.i < this.string.length) { - c = this.string.charAt(this.i++); - if (c == "\r" || c == "\n") return; - } - }, - - /* - * Add a style change (e.g., \displaystyle, etc) - */ - HandleStyle: function (name,style) { - this.mlist.data.style = style[0]; - this.mlist.Add(new jsMath.mItem('style',{style: style[0]})); - }, - - /* - * Implements \small, \large, etc. - */ - HandleSize: function (name,size) { - this.mlist.data.size = size[0]; - this.mlist.Add(new jsMath.mItem('size',{size: size[0]})); - }, - - /* - * Set the current font (e.g., \rm, etc) - */ - HandleFont: function (name,font) { - this.mlist.data.font = font[0]; - }, - - /* - * Look for and process a control sequence - */ - HandleCS: function () { - var cmd = this.GetCommand(); if (this.error) return; - if (this.macros[cmd]) { - var macro = this.macros[cmd]; - if (typeof(macro) == "string") {macro = [macro]} - this[macro[0]](cmd,macro.slice(1)); return; - } - if (this.mathchardef[cmd]) { - this.HandleMathCode(cmd,this.mathchardef[cmd]); - return; - } - if (this.delimiter[this.cmd+cmd]) { - this.HandleMathCode(cmd,this.delimiter[this.cmd+cmd].slice(0,3)) - return; - } - this.Error("Unknown control sequence '"+this.cmd+cmd+"'"); - }, - - /* - * Process open and close braces - */ - HandleOpen: function () {this.mlist.Open()}, - HandleClose: function () { - if (this.mlist.data.openI == null) {this.Error("Extra close brace"); return} - var open = this.mlist.Get(this.mlist.data.openI); - if (!open || open.left == null) {this.mlist.Close()} - else {this.Error("Extra close brace or missing "+this.cmd+"right"); return} - }, - - /* - * Implements \left - */ - HandleLeft: function (name) { - var left = this.GetDelimiter(this.cmd+name); if (this.error) return; - this.mlist.Open(left); - }, - - /* - * Implements \right - */ - HandleRight: function (name) { - var right = this.GetDelimiter(this.cmd+name); if (this.error) return; - var open = this.mlist.Get(this.mlist.data.openI); - if (open && open.left != null) {this.mlist.Close(right)} - else {this.Error("Extra open brace or missing "+this.cmd+"left");} - }, - - /* - * Implements generalized fractions (\over, \above, etc.) - */ - HandleOver: function (name,data) { - if (this.mlist.data.overI != null) - {this.Error('Ambiguous use of '+this.cmd+name); return} - this.mlist.data.overI = this.mlist.Length(); - this.mlist.data.overF = {name: name}; - if (data.length > 0) { - this.mlist.data.overF.left = this.delimiter[data[0]]; - this.mlist.data.overF.right = this.delimiter[data[1]]; - } else if (name.match(/withdelims$/)) { - this.mlist.data.overF.left = this.GetDelimiter(this.cmd+name); if (this.error) return; - this.mlist.data.overF.right = this.GetDelimiter(this.cmd+name); if (this.error) return; - } else { - this.mlist.data.overF.left = null; - this.mlist.data.overF.right = null; - } - if (name.match(/^above/)) { - this.mlist.data.overF.thickness = this.GetDimen(this.cmd+name,1); - if (this.error) return; - } else { - this.mlist.data.overF.thickness = null; - } - }, - - /* - * Add a superscript to the preceeding atom - */ - HandleSuperscript: function () { - var base = this.mlist.Last(); - if (this.mlist.data.overI == this.mlist.Length()) {base = null} - if (base == null || (!base.atom && base.type != 'box' && base.type != 'frac')) - {base = this.mlist.Add(jsMath.mItem.Atom('ord',{type:null}))} - if (base.sup) { - if (base.sup.isPrime) {base = this.mlist.Add(jsMath.mItem.Atom('ord',{type:null}))} - else {this.Error("Double exponent: use braces to clarify"); return} - } - base.sup = this.ProcessScriptArg('superscript'); if (this.error) return; - }, - - /* - * Add a subscript to the preceeding atom - */ - HandleSubscript: function () { - var base = this.mlist.Last(); - if (this.mlist.data.overI == this.mlist.Length()) {base = null} - if (base == null || (!base.atom && base.type != 'box' && base.type != 'frac')) - {base = this.mlist.Add(jsMath.mItem.Atom('ord',{type:null}))} - if (base.sub) {this.Error("Double subscripts: use braces to clarify"); return} - base.sub = this.ProcessScriptArg('subscript'); if (this.error) return; - }, - - /* - * Parse a TeX math string, handling macros, etc. - */ - Parse: function () { - var c; - while (this.i < this.string.length) { - c = this.string.charAt(this.i++); - if (this.mathchar[c]) {this.HandleMathCode(c,this.mathchar[c])} - else if (this.special[c]) {this[this.special[c]](c)} - else if (this.letter.test(c)) {this.HandleVariable(c)} - else if (this.number.test(c)) {this.HandleNumber(c)} - else {this.HandleOther(c)} - } - if (this.mlist.data.openI != null) { - var open = this.mlist.Get(this.mlist.data.openI); - if (open.left) {this.Error("Missing "+this.cmd+"right")} - else {this.Error("Missing close brace")} - } - if (this.mlist.data.overI != null) {this.mlist.Over()} - }, - - /* - * Perform the processing of Appendix G - */ - Atomize: function () { - var data = this.mlist.init; - if (!this.error) this.mlist.Atomize(data.style,data.size) - }, - - /* - * Produce the final HTML. - * - * We have to wrap the HTML it appropriate tags to hide its - * actual dimensions when these don't match the TeX dimensions of the - * results. We also include an image to force the results to take up - * the right amount of space. The results may need to be vertically - * adjusted to make the baseline appear in the correct place. - */ - Typeset: function () { - var data = this.mlist.init; - var box = this.typeset = this.mlist.Typeset(data.style,data.size); - if (this.error) {return ''+this.error+''} - if (box.format == 'null') {return ''}; - - box.Styled().Remeasured(); var isSmall = 0; var isBig = 0; - if (box.bh > box.h && box.bh > jsMath.h+.001) {isSmall = 1} - if (box.bd > box.d && box.bd > jsMath.d+.001) {isSmall = 1} - if (box.h > jsMath.h || box.d > jsMath.d) {isBig = 1} - - var html = box.html; - if (isSmall) {// hide the extra size - if (jsMath.Browser.allowAbsolute) { - var y = 0; - if (box.bh > jsMath.h+.001) {y = jsMath.h - box.bh} - html = jsMath.HTML.Absolute(html,box.w,jsMath.h,0,y); - } else if (jsMath.Browser.valignBug) { - // remove line height - html = '' - + html + ''; - } else if (!jsMath.Browser.operaLineHeightBug) { - // remove line height and try to hide the depth - var dy = jsMath.HTML.Em(Math.max(0,box.bd-jsMath.hd)/3); - html = '' + html + ''; - } - isBig = 1; - } - if (isBig) { - // add height and depth to the line - // (force a little extra to separate lines if needed) - html += jsMath.HTML.Blank(0,box.h+.05,box.d+.05); - } - return ''+html+''; - } - -}); - -/* - * Make these characters special (and call the given routines) - */ -jsMath.Parser.prototype.AddSpecial({ - cmd: 'HandleCS', - open: 'HandleOpen', - close: 'HandleClose' -}); - - -/* - * The web-page author can call jsMath.Macro to create additional - * TeX macros for use within his or her mathematics. See the - * author's documentation for more details. - */ - -jsMath.Add(jsMath,{ - Macro: function (name) { - var macro = jsMath.Parser.prototype.macros; - macro[name] = ['Macro']; - for (var i = 1; i < arguments.length; i++) - {macro[name][macro[name].length] = arguments[i]} - } -}); - -/* - * Use these commands to create macros that load - * JavaScript files and reprocess the mathematics when - * the file is loaded. This lets you to have macros or - * LaTeX environments that autoload their own definitions - * only when they are needed, saving initial download time - * on pages where they are not used. See the author's - * documentation for more details. - * - */ - -jsMath.Extension = { - - safeRequire: 1, // disables access to files outside of jsMath/extensions - - Macro: function (name,file) { - var macro = jsMath.Parser.prototype.macros; - if (file == null) {file = name} - macro[name] = ['Extension',file]; - }, - - LaTeX: function (env,file) { - var latex = jsMath.Parser.prototype.environments; - latex[env] = ['Extension',file,'environments']; - }, - - Font: function (name,font) { - if (font == null) {font = name + "10"} - var macro = jsMath.Parser.prototype.macros; - macro[name] = ['Extension',jsMath.Font.URL(font)]; - }, - - MathChar: function (font,defs) { - var fam = jsMath.TeX.famName[font]; - if (fam == null) { - fam = jsMath.TeX.fam.length; - jsMath.TeX.fam[fam] = font; - jsMath.TeX.famName[font] = fam; - } - var mathchardef = jsMath.Parser.prototype.mathchardef; - for (var c in defs) {mathchardef[c] = [defs[c][0],fam,defs[c][1]]} - }, - - Require: function (file,show) { - if (this.safeRequire && (file.match(/\.\.\/|[^-a-z0-9.\/:_+=%~]/i) || - (file.match(/:/) && file.substr(0,jsMath.root.length) != jsMath.root))) { - jsMath.Setup.loaded[file] = 1; - return; - } - jsMath.Setup.Script(this.URL(file),show); - }, - - URL: function (file) { - file = file.replace(/^\s+|\s+$/g,''); - if (!file.match(/^([a-z]+:|\/|fonts|extensions\/)/i)) {file = 'extensions/'+file} - if (!file.match(/\.js$/)) {file += '.js'} - return file; - } -} - - -/***************************************************************************/ - -/* - * These routines look through the web page for math elements to process. - * There are two main entry points you can call: - * - * - * or - * - * - * The first will process the page asynchronously (so the user can start - * reading the top of the file while jsMath is still processing the bottom) - * while the second does not update until all the mathematics is typeset. - */ - -jsMath.Add(jsMath,{ - /* - * Call this at the bottom of your HTML page to have the - * mathematics typeset asynchronously. This lets the user - * start reading the mathematics while the rest of the page - * is being processed. - */ - Process: function (obj) { - jsMath.Setup.Body(); - jsMath.Script.Push(jsMath.Translate,'Asynchronous',obj); - }, - - /* - * Call this at the bottom of your HTML page to have the - * mathematics typeset before the page is displayed. - * This can take a long time, so the user could cancel the - * page before it is complete; use it with caution, and only - * when there is a relatively small amount of math on the page. - */ - ProcessBeforeShowing: function (obj) { - jsMath.Setup.Body(); - var method = (jsMath.Controls.cookie.asynch ? "Asynchronous": "Synchronous"); - jsMath.Script.Push(jsMath.Translate,method,obj); - }, - - /* - * Process the contents of a single element. It must be of - * class "math". - */ - ProcessElement: function (obj) { - jsMath.Setup.Body(); - jsMath.Script.Push(jsMath.Translate,'ProcessOne',obj); - } - -}); - -jsMath.Translate = { - - element: [], // the list of math elements on the page - cancel: 0, // set to 1 to cancel asynchronous processing - - /* - * Parse a TeX string in Text or Display mode and return - * the HTML for it (taking it from the cache, if available) - */ - Parse: function (style,s,noCache) { - var cache = jsMath.Global.cache[style]; - if (!cache[jsMath.em]) {cache[jsMath.em] = {}} - var HTML = cache[jsMath.em][s]; - if (!HTML || noCache) { - var parse = jsMath.Parse(s,null,null,style); - parse.Atomize(); HTML = parse.Typeset(); - if (!noCache) {cache[jsMath.em][s] = HTML} - } - return HTML; - }, - - TextMode: function (s,noCache) {this.Parse('T',s,noCache)}, - DisplayMode: function (s,noCache) {this.Parse('D',s,noCache)}, - - /* - * Return the text of a given DOM element - */ - GetElementText: function (element) { - if (element.childNodes.length == 1 && element.childNodes[0].nodeName === "#comment") { - var result = element.childNodes[0].nodeValue.match(/^\[CDATA\[(.*)\]\]$/); - if (result != null) {return result[1]}; - } - var text = this.recursiveElementText(element); - element.alt = text; - if (text.search('&') >= 0) { - text = text.replace(/</g,'<'); - text = text.replace(/>/g,'>'); - text = text.replace(/"/g,'"'); - text = text.replace(/&/g,'&'); - } - return text; - }, - recursiveElementText: function (element) { - if (element.nodeValue != null) { - if (element.nodeName !== "#comment") {return element.nodeValue} - return element.nodeValue.replace(/^\[CDATA\[((.|\n)*)\]\]$/,"$1"); - } - if (element.childNodes.length === 0) {return " "} - var text = ''; - for (var i = 0; i < element.childNodes.length; i++) - {text += this.recursiveElementText(element.childNodes[i])} - return text; - }, - - /* - * Move hidden to the location of the math element to be - * processed and reinitialize sizes for that location. - */ - ResetHidden: function (element) { - element.innerHTML = - '' - + jsMath.Browser.operaHiddenFix; // needed by Opera in tables - element.className = ''; - jsMath.hidden = element.firstChild; - if (!jsMath.BBoxFor("x").w) {jsMath.hidden = jsMath.hiddenTop} - jsMath.ReInit(); - }, - - - /* - * Typeset the contents of an element in \textstyle or \displaystyle - */ - ConvertMath: function (style,element,noCache) { - var text = this.GetElementText(element); - this.ResetHidden(element); - if (text.match(/^\s*\\nocache([^a-zA-Z])/)) - {noCache = true; text = text.replace(/\s*\\nocache/,'')} - text = this.Parse(style,text,noCache); - element.className = 'typeset'; - element.innerHTML = text; - }, - - /* - * Process a math element - */ - ProcessElement: function (element) { - this.restart = 0; - if (!element.className.match(/(^| )math( |$)/)) return; // don't reprocess elements - var noCache = (element.className.toLowerCase().match(/(^| )nocache( |$)/) != null); - try { - var style = (element.tagName.toLowerCase() == 'div' ? 'D' : 'T'); - this.ConvertMath(style,element,noCache); - element.onclick = jsMath.Click.CheckClick; - element.ondblclick = jsMath.Click.CheckDblClick; - } catch (err) { - if (element.alt) { - var tex = element.alt; - tex = tex.replace(/&/g,'&') - .replace(//g,'>'); - element.innerHTML = tex; - element.className = 'math'; - if (noCache) {element.className += ' nocache'} - } - jsMath.hidden = jsMath.hiddenTop; - } - }, - - /* - * Asynchronously process all the math elements starting with - * the k-th one - */ - ProcessElements: function (k) { - jsMath.Script.blocking = 1; - if (k >= this.element.length || this.cancel) { - this.ProcessComplete(); - if (this.cancel) { - jsMath.Message.Set("Process Math: Canceled"); - jsMath.Message.Clear() - } - jsMath.Script.blocking = 0; - jsMath.Script.Process(); - } else { - var savedQueue = jsMath.Script.SaveQueue(); - this.ProcessElement(this.element[k]); - if (this.restart) { - jsMath.Script.Push(this,'ProcessElements',k); - jsMath.Script.RestoreQueue(savedQueue); - jsMath.Script.blocking = 0; - setTimeout('jsMath.Script.Process()',jsMath.Browser.delay); - } else { - jsMath.Script.RestoreQueue(savedQueue); - k++; var p = Math.floor(100 * k / this.element.length); - jsMath.Message.Set('Processing Math: '+p+'%'); - setTimeout('jsMath.Translate.ProcessElements('+k+')',jsMath.Browser.delay); - } - } - }, - - /* - * Start the asynchronous processing of mathematics - */ - Asynchronous: function (obj) { - if (!jsMath.initialized) {jsMath.Init()} - this.element = this.GetMathElements(obj); - jsMath.Script.blocking = 1; - this.cancel = 0; this.asynchronous = 1; - jsMath.Message.Set('Processing Math: 0%',1); - setTimeout('jsMath.Translate.ProcessElements(0)',jsMath.Browser.delay); - }, - - /* - * Do synchronous processing of mathematics - */ - Synchronous: function (obj,i) { - if (i == null) { - if (!jsMath.initialized) {jsMath.Init()} - this.element = this.GetMathElements(obj); - i = 0; - } - this.asynchronous = 0; - while (i < this.element.length) { - this.ProcessElement(this.element[i]); - if (this.restart) { - jsMath.Synchronize('jsMath.Translate.Synchronous(null,'+i+')'); - jsMath.Script.Process(); - return; - } - i++; - } - this.ProcessComplete(1); - }, - - /* - * Synchronously process the contents of a single element - */ - ProcessOne: function (obj) { - if (!jsMath.initialized) {jsMath.Init()} - this.element = [obj]; - this.Synchronous(null,0); - }, - - /* - * Look up all the math elements on the page and - * put them in a list sorted from top to bottom of the page - */ - GetMathElements: function (obj) { - var element = []; var k; - if (!obj) {obj = jsMath.document} - if (typeof(obj) == 'string') {obj = jsMath.document.getElementById(obj)} - if (!obj.getElementsByTagName) return null; - var math = obj.getElementsByTagName('div'); - for (k = 0; k < math.length; k++) { - if (math[k].className && math[k].className.match(/(^| )math( |$)/)) { - if (jsMath.Browser.renameOK && obj.getElementsByName) - {math[k].setAttribute('name','_jsMath_')} - else {element[element.length] = math[k]} - } - } - math = obj.getElementsByTagName('span'); - for (k = 0; k < math.length; k++) { - if (math[k].className && math[k].className.match(/(^| )math( |$)/)) { - if (jsMath.Browser.renameOK && obj.getElementsByName) - {math[k].setAttribute('name','_jsMath_')} - else {element[element.length] = math[k]} - } - } - // this gets the SPAN and DIV elements interleaved in order - if (jsMath.Browser.renameOK && obj.getElementsByName) { - element = obj.getElementsByName('_jsMath_'); - } else if (jsMath.hidden.sourceIndex) { - element.sort(function (a,b) {return a.sourceIndex - b.sourceIndex}); - } - return element; - }, - - /* - * Remove the window message about processing math - * and clean up any marked or
tags - */ - ProcessComplete: function (noMessage) { - if (jsMath.Browser.renameOK) { - var element = jsMath.document.getElementsByName('_jsMath_'); - for (var i = element.length-1; i >= 0; i--) { - element[i].removeAttribute('name'); - } - } - jsMath.hidden = jsMath.hiddenTop; - this.element = []; this.restart = null; - if (!noMessage) { - jsMath.Message.Set('Processing Math: Done'); - jsMath.Message.Clear(); - } - jsMath.Message.UnBlank(); - if (jsMath.Browser.safariImgBug && - (jsMath.Controls.cookie.font == 'symbol' || - jsMath.Controls.cookie.font == 'image')) { - // - // For Safari, the images don't always finish - // updating, so nudge the window to cause a - // redraw. (Hack!) - // - if (this.timeout) {clearTimeout(this.timeout)} - this.timeout = setTimeout("jsMath.window.resizeBy(-1,0); " - + "jsMath.window.resizeBy(1,0); " - + "jsMath.Translate.timeout = null",2000); - } - }, - - /* - * Cancel procesing elements - */ - Cancel: function () { - jsMath.Translate.cancel = 1; - if (jsMath.Script.cancelTimer) {jsMath.Script.cancelLoad()} - } - -}; - -jsMath.Add(jsMath,{ - // - // Synchronize these with the loading of the tex2math plugin. - // - ConvertTeX: function (element) {jsMath.Script.Push(jsMath.tex2math,'ConvertTeX',element)}, - ConvertTeX2: function (element) {jsMath.Script.Push(jsMath.tex2math,'ConvertTeX2',element)}, - ConvertLaTeX: function (element) {jsMath.Script.Push(jsMath.tex2math,'ConvertLaTeX',element)}, - ConvertCustom: function (element) {jsMath.Script.Push(jsMath.tex2math,'ConvertCustom',element)}, - CustomSearch: function (om,cm,od,cd) {jsMath.Script.Push(null,function () {jsMath.tex2math.CustomSearch(om,cm,od,cd)})}, - tex2math: { - ConvertTeX: function () {}, - ConvertTeX2: function () {}, - ConvertLaTeX: function () {}, - ConvertCustom: function () {}, - CustomSearch: function () {} - } -}); -jsMath.Synchronize = jsMath.Script.Synchronize; - -/***************************************************************************/ - - -/* - * Initialize things - */ -try { - if (window.parent != window && window.jsMathAutoload) { - window.parent.jsMath = jsMath; - jsMath.document = window.parent.document; - jsMath.window = window.parent; - } -} catch (err) {} - - -jsMath.Global.Register(); -jsMath.Loaded(); -jsMath.Controls.GetCookie(); -jsMath.Setup.Source(); -jsMath.Global.Init(); -jsMath.Script.Init(); -jsMath.Setup.Fonts(); -if (jsMath.document.body) {jsMath.Setup.Body()} -jsMath.Setup.User("onload"); - -}} From b40674a89dc11cc50329f63e3a079b2c697aec19 Mon Sep 17 00:00:00 2001 From: Jason Grout Date: Wed, 11 Jan 2012 14:15:08 -0500 Subject: [PATCH 003/115] Remove the jsmath.py file. --- sagenb/notebook/jsmath.py | 114 -------------------------------------- 1 file changed, 114 deletions(-) delete mode 100644 sagenb/notebook/jsmath.py diff --git a/sagenb/notebook/jsmath.py b/sagenb/notebook/jsmath.py deleted file mode 100644 index 46b7891ab..000000000 --- a/sagenb/notebook/jsmath.py +++ /dev/null @@ -1,114 +0,0 @@ -# -*- coding: utf-8 -* -""" -jsMath support for the notebook - -Provides code to parse HTML, changing \$'s and \$\$'s to - tags to allow jsMath to process them. - -AUTHORS: - -- William Stein (?) -- initial revision - -- Tim Dumol (Oct 6, 2009) -- Added HTMLMathParser. Made `math_parser` skip - * - * (If you are including this file into your page via Server-Side - * Includes, you should remove line above.) - * - * You can make copies of this file with different settings - * if you need to have several different configurations. - * - **********************************************************************/ - -if (!window.jsMath) { - window.jsMath = {}; -} - -// Move the jsMath button 20 pixels from the right edge (apparently -// in some browsers, it covers up the scroll bar) -jsMath.styles = { - '#jsMath_button' : 'position:fixed; bottom:1px; right:20px; ' + - 'background-color:white; border: solid 1px #959595; margin:0px; ' + - 'padding: 0px 3px 1px 3px; z-index:102; color:black; ' + - 'text-decoration:none; font-size:x-small; width:auto; cursor:hand;' -}; - -jsMath.Easy = { - // - // The URL of the root jsMath directory on your server - // (it must be in the same domain as the HTML page). - // It should include "http://yoursite.com/", or should - // be relative to the root of your server. It is possible - // to be a relative URL, but it will be relative to the - // HTML page loading this file. - // - // If you leave this blank, jsMath will try to look it up from - // the URL where it loaded this file, but that may not work. - // - root: "/javascript/jsmath", - - // - // The default scaling factor for mathematics compared to the - // surrounding text. - // - scale: 115, - - // - // 1 means use the autoload plug-in to decide if jsMath should be loaded - // 0 means always load jsMath - // - autoload: 0, - - // - // Setting any of these will cause the tex2math plugin to be used - // to add the
and tags that jsMath needs. See the - // documentation for the tex2math plugin for more information. - // - processSlashParens: 0, // process \(...\) in text? - processSlashBrackets: 0, // process \[...\] in text? - processDoubleDollars: 0, // process $$...$$ in text? - processSingleDollars: 0, // process $...$ in text? - processLaTeXenvironments: 0, // process \begin{xxx}...\end{xxx} outside math mode? - fixEscapedDollars: 0, // convert \$ to $ outside of math mode? - doubleDollarsAreInLine: 0, // make $$...$$ be in-line math? - allowDisableTag: 0, // allow ID="tex2math_off" to disable tex2math? - // - // If you want to use your own custom delimiters for math instead - // of the usual ones, then uncomment the following four lines and - // insert your own delimiters within the quotes. You may want to - // turn off processing of the dollars and other delimiters above - // as well, though you can use them in combination with the - // custom delimiters if you wish. See the tex2math documentation - // for more details. - // - //customDelimiters: [ - // '[math]','[/math]', // to begin and end in-line math - // '[display]','[/display]' // to begin and end display math - //], - - // - // Disallow the use of the @(...) mechanism for including raw HTML - // in the contents of \hbox{}? (If used in a content-management system - // where users are allowed to enter mathematics, setting this to 0 - // would allow them to enter arbitrary HTML code within their - // math formulas, and that poses a security risk.) - // - safeHBoxes: 0, - - // - // Show TeX source when mathematics is double-clicked? - // - allowDoubleClicks: 1, - - // - // Show jsMath font warning messages? (Disabling this prevents yours - // users from finding out that they can have a better experience on your - // site by installing some fonts, so don't disable this). - // - showFontWarnings: 0, - - // - // Use "Process" or "ProcessBeforeShowing". See the jsMath - // author's documentation for the difference between these - // two routines. - // - method: "Process", - - // - // List of plug-ins and extensions that you want to be - // loaded automatically. E.g. - // ["plugins/mimeTeX.js","extensions/AMSsymbols.js"] - // - // See http://www.math.union.edu/~dpvc/jsMath/authors/ - // - loadFiles: [ - "extensions/verb.js", - "extensions/moreArrows.js", - "extensions/AMSmath.js", - "extensions/AMSsymbols.js" - ], - - // - // List of fonts to load automatically. E.g. - // ["cmmib10"] - // - loadFonts: [], - - // - // List of macros to define. These are of the form - // name: value - // where 'value' is the replacement text for the macro \name. - // The 'value' can also be [value,n] where 'value' is the replacement - // text and 'n' is the number of parameters for the macro. - // Note that backslashes must be doubled in the replacement string. - // E.g., - // { - // RR: '{\\bf R}', - // bold: ['{\\bf #1}', 1] - // } - // - // Sage-specific jsMath macros. - macros: { - {{ jsmath_macros }} - }, - - // - // Allow jsMath to enter global mode? - // (Uses frames, so may not always work with complex web sites) - // - allowGlobal: 1, - - // - // Disable image fonts? (In case you don't load them on your server.) - // - // If we set this to 1, we do not need to load plugins/noImageFonts.js - {% if jsmath_image_fonts %} - noImageFonts: 0 - {% else %} - noImageFonts: 1 - {% endif %} -}; - -/****************************************************************/ -/****************************************************************/ -// -// DO NOT MAKE CHANGES BELOW THIS -// -/****************************************************************/ -/****************************************************************/ - -if (jsMath.Easy.root === "") { - jsMath.Easy.root = document.getElementsByTagName("script"); - jsMath.Easy.root = jsMath.Easy.root[jsMath.Easy.root.length - 1].src; - if (jsMath.Easy.root.match(/\/easy\/[^\/]*$/)) { - jsMath.Easy.root = jsMath.Easy.root.replace(/\/easy\/[^\/]*$/, ""); - } else { - jsMath.Easy.root = jsMath.Easy.root.replace(/\/(jsMath\/(easy\/)?)?[^\/]*$/, "/jsMath"); - } -} -// trim trailing "/" if any -jsMath.Easy.root = jsMath.Easy.root.replace(/\/$/, ""); - -document.write(' {% endif %} -{% if JSMATH %} +{% if MATHJAX %} From d76fba373d085c0c35e29683a8229aadcafba557 Mon Sep 17 00:00:00 2001 From: Jason Grout Date: Thu, 12 Jan 2012 14:44:11 -0600 Subject: [PATCH 008/115] Fix a bug in separate_script_tags so that the opening tag matches only to the nearest >. Also, document the jQuery feature which also separates out script tags. --- sagenb/data/sage/js/notebook_lib.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sagenb/data/sage/js/notebook_lib.js b/sagenb/data/sage/js/notebook_lib.js index f6c74cc10..4f09216ea 100644 --- a/sagenb/data/sage/js/notebook_lib.js +++ b/sagenb/data/sage/js/notebook_lib.js @@ -3784,10 +3784,14 @@ function separate_script_tags(text) { OUTPUT list of two strings: [text w/o script tags (but includes math/tex script tags), content of script tags] + + + This is similar to what jQuery does when inserting html. + See http://stackoverflow.com/questions/610995/jquery-cant-append-script-element */ var i, j, k, left_tag, right_tag, s, script, new_text, script_end, left_match; - - left_tag = new RegExp(/<(\s)*script(.*)?>/i); + + left_tag = new RegExp(/<(\s)*script([^>]*)?>/i); right_tag = new RegExp(/<(\s*)\/(\s*)script(\s)*>/i); script = ''; From 4580a36ce5fcc0bbc5704aeb801f6667d004ca59 Mon Sep 17 00:00:00 2001 From: Jason Grout Date: Thu, 12 Jan 2012 15:31:38 -0600 Subject: [PATCH 009/115] Add MathJax 1.1a, after deleting the png fonts directory. --- sagenb/data/mathjax/.gitignore | 2 + sagenb/data/mathjax/LICENSE | 202 ++ sagenb/data/mathjax/MathJax.js | 30 + sagenb/data/mathjax/README-branch.txt | 1 + sagenb/data/mathjax/README.md | 52 + sagenb/data/mathjax/config/Accessible-full.js | 95 + sagenb/data/mathjax/config/Accessible.js | 86 + .../data/mathjax/config/MML_HTMLorMML-full.js | 61 + sagenb/data/mathjax/config/MML_HTMLorMML.js | 52 + sagenb/data/mathjax/config/MMLorHTML.js | 16 + .../config/TeX-AMS-MML_HTMLorMML-full.js | 82 + .../mathjax/config/TeX-AMS-MML_HTMLorMML.js | 73 + .../data/mathjax/config/TeX-AMS_HTML-full.js | 62 + sagenb/data/mathjax/config/TeX-AMS_HTML.js | 56 + sagenb/data/mathjax/config/default.js | 606 +++++ sagenb/data/mathjax/config/local/local.js | 37 + sagenb/data/mathjax/docs/.gitignore | 10 + sagenb/data/mathjax/docs/Makefile | 137 + sagenb/data/mathjax/docs/html/CSS-styles.html | 171 ++ .../data/mathjax/docs/html/HTML-snippets.html | 168 ++ .../mathjax/docs/html/_images/mt_head.png | Bin 0 -> 29053 bytes .../mathjax/docs/html/_images/mt_menu.png | Bin 0 -> 15145 bytes .../docs/html/_images/mt_templates.png | Bin 0 -> 15548 bytes .../mathjax/docs/html/_images/wp_menu.png | Bin 0 -> 7278 bytes .../docs/html/_images/wp_templates.png | Bin 0 -> 7053 bytes .../mathjax/docs/html/_sources/CSS-styles.txt | 79 + .../docs/html/_sources/HTML-snippets.txt | 83 + .../mathjax/docs/html/_sources/api/ajax.txt | 214 ++ .../docs/html/_sources/api/callback.txt | 259 ++ .../docs/html/_sources/api/elementjax.txt | 125 + .../mathjax/docs/html/_sources/api/html.txt | 133 + .../mathjax/docs/html/_sources/api/hub.txt | 347 +++ .../mathjax/docs/html/_sources/api/index.txt | 46 + .../docs/html/_sources/api/inputjax.txt | 89 + .../mathjax/docs/html/_sources/api/jax.txt | 157 ++ .../docs/html/_sources/api/message.txt | 119 + .../mathjax/docs/html/_sources/api/object.txt | 210 ++ .../docs/html/_sources/api/outputjax.txt | 97 + .../mathjax/docs/html/_sources/api/queue.txt | 99 + .../mathjax/docs/html/_sources/api/signal.txt | 154 ++ .../docs/html/_sources/api/variable.txt | 83 + .../mathjax/docs/html/_sources/callbacks.txt | 228 ++ .../mathjax/docs/html/_sources/community.txt | 59 + .../docs/html/_sources/config-files.txt | 192 ++ .../docs/html/_sources/configuration.txt | 454 ++++ .../mathjax/docs/html/_sources/dynamic.txt | 167 ++ .../mathjax/docs/html/_sources/glossary.txt | 75 + .../data/mathjax/docs/html/_sources/index.txt | 88 + .../docs/html/_sources/installation.txt | 340 +++ .../mathjax/docs/html/_sources/jsMath.txt | 49 + .../mathjax/docs/html/_sources/mathjax.txt | 36 + .../mathjax/docs/html/_sources/mathml.txt | 97 + .../data/mathjax/docs/html/_sources/model.txt | 226 ++ .../html/_sources/options/FontWarnings.txt | 140 + .../docs/html/_sources/options/HTML-CSS.txt | 134 + .../docs/html/_sources/options/MMLorHTML.txt | 42 + .../docs/html/_sources/options/MathML.txt | 27 + .../docs/html/_sources/options/MathMenu.txt | 79 + .../docs/html/_sources/options/MathZoom.txt | 42 + .../docs/html/_sources/options/NativeMML.txt | 61 + .../docs/html/_sources/options/TeX.txt | 81 + .../docs/html/_sources/options/hub.txt | 230 ++ .../docs/html/_sources/options/index.txt | 91 + .../docs/html/_sources/options/jsMath2jax.txt | 47 + .../docs/html/_sources/options/mml2jax.txt | 48 + .../docs/html/_sources/options/tex2jax.txt | 132 + .../mathjax/docs/html/_sources/output.txt | 159 ++ .../docs/html/_sources/platforms/index.txt | 78 + .../html/_sources/platforms/movable-type.txt | 38 + .../html/_sources/platforms/wordpress.txt | 42 + .../mathjax/docs/html/_sources/queues.txt | 254 ++ .../mathjax/docs/html/_sources/signals.txt | 161 ++ .../data/mathjax/docs/html/_sources/start.txt | 396 +++ .../mathjax/docs/html/_sources/startup.txt | 160 ++ .../docs/html/_sources/synchronize.txt | 64 + .../data/mathjax/docs/html/_sources/tex.txt | 1311 ++++++++++ .../mathjax/docs/html/_sources/typeset.txt | 234 ++ .../mathjax/docs/html/_sources/upgrade.txt | 259 ++ .../mathjax/docs/html/_sources/whats-new.txt | 172 ++ .../data/mathjax/docs/html/_static/basic.css | 528 ++++ .../mathjax/docs/html/_static/doctools.js | 247 ++ .../data/mathjax/docs/html/_static/file.png | Bin 0 -> 392 bytes .../data/mathjax/docs/html/_static/jquery.js | 154 ++ .../docs/html/_static/mathjax_mathml.user.js | 18 + .../html/_static/mathjax_wikipedia.user.js | 31 + .../data/mathjax/docs/html/_static/minus.png | Bin 0 -> 199 bytes sagenb/data/mathjax/docs/html/_static/mj.css | 226 ++ .../data/mathjax/docs/html/_static/plus.png | Bin 0 -> 199 bytes .../mathjax/docs/html/_static/pygments.css | 62 + .../mathjax/docs/html/_static/searchtools.js | 518 ++++ .../mathjax/docs/html/_static/underscore.js | 16 + sagenb/data/mathjax/docs/html/api/ajax.html | 436 ++++ .../data/mathjax/docs/html/api/callback.html | 433 ++++ .../mathjax/docs/html/api/elementjax.html | 284 ++ sagenb/data/mathjax/docs/html/api/html.html | 313 +++ sagenb/data/mathjax/docs/html/api/hub.html | 698 +++++ sagenb/data/mathjax/docs/html/api/index.html | 144 ++ .../data/mathjax/docs/html/api/inputjax.html | 223 ++ sagenb/data/mathjax/docs/html/api/jax.html | 326 +++ .../data/mathjax/docs/html/api/message.html | 285 ++ sagenb/data/mathjax/docs/html/api/object.html | 354 +++ .../data/mathjax/docs/html/api/outputjax.html | 241 ++ sagenb/data/mathjax/docs/html/api/queue.html | 244 ++ sagenb/data/mathjax/docs/html/api/signal.html | 332 +++ .../data/mathjax/docs/html/api/variable.html | 218 ++ sagenb/data/mathjax/docs/html/callbacks.html | 303 +++ sagenb/data/mathjax/docs/html/community.html | 153 ++ .../data/mathjax/docs/html/config-files.html | 276 ++ .../data/mathjax/docs/html/configuration.html | 498 ++++ sagenb/data/mathjax/docs/html/dynamic.html | 258 ++ sagenb/data/mathjax/docs/html/genindex.html | 300 +++ sagenb/data/mathjax/docs/html/glossary.html | 158 ++ sagenb/data/mathjax/docs/html/index.html | 191 ++ .../data/mathjax/docs/html/installation.html | 380 +++ sagenb/data/mathjax/docs/html/jsMath.html | 142 + sagenb/data/mathjax/docs/html/mathjax.html | 135 + sagenb/data/mathjax/docs/html/mathml.html | 192 ++ sagenb/data/mathjax/docs/html/model.html | 303 +++ .../docs/html/options/FontWarnings.html | 262 ++ .../mathjax/docs/html/options/HTML-CSS.html | 258 ++ .../mathjax/docs/html/options/MMLorHTML.html | 141 + .../mathjax/docs/html/options/MathML.html | 130 + .../mathjax/docs/html/options/MathMenu.html | 192 ++ .../mathjax/docs/html/options/MathZoom.html | 145 ++ .../mathjax/docs/html/options/NativeMML.html | 169 ++ .../data/mathjax/docs/html/options/TeX.html | 191 ++ .../data/mathjax/docs/html/options/hub.html | 366 +++ .../data/mathjax/docs/html/options/index.html | 191 ++ .../mathjax/docs/html/options/jsMath2jax.html | 145 ++ .../mathjax/docs/html/options/mml2jax.html | 145 ++ .../mathjax/docs/html/options/tex2jax.html | 240 ++ sagenb/data/mathjax/docs/html/output.html | 243 ++ .../mathjax/docs/html/platforms/index.html | 176 ++ .../docs/html/platforms/movable-type.html | 142 + .../docs/html/platforms/wordpress.html | 144 ++ sagenb/data/mathjax/docs/html/queues.html | 332 +++ sagenb/data/mathjax/docs/html/search.html | 98 + sagenb/data/mathjax/docs/html/searchindex.js | 1 + sagenb/data/mathjax/docs/html/signals.html | 255 ++ sagenb/data/mathjax/docs/html/start.html | 444 ++++ sagenb/data/mathjax/docs/html/startup.html | 249 ++ .../data/mathjax/docs/html/synchronize.html | 158 ++ sagenb/data/mathjax/docs/html/tex.html | 1366 ++++++++++ sagenb/data/mathjax/docs/html/typeset.html | 322 +++ sagenb/data/mathjax/docs/html/upgrade.html | 327 +++ sagenb/data/mathjax/docs/html/whats-new.html | 264 ++ .../data/mathjax/docs/source/CSS-styles.rst | 79 + .../mathjax/docs/source/HTML-snippets.rst | 83 + .../source/_static/mathjax_mathml.user.js | 18 + .../source/_static/mathjax_wikipedia.user.js | 31 + sagenb/data/mathjax/docs/source/api/ajax.rst | 214 ++ .../data/mathjax/docs/source/api/callback.rst | 259 ++ .../mathjax/docs/source/api/elementjax.rst | 125 + sagenb/data/mathjax/docs/source/api/html.rst | 133 + sagenb/data/mathjax/docs/source/api/hub.rst | 347 +++ sagenb/data/mathjax/docs/source/api/index.rst | 46 + .../data/mathjax/docs/source/api/inputjax.rst | 89 + sagenb/data/mathjax/docs/source/api/jax.rst | 157 ++ .../data/mathjax/docs/source/api/message.rst | 119 + .../data/mathjax/docs/source/api/object.rst | 210 ++ .../mathjax/docs/source/api/outputjax.rst | 97 + sagenb/data/mathjax/docs/source/api/queue.rst | 99 + .../data/mathjax/docs/source/api/signal.rst | 154 ++ .../data/mathjax/docs/source/api/variable.rst | 83 + sagenb/data/mathjax/docs/source/callbacks.rst | 228 ++ sagenb/data/mathjax/docs/source/community.rst | 59 + sagenb/data/mathjax/docs/source/conf.py | 197 ++ .../data/mathjax/docs/source/config-files.rst | 192 ++ .../mathjax/docs/source/configuration.rst | 454 ++++ sagenb/data/mathjax/docs/source/dynamic.rst | 167 ++ sagenb/data/mathjax/docs/source/glossary.rst | 75 + .../mathjax/docs/source/images/mt_head.png | Bin 0 -> 29053 bytes .../mathjax/docs/source/images/mt_menu.png | Bin 0 -> 15145 bytes .../docs/source/images/mt_templates.png | Bin 0 -> 15548 bytes .../mathjax/docs/source/images/wp_menu.png | Bin 0 -> 7278 bytes .../docs/source/images/wp_templates.png | Bin 0 -> 7053 bytes sagenb/data/mathjax/docs/source/index.rst | 88 + .../data/mathjax/docs/source/installation.rst | 340 +++ sagenb/data/mathjax/docs/source/jsMath.rst | 49 + sagenb/data/mathjax/docs/source/mathjax.rst | 36 + sagenb/data/mathjax/docs/source/mathml.rst | 97 + .../mathjax/docs/source/mjtheme/layout.html | 281 ++ .../docs/source/mjtheme/static/mj.css_t | 648 +++++ .../mathjax/docs/source/mjtheme/theme.conf | 30 + sagenb/data/mathjax/docs/source/model.rst | 226 ++ .../docs/source/options/FontWarnings.rst | 140 + .../mathjax/docs/source/options/HTML-CSS.rst | 134 + .../mathjax/docs/source/options/MMLorHTML.rst | 42 + .../mathjax/docs/source/options/MathML.rst | 27 + .../mathjax/docs/source/options/MathMenu.rst | 79 + .../mathjax/docs/source/options/MathZoom.rst | 42 + .../mathjax/docs/source/options/NativeMML.rst | 61 + .../data/mathjax/docs/source/options/TeX.rst | 81 + .../data/mathjax/docs/source/options/hub.rst | 230 ++ .../mathjax/docs/source/options/index.rst | 91 + .../docs/source/options/jsMath2jax.rst | 47 + .../mathjax/docs/source/options/mml2jax.rst | 48 + .../mathjax/docs/source/options/tex2jax.rst | 132 + sagenb/data/mathjax/docs/source/output.rst | 159 ++ .../mathjax/docs/source/platforms/index.rst | 78 + .../docs/source/platforms/movable-type.rst | 38 + .../docs/source/platforms/wordpress.rst | 42 + sagenb/data/mathjax/docs/source/queues.rst | 254 ++ sagenb/data/mathjax/docs/source/signals.rst | 161 ++ sagenb/data/mathjax/docs/source/start.rst | 396 +++ sagenb/data/mathjax/docs/source/startup.rst | 160 ++ .../data/mathjax/docs/source/synchronize.rst | 64 + sagenb/data/mathjax/docs/source/tex.rst | 1311 ++++++++++ sagenb/data/mathjax/docs/source/typeset.rst | 234 ++ sagenb/data/mathjax/docs/source/upgrade.rst | 259 ++ sagenb/data/mathjax/docs/source/whats-new.rst | 172 ++ .../data/mathjax/extensions/FontWarnings.js | 16 + sagenb/data/mathjax/extensions/MathMenu.js | 16 + sagenb/data/mathjax/extensions/MathZoom.js | 16 + sagenb/data/mathjax/extensions/TeX/AMSmath.js | 16 + .../data/mathjax/extensions/TeX/AMSsymbols.js | 16 + sagenb/data/mathjax/extensions/TeX/HTML.js | 16 + .../data/mathjax/extensions/TeX/autobold.js | 16 + .../data/mathjax/extensions/TeX/boldsymbol.js | 16 + .../data/mathjax/extensions/TeX/mathchoice.js | 16 + .../data/mathjax/extensions/TeX/newcommand.js | 16 + .../data/mathjax/extensions/TeX/noErrors.js | 16 + .../mathjax/extensions/TeX/noUndefined.js | 16 + sagenb/data/mathjax/extensions/TeX/unicode.js | 16 + sagenb/data/mathjax/extensions/TeX/verb.js | 16 + sagenb/data/mathjax/extensions/jsMath2jax.js | 16 + sagenb/data/mathjax/extensions/mml2jax.js | 16 + sagenb/data/mathjax/extensions/tex2jax.js | 16 + sagenb/data/mathjax/extensions/toMathML.js | 16 + .../data/mathjax/extensions/v1.0-warning.js | 16 + .../HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot | Bin 0 -> 60356 bytes .../TeX/eot/MathJax_Caligraphic-Bold.eot | Bin 0 -> 12476 bytes .../TeX/eot/MathJax_Caligraphic-Regular.eot | Bin 0 -> 12340 bytes .../HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot | Bin 0 -> 26120 bytes .../TeX/eot/MathJax_Fraktur-Regular.eot | Bin 0 -> 25512 bytes .../HTML-CSS/TeX/eot/MathJax_Main-Bold.eot | Bin 0 -> 48572 bytes .../HTML-CSS/TeX/eot/MathJax_Main-Italic.eot | Bin 0 -> 28836 bytes .../HTML-CSS/TeX/eot/MathJax_Main-Regular.eot | Bin 0 -> 49684 bytes .../TeX/eot/MathJax_Math-BoldItalic.eot | Bin 0 -> 26330 bytes .../HTML-CSS/TeX/eot/MathJax_Math-Italic.eot | Bin 0 -> 26776 bytes .../HTML-CSS/TeX/eot/MathJax_Math-Regular.eot | Bin 0 -> 26712 bytes .../TeX/eot/MathJax_SansSerif-Bold.eot | Bin 0 -> 21936 bytes .../TeX/eot/MathJax_SansSerif-Italic.eot | Bin 0 -> 19428 bytes .../TeX/eot/MathJax_SansSerif-Regular.eot | Bin 0 -> 16660 bytes .../TeX/eot/MathJax_Script-Regular.eot | Bin 0 -> 14604 bytes .../TeX/eot/MathJax_Size1-Regular.eot | Bin 0 -> 10372 bytes .../TeX/eot/MathJax_Size2-Regular.eot | Bin 0 -> 9676 bytes .../TeX/eot/MathJax_Size3-Regular.eot | Bin 0 -> 5728 bytes .../TeX/eot/MathJax_Size4-Regular.eot | Bin 0 -> 8484 bytes .../TeX/eot/MathJax_Typewriter-Regular.eot | Bin 0 -> 24664 bytes .../TeX/eot/MathJax_WinIE6-Regular.eot | Bin 0 -> 29692 bytes .../HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf | Bin 0 -> 58528 bytes .../TeX/otf/MathJax_Caligraphic-Bold.otf | Bin 0 -> 12348 bytes .../TeX/otf/MathJax_Caligraphic-Regular.otf | Bin 0 -> 12024 bytes .../HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf | Bin 0 -> 26896 bytes .../TeX/otf/MathJax_Fraktur-Regular.otf | Bin 0 -> 25872 bytes .../HTML-CSS/TeX/otf/MathJax_Main-Bold.otf | Bin 0 -> 46808 bytes .../HTML-CSS/TeX/otf/MathJax_Main-Italic.otf | Bin 0 -> 28152 bytes .../HTML-CSS/TeX/otf/MathJax_Main-Regular.otf | Bin 0 -> 47652 bytes .../TeX/otf/MathJax_Math-BoldItalic.otf | Bin 0 -> 27096 bytes .../HTML-CSS/TeX/otf/MathJax_Math-Italic.otf | Bin 0 -> 26388 bytes .../HTML-CSS/TeX/otf/MathJax_Math-Regular.otf | Bin 0 -> 26332 bytes .../TeX/otf/MathJax_SansSerif-Bold.otf | Bin 0 -> 22160 bytes .../TeX/otf/MathJax_SansSerif-Italic.otf | Bin 0 -> 18576 bytes .../TeX/otf/MathJax_SansSerif-Regular.otf | Bin 0 -> 15924 bytes .../TeX/otf/MathJax_Script-Regular.otf | Bin 0 -> 14620 bytes .../TeX/otf/MathJax_Size1-Regular.otf | Bin 0 -> 8248 bytes .../TeX/otf/MathJax_Size2-Regular.otf | Bin 0 -> 7604 bytes .../TeX/otf/MathJax_Size3-Regular.otf | Bin 0 -> 4712 bytes .../TeX/otf/MathJax_Size4-Regular.otf | Bin 0 -> 7364 bytes .../TeX/otf/MathJax_Typewriter-Regular.otf | Bin 0 -> 24184 bytes .../TeX/otf/MathJax_WinChrome-Regular.otf | Bin 0 -> 4408 bytes .../TeX/otf/MathJax_WinIE6-Regular.otf | Bin 0 -> 28096 bytes .../HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg | 765 ++++++ .../TeX/svg/MathJax_Caligraphic-Bold.svg | 136 + .../TeX/svg/MathJax_Caligraphic-Regular.svg | 134 + .../HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg | 319 +++ .../TeX/svg/MathJax_Fraktur-Regular.svg | 309 +++ .../HTML-CSS/TeX/svg/MathJax_Main-Bold.svg | 656 +++++ .../HTML-CSS/TeX/svg/MathJax_Main-Italic.svg | 374 +++ .../HTML-CSS/TeX/svg/MathJax_Main-Regular.svg | 659 +++++ .../TeX/svg/MathJax_Math-BoldItalic.svg | 331 +++ .../HTML-CSS/TeX/svg/MathJax_Math-Italic.svg | 331 +++ .../HTML-CSS/TeX/svg/MathJax_Math-Regular.svg | 330 +++ .../TeX/svg/MathJax_SansSerif-Bold.svg | 280 ++ .../TeX/svg/MathJax_SansSerif-Italic.svg | 245 ++ .../TeX/svg/MathJax_SansSerif-Regular.svg | 211 ++ .../TeX/svg/MathJax_Script-Regular.svg | 160 ++ .../TeX/svg/MathJax_Size1-Regular.svg | 110 + .../TeX/svg/MathJax_Size2-Regular.svg | 109 + .../TeX/svg/MathJax_Size3-Regular.svg | 49 + .../TeX/svg/MathJax_Size4-Regular.svg | 102 + .../TeX/svg/MathJax_Typewriter-Regular.svg | 322 +++ .../TeX/svg/MathJax_WinChrome-Regular.svg | 39 + sagenb/data/mathjax/jax/element/mml/jax.js | 16 + .../mathjax/jax/element/mml/optable/Arrows.js | 16 + .../jax/element/mml/optable/BasicLatin.js | 16 + .../element/mml/optable/CombDiacritMarks.js | 16 + .../mml/optable/CombDiactForSymbols.js | 16 + .../jax/element/mml/optable/Dingbats.js | 16 + .../element/mml/optable/GeneralPunctuation.js | 16 + .../element/mml/optable/GeometricShapes.js | 16 + .../jax/element/mml/optable/GreekAndCoptic.js | 16 + .../element/mml/optable/Latin1Supplement.js | 16 + .../element/mml/optable/LetterlikeSymbols.js | 16 + .../jax/element/mml/optable/MathOperators.js | 16 + .../element/mml/optable/MiscMathSymbolsA.js | 16 + .../element/mml/optable/MiscMathSymbolsB.js | 16 + .../jax/element/mml/optable/MiscTechnical.js | 16 + .../element/mml/optable/SpacingModLetters.js | 16 + .../element/mml/optable/SuppMathOperators.js | 16 + .../mml/optable/SupplementalArrowsB.js | 16 + .../data/mathjax/jax/input/MathML/config.js | 16 + .../mathjax/jax/input/MathML/entities/a.js | 16 + .../mathjax/jax/input/MathML/entities/b.js | 16 + .../mathjax/jax/input/MathML/entities/c.js | 16 + .../mathjax/jax/input/MathML/entities/d.js | 16 + .../mathjax/jax/input/MathML/entities/e.js | 16 + .../mathjax/jax/input/MathML/entities/f.js | 16 + .../mathjax/jax/input/MathML/entities/fr.js | 16 + .../mathjax/jax/input/MathML/entities/g.js | 16 + .../mathjax/jax/input/MathML/entities/h.js | 16 + .../mathjax/jax/input/MathML/entities/i.js | 16 + .../mathjax/jax/input/MathML/entities/j.js | 16 + .../mathjax/jax/input/MathML/entities/k.js | 16 + .../mathjax/jax/input/MathML/entities/l.js | 16 + .../mathjax/jax/input/MathML/entities/m.js | 16 + .../mathjax/jax/input/MathML/entities/n.js | 16 + .../mathjax/jax/input/MathML/entities/o.js | 16 + .../mathjax/jax/input/MathML/entities/opf.js | 16 + .../mathjax/jax/input/MathML/entities/p.js | 16 + .../mathjax/jax/input/MathML/entities/q.js | 16 + .../mathjax/jax/input/MathML/entities/r.js | 16 + .../mathjax/jax/input/MathML/entities/s.js | 16 + .../mathjax/jax/input/MathML/entities/scr.js | 16 + .../mathjax/jax/input/MathML/entities/t.js | 16 + .../mathjax/jax/input/MathML/entities/u.js | 16 + .../mathjax/jax/input/MathML/entities/v.js | 16 + .../mathjax/jax/input/MathML/entities/w.js | 16 + .../mathjax/jax/input/MathML/entities/x.js | 16 + .../mathjax/jax/input/MathML/entities/y.js | 16 + .../mathjax/jax/input/MathML/entities/z.js | 16 + sagenb/data/mathjax/jax/input/MathML/jax.js | 16 + sagenb/data/mathjax/jax/input/TeX/config.js | 16 + sagenb/data/mathjax/jax/input/TeX/jax.js | 16 + .../HTML-CSS/autoload/annotation-xml.js | 16 + .../jax/output/HTML-CSS/autoload/maction.js | 16 + .../jax/output/HTML-CSS/autoload/menclose.js | 16 + .../jax/output/HTML-CSS/autoload/mglyph.js | 16 + .../output/HTML-CSS/autoload/mmultiscripts.js | 16 + .../jax/output/HTML-CSS/autoload/ms.js | 16 + .../jax/output/HTML-CSS/autoload/mtable.js | 16 + .../jax/output/HTML-CSS/autoload/multiline.js | 16 + .../mathjax/jax/output/HTML-CSS/config.js | 16 + .../STIX/General/Bold/AlphaPresentForms.js | 16 + .../fonts/STIX/General/Bold/Arrows.js | 16 + .../fonts/STIX/General/Bold/BoldFraktur.js | 16 + .../fonts/STIX/General/Bold/BoxDrawing.js | 16 + .../STIX/General/Bold/CombDiacritMarks.js | 16 + .../STIX/General/Bold/CombDiactForSymbols.js | 16 + .../STIX/General/Bold/ControlPictures.js | 16 + .../STIX/General/Bold/CurrencySymbols.js | 16 + .../fonts/STIX/General/Bold/Cyrillic.js | 16 + .../STIX/General/Bold/EnclosedAlphanum.js | 16 + .../STIX/General/Bold/GeneralPunctuation.js | 16 + .../STIX/General/Bold/GeometricShapes.js | 16 + .../fonts/STIX/General/Bold/GreekAndCoptic.js | 16 + .../fonts/STIX/General/Bold/GreekBold.js | 16 + .../fonts/STIX/General/Bold/GreekSSBold.js | 16 + .../fonts/STIX/General/Bold/IPAExtensions.js | 16 + .../STIX/General/Bold/Latin1Supplement.js | 16 + .../fonts/STIX/General/Bold/LatinExtendedA.js | 16 + .../General/Bold/LatinExtendedAdditional.js | 16 + .../fonts/STIX/General/Bold/LatinExtendedB.js | 16 + .../STIX/General/Bold/LetterlikeSymbols.js | 16 + .../HTML-CSS/fonts/STIX/General/Bold/Main.js | 16 + .../fonts/STIX/General/Bold/MathBold.js | 16 + .../fonts/STIX/General/Bold/MathOperators.js | 16 + .../fonts/STIX/General/Bold/MathSSBold.js | 16 + .../STIX/General/Bold/MiscMathSymbolsA.js | 16 + .../STIX/General/Bold/MiscMathSymbolsB.js | 16 + .../fonts/STIX/General/Bold/MiscSymbols.js | 16 + .../fonts/STIX/General/Bold/MiscTechnical.js | 16 + .../fonts/STIX/General/Bold/NumberForms.js | 16 + .../STIX/General/Bold/PhoneticExtensions.js | 16 + .../STIX/General/Bold/SpacingModLetters.js | 16 + .../STIX/General/Bold/SuperAndSubscripts.js | 16 + .../STIX/General/Bold/SuppMathOperators.js | 16 + .../General/BoldItalic/AlphaPresentForms.js | 16 + .../STIX/General/BoldItalic/BasicLatin.js | 16 + .../STIX/General/BoldItalic/BoxDrawing.js | 16 + .../General/BoldItalic/CombDiactForSymbols.js | 16 + .../General/BoldItalic/ControlPictures.js | 16 + .../General/BoldItalic/CurrencySymbols.js | 16 + .../fonts/STIX/General/BoldItalic/Cyrillic.js | 16 + .../General/BoldItalic/EnclosedAlphanum.js | 16 + .../General/BoldItalic/GeneralPunctuation.js | 16 + .../STIX/General/BoldItalic/GreekAndCoptic.js | 16 + .../General/BoldItalic/GreekBoldItalic.js | 16 + .../General/BoldItalic/GreekSSBoldItalic.js | 16 + .../STIX/General/BoldItalic/IPAExtensions.js | 16 + .../General/BoldItalic/Latin1Supplement.js | 16 + .../STIX/General/BoldItalic/LatinExtendedA.js | 16 + .../BoldItalic/LatinExtendedAdditional.js | 16 + .../STIX/General/BoldItalic/LatinExtendedB.js | 16 + .../General/BoldItalic/LetterlikeSymbols.js | 16 + .../fonts/STIX/General/BoldItalic/Main.js | 16 + .../STIX/General/BoldItalic/MathBoldItalic.js | 16 + .../STIX/General/BoldItalic/MathBoldScript.js | 16 + .../STIX/General/BoldItalic/MathOperators.js | 16 + .../General/BoldItalic/MathSSItalicBold.js | 16 + .../General/BoldItalic/SpacingModLetters.js | 16 + .../STIX/General/Italic/AlphaPresentForms.js | 16 + .../fonts/STIX/General/Italic/BoxDrawing.js | 16 + .../General/Italic/CombDiactForSymbols.js | 16 + .../STIX/General/Italic/ControlPictures.js | 16 + .../STIX/General/Italic/CurrencySymbols.js | 16 + .../fonts/STIX/General/Italic/Cyrillic.js | 16 + .../STIX/General/Italic/EnclosedAlphanum.js | 16 + .../STIX/General/Italic/GeneralPunctuation.js | 16 + .../STIX/General/Italic/GreekAndCoptic.js | 16 + .../fonts/STIX/General/Italic/GreekItalic.js | 16 + .../STIX/General/Italic/IPAExtensions.js | 16 + .../STIX/General/Italic/Latin1Supplement.js | 16 + .../STIX/General/Italic/LatinExtendedA.js | 16 + .../General/Italic/LatinExtendedAdditional.js | 16 + .../STIX/General/Italic/LatinExtendedB.js | 16 + .../STIX/General/Italic/LetterlikeSymbols.js | 16 + .../fonts/STIX/General/Italic/Main.js | 16 + .../fonts/STIX/General/Italic/MathItalic.js | 16 + .../STIX/General/Italic/MathOperators.js | 16 + .../fonts/STIX/General/Italic/MathSSItalic.js | 16 + .../fonts/STIX/General/Italic/MathScript.js | 16 + .../STIX/General/Italic/SpacingModLetters.js | 16 + .../HTML-CSS/fonts/STIX/General/Italic/ij.js | 16 + .../STIX/General/Regular/AlphaPresentForms.js | 16 + .../fonts/STIX/General/Regular/Arrows.js | 16 + .../fonts/STIX/General/Regular/BBBold.js | 16 + .../STIX/General/Regular/BlockElements.js | 16 + .../fonts/STIX/General/Regular/BoldFraktur.js | 16 + .../fonts/STIX/General/Regular/BoxDrawing.js | 16 + .../fonts/STIX/General/Regular/CJK.js | 16 + .../STIX/General/Regular/CombDiacritMarks.js | 16 + .../General/Regular/CombDiactForSymbols.js | 16 + .../STIX/General/Regular/ControlPictures.js | 16 + .../STIX/General/Regular/CurrencySymbols.js | 16 + .../fonts/STIX/General/Regular/Cyrillic.js | 16 + .../fonts/STIX/General/Regular/Dingbats.js | 16 + .../STIX/General/Regular/EnclosedAlphanum.js | 16 + .../fonts/STIX/General/Regular/Fraktur.js | 16 + .../General/Regular/GeneralPunctuation.js | 16 + .../STIX/General/Regular/GeometricShapes.js | 16 + .../STIX/General/Regular/GreekAndCoptic.js | 16 + .../fonts/STIX/General/Regular/GreekBold.js | 16 + .../STIX/General/Regular/GreekBoldItalic.js | 16 + .../fonts/STIX/General/Regular/GreekItalic.js | 16 + .../fonts/STIX/General/Regular/GreekSSBold.js | 16 + .../STIX/General/Regular/GreekSSBoldItalic.js | 16 + .../fonts/STIX/General/Regular/Hiragana.js | 16 + .../STIX/General/Regular/IPAExtensions.js | 16 + .../STIX/General/Regular/Latin1Supplement.js | 16 + .../STIX/General/Regular/LatinExtendedA.js | 16 + .../Regular/LatinExtendedAdditional.js | 16 + .../STIX/General/Regular/LatinExtendedB.js | 16 + .../STIX/General/Regular/LatinExtendedD.js | 16 + .../STIX/General/Regular/LetterlikeSymbols.js | 16 + .../fonts/STIX/General/Regular/Main.js | 16 + .../fonts/STIX/General/Regular/MathBold.js | 16 + .../STIX/General/Regular/MathBoldItalic.js | 16 + .../STIX/General/Regular/MathBoldScript.js | 16 + .../fonts/STIX/General/Regular/MathItalic.js | 16 + .../STIX/General/Regular/MathOperators.js | 16 + .../fonts/STIX/General/Regular/MathSS.js | 16 + .../fonts/STIX/General/Regular/MathSSBold.js | 16 + .../STIX/General/Regular/MathSSItalic.js | 16 + .../STIX/General/Regular/MathSSItalicBold.js | 16 + .../fonts/STIX/General/Regular/MathScript.js | 16 + .../fonts/STIX/General/Regular/MathTT.js | 16 + .../STIX/General/Regular/MiscMathSymbolsA.js | 16 + .../STIX/General/Regular/MiscMathSymbolsB.js | 16 + .../fonts/STIX/General/Regular/MiscSymbols.js | 16 + .../General/Regular/MiscSymbolsAndArrows.js | 16 + .../STIX/General/Regular/MiscTechnical.js | 16 + .../fonts/STIX/General/Regular/NumberForms.js | 16 + .../General/Regular/PhoneticExtensions.js | 16 + .../STIX/General/Regular/SpacingModLetters.js | 16 + .../fonts/STIX/General/Regular/Specials.js | 16 + .../General/Regular/SuperAndSubscripts.js | 16 + .../STIX/General/Regular/SuppMathOperators.js | 16 + .../General/Regular/SupplementalArrowsA.js | 16 + .../General/Regular/SupplementalArrowsB.js | 16 + .../HTML-CSS/fonts/STIX/General/Regular/ij.js | 16 + .../fonts/STIX/IntegralsD/Bold/All.js | 16 + .../fonts/STIX/IntegralsD/Regular/All.js | 16 + .../fonts/STIX/IntegralsD/Regular/Main.js | 16 + .../fonts/STIX/IntegralsSm/Bold/All.js | 16 + .../fonts/STIX/IntegralsSm/Regular/All.js | 16 + .../fonts/STIX/IntegralsSm/Regular/Main.js | 16 + .../fonts/STIX/IntegralsUp/Bold/All.js | 16 + .../fonts/STIX/IntegralsUp/Regular/All.js | 16 + .../fonts/STIX/IntegralsUp/Regular/Main.js | 16 + .../fonts/STIX/IntegralsUpD/Bold/All.js | 16 + .../fonts/STIX/IntegralsUpD/Regular/All.js | 16 + .../fonts/STIX/IntegralsUpD/Regular/Main.js | 16 + .../fonts/STIX/IntegralsUpSm/Bold/All.js | 16 + .../fonts/STIX/IntegralsUpSm/Regular/All.js | 16 + .../fonts/STIX/IntegralsUpSm/Regular/Main.js | 16 + .../fonts/STIX/NonUnicode/Bold/All.js | 16 + .../fonts/STIX/NonUnicode/Bold/Main.js | 16 + .../fonts/STIX/NonUnicode/Bold/PrivateUse.js | 16 + .../fonts/STIX/NonUnicode/BoldItalic/All.js | 16 + .../fonts/STIX/NonUnicode/BoldItalic/Main.js | 16 + .../STIX/NonUnicode/BoldItalic/PrivateUse.js | 16 + .../fonts/STIX/NonUnicode/Italic/All.js | 16 + .../fonts/STIX/NonUnicode/Italic/Main.js | 16 + .../STIX/NonUnicode/Italic/PrivateUse.js | 16 + .../fonts/STIX/NonUnicode/Regular/All.js | 16 + .../fonts/STIX/NonUnicode/Regular/Main.js | 16 + .../STIX/NonUnicode/Regular/PrivateUse.js | 16 + .../fonts/STIX/SizeFiveSym/Regular/All.js | 16 + .../fonts/STIX/SizeFiveSym/Regular/Main.js | 16 + .../fonts/STIX/SizeFourSym/Bold/Main.js | 16 + .../fonts/STIX/SizeFourSym/Regular/All.js | 16 + .../fonts/STIX/SizeFourSym/Regular/Main.js | 16 + .../fonts/STIX/SizeOneSym/Bold/All.js | 16 + .../fonts/STIX/SizeOneSym/Bold/Main.js | 16 + .../fonts/STIX/SizeOneSym/Regular/All.js | 16 + .../fonts/STIX/SizeOneSym/Regular/Main.js | 16 + .../fonts/STIX/SizeThreeSym/Bold/Main.js | 16 + .../fonts/STIX/SizeThreeSym/Regular/All.js | 16 + .../fonts/STIX/SizeThreeSym/Regular/Main.js | 16 + .../fonts/STIX/SizeTwoSym/Bold/Main.js | 16 + .../fonts/STIX/SizeTwoSym/Regular/All.js | 16 + .../fonts/STIX/SizeTwoSym/Regular/Main.js | 16 + .../HTML-CSS/fonts/STIX/Variants/Bold/All.js | 16 + .../HTML-CSS/fonts/STIX/Variants/Bold/Main.js | 16 + .../fonts/STIX/Variants/Regular/All.js | 16 + .../fonts/STIX/Variants/Regular/Main.js | 16 + .../HTML-CSS/fonts/STIX/fontdata-beta.js | 16 + .../output/HTML-CSS/fonts/STIX/fontdata.js | 16 + .../HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js | 16 + .../HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js | 16 + .../fonts/TeX/AMS/Regular/BoxDrawing.js | 16 + .../fonts/TeX/AMS/Regular/CombDiacritMarks.js | 16 + .../fonts/TeX/AMS/Regular/Dingbats.js | 16 + .../fonts/TeX/AMS/Regular/EnclosedAlphanum.js | 16 + .../TeX/AMS/Regular/GeneralPunctuation.js | 16 + .../fonts/TeX/AMS/Regular/GeometricShapes.js | 16 + .../fonts/TeX/AMS/Regular/GreekAndCoptic.js | 16 + .../fonts/TeX/AMS/Regular/Latin1Supplement.js | 16 + .../fonts/TeX/AMS/Regular/LatinExtendedA.js | 16 + .../TeX/AMS/Regular/LetterlikeSymbols.js | 16 + .../HTML-CSS/fonts/TeX/AMS/Regular/Main.js | 16 + .../fonts/TeX/AMS/Regular/MathOperators.js | 16 + .../fonts/TeX/AMS/Regular/MiscMathSymbolsB.js | 16 + .../fonts/TeX/AMS/Regular/MiscSymbols.js | 16 + .../fonts/TeX/AMS/Regular/MiscTechnical.js | 16 + .../HTML-CSS/fonts/TeX/AMS/Regular/PUA.js | 16 + .../TeX/AMS/Regular/SpacingModLetters.js | 16 + .../TeX/AMS/Regular/SuppMathOperators.js | 16 + .../fonts/TeX/Caligraphic/Bold/Main.js | 16 + .../fonts/TeX/Caligraphic/Regular/Main.js | 16 + .../fonts/TeX/Fraktur/Bold/BasicLatin.js | 16 + .../HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js | 16 + .../HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js | 16 + .../HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js | 16 + .../fonts/TeX/Fraktur/Regular/BasicLatin.js | 16 + .../fonts/TeX/Fraktur/Regular/Main.js | 16 + .../fonts/TeX/Fraktur/Regular/Other.js | 16 + .../HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js | 16 + .../HTML-CSS/fonts/TeX/Greek/Bold/Main.js | 16 + .../fonts/TeX/Greek/BoldItalic/Main.js | 16 + .../HTML-CSS/fonts/TeX/Greek/Italic/Main.js | 16 + .../HTML-CSS/fonts/TeX/Greek/Regular/Main.js | 16 + .../HTML-CSS/fonts/TeX/Main/Bold/Arrows.js | 16 + .../fonts/TeX/Main/Bold/CombDiacritMarks.js | 16 + .../TeX/Main/Bold/CombDiactForSymbols.js | 16 + .../fonts/TeX/Main/Bold/GeneralPunctuation.js | 16 + .../fonts/TeX/Main/Bold/GeometricShapes.js | 16 + .../fonts/TeX/Main/Bold/Latin1Supplement.js | 16 + .../fonts/TeX/Main/Bold/LatinExtendedA.js | 16 + .../fonts/TeX/Main/Bold/LatinExtendedB.js | 16 + .../fonts/TeX/Main/Bold/LetterlikeSymbols.js | 16 + .../HTML-CSS/fonts/TeX/Main/Bold/Main.js | 16 + .../fonts/TeX/Main/Bold/MathOperators.js | 16 + .../fonts/TeX/Main/Bold/MiscMathSymbolsA.js | 16 + .../fonts/TeX/Main/Bold/MiscSymbols.js | 16 + .../fonts/TeX/Main/Bold/MiscTechnical.js | 16 + .../fonts/TeX/Main/Bold/SpacingModLetters.js | 16 + .../fonts/TeX/Main/Bold/SuppMathOperators.js | 16 + .../TeX/Main/Bold/SupplementalArrowsA.js | 16 + .../fonts/TeX/Main/Italic/CombDiacritMarks.js | 16 + .../TeX/Main/Italic/GeneralPunctuation.js | 16 + .../fonts/TeX/Main/Italic/Latin1Supplement.js | 16 + .../TeX/Main/Italic/LetterlikeSymbols.js | 16 + .../HTML-CSS/fonts/TeX/Main/Italic/Main.js | 16 + .../TeX/Main/Regular/CombDiacritMarks.js | 16 + .../fonts/TeX/Main/Regular/GeometricShapes.js | 16 + .../HTML-CSS/fonts/TeX/Main/Regular/Main.js | 16 + .../fonts/TeX/Main/Regular/MiscSymbols.js | 16 + .../TeX/Main/Regular/SpacingModLetters.js | 16 + .../fonts/TeX/Math/BoldItalic/Main.js | 16 + .../HTML-CSS/fonts/TeX/Math/Italic/Main.js | 16 + .../fonts/TeX/SansSerif/Bold/BasicLatin.js | 16 + .../TeX/SansSerif/Bold/CombDiacritMarks.js | 16 + .../HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js | 16 + .../fonts/TeX/SansSerif/Bold/Other.js | 16 + .../fonts/TeX/SansSerif/Italic/BasicLatin.js | 16 + .../TeX/SansSerif/Italic/CombDiacritMarks.js | 16 + .../fonts/TeX/SansSerif/Italic/Main.js | 16 + .../fonts/TeX/SansSerif/Italic/Other.js | 16 + .../fonts/TeX/SansSerif/Regular/BasicLatin.js | 16 + .../TeX/SansSerif/Regular/CombDiacritMarks.js | 16 + .../fonts/TeX/SansSerif/Regular/Main.js | 16 + .../fonts/TeX/SansSerif/Regular/Other.js | 16 + .../fonts/TeX/Script/Regular/BasicLatin.js | 16 + .../HTML-CSS/fonts/TeX/Script/Regular/Main.js | 16 + .../fonts/TeX/Script/Regular/Other.js | 16 + .../HTML-CSS/fonts/TeX/Size1/Regular/Main.js | 16 + .../HTML-CSS/fonts/TeX/Size2/Regular/Main.js | 16 + .../HTML-CSS/fonts/TeX/Size3/Regular/Main.js | 16 + .../HTML-CSS/fonts/TeX/Size4/Regular/Main.js | 16 + .../TeX/Typewriter/Regular/BasicLatin.js | 16 + .../Typewriter/Regular/CombDiacritMarks.js | 16 + .../fonts/TeX/Typewriter/Regular/Main.js | 16 + .../fonts/TeX/Typewriter/Regular/Other.js | 16 + .../fonts/TeX/WinChrome/Regular/Main.js | 16 + .../HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js | 16 + .../HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js | 16 + .../HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js | 16 + .../jax/output/HTML-CSS/fonts/TeX/fontdata.js | 16 + .../mathjax/jax/output/HTML-CSS/imageFonts.js | 16 + .../data/mathjax/jax/output/HTML-CSS/jax.js | 16 + .../mathjax/jax/output/NativeMML/config.js | 16 + .../data/mathjax/jax/output/NativeMML/jax.js | 16 + sagenb/data/mathjax/test/index-images.html | 138 + sagenb/data/mathjax/test/index.html | 179 ++ .../mathjax/test/sample-dynamic-steps.html | 96 + sagenb/data/mathjax/test/sample-dynamic.html | 87 + sagenb/data/mathjax/test/sample-mml.html | 43 + sagenb/data/mathjax/test/sample-signals.html | 141 + sagenb/data/mathjax/test/sample-tex.html | 25 + sagenb/data/mathjax/test/sample.html | 116 + sagenb/data/mathjax/unpacked/MathJax.js | 2096 +++++++++++++++ .../unpacked/config/Accessible-full.js | 30 + .../mathjax/unpacked/config/Accessible.js | 30 + .../unpacked/config/MML_HTMLorMML-full.js | 21 + .../mathjax/unpacked/config/MML_HTMLorMML.js | 21 + .../data/mathjax/unpacked/config/MMLorHTML.js | 101 + .../config/TeX-AMS-MML_HTMLorMML-full.js | 21 + .../unpacked/config/TeX-AMS-MML_HTMLorMML.js | 21 + .../unpacked/config/TeX-AMS_HTML-full.js | 20 + .../mathjax/unpacked/config/TeX-AMS_HTML.js | 20 + .../data/mathjax/unpacked/config/default.js | 606 +++++ .../mathjax/unpacked/config/local/local.js | 37 + .../unpacked/extensions/FontWarnings.js | 286 ++ .../mathjax/unpacked/extensions/MathMenu.js | 794 ++++++ .../mathjax/unpacked/extensions/MathZoom.js | 409 +++ .../unpacked/extensions/TeX/AMSmath.js | 394 +++ .../unpacked/extensions/TeX/AMSsymbols.js | 390 +++ .../mathjax/unpacked/extensions/TeX/HTML.js | 96 + .../unpacked/extensions/TeX/autobold.js | 45 + .../unpacked/extensions/TeX/boldsymbol.js | 110 + .../unpacked/extensions/TeX/mathchoice.js | 67 + .../unpacked/extensions/TeX/newcommand.js | 190 ++ .../unpacked/extensions/TeX/noErrors.js | 222 ++ .../unpacked/extensions/TeX/noUndefined.js | 65 + .../unpacked/extensions/TeX/unicode.js | 132 + .../mathjax/unpacked/extensions/TeX/verb.js | 55 + .../mathjax/unpacked/extensions/jsMath2jax.js | 95 + .../mathjax/unpacked/extensions/mml2jax.js | 190 ++ .../mathjax/unpacked/extensions/tex2jax.js | 269 ++ .../mathjax/unpacked/extensions/toMathML.js | 149 ++ .../unpacked/extensions/v1.0-warning.js | 92 + .../mathjax/unpacked/jax/element/mml/jax.js | 1554 +++++++++++ .../jax/element/mml/optable/Arrows.js | 122 + .../jax/element/mml/optable/BasicLatin.js | 58 + .../element/mml/optable/CombDiacritMarks.js | 35 + .../mml/optable/CombDiactForSymbols.js | 35 + .../jax/element/mml/optable/Dingbats.js | 35 + .../element/mml/optable/GeneralPunctuation.js | 40 + .../element/mml/optable/GeometricShapes.js | 66 + .../jax/element/mml/optable/GreekAndCoptic.js | 35 + .../element/mml/optable/Latin1Supplement.js | 37 + .../element/mml/optable/LetterlikeSymbols.js | 39 + .../jax/element/mml/optable/MathOperators.js | 228 ++ .../element/mml/optable/MiscMathSymbolsA.js | 38 + .../element/mml/optable/MiscMathSymbolsB.js | 167 ++ .../jax/element/mml/optable/MiscTechnical.js | 38 + .../element/mml/optable/SpacingModLetters.js | 36 + .../element/mml/optable/SuppMathOperators.js | 289 +++ .../mml/optable/SupplementalArrowsB.js | 162 ++ .../unpacked/jax/input/MathML/config.js | 38 + .../unpacked/jax/input/MathML/entities/a.js | 90 + .../unpacked/jax/input/MathML/entities/b.js | 116 + .../unpacked/jax/input/MathML/entities/c.js | 114 + .../unpacked/jax/input/MathML/entities/d.js | 112 + .../unpacked/jax/input/MathML/entities/e.js | 92 + .../unpacked/jax/input/MathML/entities/f.js | 60 + .../unpacked/jax/input/MathML/entities/fr.js | 79 + .../unpacked/jax/input/MathML/entities/g.js | 83 + .../unpacked/jax/input/MathML/entities/h.js | 52 + .../unpacked/jax/input/MathML/entities/i.js | 86 + .../unpacked/jax/input/MathML/entities/j.js | 35 + .../unpacked/jax/input/MathML/entities/k.js | 37 + .../unpacked/jax/input/MathML/entities/l.js | 179 ++ .../unpacked/jax/input/MathML/entities/m.js | 61 + .../unpacked/jax/input/MathML/entities/n.js | 220 ++ .../unpacked/jax/input/MathML/entities/o.js | 90 + .../unpacked/jax/input/MathML/entities/opf.js | 79 + .../unpacked/jax/input/MathML/entities/p.js | 84 + .../unpacked/jax/input/MathML/entities/q.js | 35 + .../unpacked/jax/input/MathML/entities/r.js | 138 + .../unpacked/jax/input/MathML/entities/s.js | 170 ++ .../unpacked/jax/input/MathML/entities/scr.js | 79 + .../unpacked/jax/input/MathML/entities/t.js | 86 + .../unpacked/jax/input/MathML/entities/u.js | 92 + .../unpacked/jax/input/MathML/entities/v.js | 73 + .../unpacked/jax/input/MathML/entities/w.js | 35 + .../unpacked/jax/input/MathML/entities/x.js | 47 + .../unpacked/jax/input/MathML/entities/y.js | 41 + .../unpacked/jax/input/MathML/entities/z.js | 42 + .../mathjax/unpacked/jax/input/MathML/jax.js | 619 +++++ .../mathjax/unpacked/jax/input/TeX/config.js | 39 + .../mathjax/unpacked/jax/input/TeX/jax.js | 1760 +++++++++++++ .../HTML-CSS/autoload/annotation-xml.js | 58 + .../jax/output/HTML-CSS/autoload/maction.js | 202 ++ .../jax/output/HTML-CSS/autoload/menclose.js | 273 ++ .../jax/output/HTML-CSS/autoload/mglyph.js | 109 + .../output/HTML-CSS/autoload/mmultiscripts.js | 145 ++ .../jax/output/HTML-CSS/autoload/ms.js | 53 + .../jax/output/HTML-CSS/autoload/mtable.js | 438 ++++ .../jax/output/HTML-CSS/autoload/multiline.js | 96 + .../unpacked/jax/output/HTML-CSS/blank.gif | Bin 0 -> 43 bytes .../unpacked/jax/output/HTML-CSS/config.js | 143 + .../STIX/General/Bold/AlphaPresentForms.js | 32 + .../fonts/STIX/General/Bold/Arrows.js | 109 + .../fonts/STIX/General/Bold/BoldFraktur.js | 79 + .../fonts/STIX/General/Bold/BoxDrawing.js | 67 + .../STIX/General/Bold/CombDiacritMarks.js | 98 + .../STIX/General/Bold/CombDiactForSymbols.js | 49 + .../STIX/General/Bold/ControlPictures.js | 28 + .../STIX/General/Bold/CurrencySymbols.js | 31 + .../fonts/STIX/General/Bold/Cyrillic.js | 129 + .../STIX/General/Bold/EnclosedAlphanum.js | 89 + .../STIX/General/Bold/GeneralPunctuation.js | 67 + .../STIX/General/Bold/GeometricShapes.js | 33 + .../fonts/STIX/General/Bold/GreekAndCoptic.js | 109 + .../fonts/STIX/General/Bold/GreekBold.js | 85 + .../fonts/STIX/General/Bold/GreekSSBold.js | 85 + .../fonts/STIX/General/Bold/IPAExtensions.js | 116 + .../STIX/General/Bold/Latin1Supplement.js | 123 + .../fonts/STIX/General/Bold/LatinExtendedA.js | 155 ++ .../General/Bold/LatinExtendedAdditional.js | 35 + .../fonts/STIX/General/Bold/LatinExtendedB.js | 59 + .../STIX/General/Bold/LetterlikeSymbols.js | 70 + .../HTML-CSS/fonts/STIX/General/Bold/Main.js | 172 ++ .../fonts/STIX/General/Bold/MathBold.js | 89 + .../fonts/STIX/General/Bold/MathOperators.js | 260 ++ .../fonts/STIX/General/Bold/MathSSBold.js | 89 + .../STIX/General/Bold/MiscMathSymbolsA.js | 31 + .../STIX/General/Bold/MiscMathSymbolsB.js | 37 + .../fonts/STIX/General/Bold/MiscSymbols.js | 30 + .../fonts/STIX/General/Bold/MiscTechnical.js | 42 + .../fonts/STIX/General/Bold/NumberForms.js | 39 + .../STIX/General/Bold/PhoneticExtensions.js | 30 + .../STIX/General/Bold/SpacingModLetters.js | 87 + .../STIX/General/Bold/SuperAndSubscripts.js | 28 + .../STIX/General/Bold/SuppMathOperators.js | 84 + .../General/BoldItalic/AlphaPresentForms.js | 32 + .../STIX/General/BoldItalic/BasicLatin.js | 122 + .../STIX/General/BoldItalic/BoxDrawing.js | 67 + .../General/BoldItalic/CombDiactForSymbols.js | 28 + .../General/BoldItalic/ControlPictures.js | 28 + .../General/BoldItalic/CurrencySymbols.js | 31 + .../fonts/STIX/General/BoldItalic/Cyrillic.js | 129 + .../General/BoldItalic/EnclosedAlphanum.js | 89 + .../General/BoldItalic/GeneralPunctuation.js | 50 + .../STIX/General/BoldItalic/GreekAndCoptic.js | 119 + .../General/BoldItalic/GreekBoldItalic.js | 85 + .../General/BoldItalic/GreekSSBoldItalic.js | 85 + .../STIX/General/BoldItalic/IPAExtensions.js | 116 + .../General/BoldItalic/Latin1Supplement.js | 123 + .../STIX/General/BoldItalic/LatinExtendedA.js | 155 ++ .../BoldItalic/LatinExtendedAdditional.js | 35 + .../STIX/General/BoldItalic/LatinExtendedB.js | 59 + .../General/BoldItalic/LetterlikeSymbols.js | 56 + .../fonts/STIX/General/BoldItalic/Main.js | 56 + .../STIX/General/BoldItalic/MathBoldItalic.js | 79 + .../STIX/General/BoldItalic/MathBoldScript.js | 79 + .../STIX/General/BoldItalic/MathOperators.js | 29 + .../General/BoldItalic/MathSSItalicBold.js | 79 + .../General/BoldItalic/SpacingModLetters.js | 54 + .../STIX/General/Italic/AlphaPresentForms.js | 32 + .../fonts/STIX/General/Italic/BoxDrawing.js | 67 + .../General/Italic/CombDiactForSymbols.js | 47 + .../STIX/General/Italic/ControlPictures.js | 28 + .../STIX/General/Italic/CurrencySymbols.js | 31 + .../fonts/STIX/General/Italic/Cyrillic.js | 129 + .../STIX/General/Italic/EnclosedAlphanum.js | 89 + .../STIX/General/Italic/GeneralPunctuation.js | 50 + .../STIX/General/Italic/GreekAndCoptic.js | 78 + .../fonts/STIX/General/Italic/GreekItalic.js | 85 + .../STIX/General/Italic/IPAExtensions.js | 116 + .../STIX/General/Italic/Latin1Supplement.js | 123 + .../STIX/General/Italic/LatinExtendedA.js | 154 ++ .../General/Italic/LatinExtendedAdditional.js | 35 + .../STIX/General/Italic/LatinExtendedB.js | 58 + .../STIX/General/Italic/LetterlikeSymbols.js | 56 + .../fonts/STIX/General/Italic/Main.js | 192 ++ .../fonts/STIX/General/Italic/MathItalic.js | 78 + .../STIX/General/Italic/MathOperators.js | 29 + .../fonts/STIX/General/Italic/MathSSItalic.js | 79 + .../fonts/STIX/General/Italic/MathScript.js | 68 + .../STIX/General/Italic/SpacingModLetters.js | 54 + .../HTML-CSS/fonts/STIX/General/Italic/ij.js | 29 + .../STIX/General/Regular/AlphaPresentForms.js | 32 + .../fonts/STIX/General/Regular/Arrows.js | 106 + .../fonts/STIX/General/Regular/BBBold.js | 82 + .../STIX/General/Regular/BlockElements.js | 35 + .../fonts/STIX/General/Regular/BoldFraktur.js | 79 + .../fonts/STIX/General/Regular/BoxDrawing.js | 72 + .../fonts/STIX/General/Regular/CJK.js | 29 + .../STIX/General/Regular/CombDiacritMarks.js | 86 + .../General/Regular/CombDiactForSymbols.js | 50 + .../STIX/General/Regular/ControlPictures.js | 28 + .../STIX/General/Regular/CurrencySymbols.js | 31 + .../fonts/STIX/General/Regular/Cyrillic.js | 129 + .../fonts/STIX/General/Regular/Dingbats.js | 57 + .../STIX/General/Regular/EnclosedAlphanum.js | 89 + .../fonts/STIX/General/Regular/Fraktur.js | 74 + .../General/Regular/GeneralPunctuation.js | 68 + .../STIX/General/Regular/GeometricShapes.js | 118 + .../STIX/General/Regular/GreekAndCoptic.js | 109 + .../fonts/STIX/General/Regular/GreekBold.js | 85 + .../STIX/General/Regular/GreekBoldItalic.js | 85 + .../fonts/STIX/General/Regular/GreekItalic.js | 85 + .../fonts/STIX/General/Regular/GreekSSBold.js | 85 + .../STIX/General/Regular/GreekSSBoldItalic.js | 85 + .../fonts/STIX/General/Regular/Hiragana.js | 28 + .../STIX/General/Regular/IPAExtensions.js | 118 + .../STIX/General/Regular/Latin1Supplement.js | 115 + .../STIX/General/Regular/LatinExtendedA.js | 154 ++ .../Regular/LatinExtendedAdditional.js | 35 + .../STIX/General/Regular/LatinExtendedB.js | 63 + .../STIX/General/Regular/LatinExtendedD.js | 28 + .../STIX/General/Regular/LetterlikeSymbols.js | 83 + .../fonts/STIX/General/Regular/Main.js | 380 +++ .../fonts/STIX/General/Regular/MathBold.js | 89 + .../STIX/General/Regular/MathBoldItalic.js | 79 + .../STIX/General/Regular/MathBoldScript.js | 79 + .../fonts/STIX/General/Regular/MathItalic.js | 78 + .../STIX/General/Regular/MathOperators.js | 207 ++ .../fonts/STIX/General/Regular/MathSS.js | 89 + .../fonts/STIX/General/Regular/MathSSBold.js | 90 + .../STIX/General/Regular/MathSSItalic.js | 79 + .../STIX/General/Regular/MathSSItalicBold.js | 79 + .../fonts/STIX/General/Regular/MathScript.js | 68 + .../fonts/STIX/General/Regular/MathTT.js | 88 + .../STIX/General/Regular/MiscMathSymbolsA.js | 66 + .../STIX/General/Regular/MiscMathSymbolsB.js | 154 ++ .../fonts/STIX/General/Regular/MiscSymbols.js | 74 + .../General/Regular/MiscSymbolsAndArrows.js | 91 + .../STIX/General/Regular/MiscTechnical.js | 80 + .../fonts/STIX/General/Regular/NumberForms.js | 39 + .../General/Regular/PhoneticExtensions.js | 36 + .../STIX/General/Regular/SpacingModLetters.js | 79 + .../fonts/STIX/General/Regular/Specials.js | 28 + .../General/Regular/SuperAndSubscripts.js | 28 + .../STIX/General/Regular/SuppMathOperators.js | 271 ++ .../General/Regular/SupplementalArrowsA.js | 35 + .../General/Regular/SupplementalArrowsB.js | 155 ++ .../HTML-CSS/fonts/STIX/General/Regular/ij.js | 29 + .../fonts/STIX/IntegralsD/Bold/All.js | 55 + .../fonts/STIX/IntegralsD/Regular/All.js | 54 + .../fonts/STIX/IntegralsD/Regular/Main.js | 36 + .../fonts/STIX/IntegralsSm/Bold/All.js | 55 + .../fonts/STIX/IntegralsSm/Regular/All.js | 54 + .../fonts/STIX/IntegralsSm/Regular/Main.js | 36 + .../fonts/STIX/IntegralsUp/Bold/All.js | 55 + .../fonts/STIX/IntegralsUp/Regular/All.js | 54 + .../fonts/STIX/IntegralsUp/Regular/Main.js | 36 + .../fonts/STIX/IntegralsUpD/Bold/All.js | 55 + .../fonts/STIX/IntegralsUpD/Regular/All.js | 54 + .../fonts/STIX/IntegralsUpD/Regular/Main.js | 36 + .../fonts/STIX/IntegralsUpSm/Bold/All.js | 55 + .../fonts/STIX/IntegralsUpSm/Regular/All.js | 54 + .../fonts/STIX/IntegralsUpSm/Regular/Main.js | 36 + .../fonts/STIX/NonUnicode/Bold/All.js | 29 + .../fonts/STIX/NonUnicode/Bold/Main.js | 35 + .../fonts/STIX/NonUnicode/Bold/PrivateUse.js | 182 ++ .../fonts/STIX/NonUnicode/BoldItalic/All.js | 29 + .../fonts/STIX/NonUnicode/BoldItalic/Main.js | 36 + .../STIX/NonUnicode/BoldItalic/PrivateUse.js | 215 ++ .../fonts/STIX/NonUnicode/Italic/All.js | 29 + .../fonts/STIX/NonUnicode/Italic/Main.js | 60 + .../STIX/NonUnicode/Italic/PrivateUse.js | 242 ++ .../fonts/STIX/NonUnicode/Regular/All.js | 29 + .../fonts/STIX/NonUnicode/Regular/Main.js | 57 + .../STIX/NonUnicode/Regular/PrivateUse.js | 387 +++ .../fonts/STIX/SizeFiveSym/Regular/All.js | 51 + .../fonts/STIX/SizeFiveSym/Regular/Main.js | 43 + .../fonts/STIX/SizeFourSym/Bold/Main.js | 46 + .../fonts/STIX/SizeFourSym/Regular/All.js | 63 + .../fonts/STIX/SizeFourSym/Regular/Main.js | 62 + .../fonts/STIX/SizeOneSym/Bold/All.js | 28 + .../fonts/STIX/SizeOneSym/Bold/Main.js | 52 + .../fonts/STIX/SizeOneSym/Regular/All.js | 77 + .../fonts/STIX/SizeOneSym/Regular/Main.js | 105 + .../fonts/STIX/SizeThreeSym/Bold/Main.js | 46 + .../fonts/STIX/SizeThreeSym/Regular/All.js | 63 + .../fonts/STIX/SizeThreeSym/Regular/Main.js | 62 + .../fonts/STIX/SizeTwoSym/Bold/Main.js | 46 + .../fonts/STIX/SizeTwoSym/Regular/All.js | 64 + .../fonts/STIX/SizeTwoSym/Regular/Main.js | 63 + .../HTML-CSS/fonts/STIX/Variants/Bold/All.js | 60 + .../HTML-CSS/fonts/STIX/Variants/Bold/Main.js | 44 + .../fonts/STIX/Variants/Regular/All.js | 120 + .../fonts/STIX/Variants/Regular/Main.js | 49 + .../HTML-CSS/fonts/STIX/fontdata-beta.js | 373 +++ .../output/HTML-CSS/fonts/STIX/fontdata.js | 1427 ++++++++++ .../HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js | 65 + .../HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js | 55 + .../fonts/TeX/AMS/Regular/BoxDrawing.js | 33 + .../fonts/TeX/AMS/Regular/CombDiacritMarks.js | 29 + .../fonts/TeX/AMS/Regular/Dingbats.js | 29 + .../fonts/TeX/AMS/Regular/EnclosedAlphanum.js | 28 + .../TeX/AMS/Regular/GeneralPunctuation.js | 28 + .../fonts/TeX/AMS/Regular/GeometricShapes.js | 36 + .../fonts/TeX/AMS/Regular/GreekAndCoptic.js | 29 + .../fonts/TeX/AMS/Regular/Latin1Supplement.js | 31 + .../fonts/TeX/AMS/Regular/LatinExtendedA.js | 28 + .../TeX/AMS/Regular/LetterlikeSymbols.js | 34 + .../HTML-CSS/fonts/TeX/AMS/Regular/Main.js | 52 + .../fonts/TeX/AMS/Regular/MathOperators.js | 138 + .../fonts/TeX/AMS/Regular/MiscMathSymbolsB.js | 28 + .../fonts/TeX/AMS/Regular/MiscSymbols.js | 28 + .../fonts/TeX/AMS/Regular/MiscTechnical.js | 29 + .../HTML-CSS/fonts/TeX/AMS/Regular/PUA.js | 43 + .../TeX/AMS/Regular/SpacingModLetters.js | 29 + .../TeX/AMS/Regular/SuppMathOperators.js | 50 + .../fonts/TeX/Caligraphic/Bold/Main.js | 97 + .../fonts/TeX/Caligraphic/Regular/Main.js | 96 + .../fonts/TeX/Fraktur/Bold/BasicLatin.js | 109 + .../HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js | 37 + .../HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js | 30 + .../HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js | 34 + .../fonts/TeX/Fraktur/Regular/BasicLatin.js | 109 + .../fonts/TeX/Fraktur/Regular/Main.js | 36 + .../fonts/TeX/Fraktur/Regular/Other.js | 30 + .../HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js | 35 + .../HTML-CSS/fonts/TeX/Greek/Bold/Main.js | 44 + .../fonts/TeX/Greek/BoldItalic/Main.js | 111 + .../HTML-CSS/fonts/TeX/Greek/Italic/Main.js | 110 + .../HTML-CSS/fonts/TeX/Greek/Regular/Main.js | 43 + .../HTML-CSS/fonts/TeX/Main/Bold/Arrows.js | 51 + .../fonts/TeX/Main/Bold/CombDiacritMarks.js | 39 + .../TeX/Main/Bold/CombDiactForSymbols.js | 28 + .../fonts/TeX/Main/Bold/GeneralPunctuation.js | 44 + .../fonts/TeX/Main/Bold/GeometricShapes.js | 32 + .../fonts/TeX/Main/Bold/Latin1Supplement.js | 36 + .../fonts/TeX/Main/Bold/LatinExtendedA.js | 28 + .../fonts/TeX/Main/Bold/LatinExtendedB.js | 28 + .../fonts/TeX/Main/Bold/LetterlikeSymbols.js | 33 + .../HTML-CSS/fonts/TeX/Main/Bold/Main.js | 162 ++ .../fonts/TeX/Main/Bold/MathOperators.js | 94 + .../fonts/TeX/Main/Bold/MiscMathSymbolsA.js | 29 + .../fonts/TeX/Main/Bold/MiscSymbols.js | 34 + .../fonts/TeX/Main/Bold/MiscTechnical.js | 33 + .../fonts/TeX/Main/Bold/SpacingModLetters.js | 36 + .../fonts/TeX/Main/Bold/SuppMathOperators.js | 30 + .../TeX/Main/Bold/SupplementalArrowsA.js | 34 + .../fonts/TeX/Main/Italic/CombDiacritMarks.js | 38 + .../TeX/Main/Italic/GeneralPunctuation.js | 33 + .../fonts/TeX/Main/Italic/Latin1Supplement.js | 28 + .../TeX/Main/Italic/LetterlikeSymbols.js | 28 + .../HTML-CSS/fonts/TeX/Main/Italic/Main.js | 138 + .../TeX/Main/Regular/CombDiacritMarks.js | 39 + .../fonts/TeX/Main/Regular/GeometricShapes.js | 32 + .../HTML-CSS/fonts/TeX/Main/Regular/Main.js | 305 +++ .../fonts/TeX/Main/Regular/MiscSymbols.js | 34 + .../TeX/Main/Regular/SpacingModLetters.js | 28 + .../fonts/TeX/Math/BoldItalic/Main.js | 206 ++ .../HTML-CSS/fonts/TeX/Math/Italic/Main.js | 205 ++ .../fonts/TeX/SansSerif/Bold/BasicLatin.js | 115 + .../TeX/SansSerif/Bold/CombDiacritMarks.js | 38 + .../HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js | 37 + .../fonts/TeX/SansSerif/Bold/Other.js | 47 + .../fonts/TeX/SansSerif/Italic/BasicLatin.js | 115 + .../TeX/SansSerif/Italic/CombDiacritMarks.js | 38 + .../fonts/TeX/SansSerif/Italic/Main.js | 37 + .../fonts/TeX/SansSerif/Italic/Other.js | 47 + .../fonts/TeX/SansSerif/Regular/BasicLatin.js | 115 + .../TeX/SansSerif/Regular/CombDiacritMarks.js | 38 + .../fonts/TeX/SansSerif/Regular/Main.js | 36 + .../fonts/TeX/SansSerif/Regular/Other.js | 47 + .../fonts/TeX/Script/Regular/BasicLatin.js | 54 + .../HTML-CSS/fonts/TeX/Script/Regular/Main.js | 63 + .../fonts/TeX/Script/Regular/Other.js | 28 + .../HTML-CSS/fonts/TeX/Size1/Regular/Main.js | 75 + .../HTML-CSS/fonts/TeX/Size2/Regular/Main.js | 67 + .../HTML-CSS/fonts/TeX/Size3/Regular/Main.js | 51 + .../HTML-CSS/fonts/TeX/Size4/Regular/Main.js | 78 + .../TeX/Typewriter/Regular/BasicLatin.js | 123 + .../Typewriter/Regular/CombDiacritMarks.js | 36 + .../fonts/TeX/Typewriter/Regular/Main.js | 36 + .../fonts/TeX/Typewriter/Regular/Other.js | 44 + .../fonts/TeX/WinChrome/Regular/Main.js | 44 + .../HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js | 56 + .../HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js | 82 + .../HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js | 112 + .../jax/output/HTML-CSS/fonts/TeX/fontdata.js | 1767 +++++++++++++ .../jax/output/HTML-CSS/imageFonts.js | 196 ++ .../unpacked/jax/output/HTML-CSS/jax.js | 2300 +++++++++++++++++ .../unpacked/jax/output/NativeMML/config.js | 48 + .../unpacked/jax/output/NativeMML/jax.js | 512 ++++ 1016 files changed, 92778 insertions(+) create mode 100644 sagenb/data/mathjax/.gitignore create mode 100644 sagenb/data/mathjax/LICENSE create mode 100644 sagenb/data/mathjax/MathJax.js create mode 100644 sagenb/data/mathjax/README-branch.txt create mode 100644 sagenb/data/mathjax/README.md create mode 100644 sagenb/data/mathjax/config/Accessible-full.js create mode 100644 sagenb/data/mathjax/config/Accessible.js create mode 100644 sagenb/data/mathjax/config/MML_HTMLorMML-full.js create mode 100644 sagenb/data/mathjax/config/MML_HTMLorMML.js create mode 100644 sagenb/data/mathjax/config/MMLorHTML.js create mode 100644 sagenb/data/mathjax/config/TeX-AMS-MML_HTMLorMML-full.js create mode 100644 sagenb/data/mathjax/config/TeX-AMS-MML_HTMLorMML.js create mode 100644 sagenb/data/mathjax/config/TeX-AMS_HTML-full.js create mode 100644 sagenb/data/mathjax/config/TeX-AMS_HTML.js create mode 100644 sagenb/data/mathjax/config/default.js create mode 100644 sagenb/data/mathjax/config/local/local.js create mode 100644 sagenb/data/mathjax/docs/.gitignore create mode 100644 sagenb/data/mathjax/docs/Makefile create mode 100644 sagenb/data/mathjax/docs/html/CSS-styles.html create mode 100644 sagenb/data/mathjax/docs/html/HTML-snippets.html create mode 100644 sagenb/data/mathjax/docs/html/_images/mt_head.png create mode 100644 sagenb/data/mathjax/docs/html/_images/mt_menu.png create mode 100644 sagenb/data/mathjax/docs/html/_images/mt_templates.png create mode 100644 sagenb/data/mathjax/docs/html/_images/wp_menu.png create mode 100644 sagenb/data/mathjax/docs/html/_images/wp_templates.png create mode 100644 sagenb/data/mathjax/docs/html/_sources/CSS-styles.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/HTML-snippets.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/ajax.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/callback.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/elementjax.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/html.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/hub.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/index.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/inputjax.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/jax.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/message.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/object.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/outputjax.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/queue.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/signal.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/api/variable.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/callbacks.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/community.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/config-files.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/configuration.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/dynamic.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/glossary.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/index.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/installation.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/jsMath.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/mathjax.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/mathml.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/model.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/FontWarnings.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/HTML-CSS.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/MMLorHTML.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/MathML.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/MathMenu.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/MathZoom.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/NativeMML.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/TeX.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/hub.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/index.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/jsMath2jax.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/mml2jax.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/options/tex2jax.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/output.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/platforms/index.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/platforms/movable-type.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/platforms/wordpress.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/queues.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/signals.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/start.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/startup.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/synchronize.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/tex.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/typeset.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/upgrade.txt create mode 100644 sagenb/data/mathjax/docs/html/_sources/whats-new.txt create mode 100644 sagenb/data/mathjax/docs/html/_static/basic.css create mode 100644 sagenb/data/mathjax/docs/html/_static/doctools.js create mode 100644 sagenb/data/mathjax/docs/html/_static/file.png create mode 100644 sagenb/data/mathjax/docs/html/_static/jquery.js create mode 100644 sagenb/data/mathjax/docs/html/_static/mathjax_mathml.user.js create mode 100644 sagenb/data/mathjax/docs/html/_static/mathjax_wikipedia.user.js create mode 100644 sagenb/data/mathjax/docs/html/_static/minus.png create mode 100644 sagenb/data/mathjax/docs/html/_static/mj.css create mode 100644 sagenb/data/mathjax/docs/html/_static/plus.png create mode 100644 sagenb/data/mathjax/docs/html/_static/pygments.css create mode 100644 sagenb/data/mathjax/docs/html/_static/searchtools.js create mode 100644 sagenb/data/mathjax/docs/html/_static/underscore.js create mode 100644 sagenb/data/mathjax/docs/html/api/ajax.html create mode 100644 sagenb/data/mathjax/docs/html/api/callback.html create mode 100644 sagenb/data/mathjax/docs/html/api/elementjax.html create mode 100644 sagenb/data/mathjax/docs/html/api/html.html create mode 100644 sagenb/data/mathjax/docs/html/api/hub.html create mode 100644 sagenb/data/mathjax/docs/html/api/index.html create mode 100644 sagenb/data/mathjax/docs/html/api/inputjax.html create mode 100644 sagenb/data/mathjax/docs/html/api/jax.html create mode 100644 sagenb/data/mathjax/docs/html/api/message.html create mode 100644 sagenb/data/mathjax/docs/html/api/object.html create mode 100644 sagenb/data/mathjax/docs/html/api/outputjax.html create mode 100644 sagenb/data/mathjax/docs/html/api/queue.html create mode 100644 sagenb/data/mathjax/docs/html/api/signal.html create mode 100644 sagenb/data/mathjax/docs/html/api/variable.html create mode 100644 sagenb/data/mathjax/docs/html/callbacks.html create mode 100644 sagenb/data/mathjax/docs/html/community.html create mode 100644 sagenb/data/mathjax/docs/html/config-files.html create mode 100644 sagenb/data/mathjax/docs/html/configuration.html create mode 100644 sagenb/data/mathjax/docs/html/dynamic.html create mode 100644 sagenb/data/mathjax/docs/html/genindex.html create mode 100644 sagenb/data/mathjax/docs/html/glossary.html create mode 100644 sagenb/data/mathjax/docs/html/index.html create mode 100644 sagenb/data/mathjax/docs/html/installation.html create mode 100644 sagenb/data/mathjax/docs/html/jsMath.html create mode 100644 sagenb/data/mathjax/docs/html/mathjax.html create mode 100644 sagenb/data/mathjax/docs/html/mathml.html create mode 100644 sagenb/data/mathjax/docs/html/model.html create mode 100644 sagenb/data/mathjax/docs/html/options/FontWarnings.html create mode 100644 sagenb/data/mathjax/docs/html/options/HTML-CSS.html create mode 100644 sagenb/data/mathjax/docs/html/options/MMLorHTML.html create mode 100644 sagenb/data/mathjax/docs/html/options/MathML.html create mode 100644 sagenb/data/mathjax/docs/html/options/MathMenu.html create mode 100644 sagenb/data/mathjax/docs/html/options/MathZoom.html create mode 100644 sagenb/data/mathjax/docs/html/options/NativeMML.html create mode 100644 sagenb/data/mathjax/docs/html/options/TeX.html create mode 100644 sagenb/data/mathjax/docs/html/options/hub.html create mode 100644 sagenb/data/mathjax/docs/html/options/index.html create mode 100644 sagenb/data/mathjax/docs/html/options/jsMath2jax.html create mode 100644 sagenb/data/mathjax/docs/html/options/mml2jax.html create mode 100644 sagenb/data/mathjax/docs/html/options/tex2jax.html create mode 100644 sagenb/data/mathjax/docs/html/output.html create mode 100644 sagenb/data/mathjax/docs/html/platforms/index.html create mode 100644 sagenb/data/mathjax/docs/html/platforms/movable-type.html create mode 100644 sagenb/data/mathjax/docs/html/platforms/wordpress.html create mode 100644 sagenb/data/mathjax/docs/html/queues.html create mode 100644 sagenb/data/mathjax/docs/html/search.html create mode 100644 sagenb/data/mathjax/docs/html/searchindex.js create mode 100644 sagenb/data/mathjax/docs/html/signals.html create mode 100644 sagenb/data/mathjax/docs/html/start.html create mode 100644 sagenb/data/mathjax/docs/html/startup.html create mode 100644 sagenb/data/mathjax/docs/html/synchronize.html create mode 100644 sagenb/data/mathjax/docs/html/tex.html create mode 100644 sagenb/data/mathjax/docs/html/typeset.html create mode 100644 sagenb/data/mathjax/docs/html/upgrade.html create mode 100644 sagenb/data/mathjax/docs/html/whats-new.html create mode 100644 sagenb/data/mathjax/docs/source/CSS-styles.rst create mode 100644 sagenb/data/mathjax/docs/source/HTML-snippets.rst create mode 100644 sagenb/data/mathjax/docs/source/_static/mathjax_mathml.user.js create mode 100644 sagenb/data/mathjax/docs/source/_static/mathjax_wikipedia.user.js create mode 100644 sagenb/data/mathjax/docs/source/api/ajax.rst create mode 100644 sagenb/data/mathjax/docs/source/api/callback.rst create mode 100644 sagenb/data/mathjax/docs/source/api/elementjax.rst create mode 100644 sagenb/data/mathjax/docs/source/api/html.rst create mode 100644 sagenb/data/mathjax/docs/source/api/hub.rst create mode 100644 sagenb/data/mathjax/docs/source/api/index.rst create mode 100644 sagenb/data/mathjax/docs/source/api/inputjax.rst create mode 100644 sagenb/data/mathjax/docs/source/api/jax.rst create mode 100644 sagenb/data/mathjax/docs/source/api/message.rst create mode 100644 sagenb/data/mathjax/docs/source/api/object.rst create mode 100644 sagenb/data/mathjax/docs/source/api/outputjax.rst create mode 100644 sagenb/data/mathjax/docs/source/api/queue.rst create mode 100644 sagenb/data/mathjax/docs/source/api/signal.rst create mode 100644 sagenb/data/mathjax/docs/source/api/variable.rst create mode 100644 sagenb/data/mathjax/docs/source/callbacks.rst create mode 100644 sagenb/data/mathjax/docs/source/community.rst create mode 100644 sagenb/data/mathjax/docs/source/conf.py create mode 100644 sagenb/data/mathjax/docs/source/config-files.rst create mode 100644 sagenb/data/mathjax/docs/source/configuration.rst create mode 100644 sagenb/data/mathjax/docs/source/dynamic.rst create mode 100644 sagenb/data/mathjax/docs/source/glossary.rst create mode 100644 sagenb/data/mathjax/docs/source/images/mt_head.png create mode 100644 sagenb/data/mathjax/docs/source/images/mt_menu.png create mode 100644 sagenb/data/mathjax/docs/source/images/mt_templates.png create mode 100644 sagenb/data/mathjax/docs/source/images/wp_menu.png create mode 100644 sagenb/data/mathjax/docs/source/images/wp_templates.png create mode 100644 sagenb/data/mathjax/docs/source/index.rst create mode 100644 sagenb/data/mathjax/docs/source/installation.rst create mode 100644 sagenb/data/mathjax/docs/source/jsMath.rst create mode 100644 sagenb/data/mathjax/docs/source/mathjax.rst create mode 100644 sagenb/data/mathjax/docs/source/mathml.rst create mode 100644 sagenb/data/mathjax/docs/source/mjtheme/layout.html create mode 100644 sagenb/data/mathjax/docs/source/mjtheme/static/mj.css_t create mode 100644 sagenb/data/mathjax/docs/source/mjtheme/theme.conf create mode 100644 sagenb/data/mathjax/docs/source/model.rst create mode 100644 sagenb/data/mathjax/docs/source/options/FontWarnings.rst create mode 100644 sagenb/data/mathjax/docs/source/options/HTML-CSS.rst create mode 100644 sagenb/data/mathjax/docs/source/options/MMLorHTML.rst create mode 100644 sagenb/data/mathjax/docs/source/options/MathML.rst create mode 100644 sagenb/data/mathjax/docs/source/options/MathMenu.rst create mode 100644 sagenb/data/mathjax/docs/source/options/MathZoom.rst create mode 100644 sagenb/data/mathjax/docs/source/options/NativeMML.rst create mode 100644 sagenb/data/mathjax/docs/source/options/TeX.rst create mode 100644 sagenb/data/mathjax/docs/source/options/hub.rst create mode 100644 sagenb/data/mathjax/docs/source/options/index.rst create mode 100644 sagenb/data/mathjax/docs/source/options/jsMath2jax.rst create mode 100644 sagenb/data/mathjax/docs/source/options/mml2jax.rst create mode 100644 sagenb/data/mathjax/docs/source/options/tex2jax.rst create mode 100644 sagenb/data/mathjax/docs/source/output.rst create mode 100644 sagenb/data/mathjax/docs/source/platforms/index.rst create mode 100644 sagenb/data/mathjax/docs/source/platforms/movable-type.rst create mode 100644 sagenb/data/mathjax/docs/source/platforms/wordpress.rst create mode 100644 sagenb/data/mathjax/docs/source/queues.rst create mode 100644 sagenb/data/mathjax/docs/source/signals.rst create mode 100644 sagenb/data/mathjax/docs/source/start.rst create mode 100644 sagenb/data/mathjax/docs/source/startup.rst create mode 100644 sagenb/data/mathjax/docs/source/synchronize.rst create mode 100644 sagenb/data/mathjax/docs/source/tex.rst create mode 100644 sagenb/data/mathjax/docs/source/typeset.rst create mode 100644 sagenb/data/mathjax/docs/source/upgrade.rst create mode 100644 sagenb/data/mathjax/docs/source/whats-new.rst create mode 100644 sagenb/data/mathjax/extensions/FontWarnings.js create mode 100644 sagenb/data/mathjax/extensions/MathMenu.js create mode 100644 sagenb/data/mathjax/extensions/MathZoom.js create mode 100644 sagenb/data/mathjax/extensions/TeX/AMSmath.js create mode 100644 sagenb/data/mathjax/extensions/TeX/AMSsymbols.js create mode 100644 sagenb/data/mathjax/extensions/TeX/HTML.js create mode 100644 sagenb/data/mathjax/extensions/TeX/autobold.js create mode 100644 sagenb/data/mathjax/extensions/TeX/boldsymbol.js create mode 100644 sagenb/data/mathjax/extensions/TeX/mathchoice.js create mode 100644 sagenb/data/mathjax/extensions/TeX/newcommand.js create mode 100644 sagenb/data/mathjax/extensions/TeX/noErrors.js create mode 100644 sagenb/data/mathjax/extensions/TeX/noUndefined.js create mode 100644 sagenb/data/mathjax/extensions/TeX/unicode.js create mode 100644 sagenb/data/mathjax/extensions/TeX/verb.js create mode 100644 sagenb/data/mathjax/extensions/jsMath2jax.js create mode 100644 sagenb/data/mathjax/extensions/mml2jax.js create mode 100644 sagenb/data/mathjax/extensions/tex2jax.js create mode 100644 sagenb/data/mathjax/extensions/toMathML.js create mode 100644 sagenb/data/mathjax/extensions/v1.0-warning.js create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Bold.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Bold.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-BoldItalic.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Italic.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Bold.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Italic.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Script-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size1-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size2-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size3-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size4-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Typewriter-Regular.svg create mode 100644 sagenb/data/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_WinChrome-Regular.svg create mode 100644 sagenb/data/mathjax/jax/element/mml/jax.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/Arrows.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/BasicLatin.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/Dingbats.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/GeometricShapes.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/MathOperators.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/MiscTechnical.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/SuppMathOperators.js create mode 100644 sagenb/data/mathjax/jax/element/mml/optable/SupplementalArrowsB.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/config.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/a.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/b.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/c.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/d.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/e.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/f.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/fr.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/g.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/h.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/i.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/j.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/k.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/l.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/m.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/n.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/o.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/opf.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/p.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/q.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/r.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/s.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/scr.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/t.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/u.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/v.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/w.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/x.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/y.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/entities/z.js create mode 100644 sagenb/data/mathjax/jax/input/MathML/jax.js create mode 100644 sagenb/data/mathjax/jax/input/TeX/config.js create mode 100644 sagenb/data/mathjax/jax/input/TeX/jax.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/autoload/annotation-xml.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/autoload/maction.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/autoload/menclose.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/autoload/mglyph.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/autoload/mmultiscripts.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/autoload/ms.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/autoload/mtable.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/autoload/multiline.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/config.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/imageFonts.js create mode 100644 sagenb/data/mathjax/jax/output/HTML-CSS/jax.js create mode 100644 sagenb/data/mathjax/jax/output/NativeMML/config.js create mode 100644 sagenb/data/mathjax/jax/output/NativeMML/jax.js create mode 100644 sagenb/data/mathjax/test/index-images.html create mode 100644 sagenb/data/mathjax/test/index.html create mode 100644 sagenb/data/mathjax/test/sample-dynamic-steps.html create mode 100644 sagenb/data/mathjax/test/sample-dynamic.html create mode 100644 sagenb/data/mathjax/test/sample-mml.html create mode 100644 sagenb/data/mathjax/test/sample-signals.html create mode 100644 sagenb/data/mathjax/test/sample-tex.html create mode 100644 sagenb/data/mathjax/test/sample.html create mode 100644 sagenb/data/mathjax/unpacked/MathJax.js create mode 100644 sagenb/data/mathjax/unpacked/config/Accessible-full.js create mode 100644 sagenb/data/mathjax/unpacked/config/Accessible.js create mode 100644 sagenb/data/mathjax/unpacked/config/MML_HTMLorMML-full.js create mode 100644 sagenb/data/mathjax/unpacked/config/MML_HTMLorMML.js create mode 100644 sagenb/data/mathjax/unpacked/config/MMLorHTML.js create mode 100644 sagenb/data/mathjax/unpacked/config/TeX-AMS-MML_HTMLorMML-full.js create mode 100644 sagenb/data/mathjax/unpacked/config/TeX-AMS-MML_HTMLorMML.js create mode 100644 sagenb/data/mathjax/unpacked/config/TeX-AMS_HTML-full.js create mode 100644 sagenb/data/mathjax/unpacked/config/TeX-AMS_HTML.js create mode 100644 sagenb/data/mathjax/unpacked/config/default.js create mode 100644 sagenb/data/mathjax/unpacked/config/local/local.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/FontWarnings.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/MathMenu.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/MathZoom.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/TeX/AMSmath.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/TeX/AMSsymbols.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/TeX/HTML.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/TeX/autobold.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/TeX/boldsymbol.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/TeX/mathchoice.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/TeX/newcommand.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/TeX/noErrors.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/TeX/noUndefined.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/TeX/unicode.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/TeX/verb.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/jsMath2jax.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/mml2jax.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/tex2jax.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/toMathML.js create mode 100644 sagenb/data/mathjax/unpacked/extensions/v1.0-warning.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/jax.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/Arrows.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/BasicLatin.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/Dingbats.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/GeometricShapes.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/MathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/MiscMathSymbolsA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/MiscMathSymbolsB.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/MiscTechnical.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/SuppMathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/element/mml/optable/SupplementalArrowsB.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/config.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/a.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/b.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/c.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/d.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/e.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/f.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/fr.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/g.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/h.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/i.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/j.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/k.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/l.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/m.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/n.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/o.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/opf.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/p.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/q.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/r.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/s.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/scr.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/t.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/u.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/v.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/w.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/x.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/y.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/entities/z.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/MathML/jax.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/TeX/config.js create mode 100644 sagenb/data/mathjax/unpacked/jax/input/TeX/jax.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/autoload/annotation-xml.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/autoload/maction.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/autoload/menclose.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/autoload/mglyph.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/autoload/mmultiscripts.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/autoload/ms.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/autoload/mtable.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/autoload/multiline.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/blank.gif create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/config.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/imageFonts.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/HTML-CSS/jax.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/NativeMML/config.js create mode 100644 sagenb/data/mathjax/unpacked/jax/output/NativeMML/jax.js diff --git a/sagenb/data/mathjax/.gitignore b/sagenb/data/mathjax/.gitignore new file mode 100644 index 000000000..b4a5134af --- /dev/null +++ b/sagenb/data/mathjax/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +docs/build/html-mathjax-site diff --git a/sagenb/data/mathjax/LICENSE b/sagenb/data/mathjax/LICENSE new file mode 100644 index 000000000..d64569567 --- /dev/null +++ b/sagenb/data/mathjax/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/sagenb/data/mathjax/MathJax.js b/sagenb/data/mathjax/MathJax.js new file mode 100644 index 000000000..f05132e9b --- /dev/null +++ b/sagenb/data/mathjax/MathJax.js @@ -0,0 +1,30 @@ +/************************************************************* + * + * MathJax.js + * + * The main code for the MathJax math-typesetting library. See + * http://www.mathjax.org/ for details. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2010 Design Science, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +if (!window.MathJax) {window.MathJax = {}} + +MathJax.isPacked = true; + +if(document.getElementById&&document.childNodes&&document.createElement){if(!window.MathJax){window.MathJax={}}if(!MathJax.Hub){MathJax.version="1.1a";MathJax.fileversion="1.1.7";(function(d){var b=window[d];if(!b){b=window[d]={}}var f=[];var c=function(g){var h=g.constructor;if(!h){h=new Function("")}for(var i in g){if(i!=="constructor"&&g.hasOwnProperty(i)){h[i]=g[i]}}return h};var a=function(){return new Function("return arguments.callee.Init.call(this,arguments)")};var e=a();e.prototype={bug_test:1};if(!e.prototype.bug_test){a=function(){return function(){return arguments.callee.Init.call(this,arguments)}}}b.Object=c({constructor:a(),Subclass:function(g,i){var h=a();h.SUPER=this;h.Init=this.Init;h.Subclass=this.Subclass;h.Augment=this.Augment;h.protoFunction=this.protoFunction;h.can=this.can;h.has=this.has;h.isa=this.isa;h.prototype=new this(f);h.prototype.constructor=h;h.Augment(g,i);return h},Init:function(g){var h=this;if(g.length===1&&g[0]===f){return h}if(!(h instanceof g.callee)){h=new g.callee(f)}return h.Init.apply(h,g)||h},Augment:function(g,h){var i;if(g!=null){for(i in g){if(g.hasOwnProperty(i)){this.protoFunction(i,g[i])}}if(g.toString!==this.prototype.toString&&g.toString!=={}.toString){this.protoFunction("toString",g.toString)}}if(h!=null){for(i in h){if(h.hasOwnProperty(i)){this[i]=h[i]}}}return this},protoFunction:function(h,g){this.prototype[h]=g;if(typeof g==="function"){g.SUPER=this.SUPER.prototype}},prototype:{Init:function(){},SUPER:function(g){return g.callee.SUPER},can:function(g){return typeof(this[g])==="function"},has:function(g){return typeof(this[g])!=="undefined"},isa:function(g){return(g instanceof Object)&&(this instanceof g)}},can:function(g){return this.prototype.can.call(this,g)},has:function(g){return this.prototype.has.call(this,g)},isa:function(h){var g=this;while(g){if(g===h){return true}else{g=g.SUPER}}return false},SimpleSUPER:c({constructor:function(g){return this.SimpleSUPER.define(g)},define:function(g){var i={};if(g!=null){for(var h in g){if(g.hasOwnProperty(h)){this.protoFunction(h,g[h])}}if(g.toString!==this.prototype.toString&&g.toString!=={}.toString){this.protoFunction("toString",g.toString)}}return i},wrap:function(i,h){if(typeof(h)==="function"&&h.toString().match(/\.\s*SUPER\s*\(/)){var g=new Function(this.wrapper);g.label=i;g.original=h;h=g;g.toString=this.stringify}return h},wrapper:function(){var h=arguments.callee;this.SUPER=h.SUPER[h.label];try{var g=h.original.apply(this,arguments)}catch(i){delete this.SUPER;throw i}delete this.SUPER;return g}.toString().replace(/^\s*function \(\)\s*\{\s*/i,"").replace(/\s*\}\s*$/i,""),toString:function(){return this.original.toString.apply(this.original,arguments)}})})})("MathJax");(function(BASENAME){var BASE=window[BASENAME];if(!BASE){BASE=window[BASENAME]={}}var CALLBACK=function(data){var cb=new Function("return arguments.callee.execute.apply(arguments.callee,arguments)");for(var id in CALLBACK.prototype){if(CALLBACK.prototype.hasOwnProperty(id)){if(typeof(data[id])!=="undefined"){cb[id]=data[id]}else{cb[id]=CALLBACK.prototype[id]}}}cb.toString=CALLBACK.prototype.toString;return cb};CALLBACK.prototype={isCallback:true,hook:function(){},data:[],object:window,execute:function(){if(!this.called||this.autoReset){this.called=!this.autoReset;return this.hook.apply(this.object,this.data.concat([].slice.call(arguments,0)))}},reset:function(){delete this.called},toString:function(){return this.hook.toString.apply(this.hook,arguments)}};var ISCALLBACK=function(f){return(typeof(f)==="function"&&f.isCallback)};var EVAL=function(code){return eval.call(window,code)};EVAL("var __TeSt_VaR__ = 1");if(window.__TeSt_VaR__){try{delete window.__TeSt_VaR__}catch(error){window.__TeSt_VaR__=null}}else{if(window.execScript){EVAL=function(code){BASE.__code=code;code="try {"+BASENAME+".__result = eval("+BASENAME+".__code)} catch(err) {"+BASENAME+".__result = err}";window.execScript(code);var result=BASE.__result;delete BASE.__result;delete BASE.__code;if(result instanceof Error){throw result}return result}}else{EVAL=function(code){BASE.__code=code;code="try {"+BASENAME+".__result = eval("+BASENAME+".__code)} catch(err) {"+BASENAME+".__result = err}";var head=(document.getElementsByTagName("head"))[0];if(!head){head=document.body}var script=document.createElement("script");script.appendChild(document.createTextNode(code));head.appendChild(script);head.removeChild(script);var result=BASE.__result;delete BASE.__result;delete BASE.__code;if(result instanceof Error){throw result}return result}}}var USING=function(args,i){if(arguments.length>1){if(arguments.length===2&&!(typeof arguments[0]==="function")&&arguments[0] instanceof Object&&typeof arguments[1]==="number"){args=[].slice.call(args,i)}else{args=[].slice.call(arguments,0)}}if(args instanceof Array&&args.length===1){args=args[0]}if(typeof args==="function"){if(args.execute===CALLBACK.prototype.execute){return args}return CALLBACK({hook:args})}else{if(args instanceof Array){if(typeof(args[0])==="string"&&args[1] instanceof Object&&typeof args[1][args[0]]==="function"){return CALLBACK({hook:args[1][args[0]],object:args[1],data:args.slice(2)})}else{if(typeof args[0]==="function"){return CALLBACK({hook:args[0],data:args.slice(1)})}else{if(typeof args[1]==="function"){return CALLBACK({hook:args[1],object:args[0],data:args.slice(2)})}}}}else{if(typeof(args)==="string"){return CALLBACK({hook:EVAL,data:[args]})}else{if(args instanceof Object){return CALLBACK(args)}else{if(typeof(args)==="undefined"){return CALLBACK({})}}}}}throw Error("Can't make callback from given data")};var DELAY=function(time,callback){callback=USING(callback);callback.timeout=setTimeout(callback,time);return callback};var WAITFOR=function(callback,signal){callback=USING(callback);if(!callback.called){WAITSIGNAL(callback,signal);signal.pending++}};var WAITEXECUTE=function(){var signals=this.signal;delete this.signal;this.execute=this.oldExecute;delete this.oldExecute;var result=this.execute.apply(this,arguments);if(ISCALLBACK(result)&&!result.called){WAITSIGNAL(result,signals)}else{for(var i=0,m=signals.length;if){f=document.styleSheets.length}if(!h){h=(document.getElementsByTagName("head"))[0];if(!h){h=document.body}}return h};var e=[];var b=function(){for(var j=0,h=e.length;j=this.timeout){h(this.STATUS.ERROR);return 1}return 0},file:function(i,h){if(h<0){a.Ajax.loadTimeout(i)}else{a.Ajax.loadComplete(i)}},execute:function(){this.hook.call(this.object,this,this.data[0],this.data[1])},checkSafari2:function(h,i,j){if(h.time(j)){return}if(document.styleSheets.length>i&&document.styleSheets[i].cssRules&&document.styleSheets[i].cssRules.length){j(h.STATUS.OK)}else{setTimeout(h,h.delay)}},checkLength:function(h,k,m){if(h.time(m)){return}var l=0;var i=(k.sheet||k.styleSheet);try{if((i.cssRules||i.rules||[]).length>0){l=1}}catch(j){if(j.message.match(/protected variable|restricted URI/)){l=1}else{if(j.message.match(/Security error/)){l=1}}}if(l){setTimeout(a.Callback([m,h.STATUS.OK]),0)}else{setTimeout(h,h.delay)}}},loadComplete:function(h){h=this.fileURL(h);var i=this.loading[h];if(i&&!i.preloaded){a.Message.Clear(i.message);clearTimeout(i.timeout);if(i.script){if(e.length===0){setTimeout(b,0)}e.push(i.script)}this.loaded[h]=i.status;delete this.loading[h];if(!this.loadHooks[h]){this.loadHooks[h]=[]}this.loadHooks[h].push(i.callback)}else{this.loaded[h]=this.STATUS.OK;i={status:this.STATUS.OK}}a.Callback.ExecuteHooks(this.loadHooks[h],i.status)},loadTimeout:function(h){if(this.loading[h].timeout){clearTimeout(this.loading[h].timeout)}this.loading[h].status=this.STATUS.ERROR;this.loadError(h);this.loadComplete(h)},loadError:function(h){a.Message.Set("File failed to load: "+h,null,2000)},Styles:function(j,k){var h=this.StyleString(j);if(h===""){k=a.Callback(k);k()}else{var i=document.createElement("style");i.type="text/css";this.head=g(this.head);this.head.appendChild(i);if(i.styleSheet&&typeof(i.styleSheet.cssText)!=="undefined"){i.styleSheet.cssText=h}else{i.appendChild(document.createTextNode(h))}k=this.timer.create.call(this,k,i)}return k},StyleString:function(m){if(typeof(m)==="string"){return m}var j="",n,l;for(n in m){if(m.hasOwnProperty(n)){if(typeof m[n]==="string"){j+=n+" {"+m[n]+"}\n"}else{if(m[n] instanceof Array){for(var k=0;k1?d[1]:""));g=null}if(f&&(!b.preJax||d)){c.nodeValue=c.nodeValue.replace(b.postJax,(f.length>1?f[1]:""))}if(g&&!g.nodeValue.match(/\S/)){g=g.previousSibling}}if(b.preRemoveClass&&g&&g.className==b.preRemoveClass){try{g.innerHTML=""}catch(e){}g.style.display="none"}if(a.MathJax){a.MathJax.checked=1}},processScripts:function(h,b,d){if(arguments.callee.disabled){return null}var q,o=MathJax.ElementJax.STATE;var p=this.config.inputJax,c=this.config.outputJax;try{if(!b){b=new Date().getTime()}var j=0,l,f;while(jthis.processUpdateTime&&j=0;o--){if(b[o].src.match(d)){q.script=b[o].innerHTML;if(RegExp.$2){var r=RegExp.$2.substr(1).split(/\&/);for(var n=0,h=r.length;n=parseInt(x[y])}}return true},Select:function(j){var i=j[c.Browser];if(i){return i(c.Browser)}return null}};var g=navigator.userAgent.replace(/^Mozilla\/(\d+\.)+\d+ /,"").replace(/[a-z][-a-z0-9._: ]+\/\d+[^ ]*-[^ ]*\.([a-z][a-z])?\d+ /i,"").replace(/Gentoo |Ubuntu\/(\d+\.)*\d+ (\([^)]*\) )?/,"");c.Browser=c.Insert(c.Insert(new String("Unknown"),{version:"0.0"}),a);for(var t in a){if(a.hasOwnProperty(t)){if(a[t]&&t.substr(0,2)==="is"){t=t.slice(2);if(t==="Mac"||t==="PC"){continue}c.Browser=c.Insert(new String(t),a);var p=new RegExp(".*(Version)/((?:\\d+\\.)+\\d+)|.*("+t+")"+(t=="MSIE"?" ":"/")+"((?:\\d+\\.)*\\d+)|(?:^|\\(| )([a-z][-a-z0-9._: ]+|(?:Apple)?WebKit)/((?:\\d+\\.)+\\d+)");var s=p.exec(g)||["","","","unknown","0.0"];c.Browser.name=(s[1]=="Version"?t:(s[3]||s[5]));c.Browser.version=s[2]||s[4]||s[6];break}}}c.Browser.Select({Safari:function(j){var i=parseInt((String(j.version).split("."))[0]);if(i>85){j.webkit=j.version}if(i>=533){j.version="5.0"}else{if(i>=526){j.version="4.0"}else{if(i>=525){j.version="3.1"}else{if(i>500){j.version="3.0"}else{if(i>400){j.version="2.0"}else{if(i>85){j.version="1.0"}}}}}}},Firefox:function(j){if(j.version==="0.0"&&navigator.product==="Gecko"&&navigator.productSub){var i=navigator.productSub.substr(0,8);if(i>="20090630"){j.version="3.5"}else{if(i>="20080617"){j.version="3.0"}else{if(i>="20061024"){j.version="2.0"}}}}},Opera:function(i){i.version=opera.version()},MSIE:function(i){i.isIE9=!!(document.documentMode&&(window.performance||window.msPerformance));MathJax.HTML.setScriptBug=!i.isIE9||document.documentMode<9}});c.Browser.Select(MathJax.Message.browsers);c.queue=f.Callback.Queue();c.queue.Push(["Post",q.signal,"Begin"],["Config",q],["Cookie",q],["Styles",q],["Message",q],function(){var i=f.Callback.Queue(q.Jax(),q.Extensions());return i.Push({})},["Menu",q],q.onLoad(),function(){MathJax.isReady=true},["Typeset",q],["Post",q.signal,"End"])})("MathJax")}}; + diff --git a/sagenb/data/mathjax/README-branch.txt b/sagenb/data/mathjax/README-branch.txt new file mode 100644 index 000000000..321fcf299 --- /dev/null +++ b/sagenb/data/mathjax/README-branch.txt @@ -0,0 +1 @@ +This is release branch v1.1 of MathJax. diff --git a/sagenb/data/mathjax/README.md b/sagenb/data/mathjax/README.md new file mode 100644 index 000000000..eee7fca92 --- /dev/null +++ b/sagenb/data/mathjax/README.md @@ -0,0 +1,52 @@ +# MathJax + +## Beautiful math in all browsers + +MathJax is an open-source JavaScript display engine for LaTeX and MathML +that works in all modern browsers. It was designed with the goal of +consolidating the recent advances in web technologies into a single, +definitive, math-on-the-web platform supporting the major browsers and +operating systems. It requires no setup on the part of the user (no +plugins to download or software to install), so the page author can write +web documents that include mathematics and be confident that users will be +able to view it naturally and easily. Simply include MathJax and some +mathematics in a web page, and MathJax does the rest. + +Some of the main features of MathJax include: + +- High-quality display of LaTeX and MathML math notation in HTML pages + +- Supported in most browsers with no plug-ins, extra fonts, or special + setup for the reader + +- Easy for authors, flexible for publishers, extensible for developers + +- Supports math accessibility, cut-and-paste interoperability and other + advanced functionality + +- Powerful API for integration with other web applications + +See for additional details. + + +## Installation and Usage + +The MathJax installation and usage documentation is available in the +`docs/html` directory of the MathJax distribution (see +`docs/html/index.html` for the starting point). The documents are also +available on the MathJax web site on line at . + + +## Community + +The main MathJax website is , and it includes +announcements and other important information. MathJax is maintained and +distributed on GitHub at . A user forum +for asking questions and getting assistance is hosted at Google, and the +bug tracker is hosted at GitHub: + +Bug tracker: +MathJax-Users Group: + +Before reporting a bug, please check that it has not already been reported. +Also, please use the bug tracker for reporting bugs rather than the help forum. diff --git a/sagenb/data/mathjax/config/Accessible-full.js b/sagenb/data/mathjax/config/Accessible-full.js new file mode 100644 index 000000000..a6be2c0df --- /dev/null +++ b/sagenb/data/mathjax/config/Accessible-full.js @@ -0,0 +1,95 @@ +/* + * /MathJax/config/Accessible-full.js + * + * Copyright (c) 2010-11 Design Science, Inc. + * + * Part of the MathJax library. + * See http://www.mathjax.org for details. + * + * Licensed under the Apache License, Version 2.0; + * you may not use this file except in compliance with the License. + * + * http://www.apache.org/licenses/LICENSE-2.0 + */ + +MathJax.Hub.Config({delayJaxRegistration: true}); + +MathJax.Ajax.Preloading( + "[MathJax]/jax/input/TeX/config.js", + "[MathJax]/jax/input/MathML/config.js", + "[MathJax]/jax/output/HTML-CSS/config.js", + "[MathJax]/jax/output/NativeMML/config.js", + "[MathJax]/config/MMLorHTML.js", + "[MathJax]/extensions/tex2jax.js", + "[MathJax]/extensions/mml2jax.js", + "[MathJax]/extensions/MathZoom.js", + "[MathJax]/extensions/MathMenu.js", + "[MathJax]/jax/element/mml/jax.js", + "[MathJax]/extensions/toMathML.js", + "[MathJax]/extensions/TeX/noErrors.js", + "[MathJax]/extensions/TeX/noUndefined.js", + "[MathJax]/jax/input/TeX/jax.js", + "[MathJax]/extensions/TeX/AMSmath.js", + "[MathJax]/extensions/TeX/AMSsymbols.js", + "[MathJax]/jax/input/MathML/jax.js", + "[MathJax]/jax/output/NativeMML/jax.js", + "[MathJax]/jax/output/HTML-CSS/jax.js", + "[MathJax]/jax/output/HTML-CSS/autoload/mtable.js" +); + +MathJax.Hub.Config({"v1.0-compatible":false}); + +MathJax.Hub.Config({ + NativeMML: { + showMathMenuMSIE: false + }, + menuSettings: { + zoom: "Double-Click" + }, + errorSettings: { + message: ["[Math Error]"] + } + +}); + +MathJax.InputJax.TeX=MathJax.InputJax({id:"TeX",version:"1.1.1",directory:MathJax.InputJax.directory+"/TeX",extensionDir:MathJax.InputJax.extensionDir+"/TeX",config:{TagSide:"right",TagIndent:"0.8em",MultLineWidth:"85%"}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); + +MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"1.1.4",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); + +MathJax.OutputJax["HTML-CSS"]=MathJax.OutputJax({id:"HTML-CSS",version:"1.1.5",directory:MathJax.OutputJax.directory+"/HTML-CSS",extensionDir:MathJax.OutputJax.extensionDir+"/HTML-CSS",autoloadDir:MathJax.OutputJax.directory+"/HTML-CSS/autoload",fontDir:MathJax.OutputJax.directory+"/HTML-CSS/fonts",webfontDir:MathJax.OutputJax.fontDir+"/HTML-CSS",config:{scale:100,minScaleAdjust:50,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",showMathMenu:true,styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror":{"background-color":"#FFFF88",color:"#CC0000",border:"1px solid #CC0000",padding:"1px 3px","font-family":"serif","font-style":"normal","font-size":"90%"},".MathJax_Preview":{color:"#888888"},"#MathJax_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')",padding:"3px 4px"}}}});if(MathJax.Hub.Browser.isMSIE&&document.documentMode>=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax.id==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/"/g,""")},createPreview:function(b,a){var c;if(this.config.preview==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterText(d)]}}else{if(this.config.preview instanceof Array){c=this.config.preview}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterText:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); + +(function(a,c,e,b,h){var i="1.1";var g=a.CombineConfig("MathZoom",{delay:400,styles:{"#MathJax_Zoom":{position:"absolute","background-color":"#F0F0F0",overflow:"auto",display:"block","z-index":301,padding:".5em",border:"1px solid black",margin:0,"font-family":"serif","font-size":"85%","font-weight":"normal","font-style":"normal","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","box-shadow":"5px 5px 15px #AAAAAA","-webkit-box-shadow":"5px 5px 15px #AAAAAA","-moz-box-shadow":"5px 5px 15px #AAAAAA","-khtml-box-shadow":"5px 5px 15px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},"#MathJax_ZoomOverlay":{position:"absolute",left:0,top:0,"z-index":300,display:"inline-block",width:"100%",height:"100%",border:0,padding:0,margin:0,"background-color":"white",opacity:0,filter:"alpha(opacity=0)"}}});var d=function(j){if(!j){j=window.event}if(j){if(j.preventDefault){j.preventDefault()}if(j.stopPropagation){j.stopPropagation()}j.cancelBubble=true;j.returnValue=false}return false};var f=MathJax.Extension.MathZoom={version:i,settings:a.config.menuSettings,HandleEvent:function(l,j,k){if(!l){l=window.event}if(f.settings.CTRL&&!l.ctrlKey){return true}if(f.settings.ALT&&!l.altKey){return true}if(f.settings.CMD&&!l.metaKey){return true}if(f.settings.Shift&&!l.shiftKey){return true}return f[j](l,k)},Click:function(k,j){if(this.settings.zoom==="Click"){return this.Zoom(j,k)}},DblClick:function(k,j){if(this.settings.zoom==="Double-Click"){return this.Zoom(j,k)}},Mouseover:function(k,j){if(this.settings.zoom==="Hover"){f.oldMouseOver=j.onmouseover;j.onmouseover=null;j.onmousemove=this.Mousemove;j.onmouseout=this.Mouseout;return f.Timer(k,j)}},Mouseout:function(j){this.onmouseover=f.oldMouseOver;delete f.oldMouseOver;this.onmousemove=this.onmouseout=null;f.ClearTimer();return d(j)},Mousemove:function(j){return f.Timer(j||window.event,this)},Timer:function(k,j){this.ClearTimer();this.timer=setTimeout(MathJax.Callback(["Zoom",this,j,{}]),g.delay);return d(k)},ClearTimer:function(){if(this.timer){clearTimeout(this.timer);delete this.timer}},Zoom:function(s,l){this.ClearTimer();this.Remove();var v=s.parentNode;if(v.className==="MathJax_MathContainer"){v=v.parentNode}if(v.parentNode.className==="MathJax_MathContainer"){v=v.parentNode.parentNode}var q=(String(v.className).match(/^MathJax_(MathML|Display)$/)?v:s).nextSibling;var m=a.getJaxFor(q),r=m.root;var o=(b&&m.outputJax.isa(b.constructor)?"HTMLCSS":(h&&m.outputJax.isa(h.constructor)?"MathML":null));if(!o){return}var j=Math.floor(0.85*document.body.clientWidth),p=Math.floor(0.85*document.body.clientHeight);var k=c.Element("span",{style:{position:"relative",display:"inline-block",height:0,width:0},id:"MathJax_ZoomFrame"},[["span",{id:"MathJax_ZoomOverlay",onmousedown:this.Remove}],["span",{id:"MathJax_Zoom",onclick:this.Remove,style:{visibility:"hidden",fontSize:this.settings.zscale,"max-width":j+"px","max-height":p+"px"}},[["span"]]]]);var x=k.lastChild,u=x.firstChild,n=k.firstChild;s.parentNode.insertBefore(k,s);if(this.msieZIndexBug){var t=c.Element("img",{src:"about:blank",id:"MathJax_ZoomTracker",style:{width:0,height:0,position:"relative"}});document.body.appendChild(k);k.style.position="absolute";k.style.zIndex=g.styles["#MathJax_ZoomOverlay"]["z-index"];k=t}var w=(this["Zoom"+o])(r,u,s);if(this.msiePositionBug){if(this.msieIE8Bug){u.style.position="absolute";x.style.height=u.offsetHeight;u.style.position="";if(x.offsetHeight<=p&&x.offsetWidth<=j){x.style.overflow="visible"}}if(this.msieWidthBug){x.style.width=Math.min(j,w.w)}else{if(w.w>j){x.style.width=j}}if(x.offsetHeight>p){x.style.Height=p+"px"}if(s.nextSibling){s.parentNode.insertBefore(k,s.nextSibling)}else{v.appendChild(k)}}else{if(this.operaPositionBug){x.style.width=Math.min(j,u.offsetWidth)+"px"}}this.Position(x,w,(o==="MathML"&&v.nodeName.toLowerCase()==="div"));x.style.visibility="";if(this.settings.zoom==="Hover"){n.onmouseover=this.Remove}if(window.addEventListener){addEventListener("resize",this.Resize,false)}else{if(window.attachEvent){attachEvent("onresize",this.Resize)}else{this.onresize=window.onresize;window.onresize=this.Resize}}return d(l)},ZoomHTMLCSS:function(o,q,p){q.className="MathJax";b.idPostfix="-zoom";b.getScales(q,q);o.toHTML(q,q);var r=o.HTMLspanElement().bbox;b.idPostfix="";if(r.width&&r.width!=="100%"){var j=Math.floor(0.85*document.body.clientWidth);q.style.width=j+"px";q.style.display="inline-block";var k=(o.id||"MathJax-Span-"+o.spanID)+"-zoom";var l=document.getElementById(k).firstChild;while(l&&l.style.width!==r.width){l=l.nextSibling}if(l){l.style.width="100%"}}q.appendChild(this.topImg);var n=this.topImg.offsetTop;q.removeChild(this.topImg);var m=(this.msieWidthBug?b.getW(p)*b.em:p.offsetWidth);return{w:r.w*b.em,Y:-n,W:m}},ZoomMathML:function(k,l,m){k.toNativeMML(l,l);var n;l.appendChild(this.topImg);n=this.topImg.offsetTop;l.removeChild(this.topImg);var j=(this.ffMMLwidthBug?m.parentNode:m).offsetWidth;return{w:l.offsetWidth,Y:-n,W:j}},Position:function(p,n,r){var k=this.Resize(),m=k.x,l=k.y,j=n.W;if(this.msiePositionBug){j=-j}if(r&&this.ffMMLcenterBug){j=0}var q=-Math.floor((p.offsetWidth-j)/2),o=n.Y;p.style.left=Math.max(q,20-m)+"px";p.style.top=Math.max(o,20-l)+"px"},Resize:function(l){if(f.onresize){f.onresize(l)}var j=0,o=0,n=document.getElementById("MathJax_ZoomFrame"),k=document.getElementById("MathJax_ZoomOverlay");var m=(f.msieZIndexBug?document.getElementById("MathJax_ZoomTracker"):n);if(f.operaPositionBug){n.style.border="1px solid"}if(m.offsetParent){do{j+=m.offsetLeft;o+=m.offsetTop}while(m=m.offsetParent)}if(f.operaPositionBug){n.style.border=""}if(f.msieZIndexBug){n.style.left=j+"px";n.style.top=o+"px"}k.style.left=(-j)+"px";k.style.top=(-o)+"px";if(f.msiePositionBug){setTimeout(f.SetWH,0)}else{f.SetWH()}return{x:j,y:o}},SetWH:function(){var j=document.getElementById("MathJax_ZoomOverlay");j.style.width=j.style.height="1px";j.style.width=document.body.scrollWidth+"px";j.style.height=document.body.scrollHeight+"px"},Remove:function(k){var l=document.getElementById("MathJax_ZoomFrame");if(l){l.parentNode.removeChild(l);l=document.getElementById("MathJax_ZoomTracker");if(l){l.parentNode.removeChild(l)}if(f.operaRefreshBug){var j=c.addElement(document.body,"div",{style:{position:"fixed",left:0,top:0,width:"100%",height:"100%",backgroundColor:"white",opacity:0},id:"MathJax_OperaDiv"});document.body.removeChild(j)}if(window.removeEventListener){removeEventListener("resize",f.Resize,false)}else{if(window.detachEvent){detachEvent("onresize",f.Resize)}else{window.onresize=f.onresize;delete f.onresize}}}return d(k)}};a.Register.StartupHook("HTML-CSS Jax Ready",function(){b=MathJax.OutputJax["HTML-CSS"];b.Augment({HandleEvent:f.HandleEvent})});a.Register.StartupHook("NativeMML Jax Ready",function(){h=MathJax.OutputJax.NativeMML;h.Augment({HandleEvent:f.HandleEvent,MSIEmouseup:function(l,k,j){if(this.trapUp){delete this.trapUp;return true}if(this.MSIEzoomKeys(l)){return true}return false},MSIEclick:function(l,k,j){if(this.trapClick){delete this.trapClick;return true}if(!this.MSIEzoomKeys(l)){return false}if(!this.settings.zoom.match(/Click/)){return false}return(f.Click(l,k)===false)},MSIEdblclick:function(l,k,j){if(!this.MSIEzoomKeys(l)){return false}return(f.DblClick(l,k)===false)},MSIEmouseover:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEmouseout:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.ClearTimer();return true},MSIEmousemove:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEzoomKeys:function(j){if(this.settings.CTRL&&!j.ctrlKey){return false}if(this.settings.CMD&&!j.metaKey){return false}if(this.settings.ALT&&!j.altKey){return false}if(this.settings.Shift&&!j.shiftKey){return false}return true}})});a.Browser.Select({MSIE:function(j){var k=(document.compatMode==="BackCompat");var l=j.versionAtLeast("8.0")&&document.documentMode>7;f.msiePositionBug=true;f.msieWidthBug=!k;f.msieIE8Bug=l;f.msieZIndexBug=!l;f.msieInlineBlockAlignBug=(!l||k);if(document.documentMode>=9){delete g.styles["#MathJax_Zoom"].filter}},Opera:function(j){f.operaPositionBug=true;f.operaRefreshBug=true},Firefox:function(j){f.ffMMLwidthBug=true;f.ffMMLcenterBug=true}});f.topImg=(f.msieInlineBlockAlignBug?c.Element("img",{style:{width:0,height:0},src:"about:blank"}):c.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(f.operaPositionBug){f.topImg.style.border="1px solid"}MathJax.Callback.Queue(["Styles",e,g.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",e,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); + +(function(b,c,f){var k="1.1.4";MathJax.Extension.MathMenu={version:k};var i=b.Browser.isPC,g=b.Browser.isMSIE;var e=(i?null:"5px");var j=b.CombineConfig("MathMenu",{delay:150,helpURL:"http://www.mathjax.org/help/user/",showRenderer:true,showFontMenu:false,showContext:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:100,height:50},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(i?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":e,"-webkit-border-radius":e,"-moz-border-radius":e,"-khtml-border-radius":e,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(i?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuTitle":{"background-color":"#CCCCCC",margin:(i?"-1px -1px 1px -1px":"-5px 0 0 0"),"text-align":"center","font-style":"italic","font-size":"80%",color:"#444444",padding:"2px 0",overflow:"hidden"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(i?"1em":".7em")},".MathJax_MenuLabel":{padding:(i?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(i?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(i?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(i?"Highlight":"#606872"),color:(i?"HighlightText":"white")}}});var d=function(l){if(!l){l=window.event}if(l){if(l.preventDefault){l.preventDefault()}if(l.stopPropagation){l.stopPropagation()}l.cancelBubble=true;l.returnValue=false}return false};var a=MathJax.Menu=MathJax.Object.Subclass({version:k,items:[],posted:false,title:null,margin:5,Init:function(l){this.items=[].slice.call(arguments,0)},With:function(l){if(l){b.Insert(this,l)}return this},Post:function(n,v){if(!n){n=window.event}var t=(!this.title?null:[["div",{className:"MathJax_MenuTitle"},[this.title]]]);var l=document.getElementById("MathJax_MenuFrame");if(!l){l=a.Background(this)}var o=c.addElement(l,"div",{onmouseup:a.Mouseup,ondblclick:this.False,ondragstart:this.False,onselectstart:this.False,oncontextmenu:this.False,menuItem:this,className:"MathJax_Menu"},t);for(var q=0,p=this.items.length;qdocument.body.offsetWidth-this.margin){u=document.body.offsetWidth-o.offsetWidth-this.margin}a.skipUp=true}else{var r="left",w=v.offsetWidth;u=v.offsetWidth-2;s=0;while(v&&v!==l){u+=v.offsetLeft;s+=v.offsetTop;v=v.parentNode}if(u+o.offsetWidth>document.body.offsetWidth-this.margin){r="right";u=Math.max(this.margin,u-w-o.offsetWidth+6)}if(!i){o.style["borderRadiusTop"+r]=0;o.style["WebkitBorderRadiusTop"+r]=0;o.style["MozBorderRadiusTop"+r]=0;o.style["KhtmlBorderRadiusTop"+r]=0}}o.style.left=u+"px";o.style.top=s+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return this.False(n)},Remove:function(l,m){var n=document.getElementById("MathJax_MenuFrame");if(n){n.parentNode.removeChild(n);if(this.msieBackgroundBug){detachEvent("onresize",a.Resize)}}},Mouseup:function(l,m){if(a.skipUp){delete a.skipUp}else{this.Remove(l,m)}},False:d},{config:j,div:null,Remove:function(l){a.Event(l,this,"Remove")},Mouseover:function(l){a.Event(l,this,"Mouseover")},Mouseout:function(l){a.Event(l,this,"Mouseout")},Mousedown:function(l){a.Event(l,this,"Mousedown")},Mouseup:function(l){a.Event(l,this,"Mouseup")},Mousemove:function(l){a.Event(l,this,"Mousemove")},Event:function(n,o,l){if(!n){n=window.event}var m=o.menuItem;if(m&&m[l]){return m[l](n,o)}return null},BGSTYLE:{position:"absolute",left:0,top:0,"z-index":200,width:"100%",height:"100%",border:0,padding:0,margin:0},Background:function(m){var n=c.addElement(document.body,"div",{style:this.BGSTYLE,id:"MathJax_MenuFrame"},[["div",{style:this.BGSTYLE,menuItem:m,onmousedown:this.Remove}]]);var l=n.firstChild;if(m.msieBackgroundBug){l.style.backgroundColor="white";l.style.filter="alpha(opacity=0)";n.width=n.height=0;this.Resize();attachEvent("onresize",this.Resize)}else{l.style.position="fixed"}return n},Resize:function(){setTimeout(a.SetWH,0)},SetWH:function(){var l=document.getElementById("MathJax_MenuFrame");if(l){l=l.firstChild;l.style.width=l.style.height="1px";l.style.width=document.body.scrollWidth+"px";l.style.height=document.body.scrollHeight+"px"}},saveCookie:function(){c.Cookie.Set("menu",this.cookie)},getCookie:function(){this.cookie=c.Cookie.Get("menu")}});var h=a.ITEM=MathJax.Object.Subclass({name:"",Create:function(m){if(!this.hidden){var l={onmouseover:a.Mouseover,onmouseout:a.Mouseout,onmouseup:a.Mouseup,onmousedown:this.False,ondragstart:this.False,onselectstart:this.False,onselectend:this.False,className:"MathJax_MenuItem",menuItem:this};if(this.disabled){l.className+=" MathJax_MenuDisabled"}c.addElement(m,"div",l,this.Label(l,m))}},Mouseover:function(q,s){if(!this.disabled){this.Activate(s)}if(!this.menu||!this.menu.posted){var r=document.getElementById("MathJax_MenuFrame").childNodes,n=s.parentNode.childNodes;for(var o=0,l=n.length;o=0&&s.parentNode.menuItem!==r[l].menuItem){r[l].menuItem.posted=false;r[l].parentNode.removeChild(r[l]);l--}if(this.Timer){this.Timer(q,s)}}},Mouseout:function(l,m){if(!this.menu||!this.menu.posted){this.Deactivate(m)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(l,m){return this.Remove(l,m)},Remove:function(l,m){m=m.parentNode.menuItem;return m.Remove(l,m)},Activate:function(l){this.Deactivate(l);l.className+=" MathJax_MenuActive"},Deactivate:function(l){l.className=l.className.replace(/ MathJax_MenuActive/,"")},With:function(l){if(l){b.Insert(this,l)}return this},False:d});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(l,n,m){this.name=l;this.action=n;this.With(m)},Label:function(l,m){return[this.name]},Mouseup:function(l,m){if(!this.disabled){this.Remove(l,m);this.action.call(this,l)}return this.False(l)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(i&&!b.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(l,n){this.name=l;var m=1;if(!(n instanceof a.ITEM)){this.With(n),m++}this.menu=a.apply(a,[].slice.call(arguments,m))},Label:function(l,m){l.onmousemove=a.Mousemove;this.menu.posted=false;return[this.name+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(l,m){if(this.timer){clearTimeout(this.timer)}l={clientX:l.clientX,clientY:l.clientY};this.timer=setTimeout(MathJax.Callback(["Mouseup",this,l,m]),j.delay)},Mouseup:function(n,p){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(n,p)}else{var o=document.getElementById("MathJax_MenuFrame").childNodes,l=o.length-1;while(l>=0){var q=o[l];q.menuItem.posted=false;q.parentNode.removeChild(q);if(q.menuItem===this.menu){break}l--}}}return this.False(n)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(i?"\u25CF":"\u2713"),Init:function(m,l,n){this.name=m;this.variable=l;this.With(n);if(this.value==null){this.value=this.name}},Label:function(m,n){var l={className:"MathJax_MenuRadioCheck"};if(j.settings[this.variable]!==this.value){l={style:{display:"none"}}}return[["span",l,[this.marker]]," "+this.name]},Mouseup:function(p,q){if(!this.disabled){var r=q.parentNode.childNodes;for(var n=0,l=r.length;n/g,">");n.document.open();n.document.write("MathJax Equation Source");n.document.write("
"+r+"
");n.document.write("");n.document.close();var p=n.document.body.firstChild;var o=(n.outerHeight-n.innerHeight)||30,m=(n.outerWidth-n.innerWidth)||30;m=Math.min(Math.floor(0.5*screen.width),p.offsetWidth+m+25);o=Math.min(Math.floor(0.5*screen.height),p.offsetHeight+o+25);n.resizeTo(m,o);if(q&&q.screenX!=null){var l=Math.max(0,Math.min(q.screenX-Math.floor(m/2),screen.width-m-20)),s=Math.max(0,Math.min(q.screenY-Math.floor(o/2),screen.height-o-20));n.moveTo(l,s)}delete a.ShowSource.w};a.Scale=function(){var m=MathJax.OutputJax["HTML-CSS"],l=MathJax.OutputJax.NativeMML;var o=(m?m.config.scale:l.config.scale);var n=prompt("Scale all mathematics (compared to surrounding text) by",o+"%");if(n){if(n.match(/^\s*\d+\s*%?\s*$/)){n=parseInt(n);if(n){if(n!==o){if(m){m.config.scale=n}if(l){l.config.scale=n}a.cookie.scale=n;a.saveCookie();b.Reprocess()}}else{alert("The scale should not be zero")}}else{alert("The scale should be a perentage (e.g., 120%)")}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){f.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var l=b.config.outputJax["jax/mml"];if(l[0]!==j.settings.renderer){MathJax.Callback.Queue(["Require",f,"[MathJax]/jax/output/"+j.settings.renderer+"/config.js"],["Post",b.Startup.signal,j.settings.renderer+" output selected"],[function(){var p=MathJax.OutputJax[j.settings.renderer];for(var o=0,n=l.length;o7;a.Augment({margin:20,msieBackgroundBug:(m||!n),msieAboutBug:m});if(document.documentMode>=9){delete j.styles["#MathJax_About"].filter;delete j.styles[".MathJax_Menu"].filter}}});b.Register.StartupHook("End Config",function(){j.settings=b.config.menuSettings;if(!j.settings.format){j.settings.format=(MathJax.InputJax.TeX?"Original":"MathML")}if(typeof(j.settings.showRenderer)!=="undefined"){j.showRenderer=j.settings.showRenderer}if(typeof(j.settings.showFontMenu)!=="undefined"){j.showFontMenu=j.settings.showFontMenu}if(typeof(j.settings.showContext)!=="undefined"){j.showContext=j.settings.showContext}a.getCookie();a.menu=a(h.COMMAND("Show Source",a.ShowSource),h.SUBMENU("Format",h.RADIO("MathML","format"),h.RADIO("Original","format",{value:"Original"})),h.RULE(),h.SUBMENU("Settings",h.SUBMENU("Zoom Trigger",h.RADIO("Hover","zoom",{action:a.Zoom}),h.RADIO("Click","zoom",{action:a.Zoom}),h.RADIO("Double-Click","zoom",{action:a.Zoom}),h.RADIO("No Zoom","zoom",{value:"None"}),h.RULE(),h.LABEL("Trigger Requires:"),h.CHECKBOX((b.Browser.isMac?"Option":"Alt"),"ALT"),h.CHECKBOX("Command","CMD",{hidden:!b.Browser.isMac}),h.CHECKBOX("Control","CTRL",{hidden:b.Browser.isMac}),h.CHECKBOX("Shift","Shift")),h.SUBMENU("Zoom Factor",h.RADIO("125%","zscale"),h.RADIO("133%","zscale"),h.RADIO("150%","zscale"),h.RADIO("175%","zscale"),h.RADIO("200%","zscale"),h.RADIO("250%","zscale"),h.RADIO("300%","zscale"),h.RADIO("400%","zscale")),h.RULE(),h.SUBMENU("Math Renderer",{hidden:!j.showRenderer},h.RADIO("HTML-CSS","renderer",{action:a.Renderer}),h.RADIO("MathML","renderer",{action:a.Renderer,value:"NativeMML"})),h.SUBMENU("Font Preference",{hidden:!j.showFontMenu},h.LABEL("For HTML-CSS:"),h.RADIO("Auto","font",{action:a.Font}),h.RULE(),h.RADIO("TeX (local)","font",{action:a.Font}),h.RADIO("TeX (web)","font",{action:a.Font}),h.RADIO("TeX (image)","font",{action:a.Font}),h.RULE(),h.RADIO("STIX (local)","font",{action:a.Font})),h.SUBMENU("Contextual Menu",{hidden:!j.showContext},h.RADIO("MathJax","context"),h.RADIO("Browser","context")),h.COMMAND("Scale All Math ...",a.Scale)),h.RULE(),h.COMMAND("About MathJax",a.About),h.COMMAND("MathJax Help",a.Help))});a.showRenderer=function(l){a.cookie.showRenderer=j.showRenderer=l;a.saveCookie();a.menu.items[3].menu.item[3].hidden=!l};a.showFontMenu=function(l){a.cookie.showFontMenu=j.showFontMenu=l;a.saveCookie();a.menu.items[3].menu.items[4].hidden=!l};a.showContext=function(l){a.cookie.showContext=j.showContext=l;a.saveCookie();a.menu.items[3].menu.items[5].hidden=!l};MathJax.Callback.Queue(["Styles",f,j.styles],["Post",b.Startup.signal,"MathMenu Ready"],["loadComplete",f,"[MathJax]/extensions/MathMenu.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax); + +MathJax.ElementJax.mml=MathJax.ElementJax({mimeType:"jax/mml"},{id:"mml",version:"1.1.1",directory:MathJax.ElementJax.directory+"/mml",extensionDir:MathJax.ElementJax.extensionDir+"/mml",optableDir:MathJax.ElementJax.directory+"/mml/optable"});MathJax.ElementJax.mml.Augment({Init:function(){if(arguments.length===1&&arguments[0].type==="math"){this.root=arguments[0]}else{this.root=MathJax.ElementJax.mml.math.apply(this,arguments)}if(this.root.mode){if(!this.root.display&&this.root.mode==="display"){this.root.display="block"}delete this.root.mode}}},{INHERIT:"_inherit_",AUTO:"_auto_",SIZE:{INFINITY:"infinity",SMALL:"small",NORMAL:"normal",BIG:"big"},COLOR:{TRANSPARENT:"transparent"},VARIANT:{NORMAL:"normal",BOLD:"bold",ITALIC:"italic",BOLDITALIC:"bold-italic",DOUBLESTRUCK:"double-struck",FRAKTUR:"fraktur",BOLDFRAKTUR:"bold-fraktur",SCRIPT:"script",BOLDSCRIPT:"bold-script",SANSSERIF:"sans-serif",BOLDSANSSERIF:"bold-sans-serif",SANSSERIFITALIC:"sans-serif-italic",SANSSERIFBOLDITALIC:"sans-serif-bold-italic",MONOSPACE:"monospace",INITIAL:"inital",TAILED:"tailed",LOOPED:"looped",STRETCHED:"stretched",CALIGRAPHIC:"-tex-caligraphic",OLDSTYLE:"-tex-oldstyle"},FORM:{PREFIX:"prefix",INFIX:"infix",POSTFIX:"postfix"},LINEBREAK:{AUTO:"auto",NEWLINE:"newline",NOBREAK:"nobreak",GOODBREAK:"goodbreak",BADBREAK:"badbreak"},LINEBREAKSTYLE:{BEFORE:"before",AFTER:"after",DUPLICATE:"duplicate",INFIXLINBREAKSTYLE:"infixlinebreakstyle"},INDENTALIGN:{LEFT:"left",CENTER:"center",RIGHT:"right",AUTO:"auto",ID:"id",INDENTALIGN:"indentalign"},INDENTSHIFT:{INDENTSHIFT:"indentshift"},LINETHICKNESS:{THIN:"thin",MEDIUM:"medium",THICK:"thick"},NOTATION:{LONGDIV:"longdiv",ACTUARIAL:"actuarial",RADICAL:"radical",BOX:"box",ROUNDEDBOX:"roundedbox",CIRCLE:"circle",LEFT:"left",RIGHT:"right",TOP:"top",BOTTOM:"bottom",UPDIAGONALSTRIKE:"updiagonalstrike",DOWNDIAGONALSTRIKE:"downdiagonalstrike",VERTICALSTRIKE:"verticalstrike",HORIZONTALSTRIKE:"horizontalstrike",MADRUWB:"madruwb"},ALIGN:{TOP:"top",BOTTOM:"bottom",CENTER:"center",BASELINE:"baseline",AXIS:"axis",LEFT:"left",RIGHT:"right"},LINES:{NONE:"none",SOLID:"solid",DASHED:"dashed"},SIDE:{LEFT:"left",RIGHT:"right",LEFTOVERLAP:"leftoverlap",RIGHTOVERLAP:"rightoverlap"},WIDTH:{AUTO:"auto",FIT:"fit"},ACTIONTYPE:{TOGGLE:"toggle",STATUSLINE:"statusline",TOOLTIP:"tooltip",INPUT:"input"},LENGTH:{VERYVERYTHINMATHSPACE:"veryverythinmathspace",VERYTHINMATHSPACE:"verythinmathspace",THINMATHSPACE:"thinmathspace",MEDIUMMATHSPACE:"mediummathspace",THICKMATHSPACE:"thickmathspace",VERYTHICKMATHSPACE:"verythickmathspace",VERYVERYTHICKMATHSPACE:"veryverythickmathspace",NEGATIVEVERYVERYTHINMATHSPACE:"negativeveryverythinmathspace",NEGATIVEVERYTHINMATHSPACE:"negativeverythinmathspace",NEGATIVETHINMATHSPACE:"negativethinmathspace",NEGATIVEMEDIUMMATHSPACE:"negativemediummathspace",NEGATIVETHICKMATHSPACE:"negativethickmathspace",NEGATIVEVERYTHICKMATHSPACE:"negativeverythickmathspace",NEGATIVEVERYVERYTHICKMATHSPACE:"negativeveryverythickmathspace"},OVERFLOW:{LINBREAK:"linebreak",SCROLL:"scroll",ELIDE:"elide",TRUNCATE:"truncate",SCALE:"scale"},UNIT:{EM:"em",EX:"ex",PX:"px",IN:"in",CM:"cm",MM:"mm",PT:"pt",PC:"pc"},TEXCLASS:{ORD:0,OP:1,BIN:2,REL:3,OPEN:4,CLOSE:5,PUNCT:6,INNER:7,VCENTER:8,NONE:-1},PLANE1:String.fromCharCode(55349)});(function(a){var d=false;var b=true;a.mbase=MathJax.Object.Subclass({type:"base",isToken:d,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT},noInherit:{},Init:function(){this.data=[];if(this.inferRow&&!(arguments.length===1&&arguments[0].inferred)){this.Append(a.mrow().With({inferred:b}))}this.Append.apply(this,arguments)},With:function(f){for(var g in f){if(f.hasOwnProperty(g)){this[g]=f[g]}}return this},Append:function(){if(this.inferRow&&this.data.length){this.data[0].Append.apply(this.data[0],arguments)}else{for(var g=0,f=arguments.length;g0&&this.Get("scriptlevel")>0&&h>=0){return""}return this.TEXSPACELENGTH[Math.abs(h)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(f){return""},isSpacelike:function(){return d},isEmbellished:function(){return d},Core:function(){return this},CoreMO:function(){return this},lineBreak:function(){if(this.isEmbellished()){return this.CoreMO().lineBreak()}else{return"none"}},array:function(){if(this.inferred){return this.data}else{return[this]}},toString:function(){return this.type+"("+this.data.join(",")+")"}},{childrenSpacelike:function(){for(var f=0;f=0;f--){if(this.data[0]&&!this.data[f].isSpacelike()){return this.data[f]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(h){for(var g=0,f=this.data.length;g0){f++}return f},adjustChild_texprimestyle:function(f){if(f==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:b,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(f){return b}});a.mroot=a.mbase.Subclass({type:"mroot",texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(f){if(f===1){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g===1){f+=2}return f},adjustChild_texprimestyle:function(f){if(f===0){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:b,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(h){var g=this.scriptlevel;if(g==null){g=this.Get("scriptlevel")}else{if(String(g).match(/^ *[-+]/)){delete this.scriptlevel;var f=this.Get("scriptlevel");this.scriptlevel=g;g=f+parseInt(g)}}return g},inheritFromMe:b,noInherit:{mpadded:{width:b,height:b,depth:b,lspace:b,voffset:b},mtable:{width:b,height:b,depth:b,align:b}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:b,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(j){this.getPrevClass(j);var g=this.getValues("open","close","separators");g.open=g.open.replace(/[ \t\n\r]/g,"");g.close=g.close.replace(/[ \t\n\r]/g,"");g.separators=g.separators.replace(/[ \t\n\r]/g,"");if(g.open!==""){this.SetData("open",a.mo(g.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));j=this.data.open.setTeXclass(j)}if(g.separators!==""){while(g.separators.length0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g>0){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.sub){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(f){if(f%2===1){return b}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(f){if(f==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(f):a.TEXCLASS.ORD)}if(f==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(f==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return d},adjustChild_displaystyle:function(f){if(f>0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g==this.under&&!this.Get("accentunder")){f++}if(g==this.over&&!this.Get("accent")){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.base&&this.data[this.over]){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:b,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:d,equalcolumns:d,displaystyle:d,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:b,noInherit:{mtable:{align:b,rowalign:b,columnalign:b,groupalign:b,alignmentscope:b,columnwidth:b,width:b,rowspacing:b,columnspacing:b,rowlines:b,columnlines:b,frame:b,framespacing:b,equalrows:b,equalcolumns:b,side:b,minlabelspacing:b,texClass:b,useHeight:1}},Append:function(){for(var g=0,f=arguments.length;g":e.REL,"?":[1,1,c.CLOSE],"\\":e.ORD,_:e.ORD11,"|":[2,2,c.ORD,{fence:true,stretchy:true,symmetric:true}],"#":e.ORD,"$":e.ORD,"\u002E":[0,3,c.PUNCT,{separator:true}],"\u02B9":e.ORD,"\u02C9":e.ACCENT,"\u02CA":e.ACCENT,"\u02CB":e.ACCENT,"\u0300":e.ACCENT,"\u0301":e.ACCENT,"\u0303":e.WIDEACCENT,"\u0304":e.ACCENT,"\u0306":e.ACCENT,"\u0307":e.ACCENT,"\u0308":e.ACCENT,"\u030C":e.ACCENT,"\u0332":e.WIDEACCENT,"\u0338":e.REL4,"\u2015":[0,0,c.ORD,{stretchy:true}],"\u2017":[0,0,c.ORD,{stretchy:true}],"\u2020":e.BIN3,"\u2021":e.BIN3,"\u20D7":e.ACCENT,"\u2118":e.ORD,"\u2205":e.ORD,"\u221E":e.ORD,"\u2305":e.BIN3,"\u2306":e.BIN3,"\u2322":e.REL4,"\u2323":e.REL4,"\u2329":e.OPEN,"\u232A":e.CLOSE,"\u23AA":e.ORD,"\u23AF":[0,0,c.ORD,{stretchy:true}],"\u23B0":e.OPEN,"\u23B1":e.CLOSE,"\u25EF":e.BIN3,"\u2660":e.ORD,"\u2661":e.ORD,"\u2662":e.ORD,"\u2663":e.ORD,"\u27EE":e.OPEN,"\u27EF":e.CLOSE,"\u27FC":e.REL4,"\u3008":e.OPEN,"\u3009":e.CLOSE,"\uFE37":e.WIDEACCENT,"\uFE38":e.WIDEACCENT}}},{OPTYPES:e})})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); + +MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="1.1.1";var a=MathJax.ElementJax.mml;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.MathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},MathMLattributes:function(){var j=[],g=this.defaults;var c=this.copyAttributes,l=this.skipAttributes;if(this.type==="math"){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.quoteHTML(k)+'"')}this[d]=k}}}for(var h=0,f=c.length;h126){e[f]="&#x"+h.toString(16).toUpperCase()+";"}else{var g={"&":"&","<":"<",">":">",'"':"""}[e[f]];if(g){e[f]=g}}}return e.join("")}});a.msubsup.Augment({toMathML:function(h){var e=this.type;if(this.data[this.sup]==null){e="msub"}if(this.data[this.sub]==null){e="msup"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(c){return c+"\n"+this.data[0].toMathML(c+" ")+"\n"+c+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.quoteHTML(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); + +(function(){var c="1.1";var a=MathJax.Hub.CombineConfig("TeX.noErrors",{multiLine:true,inlineDelimiters:["",""],style:{"font-family":"serif","font-size":"80%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var b="\u00A0";MathJax.Extension["TeX/noErrors"]={version:c,config:a};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){MathJax.InputJax.TeX.Augment({formatError:function(f,e,g,d){var i=a.inlineDelimiters;var h=(g||a.multiLine);if(!g){e=i[0]+e+i[1]}if(h){e=e.replace(/ /g,b)}else{e=e.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(e).With({isError:true,multiLine:h})}})});MathJax.Hub.Register.StartupHook("HTML-CSS Jax Config",function(){MathJax.Hub.Config({"HTML-CSS":{styles:{".MathJax .merror":MathJax.Hub.Insert({"font-style":null,"background-color":null,"vertical-align":(MathJax.Hub.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})})})();MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var a=MathJax.ElementJax.mml;var b=MathJax.OutputJax["HTML-CSS"];var c=a.math.prototype.toHTML;a.math.Augment({toHTML:function(d,e){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toHTML(d)}return c.call(this,d,e)}});a.merror.Augment({toHTML:function(j){if(!this.isError){return a.mbase.prototype.toHTML.call(this,j)}j=this.HTMLcreateSpan(j);if(this.multiLine){j.style.display="inline-block"}var l=this.data[0].data[0].data.join("").split(/\n/);for(var g=0,e=l.length;g1){var k=(n.h+n.d)/2,h=b.TeX.x_height/2;var f=b.config.styles[".MathJax .merror"]["font-size"];if(f&&f.match(/%/)){h*=parseInt(f)/100}j.parentNode.style.verticalAlign=b.Em(n.d+(h-k));n.h=h+k;n.d=k-h}j.bbox={h:n.h,d:n.d,w:d,lw:0,rw:d};return j}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Hub.Register.StartupHook("NativeMML Jax Ready",function(){var b=MathJax.ElementJax.mml;var a=MathJax.Extension["TeX/noErrors"].config;var c=b.math.prototype.toNativeMML;b.math.Augment({toNativeMML:function(d){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toNativeMML(d)}return c.call(this,d)}});b.merror.Augment({toNativeMML:function(g){if(!this.isError){return b.mbase.prototype.toNativeMML.call(this,g)}g=g.appendChild(document.createElement("span"));var h=this.data[0].data[0].data.join("").split(/\n/);for(var f=0,e=h.length;f1){g.style.verticalAlign="middle"}}for(var j in a.style){if(a.style.hasOwnProperty(j)){var d=j.replace(/-./g,function(i){return i.charAt(1).toUpperCase()});g.style[d]=a.style[j]}}return g}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); + +MathJax.Extension["TeX/noUndefined"]={version:"1.1",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(c){this.Push(a.mtext(c).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); + +(function(d){var c=true,f=false,i,h=String.fromCharCode(160);var e=MathJax.Object.Subclass({Init:function(k){this.global={};this.data=[b.start().With({global:this.global})];if(k){this.data[0].env=k}this.env=this.data[0].env},Push:function(){var l,k,n,o;for(l=0,k=arguments.length;l":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:i.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:i.TEXCLASS.ORD}],"\\|":["2225",{texClass:i.TEXCLASS.ORD}],"\\vert":["|",{texClass:i.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",c,0],textstyle:["SetStyle","T",f,0],scriptstyle:["SetStyle","S",f,1],scriptscriptstyle:["SetStyle","SS",f,2],rm:["SetFont",i.VARIANT.NORMAL],mit:["SetFont",i.VARIANT.ITALIC],oldstyle:["SetFont",i.VARIANT.OLDSTYLE],cal:["SetFont",i.VARIANT.CALIGRAPHIC],it:["SetFont",i.VARIANT.ITALIC],bf:["SetFont",i.VARIANT.BOLD],bbFont:["SetFont",i.VARIANT.DOUBLESTRUCK],scr:["SetFont",i.VARIANT.SCRIPT],frak:["SetFont",i.VARIANT.FRAKTUR],sf:["SetFont",i.VARIANT.SANSSERIF],tt:["SetFont",i.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedOp",0],arccos:["NamedOp",0],arctan:["NamedOp",0],arg:["NamedOp",0],cos:["NamedOp",0],cosh:["NamedOp",0],cot:["NamedOp",0],coth:["NamedOp",0],csc:["NamedOp",0],deg:["NamedOp",0],det:"NamedOp",dim:["NamedOp",0],exp:["NamedOp",0],gcd:"NamedOp",hom:["NamedOp",0],inf:"NamedOp",ker:["NamedOp",0],lg:["NamedOp",0],lim:"NamedOp",liminf:["NamedOp",null,"lim inf"],limsup:["NamedOp",null,"lim sup"],ln:["NamedOp",0],log:["NamedOp",0],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedOp",0],sin:["NamedOp",0],sinh:["NamedOp",0],sup:"NamedOp",tan:["NamedOp",0],tanh:["NamedOp",0],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","203E"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",i.LENGTH.THINMATHSPACE],":":["Spacer",i.LENGTH.THINMATHSPACE],">":["Spacer",i.LENGTH.MEDIUMMATHSPACE],";":["Spacer",i.LENGTH.THICKMATHSPACE],"!":["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",i.LENGTH.THINMATHSPACE],negthinspace:["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",i.TEXCLASS.ORD,0.85],Big:["MakeBig",i.TEXCLASS.ORD,1.15],bigg:["MakeBig",i.TEXCLASS.ORD,1.45],Bigg:["MakeBig",i.TEXCLASS.ORD,1.75],bigl:["MakeBig",i.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",i.TEXCLASS.OPEN,1.15],biggl:["MakeBig",i.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",i.TEXCLASS.OPEN,1.75],bigr:["MakeBig",i.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",i.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",i.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",i.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",i.TEXCLASS.REL,0.85],Bigm:["MakeBig",i.TEXCLASS.REL,1.15],biggm:["MakeBig",i.TEXCLASS.REL,1.45],Biggm:["MakeBig",i.TEXCLASS.REL,1.75],mathord:["TeXAtom",i.TEXCLASS.ORD],mathop:["TeXAtom",i.TEXCLASS.OP],mathopen:["TeXAtom",i.TEXCLASS.OPEN],mathclose:["TeXAtom",i.TEXCLASS.CLOSE],mathbin:["TeXAtom",i.TEXCLASS.BIN],mathrel:["TeXAtom",i.TEXCLASS.REL],mathpunct:["TeXAtom",i.TEXCLASS.PUNCT],mathinner:["TeXAtom",i.TEXCLASS.INNER],vcenter:["TeXAtom",i.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","02CA"],grave:["Accent","02CB"],ddot:["Accent","00A8"],tilde:["Accent","02DC"],bar:["Accent","02C9"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","02C6"],vec:["Accent","20D7"],dot:["Accent","02D9"],widetilde:["Accent","02DC",1],widehat:["Accent","02C6",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em"],eqalign:["Matrix",null,null,"right left",i.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"Cr",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\rm mod}"],pmod:["Macro","\\pod{{\\rm mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}{\\rm mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"],not:["Macro","\\mathrel{\\rlap{\\kern.5em\\notChar}}"]," ":["Macro","\\text{ }"],space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],def:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Macro","",1],nonumber:["Macro",""],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],require:"Require"},environment:{array:["Array"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],eqnarray:["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],"eqnarray*":["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],equation:[null,"Equation"],"equation*":[null,"Equation"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var k=this.config.Macros;for(var l in k){if(k.hasOwnProperty(l)){if(typeof(k[l])==="string"){g.macros[l]=["Macro",k[l]]}else{g.macros[l]=["Macro"].concat(k[l])}}}}};var a=MathJax.Object.Subclass({Init:function(l,m){this.string=l;this.i=0;this.macroCount=0;var k;if(m){k={};for(var n in m){if(m.hasOwnProperty(n)){k[n]=m[n]}}}this.stack=d.Stack(k);this.Parse();this.Push(b.stop())},Parse:function(){var k;while(this.id.config.MAXMACROS){d.Error("MathJax maximum macro substitution count exceeded; is there a recursive macro call?")}},Matrix:function(l,n,s,p,q,m,k){var r=this.GetNext();if(r===""){d.Error("Missing argument for "+l)}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var o=b.array().With({requireClose:c,arraydef:{rowspacing:(m||"4pt"),columnspacing:(q||"1em")}});if(n||s){o.open=n;o.close=s}if(k==="D"){o.arraydef.displaystyle=c}if(p!=null){o.arraydef.columnalign=p}this.Push(o)},Entry:function(k){this.Push(b.cell().With({isEntry:c,name:k}))},Cr:function(k){this.Push(b.cell().With({isCR:c,name:k}))},HLine:function(l,m){if(m==null){m="solid"}var n=this.stack.Top();if(n.type!=="array"||n.data.length){d.Error("Misplaced "+l)}if(n.table.length==0){n.arraydef.frame=m}else{var k=(n.arraydef.rowlines?n.arraydef.rowlines.split(/ /):[]);while(k.lengthd.config.MAXMACROS){d.Error("MathJax maximum substitution count exceeded; is there a recursive latex environment?")}var n=g.environment[m];if(!(n instanceof Array)){n=[n]}var k=b.begin().With({name:m,end:n[1],parse:this});if(n[0]&&this[n[0]]){k=this[n[0]].apply(this,[k].concat(n.slice(2)))}this.Push(k)},End:function(k){this.Push(b.end().With({name:this.GetArgument(k)}))},Equation:function(k,l){return l},ExtensionEnv:function(l,k){this.Extension(l.name,k,"environment")},Array:function(m,o,t,r,s,n,k,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){var l=(u.charAt(0)+u.charAt(u.length-1)).replace(/[^|:]/g,"");if(l!==""){q.arraydef.frame={"|":"solid",":":"dashed"}[l.charAt(0)];q.arraydef.framespacing=".5em .5ex"}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(k==="D"){q.arraydef.displaystyle=c}if(k==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=f}this.Push(m);return q},convertDelimiter:function(k){if(k){k=g.delimiter[k]}if(k==null){return null}if(k instanceof Array){k=k[0]}if(k.length===4){k=String.fromCharCode(parseInt(k,16))}return k},trimSpaces:function(k){if(typeof(k)!="string"){return k}return k.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var k=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(k){this.i+=k[1].length;return k[1]}else{this.i++;return" "}},GetArgument:function(l,m){switch(this.GetNext()){case"":if(!m){d.Error("Missing argument for "+l)}return null;case"}":if(!m){d.Error("Extra close brace or missing open brace")}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var k=++this.i,n=1;while(this.il.length){d.Error("Illegal macro parameter reference")}n=this.AddArgs(this.AddArgs(n,o),l[p-1]);o=""}}else{o+=p}}}return this.AddArgs(n,o)},AddArgs:function(l,k){if(k.match(/^[a-z]/i)&&l.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){l+=" "}if(l.length+k.length>d.config.MAXBUFFER){d.Error("MathJax internal buffer size exceeded; is there a recursive macro call?")}return l+k}});d.Augment({Stack:e,Parse:a,Definitions:g,Startup:j,config:{MAXMACROS:10000,MAXBUFFER:5*1024},Translate:function(k){var l,n=k.innerHTML.replace(/^\s+/,"").replace(/\s+$/,"");if(MathJax.Hub.Browser.isKonqueror){n=n.replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&")}var o=(k.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);n=d.prefilterMath(n,o,k);try{l=d.Parse(n).mml()}catch(m){if(!m.texError){throw m}l=this.formatError(m,n,o,k)}if(l.inferred){l=i.apply(MathJax.ElementJax,l.data)}else{l=i(l)}if(o){l.root.display="block"}return this.postfilterMath(l,o,k)},prefilterMath:function(l,m,k){return l.replace(/([_^]\s*\d)([0-9.,])/g,"$1 $2")},postfilterMath:function(l,m,k){this.combineRelations(l.root);return l},formatError:function(m,l,n,k){return i.merror(m.message.replace(/\n.*/,""))},Error:function(k){throw MathJax.Hub.Insert(Error(k),{texError:c})},Macro:function(k,l,m){g.macros[k]=["Macro"].concat([].slice.call(arguments,1))},combineRelations:function(l){for(var n=0,k=l.data.length;n0){align+="rl";spacing.push("0em 0em");j--}spacing=spacing.join(" ");if(g){return this.AMSarray(i,h,g,align,spacing)}return this.Array(i,null,null,align,spacing,".5em","D")},MultiIntegral:function(g,k){var j=this.GetNext();if(j==="\\"){var h=this.i;j=this.GetArgument(g);this.i=h;if(j==="\\limits"){if(g==="\\idotsint"){k="\\!\\!\\mathop{\\,\\,"+k+"}"}else{k="\\!\\!\\!\\mathop{\\,\\,\\,"+k+"}"}}}this.string=k+" "+this.string.slice(this.i);this.i=0},xArrow:function(i,m,k,g){var j={width:"+"+(k+g)+"mu",lspace:k+"mu"};var n=this.GetBrackets(i),o=this.ParseArg(i);var p=a.mo(a.chars(String.fromCharCode(m))).With({stretchy:true,texClass:a.TEXCLASS.REL});var h=a.munderover(p);h.SetData(h.over,a.mpadded(o).With(j).With({voffset:".15em"}));if(n){n=f.Parse(n,this.stack.env).mml();h.SetData(h.under,a.mpadded(n).With(j).With({voffset:"-.24em"}))}this.Push(h)},GetDelimiterArg:function(g){var h=this.trimSpaces(this.GetArgument(g));if(h==""){return null}if(!c.delimiter[h]){f.Error("Missing or unrecognized delimiter for "+g)}return this.convertDelimiter(h)}});d.multline=d.array.Subclass({type:"multline",EndEntry:function(){var g=a.mtd.apply(a,this.data);if(this.data.shove){g.columnalign=this.data.shove}this.row.push(g);this.data=[]},EndRow:function(){if(this.row.length!=1){f.Error("multline rows must have exactly one column")}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var h=this.table.length-1,j;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=a.ALIGN.LEFT}if(!this.table[h][0].columnalign){this.table[h][0].columnalign=a.ALIGN.RIGHT}var g=a.mtr;if(this.global.tag){this.table[0]=[this.global.tag].concat(this.table[0]);delete this.global.tag;g=a.mlabeledtr}this.table[0]=g.apply(a,this.table[0]);for(j=1,h=this.table.length;j]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}f=f.replace(/^\s*(?:\/\/)?\s*$/,"$2");f=f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity);g=b.ParseXML(f);if(g==null){b.Error("Error parsing MathML")}}var e=g.getElementsByTagName("parsererror")[0];if(e){b.Error("Error parsing MathML: "+e.textContent.replace(/This page.*?errors:|XML Parsing Error: |Below is a rendering of the page.*/g,""))}if(g.childNodes.length!==1){b.Error("MathML must be formed by a single element")}if(g.firstChild.nodeName.toLowerCase()==="html"){var d=g.getElementsByTagName("h1")[0];if(d&&d.textContent==="XML parsing error"&&d.nextSibling){b.Error("Error parsing MathML: "+String(d.nextSibling.nodeValue).replace(/fatal parsing error: /,""))}}if(g.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")!=="math"){b.Error("MathML must be formed by a element, not <"+g.firstChild.nodeName+">")}this.mml=this.MakeMML(g.firstChild)},MakeMML:function(h){var l=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");if(!(a[l]&&a[l].isa&&a[l].isa(a.mbase))){return a.merror("Unknown node type: "+l)}var d=a[l](),k,j,e,n;for(k=0,j=h.attributes.length;k").replace(/&/g,"&")}}g=this.prefilterMath(g,d)}try{e=b.Parse(g).mml}catch(f){if(!f.mathmlError){throw f}e=this.formatError(f,g,d)}return a(e)},prefilterMath:function(e,d){return e},prefilterMathML:function(d){return d},formatError:function(f,e,d){return a.merror(f.message.replace(/\n.*/,""))},Error:function(d){throw MathJax.Hub.Insert(Error(d),{mathmlError:true})},parseDOM:function(d){return this.parser.parseFromString(d,"text/xml")},parseMS:function(d){return(this.parser.loadXML(d)?this.parser:null)},parseDIV:function(d){this.div.innerHTML=d.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(d){return null},createParser:function(){if(window.DOMParser){this.parser=new DOMParser();return(this.parseDOM)}else{if(window.ActiveXObject){var e=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var f=0,d=e.length;f span":{"text-align":h+"!important"}})}},InitializeMML:function(){this.initialized=true;if(MathJax.Hub.Browser.isMSIE){try{var f=document.createElement("object");f.id="mathplayer";f.classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987";document.getElementsByTagName("head")[0].appendChild(f);document.namespaces.add("mjx","http://www.w3.org/1998/Math/MathML");document.namespaces.mjx.doImport("#mathplayer")}catch(g){alert("MathJax was not able to set up MathPlayer.\n\nIf MathPlayer is not installed, you need to install it first.\nOtherwise, your security settings may be preventing ActiveX \ncontrols from running. Use the Internet Options item under\nthe Tools menu and select the Security tab, then press the\nCustom Level button. Check that the settings for\n'Run ActiveX Controls', and 'Binary and script behaviors'\nare enabled.\n\nCurrently you will see error messages rather than\ntypeset mathematics.")}}},Translate:function(g){if(!g.parentNode){return}if(!this.initialized){this.InitializeMML()}var k=g.previousSibling;if(k&&String(k.className).match(/^MathJax(_MathML|_Display)?$/)){k.parentNode.removeChild(k)}var j=g.MathJax.elementJax.root;var i=(j.Get("display")==="block"?"div":"span");var h=document.createElement(i),f=h;h.className="MathJax_MathML";h.style.fontSize=this.config.scale+"%";if(c&&this.config.showMathMenuMSIE){f=MathJax.HTML.addElement(h,"span",{className:"MathJax_MathContainer",style:{display:"inline-block",position:"relative"}})}j.toNativeMML(f);g.parentNode.insertBefore(h,g);if(c){if(this.config.showMathMenuMSIE){this.MSIEoverlay(h)}}else{j=h.firstChild;j.oncontextmenu=this.ContextMenu;j.onmouseover=this.Mouseover;j.onmousedown=this.Mousedown;j.onclick=this.Click;j.ondblclick=this.DblClick}},Remove:function(f){var g=f.SourceElement();if(!g){return}g=g.previousSibling;if(!g){return}if(g.className.match(/MathJax_MathML/)){g.parentNode.removeChild(g)}},MMLnamespace:"http://www.w3.org/1998/Math/MathML",MSIEoverlay:function(m){var l=m.firstChild;m.style.position="absolute";var n=m.scrollHeight,h=m.offsetWidth;var j=MathJax.HTML.addElement(m,"img",{src:"about:blank",style:{width:0,height:n+"px"}});var f=m.scrollHeight-n;m.removeChild(j);m.style.position="";var k,i,g=(m.parentNode.nodeName.toLowerCase()==="div");if(g&&this.quirks){k=-n;i=Math.floor(-h/2)}else{k=f-n,i=-h}MathJax.HTML.addElement(m,"span",{style:{display:"inline-block",width:0,height:0,position:"relative"}},[["span",{style:{display:"inline-block",position:"absolute",left:i+"px",top:k+"px",width:l.offsetWidth+"px",height:n+"px",cursor:"pointer","background-color":"white",filter:"alpha(opacity=0)"},onmousedown:this.MSIEevent,oncontextmenu:this.MSIEevent,onclick:this.MSIEevent,onmousemove:this.MSIEevent,ondblclick:this.MSIEevent,onmouseover:this.MSIEevent,onmouseout:this.MSIEevent}]])},MSIEmath:function(f){var g=f.parentNode.previousSibling.firstChild;return(g.nodeName.toLowerCase()==="span"?g.firstChild:g)},MSIEevent:function(){var g=b.MSIEmath(this);var f=window.event;var h=b["MSIE"+f.type];if(h&&h.call(b,f,g,this)){return false}g.fireEvent("on"+f.type,f);return false},MSIEmousedown:function(h,g,f){if(h[this.MENUKEY]&&h.button===this.LEFTBUTTON&&this.settings.context!=="MathJax"){this.trapUp=this.trapClick=true;this.ContextMenu.call(f,h,true);return true}if(this.MSIEzoomKeys&&this.MSIEzoomKeys(h)){this.trapUp=true;return true}return false},MSIEcontextmenu:function(h,g,f){if(this.settings.context==="MathJax"){this.trapUp=this.trapClick=true;this.ContextMenu.call(f,h,true);return true}return false},ContextMenu:function(i,j){if(b.config.showMathMenu&&(b.settings.context==="MathJax"||j)){if(b.safariContextMenuBug){setTimeout("window.getSelection().empty()",0)}if(!i||b.msieEventBug){i=window.event}var g=MathJax.Menu;if(g){if(document.selection){setTimeout("document.selection.empty()",0)}var f=(c?this.parentNode.parentNode.nextSibling:this.parentNode.nextSibling);g.jax=e.getJaxFor(f);g.menu.items[1].menu.items[1].name=(g.jax.inputJax.id==="MathML"?"Original":g.jax.inputJax.id);delete b.trapClick;delete b.trapUp;return g.menu.Post(i)}else{if(!d.loadingMathMenu){d.loadingMathMenu=true;var h={pageX:i.pageX,pageY:i.pageY,clientX:i.clientX,clientY:i.clientY};MathJax.Callback.Queue(d.Require("[MathJax]/extensions/MathMenu.js"),function(){delete d.loadingMathMenu},[this,arguments.callee,h,j])}if(!i){i=window.event}if(i.preventDefault){i.preventDefault()}if(i.stopPropagation){i.stopPropagation()}i.cancelBubble=true;i.returnValue=false;return false}}},Mousedown:function(f){if(b.config.showMathMenu){if(!f){f=window.event}if(b.settings.context==="MathJax"){if(!b.noContextMenuBug||f.button!==2){return}}else{if(!f[b.MENUKEY]||f.button!==b.LEFTBUTTON){return}}return b.ContextMenu.call(this,f,true)}},Mouseover:function(f){b.HandleEvent(f,"Mouseover",this)},Click:function(f){b.HandleEvent(f,"Click",this)},DblClick:function(f){b.HandleEvent(f,"DblClick",this)},HandleEvent:function(h,f,g){},NAMEDSPACE:{negativeveryverythinmathspace:"-.0556em",negativeverythinmathspace:"-.1111em",negativethinmathspace:"-.1667em",negativemediummathspace:"-.2222em",negativethickmathspace:"-.2778em",negativeverythickmathspace:"-.3333em",negativeveryverythickmathspace:"-.3889em"}});e.Register.StartupHook("mml Jax Ready",function(){a=MathJax.ElementJax.mml;a.mbase.Augment({toNativeMML:function(k){var h=this.NativeMMLelement(this.type);this.NativeMMLattributes(h);for(var j=0,g=this.data.length;j=0){if(this.negativeSkipBug){var f=i.style.position;i.style.position="absolute";j=this.startMarker;if(i.firstChild){i.insertBefore(j,i.firstChild)}else{i.appendChild(j)}j=this.startMarker}i.appendChild(this.endMarker);g=this.endMarker.offsetLeft-j.offsetLeft;i.removeChild(this.endMarker);if(this.negativeSkipBug){i.removeChild(j);i.style.position=f}}return g/this.em},Measured:function(h,g){if(h.bbox.width==null&&h.bbox.w&&!h.bbox.isMultiline){var f=this.getW(h);h.bbox.rw+=f-h.bbox.w;h.bbox.w=f}if(!g){g=h.parentNode}if(!g.bbox){g.bbox=h.bbox}return h},Remeasured:function(g,f){f.bbox=this.Measured(g,f).bbox},Em:function(f){if(Math.abs(f)<0.0006){return"0em"}return f.toFixed(3).replace(/\.?0+$/,"")+"em"},Percent:function(f){return(100*f).toFixed(1).replace(/\.?0+$/,"")+"%"},length2percent:function(f){return this.Percent(this.length2em(f))},length2em:function(k,i){if(typeof(k)!=="string"){k=k.toString()}if(k===""){return""}if(k===a.SIZE.NORMAL){return 1}if(k===a.SIZE.BIG){return 2}if(k===a.SIZE.SMALL){return 0.71}if(k==="infinity"){return e.BIGDIMEN}var h=this.FONTDATA.TeX_factor;if(k.match(/mathspace$/)){return e.MATHSPACE[k]*h}var g=k.match(/^\s*([-+]?(?:\.\d+|\d+(?:\.\d*)?))?(pt|em|ex|mu|px|pc|in|mm|cm|%)?/);var f=parseFloat(g[1]||"1"),j=g[2];if(i==null){i=1}if(j==="em"){return f*h}if(j==="ex"){return f*e.TeX.x_height*h}if(j==="%"){return f/100*i}if(j==="px"){return f/e.em}if(j==="pt"){return f/10*h}if(j==="pc"){return f*1.2*h}if(j==="in"){return f*this.pxPerInch/e.em}if(j==="cm"){return f*this.pxPerInch/e.em/2.54}if(j==="mm"){return f*this.pxPerInch/e.em/25.4}if(j==="mu"){return f/18*h}return f*h*i},thickness2em:function(f){var g=e.TeX.rule_thickness;if(f===a.LINETHICKNESS.MEDIUM){return g}if(f===a.LINETHICKNESS.THIN){return 0.67*g}if(f===a.LINETHICKNESS.THICK){return 1.67*g}return this.length2em(f,g)},createStrut:function(i,g,j){var f=this.Element("span",{style:{display:"inline-block",overflow:"hidden",height:g+"px",width:"1px",marginRight:"-1px"}});if(j){i.insertBefore(f,i.firstChild)}else{i.appendChild(f)}return f},createBlank:function(g,f,h){var i=this.Element("span",{style:{display:"inline-block",overflow:"hidden",height:"1px",width:this.Em(f)}});if(h){g.insertBefore(i,g.firstChild)}else{g.appendChild(i)}return i},createShift:function(g,f,i){var h=this.Element("span",{style:{marginLeft:this.Em(f)}});if(i){g.insertBefore(h,g.firstChild)}else{g.appendChild(h)}return h},createSpace:function(k,j,m,f,g){var i=this.Em(Math.max(0,j+m)),l=this.Em(-m);if(this.msieInlineBlockAlignBug){l=this.Em(e.getHD(k.parentNode).d-m)}if(k.isBox||k.className=="mspace"){k.bbox={h:j*k.scale,d:m*k.scale,w:f*k.scale,rw:f*k.scale,lw:0};k.style.height=i;k.style.verticalAlign=l}else{k=this.addElement(k,"span",{style:{height:i,verticalAlign:l}})}if(f>=0){k.style.width=this.Em(f);k.style.display="inline-block"}else{if(this.msieNegativeSpaceBug){k.style.height=""}k.style.marginLeft=this.Em(f);if(e.safariNegativeSpaceBug&&k.parentNode.firstChild==k){this.createBlank(k,0,true)}}if(g&&g!==a.COLOR.TRANSPARENT){k.style.backgroundColor=g}return k},createRule:function(o,k,m,p,i){var j=e.TeX.min_rule_thickness;if(p>0&&p*this.em0&&(k+m)*this.em0&&n.offsetWidth==0){n.style.width=this.Em(p)}if(o.isBox||o.className=="mspace"){o.bbox=n.bbox}return n},createFrame:function(o,m,n,p,r,g){var l=(this.msieBorderWidthBug?0:2*r);var q=this.Em(m+n-l),f=this.Em(-n-r),k=this.Em(p-l);var i=this.Em(r)+" "+g;var j=this.addElement(o,"span",{style:{border:i,display:"inline-block",overflow:"hidden",width:k,height:q},bbox:{h:m,d:n,w:p,rw:p,lw:0},noAdjust:true});if(f){j.style.verticalAlign=f}return j},createStack:function(h,j,g){if(this.msiePaddingWidthBug){this.createStrut(h,0)}var i=String(g).match(/%$/);var f=(!i&&g!=null?g:0);h=this.addElement(h,"span",{noAdjust:true,style:{display:"inline-block",position:"relative",width:(i?"100%":this.Em(f)),height:0}});if(!j){h.parentNode.bbox=h.bbox={h:-this.BIGDIMEN,d:-this.BIGDIMEN,w:f,lw:this.BIGDIMEN,rw:(!i&&g!=null?g:-this.BIGDIMEN)};if(i){h.bbox.width=g}}return h},createBox:function(g,f){var h=this.addElement(g,"span",{style:{position:"absolute"},isBox:true});if(f!=null){h.style.width=f}return h},addBox:function(f,g){g.style.position="absolute";g.isBox=true;return f.appendChild(g)},placeBox:function(n,m,k,i){var o=n.parentNode,v=n.bbox,q=o.bbox;if(this.msiePlaceBoxBug){this.addText(n,this.NBSP)}if(this.imgSpaceBug){this.addText(n,this.imgSpace)}var p=n.offsetHeight/this.em+1,z=0;if(n.noAdjust){p-=1}else{if(this.msieInlineBlockAlignBug){this.addElement(n,"img",{className:"MathJax_strut",border:0,src:"about:blank",style:{width:0,height:this.Em(p)}})}else{this.addElement(n,"span",{style:{display:"inline-block",width:0,height:this.Em(p)}})}}n.style.top=this.Em(-k-p);n.style.left=this.Em(m+z);if(v){if(this.negativeSkipBug){if(v.lw<0){z=v.lw;e.createBlank(n,-z,true);h=0}if(v.rw>v.w){e.createBlank(n,v.rw-v.w+0.1)}}if(!this.msieClipRectBug&&!v.noclip&&!i){var u=3/this.em;var s=(v.H==null?v.h:v.H),g=(v.D==null?v.d:v.D);var w=p-s-u,j=p+g+u,h=v.lw-3*u,f=1000;if(v.isFixed){f=v.width-h}n.style.clip="rect("+this.Em(w)+" "+this.Em(f)+" "+this.Em(j)+" "+this.Em(h)+")"}}if(v&&q){if(v.H!=null&&(q.H==null||v.H+k>q.H)){q.H=v.H+k}if(v.D!=null&&(q.D==null||v.D-k>q.D)){q.D=v.D-k}if(v.h+k>q.h){q.h=v.h+k}if(v.d-k>q.d){q.d=v.d-k}if(q.H!=null&&q.H<=q.h){delete q.H}if(q.D!=null&&q.D<=q.d){delete q.D}if(v.w+m>q.w){q.w=v.w+m;if(q.width==null){o.style.width=this.Em(q.w)}}if(v.rw+m>q.rw){q.rw=v.rw+m}if(v.lw+m=h-0.01||(o==k-1&&!g.stretch)){if(g.HW[o][2]){l*=g.HW[o][2]}if(g.HW[o][3]){f=g.HW[o][3]}var n=this.addElement(q,"span");this.createChar(n,[f,g.HW[o][1]],l,j);q.bbox=n.bbox;q.offset=0.65*q.bbox.w;q.scale=l;return}}if(g.stretch){this["extendDelimiter"+g.dir](q,p,g.stretch,l,j)}},extendDelimiterV:function(v,p,A,B,s){var i=this.createStack(v,true);var r=this.createBox(i),q=this.createBox(i);this.createChar(r,(A.top||A.ext),B,s);this.createChar(q,(A.bot||A.ext),B,s);var g={bbox:{w:0,lw:0,rw:0}},z=g,j;var w=r.bbox.h+r.bbox.d+q.bbox.h+q.bbox.d;var m=-r.bbox.h;this.placeBox(r,0,m,true);m-=r.bbox.d;if(A.mid){z=this.createBox(i);this.createChar(z,A.mid,B,s);w+=z.bbox.h+z.bbox.d}if(p>w){g=this.Element("span");this.createChar(g,A.ext,B,s);var x=g.bbox.h+g.bbox.d,f=x-0.05,t,l,u=(A.mid?2:1);l=t=Math.ceil((p-w)/(u*f));if(!A.fullExtenders){f=(p-w)/(u*t)}var o=(t/(t+1))*(x-f);f=x-o;m+=o+f-g.bbox.h;while(u-->0){while(t-->0){if(!this.msieCloneNodeBug){j=g.cloneNode(true)}else{j=this.Element("span");this.createChar(j,A.ext,B,s)}m-=f;this.placeBox(this.addBox(i,j),0,m,true)}m+=o-g.bbox.d;if(A.mid&&u){this.placeBox(z,0,m-z.bbox.h,true);t=l;m+=-(z.bbox.h+z.bbox.d)+o+f-g.bbox.h}}}else{m+=(w-p)/2;if(A.mid){this.placeBox(z,0,m-z.bbox.h,true);m+=-(z.bbox.h+z.bbox.d)}m+=(w-p)/2}this.placeBox(q,0,m-q.bbox.h,true);m-=q.bbox.h+q.bbox.d;v.bbox={w:Math.max(r.bbox.w,g.bbox.w,q.bbox.w,z.bbox.w),lw:Math.min(r.bbox.lw,g.bbox.lw,q.bbox.lw,z.bbox.lw),rw:Math.max(r.bbox.rw,g.bbox.rw,q.bbox.rw,z.bbox.rw),h:0,d:-m};v.scale=B;v.offset=0.55*v.bbox.w;v.isMultiChar=true;this.setStackWidth(i,v.bbox.w)},extendDelimiterH:function(u,h,z,B,r){var l=this.createStack(u,true);var i=this.createBox(l),v=this.createBox(l);this.createChar(i,(z.left||z.rep),B,r);this.createChar(v,(z.right||z.rep),B,r);var f=this.Element("span");this.createChar(f,z.rep,B,r);var y={bbox:{h:-this.BIGDIMEN,d:-this.BIGDIMEN}},g;this.placeBox(i,-i.bbox.lw,0,true);var p=(i.bbox.rw-i.bbox.lw)+(v.bbox.rw-v.bbox.lw)-0.05,o=i.bbox.rw-i.bbox.lw-0.025,q;if(z.mid){y=this.createBox(l);this.createChar(y,z.mid,B,r);p+=y.bbox.w}if(h>p){var A=f.bbox.rw-f.bbox.lw,j=A-0.05,s,m,t=(z.mid?2:1);m=s=Math.ceil((h-p)/(t*j));j=(h-p)/(t*s);q=(s/(s+1))*(A-j);j=A-q;o-=f.bbox.lw+q;while(t-->0){while(s-->0){if(!this.msieCloneNodeBug){g=f.cloneNode(true)}else{g=this.Element("span");this.createChar(g,z.rep,B,r)}this.placeBox(this.addBox(l,g),o,0,true);o+=j}if(z.mid&&t){this.placeBox(y,o,0,true);o+=y.bbox.w-q;s=m}}}else{q=Math.min(p-h,i.bbox.w/2);o-=q/2;if(z.mid){this.placeBox(y,o,0,true);o+=y.bbox.w}o-=q/2}this.placeBox(v,o,0,true);u.bbox={w:o+v.bbox.rw,lw:0,rw:o+v.bbox.rw,H:Math.max(i.bbox.h,f.bbox.h,v.bbox.h,y.bbox.h),D:Math.max(i.bbox.d,f.bbox.d,v.bbox.d,y.bbox.d),h:f.bbox.h,d:f.bbox.d};u.scale=B;u.isMultiChar=true;this.setStackWidth(l,u.bbox.w)},createChar:function(o,k,h,f){var n=o,p="",j={fonts:[k[1]],noRemap:true};if(f&&f===a.VARIANT.BOLD){j.fonts=[k[1]+"-bold",k[1]]}if(typeof(k[1])!=="string"){j=k[1]}if(k[0] instanceof Array){for(var l=0,g=k[0].length;l=r[q].low&&s<=r[q].high){if(r[q].remap&&r[q].remap[s]){s=k+r[q].remap[s]}else{s=s-r[q].low+k;if(r[q].add){s+=r[q].add}}if(j["variant"+r[q].offset]){j=this.FONTDATA.VARIANT[j["variant"+r[q].offset]]}break}}}if(j.remap&&j.remap[s]){if(j.remap[s] instanceof Array){var h=j.remap[s];s=h[0];j=this.FONTDATA.VARIANT[h[1]]}else{s=j.remap[s];if(j.remap.variant){j=this.FONTDATA.VARIANT[j.remap.variant]}}}if(this.FONTDATA.REMAP[s]&&!j.noRemap){s=this.FONTDATA.REMAP[s]}p=this.lookupChar(j,s);y=p[s];if(j!==x&&!y[5].img){if(u.length){this.addText(f,u);u=""}f=v;x=g;if(j!==x){if(x){f=this.addElement(v,"span")}else{g=j}}this.handleFont(f,p,f!==v);x=j}u=this.handleChar(f,p,y,s,u);if(y[0]/1000>v.bbox.h){v.bbox.h=y[0]/1000}if(y[1]/1000>v.bbox.d){v.bbox.d=y[1]/1000}if(v.bbox.w+y[3]/1000v.bbox.rw){v.bbox.rw=v.bbox.w+y[4]/1000}v.bbox.w+=y[2]/1000}if(u.length){this.addText(f,u)}if(v.scale&&v.scale!==1){v.bbox.h*=v.scale;v.bbox.d*=v.scale;v.bbox.w*=v.scale;v.bbox.lw*=v.scale;v.bbox.rw*=v.scale}if(o.length==1&&p.skew&&p.skew[s]){v.bbox.skew=p.skew[s]}},handleFont:function(h,f,j){h.style.fontFamily=f.family;if(!(e.FontFaceBug&&f.isWebFont)){var g=f.style||"normal",i=f.weight||"normal";if(g!=="normal"||j){h.style.fontStyle=g}if(i!=="normal"||j){h.style.fontWeight=i}}},handleChar:function(g,f,l,k,j){var i=l[5];if(i.img){return this.handleImg(g,f,l,k,j)}if(i.isUnknown&&this.FONTDATA.DELIMITERS[k]){if(j.length){this.addText(g,j)}var h=g.scale;e.createDelimiter(g,k,0,1,f);g.scale=h;l[0]=g.bbox.h*1000;l[1]=g.bbox.d*1000;l[2]=g.bbox.w*1000;l[3]=g.bbox.lw*1000;l[4]=g.bbox.rw*1000;return""}if(i.c==null){if(k<=65535){i.c=String.fromCharCode(k)}else{i.c=this.PLANE1+String.fromCharCode(k-119808+56320)}}if(l[2]||!this.msieAccentBug||j.length){return j+i.c}e.createShift(g,l[3]/1000);e.createShift(g,(l[4]-l[3])/1000);this.addText(g,i.c);e.createShift(g,-l[4]/1000);return""},handleImg:function(g,f,j,i,h){return h},lookupChar:function(j,p){var h,f;if(!j.FONTS){var o=this.FONTDATA.FONTS;var l=(j.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(l instanceof Array)){l=[l]}if(j.fonts!=l){j.fonts=l}j.FONTS=[];for(h=0,f=l.length;h=0;h--){if(g.Ranges[h][2]==k){g.Ranges.splice(h,1)}}this.loadFont(g.directory+"/"+k+".js")}}}},loadFont:function(g){var f=MathJax.Callback.Queue();f.Push(["Require",c,this.fontDir+"/"+g]);if(this.imgFonts){if(!MathJax.isPacked){g=g.replace(/\/([^\/]*)$/,e.imgPacked+"/$1")}f.Push(["Require",c,this.webfontDir+"/png/"+g])}d.RestartAfter(f.Push({}))},loadWebFont:function(f){f.available=f.isWebFont=true;if(e.FontFaceBug){f.family=f.name;if(e.msieFontCSSBug){f.family+="-Web"}}d.RestartAfter(this.Font.loadWebFont(f))},loadWebFontError:function(g,f){d.Startup.signal.Post("HTML-CSS Jax - disable web fonts");g.isWebFont=false;if(this.config.imageFont&&this.config.imageFont===this.fontInUse){this.imgFonts=true;d.Startup.signal.Post("HTML-CSS Jax - switch to image fonts");d.Startup.signal.Post("HTML-CSS Jax - using image fonts");MathJax.Message.Set("Web-Fonts not available -- using image fonts instead",null,3000);c.Require(this.directory+"/imageFonts.js",f)}else{this.allowWebFonts=false;f()}},Element:MathJax.HTML.Element,addElement:MathJax.HTML.addElement,TextNode:MathJax.HTML.TextNode,addText:MathJax.HTML.addText,ucMatch:MathJax.HTML.ucMatch,BIGDIMEN:10000000,ID:0,idPostfix:"",GetID:function(){this.ID++;return this.ID},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,scriptspace:0.1,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.1,min_rule_thickness:1.25},PLANE1:String.fromCharCode(55349),NBSP:String.fromCharCode(160),rfuzz:0});MathJax.Hub.Register.StartupHook("mml Jax Ready",function(){a=MathJax.ElementJax.mml;a.mbase.Augment({toHTML:function(l){var j=this.HTMLlineBreaks();if(j.length>2){return this.toHTMLmultiline(l,j)}l=this.HTMLcreateSpan(l);if(this.type!="mrow"){l=this.HTMLhandleSize(l)}for(var g=0,f=this.data.length;gg.d){g.d=h.d}if(h.h>g.h){g.h=h.h}if(h.D!=null&&h.D>g.D){g.D=h.D}if(h.H!=null&&h.H>g.H){g.H=h.H}if(i.style.paddingLeft){g.w+=parseFloat(i.style.paddingLeft)*(i.scale||1)}if(g.w+h.lwg.rw){g.rw=g.w+h.rw}g.w+=h.w;if(i.style.paddingRight){g.w+=parseFloat(i.style.paddingRight)*(i.scale||1)}if(h.width){g.width=h.width}},HTMLemptyBBox:function(f){f.h=f.d=f.H=f.D=f.rw=-e.BIGDIMEN;f.w=0;f.lw=e.BIGDIMEN;return f},HTMLcleanBBox:function(f){if(f.h===this.BIGDIMEN){f.h=f.d=f.H=f.D=f.w=f.rw=f.lw=0}if(f.D<=f.d){delete f.D}if(f.H<=f.h){delete f.H}},HTMLzeroBBox:function(){return{h:0,d:0,w:0,lw:0,rw:0}},HTMLcanStretch:function(f){if(this.isEmbellished()){return this.Core().HTMLcanStretch(f)}return false},HTMLstretchH:function(g,f){return this.HTMLspanElement()},HTMLstretchV:function(g,f,i){return this.HTMLspanElement()},HTMLnotEmpty:function(f){while(f){if((f.type!=="mrow"&&f.type!=="texatom")||f.data.length>1){return true}f=f.data[0]}return false},HTMLmeasureChild:function(g,f){if(this.data[g]!=null){e.Measured(this.data[g].toHTML(f),f)}else{f.bbox=this.HTMLzeroBBox()}},HTMLcreateSpan:function(f){if(this.spanID){var g=this.HTMLspanElement();if(g){while(g.firstChild){g.removeChild(g.firstChild)}g.bbox={w:0,h:0,d:0,lw:0,rw:0};g.scale=1;g.isMultChar=null;g.style.cssText="";return g}}if(this.href){f=e.addElement(f,"a",{href:this.href})}f=e.addElement(f,"span",{className:this.type});if(e.imgHeightBug){f.style.display="inline-block"}if(this["class"]!=null){f.className+=" "+this["class"]}if(this.style){f.style.cssText=this.style;if(f.style.fontSize){this.mathsize=f.style.fontSize;f.style.fontSize=""}}this.spanID=e.GetID();f.id=(this.id||"MathJax-Span-"+this.spanID)+e.idPostfix;f.bbox={w:0,h:0,d:0,lw:0,lr:0};if(this.href){f.parentNode.bbox=f.bbox}return f},HTMLspanElement:function(){if(!this.spanID){return null}return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+e.idPostfix)},HTMLhandleVariant:function(g,f,h){e.handleVariant(g,f,h)},HTMLhandleSize:function(f){if(!f.scale){f.scale=this.HTMLgetScale();if(f.scale!==1){f.style.fontSize=e.Percent(f.scale)}}return f},HTMLhandleColor:function(k){var m=this.getValues("mathcolor","color");if(this.mathbackground){m.mathbackground=this.mathbackground}if(this.background){m.background=this.background}if(this.style&&k.style.backgroundColor){m.mathbackground=k.style.backgroundColor;k.style.backgroundColor="transparent"}if(m.color&&!this.mathcolor){m.mathcolor=m.color}if(m.background&&!this.mathbackground){m.mathbackground=m.background}if(m.mathcolor){k.style.color=m.mathcolor}if(m.mathbackground&&m.mathbackground!==a.COLOR.TRANSPARENT){var n=1/e.em,j=0,i=0;if(this.isToken){j=k.bbox.lw;i=k.bbox.rw-k.bbox.w}if(k.style.paddingLeft!==""){j+=parseFloat(k.style.paddingLeft)*(k.scale||1)}if(k.style.paddingRight!==""){i-=parseFloat(k.style.paddingRight)*(k.scale||1)}var h=Math.max(0,e.getW(k)+(e.PaddingWidthBug?0:i-j));if(e.msieCharPaddingWidthBug&&k.style.paddingLeft!==""){h+=parseFloat(k.style.paddingLeft)*(k.scale||1)}var l=k.bbox.h+k.bbox.d,f=-k.bbox.d;if(h>0){h+=2*n;j-=n}if(l>0){l+=2*n;f-=n}i=-h-j;var g=e.Element("span",{id:"MathJax-Color-"+this.spanID+e.idPostfix,style:{display:"inline-block",backgroundColor:m.mathbackground,width:e.Em(h),height:e.Em(l),verticalAlign:e.Em(f),marginLeft:e.Em(j),marginRight:e.Em(i)}});if(e.msieInlineBlockAlignBug){g.style.position="relative";g.style.width=g.style.height=0;g.style.verticalAlign=g.style.marginLeft=g.style.marginRight="";e.placeBox(e.addElement(g,"span",{noAdjust:true,style:{display:"inline-block",position:"absolute",overflow:"hidden",width:e.Em(h),height:e.Em(l),background:m.mathbackground}}),j,k.bbox.h+n)}k.parentNode.insertBefore(g,k);if(e.msieColorPositionBug){k.style.position="relative"}return g}return null},HTMLremoveColor:function(){var f=document.getElementById("MathJax-Color-"+this.spanID+e.idPostfix);if(f){f.parentNode.removeChild(f)}},HTMLhandleSpace:function(i){if(this.useMMLspacing){if(this.type!=="mo"){return}var g=this.getValues("scriptlevel","lspace","rspace");if(g.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){g.lspace=Math.max(0,e.length2em(g.lspace));g.rspace=Math.max(0,e.length2em(g.rspace));var f=this,h=this.Parent();while(h&&h.isEmbellished()&&h.Core()===f){f=h;h=h.Parent();i=f.HTMLspanElement()}if(g.lspace){i.style.paddingLeft=e.Em(g.lspace)}if(g.rspace){i.style.paddingRight=e.Em(g.rspace)}}}else{var j=this.texSpacing();if(j!==""){j=e.length2em(j)/(i.scale||1);if(i.style.paddingLeft){j+=parseFloat(i.style.paddingLeft)}i.style.paddingLeft=e.Em(j)}}},HTMLgetScale:function(){var h=1,f=this.getValues("mathsize","scriptlevel","fontsize","scriptminsize");if(this.style){var g=this.HTMLspanElement();if(g.style.fontSize!=""){f.fontsize=g.style.fontSize}}if(f.fontsize&&!this.mathsize){f.mathsize=f.fontsize}if(f.scriptlevel!==0){if(f.scriptlevel>2){f.scriptlevel=2}h=Math.pow(this.Get("scriptsizemultiplier"),f.scriptlevel);f.scriptminsize=e.length2em(f.scriptminsize);if(hk.bbox.w){k.bbox.ic=k.bbox.rw-k.bbox.w;e.createBlank(k,k.bbox.ic);k.bbox.w=k.bbox.rw}}this.HTMLhandleSpace(k);this.HTMLhandleColor(k);return k},HTMLcanStretch:function(f){if(!this.Get("stretchy")){return false}var g=this.data.join("");if(g.length>1){return false}g=e.FONTDATA.DELIMITERS[g.charCodeAt(0)];return(g&&g.dir==f.substr(0,1))},HTMLstretchV:function(l,k,n){this.HTMLremoveColor();var f=this.getValues("symmetric","maxsize","minsize");var j=this.HTMLspanElement(),g;var i=e.TeX.axis_height,m=j.scale;if(f.symmetric){g=2*Math.max(k-i,n+i)}else{g=k+n}f.maxsize=e.length2em(f.maxsize,j.bbox.h+j.bbox.d);f.minsize=e.length2em(f.minsize,j.bbox.h+j.bbox.d);g=Math.max(f.minsize,Math.min(f.maxsize,g));j=this.HTMLcreateSpan(l);e.createDelimiter(j,this.data.join("").charCodeAt(0),g,m);if(f.symmetric){g=(j.bbox.h+j.bbox.d)/2+i}else{g=(j.bbox.h+j.bbox.d)*k/(k+n)}e.positionDelimiter(j,g);this.HTMLhandleSpace(j);this.HTMLhandleColor(j);return j},HTMLstretchH:function(i,f){this.HTMLremoveColor();var g=this.getValues("maxsize","minsize","mathvariant","fontweight");if(g.fontweight==="bold"&&!this.mathvariant){g.mathvariant=a.VARIANT.BOLD}var h=this.HTMLspanElement(),j=h.scale;g.maxsize=e.length2em(g.maxsize,h.bbox.w);g.minsize=e.length2em(g.minsize,h.bbox.w);f=Math.max(g.minsize,Math.min(g.maxsize,f));h=this.HTMLcreateSpan(i);e.createDelimiter(h,this.data.join("").charCodeAt(0),f,j,g.mathvariant);this.HTMLhandleSpace(h);this.HTMLhandleColor(h);return h}});a.mtext.Augment({toHTML:function(k){k=this.HTMLhandleSize(this.HTMLcreateSpan(k));k.bbox=null;if(this.Parent().type==="merror"){e.addText(k,this.data.join(""));var l=e.getHD(k),g=e.getW(k);k.bbox={h:l.h,d:l.d,w:g,lw:0,rw:g}}else{var j=this.HTMLgetVariant();for(var h=0,f=this.data.length;ho){f=((k.bbox.h+k.bbox.d)-(o-s))/2}var u=e.FONTDATA.DELIMITERS[e.FONTDATA.RULECHAR];if(!u||iF){F=q.bbox.w}if(!I[H]&&F>g){g=F}}}if(z==null&&B!=null){g=B}else{if(g==-e.BIGDIMEN){g=F}}for(H=F=0,C=this.data.length;HF){F=q.bbox.w}}}var w=e.TeX.rule_thickness,A=e.FONTDATA.TeX_factor;var h=l[this.base]||{bbox:this.HTMLzeroBBox()},J=(h.bbox.ic||0);var p,n,s,r,o,v,E;for(H=0,C=this.data.length;H0){m+=y;l-=y}}e.placeBox(f,i.bbox.w+o,Math.max(m,B.superscriptshift));e.placeBox(k,i.bbox.w+o-F,-Math.max(l,B.subscriptshift))}}this.HTMLhandleSpace(C);this.HTMLhandleColor(C);return C},HTMLstretchH:a.mbase.HTMLstretchH,HTMLstretchV:a.mbase.HTMLstretchV});a.mmultiscripts.Augment({toHTML:a.mbase.HTMLautoload});a.mtable.Augment({toHTML:a.mbase.HTMLautoload});a["annotation-xml"].Augment({toHTML:a.mbase.HTMLautoload});a.math.Augment({toHTML:function(n,g){var k=this.Get("alttext");if(k){g.setAttribute("aria-label",k)}var h=e.addElement(n,"nobr");n=this.HTMLcreateSpan(h);var l=e.createStack(n),i=e.createBox(l),m;l.style.fontSize=h.parentNode.style.fontSize;h.parentNode.style.fontSize="";if(this.data[0]!=null){if(e.msieColorBug){if(this.background){this.data[0].background=this.background;delete this.background}if(this.mathbackground){this.data[0].mathbackground=this.mathbackground;delete this.mathbackground}}a.mbase.prototype.displayAlign=d.config.displayAlign;a.mbase.prototype.displayIndent=d.config.displayIndent;m=e.Measured(this.data[0].toHTML(i),i)}e.placeBox(i,0,0);var j=e.em/e.outerEm;e.em/=j;n.bbox.h*=j;n.bbox.d*=j;n.bbox.w*=j;n.bbox.lw*=j;n.bbox.rw*=j;if(m&&m.bbox.width!=null){l.style.width=m.bbox.width;i.style.width="100%"}this.HTMLhandleColor(n);if(m){e.createRule(n,m.bbox.h*j,m.bbox.d*j,0)}if(!this.isMultiline&&this.Get("display")==="block"&&n.bbox.width==null){var o=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(o.indentalignfirst!==a.INDENTALIGN.INDENTALIGN){o.indentalign=o.indentalignfirst}if(o.indentalign===a.INDENTALIGN.AUTO){o.indentalign=this.displayAlign}g.style.textAlign=o.indentalign;if(o.indentshiftfirst!==a.INDENTSHIFT.INDENTSHIFT){o.indentshift=o.indentshiftfirst}if(o.indentshift==="auto"){o.indentshift=this.displayIndent}if(o.indentshift&&o.indentalign!==a.INDENTALIGN.CENTER){n.style[{left:"marginLeft",right:"marginRight"}[o.indentalign]]=e.Em(e.length2em(o.indentshift))}}return n}});a.TeXAtom.Augment({toHTML:function(g){g=this.HTMLcreateSpan(g);if(this.data[0]!=null){if(this.texClass===a.TEXCLASS.VCENTER){var f=e.createStack(g);var h=e.createBox(f);e.Measured(this.data[0].toHTML(h),h);e.placeBox(h,0,e.TeX.axis_height-(h.bbox.h+h.bbox.d)/2+h.bbox.d)}else{g.bbox=this.data[0].toHTML(g).bbox}}this.HTMLhandleSpace(g);this.HTMLhandleColor(g);return g}});MathJax.Hub.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",e,"jax.js"]),0)})});d.Register.StartupHook("End Config",function(){d.Browser.Select({MSIE:function(f){var i=f.versionAtLeast("7.0");var h=f.versionAtLeast("8.0")&&document.documentMode>7;var g=(document.compatMode==="BackCompat");e.config.styles[".MathJax .MathJax_HitBox"]["background-color"]="white";e.config.styles[".MathJax .MathJax_HitBox"].opacity=0;e.config.styles[".MathJax .MathJax_HitBox"].filter="alpha(opacity=0)";e.Augment({getMarginScale:e.getMSIEmarginScale,PaddingWidthBug:true,msieEventBug:f.isIE9,msieAccentBug:true,msieColorBug:true,msieColorPositionBug:true,msieRelativeWidthBug:g,msieMarginWidthBug:true,msiePaddingWidthBug:true,msieCharPaddingWidthBug:(h&&!g),msieBorderWidthBug:g,msieInlineBlockAlignBug:(!h||g),msieVerticalAlignBug:(h&&!g),msiePlaceBoxBug:(h&&!g),msieClipRectBug:!h,msieNegativeSpaceBug:g,msieCloneNodeBug:(h&&f.version==="8.0"),negativeSkipBug:true,msieIE6:!i,msieItalicWidthBug:true,zeroWidthBug:true,FontFaceBug:true,msieFontCSSBug:f.isIE9,allowWebFonts:"eot"})},Firefox:function(g){var h=false;if(g.versionAtLeast("3.5")){var f=String(document.location).replace(/[^\/]*$/,"");if(document.location.protocol!=="file:"||(d.config.root+"/").substr(0,f.length)===f){h="otf"}}e.Augment({useProcessingFrame:true,ffVerticalAlignBug:true,AccentBug:true,allowWebFonts:h})},Safari:function(j){var h=j.versionAtLeast("3.0");var g=j.versionAtLeast("3.1");j.isMobile=(navigator.appVersion.match(/Mobile/i)!=null);var f=(navigator.appVersion.match(/ Android (\d+)\.(\d+)/));var k=(g&&j.isMobile&&((navigator.platform.match(/iPad|iPod|iPhone/)&&!j.versionAtLeast("5.0"))||(f!=null&&(f[1]<2||(f[1]==2&&f[2]<2)))));e.Augment({config:{styles:{".MathJax img, .MathJax nobr, .MathJax a":{"max-width":"5000em","max-height":"5000em"}}},useProcessingFrame:true,rfuzz:0.05,AccentBug:true,AdjustSurd:true,safariContextMenuBug:true,safariNegativeSpaceBug:true,safariVerticalAlignBug:!g,safariTextNodeBug:!h,safariWebFontSerif:["serif"],allowWebFonts:(g&&!k?"otf":false)});if(k){var i=d.config["HTML-CSS"];if(i){i.availableFonts=[];i.preferredFont=null}else{d.config["HTML-CSS"]={availableFonts:[],preferredFont:null}}}},Chrome:function(f){e.Augment({useProcessingFrame:true,rfuzz:0.05,AccentBug:true,AdjustSurd:true,allowWebFonts:(f.versionAtLeast("4.0")?"otf":"svg"),safariNegativeSpaceBug:true,safariWebFontSerif:[""]})},Opera:function(f){f.isMini=(navigator.appVersion.match("Opera Mini")!=null);e.config.styles[".MathJax .merror"]["vertical-align"]=null;e.Augment({useProcessingFrame:true,operaHeightBug:true,operaVerticalAlignBug:true,operaFontSizeBug:f.versionAtLeast("10.61"),negativeSkipBug:true,zeroWidthBug:true,FontFaceBug:true,PaddingWidthBug:true,allowWebFonts:(f.versionAtLeast("10.0")&&!f.isMini?"otf":false),adjustAvailableFonts:function(j){for(var h=0,g=j.length;hv){v=aE}K[aE]=b.createStack(b.createBox(ag));l[aE]=-b.BIGDIMEN}O[aF][aE]=b.createBox(K[aE]);b.Measured(R.data[aE-ay].toHTML(O[aF][aE]),O[aF][aE]);if(R.data[aE-ay].isMultiline){O[aF][aE].style.width="100%"}if(O[aF][aE].bbox.h>w[aF]){w[aF]=O[aF][aE].bbox.h}if(O[aF][aE].bbox.d>I[aF]){I[aF]=O[aF][aE].bbox.d}if(O[aF][aE].bbox.w>l[aE]){l[aE]=O[aF][aE].bbox.w}}}if(w[0]+I[0]){w[0]=Math.max(w[0],Z)}if(w[O.length-1]+I[O.length-1]){I[O.length-1]=Math.max(I[O.length-1],af)}var al=aJ.columnspacing.split(/ /),S=aJ.rowspacing.split(/ /),ah=aJ.columnalign.split(/ /),L=aJ.rowalign.split(/ /),N=aJ.columnlines.split(/ /),k=aJ.rowlines.split(/ /),ap=aJ.columnwidth.split(/ /),au=[];for(aF=0,aC=al.length;aF0.98){ai=0.98/aw;aw=0.98}}else{if(aJ.width==="auto"){if(aw>0.98){ai=V/(U+V);aq=U+V}else{aq=U/(1-aw)}}else{aq=b.length2em(aJ.width);for(aF=0,aC=Math.min(v+1,al.length);aF0.01){if(aG&&aq>U){aq=(aq-U)/aG;for(aF=0,aC=B.length;aF=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax.id==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/"/g,""")},createPreview:function(b,a){var c;if(this.config.preview==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterText(d)]}}else{if(this.config.preview instanceof Array){c=this.config.preview}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterText:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); + +(function(a,c,e,b,h){var i="1.1";var g=a.CombineConfig("MathZoom",{delay:400,styles:{"#MathJax_Zoom":{position:"absolute","background-color":"#F0F0F0",overflow:"auto",display:"block","z-index":301,padding:".5em",border:"1px solid black",margin:0,"font-family":"serif","font-size":"85%","font-weight":"normal","font-style":"normal","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","box-shadow":"5px 5px 15px #AAAAAA","-webkit-box-shadow":"5px 5px 15px #AAAAAA","-moz-box-shadow":"5px 5px 15px #AAAAAA","-khtml-box-shadow":"5px 5px 15px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},"#MathJax_ZoomOverlay":{position:"absolute",left:0,top:0,"z-index":300,display:"inline-block",width:"100%",height:"100%",border:0,padding:0,margin:0,"background-color":"white",opacity:0,filter:"alpha(opacity=0)"}}});var d=function(j){if(!j){j=window.event}if(j){if(j.preventDefault){j.preventDefault()}if(j.stopPropagation){j.stopPropagation()}j.cancelBubble=true;j.returnValue=false}return false};var f=MathJax.Extension.MathZoom={version:i,settings:a.config.menuSettings,HandleEvent:function(l,j,k){if(!l){l=window.event}if(f.settings.CTRL&&!l.ctrlKey){return true}if(f.settings.ALT&&!l.altKey){return true}if(f.settings.CMD&&!l.metaKey){return true}if(f.settings.Shift&&!l.shiftKey){return true}return f[j](l,k)},Click:function(k,j){if(this.settings.zoom==="Click"){return this.Zoom(j,k)}},DblClick:function(k,j){if(this.settings.zoom==="Double-Click"){return this.Zoom(j,k)}},Mouseover:function(k,j){if(this.settings.zoom==="Hover"){f.oldMouseOver=j.onmouseover;j.onmouseover=null;j.onmousemove=this.Mousemove;j.onmouseout=this.Mouseout;return f.Timer(k,j)}},Mouseout:function(j){this.onmouseover=f.oldMouseOver;delete f.oldMouseOver;this.onmousemove=this.onmouseout=null;f.ClearTimer();return d(j)},Mousemove:function(j){return f.Timer(j||window.event,this)},Timer:function(k,j){this.ClearTimer();this.timer=setTimeout(MathJax.Callback(["Zoom",this,j,{}]),g.delay);return d(k)},ClearTimer:function(){if(this.timer){clearTimeout(this.timer);delete this.timer}},Zoom:function(s,l){this.ClearTimer();this.Remove();var v=s.parentNode;if(v.className==="MathJax_MathContainer"){v=v.parentNode}if(v.parentNode.className==="MathJax_MathContainer"){v=v.parentNode.parentNode}var q=(String(v.className).match(/^MathJax_(MathML|Display)$/)?v:s).nextSibling;var m=a.getJaxFor(q),r=m.root;var o=(b&&m.outputJax.isa(b.constructor)?"HTMLCSS":(h&&m.outputJax.isa(h.constructor)?"MathML":null));if(!o){return}var j=Math.floor(0.85*document.body.clientWidth),p=Math.floor(0.85*document.body.clientHeight);var k=c.Element("span",{style:{position:"relative",display:"inline-block",height:0,width:0},id:"MathJax_ZoomFrame"},[["span",{id:"MathJax_ZoomOverlay",onmousedown:this.Remove}],["span",{id:"MathJax_Zoom",onclick:this.Remove,style:{visibility:"hidden",fontSize:this.settings.zscale,"max-width":j+"px","max-height":p+"px"}},[["span"]]]]);var x=k.lastChild,u=x.firstChild,n=k.firstChild;s.parentNode.insertBefore(k,s);if(this.msieZIndexBug){var t=c.Element("img",{src:"about:blank",id:"MathJax_ZoomTracker",style:{width:0,height:0,position:"relative"}});document.body.appendChild(k);k.style.position="absolute";k.style.zIndex=g.styles["#MathJax_ZoomOverlay"]["z-index"];k=t}var w=(this["Zoom"+o])(r,u,s);if(this.msiePositionBug){if(this.msieIE8Bug){u.style.position="absolute";x.style.height=u.offsetHeight;u.style.position="";if(x.offsetHeight<=p&&x.offsetWidth<=j){x.style.overflow="visible"}}if(this.msieWidthBug){x.style.width=Math.min(j,w.w)}else{if(w.w>j){x.style.width=j}}if(x.offsetHeight>p){x.style.Height=p+"px"}if(s.nextSibling){s.parentNode.insertBefore(k,s.nextSibling)}else{v.appendChild(k)}}else{if(this.operaPositionBug){x.style.width=Math.min(j,u.offsetWidth)+"px"}}this.Position(x,w,(o==="MathML"&&v.nodeName.toLowerCase()==="div"));x.style.visibility="";if(this.settings.zoom==="Hover"){n.onmouseover=this.Remove}if(window.addEventListener){addEventListener("resize",this.Resize,false)}else{if(window.attachEvent){attachEvent("onresize",this.Resize)}else{this.onresize=window.onresize;window.onresize=this.Resize}}return d(l)},ZoomHTMLCSS:function(o,q,p){q.className="MathJax";b.idPostfix="-zoom";b.getScales(q,q);o.toHTML(q,q);var r=o.HTMLspanElement().bbox;b.idPostfix="";if(r.width&&r.width!=="100%"){var j=Math.floor(0.85*document.body.clientWidth);q.style.width=j+"px";q.style.display="inline-block";var k=(o.id||"MathJax-Span-"+o.spanID)+"-zoom";var l=document.getElementById(k).firstChild;while(l&&l.style.width!==r.width){l=l.nextSibling}if(l){l.style.width="100%"}}q.appendChild(this.topImg);var n=this.topImg.offsetTop;q.removeChild(this.topImg);var m=(this.msieWidthBug?b.getW(p)*b.em:p.offsetWidth);return{w:r.w*b.em,Y:-n,W:m}},ZoomMathML:function(k,l,m){k.toNativeMML(l,l);var n;l.appendChild(this.topImg);n=this.topImg.offsetTop;l.removeChild(this.topImg);var j=(this.ffMMLwidthBug?m.parentNode:m).offsetWidth;return{w:l.offsetWidth,Y:-n,W:j}},Position:function(p,n,r){var k=this.Resize(),m=k.x,l=k.y,j=n.W;if(this.msiePositionBug){j=-j}if(r&&this.ffMMLcenterBug){j=0}var q=-Math.floor((p.offsetWidth-j)/2),o=n.Y;p.style.left=Math.max(q,20-m)+"px";p.style.top=Math.max(o,20-l)+"px"},Resize:function(l){if(f.onresize){f.onresize(l)}var j=0,o=0,n=document.getElementById("MathJax_ZoomFrame"),k=document.getElementById("MathJax_ZoomOverlay");var m=(f.msieZIndexBug?document.getElementById("MathJax_ZoomTracker"):n);if(f.operaPositionBug){n.style.border="1px solid"}if(m.offsetParent){do{j+=m.offsetLeft;o+=m.offsetTop}while(m=m.offsetParent)}if(f.operaPositionBug){n.style.border=""}if(f.msieZIndexBug){n.style.left=j+"px";n.style.top=o+"px"}k.style.left=(-j)+"px";k.style.top=(-o)+"px";if(f.msiePositionBug){setTimeout(f.SetWH,0)}else{f.SetWH()}return{x:j,y:o}},SetWH:function(){var j=document.getElementById("MathJax_ZoomOverlay");j.style.width=j.style.height="1px";j.style.width=document.body.scrollWidth+"px";j.style.height=document.body.scrollHeight+"px"},Remove:function(k){var l=document.getElementById("MathJax_ZoomFrame");if(l){l.parentNode.removeChild(l);l=document.getElementById("MathJax_ZoomTracker");if(l){l.parentNode.removeChild(l)}if(f.operaRefreshBug){var j=c.addElement(document.body,"div",{style:{position:"fixed",left:0,top:0,width:"100%",height:"100%",backgroundColor:"white",opacity:0},id:"MathJax_OperaDiv"});document.body.removeChild(j)}if(window.removeEventListener){removeEventListener("resize",f.Resize,false)}else{if(window.detachEvent){detachEvent("onresize",f.Resize)}else{window.onresize=f.onresize;delete f.onresize}}}return d(k)}};a.Register.StartupHook("HTML-CSS Jax Ready",function(){b=MathJax.OutputJax["HTML-CSS"];b.Augment({HandleEvent:f.HandleEvent})});a.Register.StartupHook("NativeMML Jax Ready",function(){h=MathJax.OutputJax.NativeMML;h.Augment({HandleEvent:f.HandleEvent,MSIEmouseup:function(l,k,j){if(this.trapUp){delete this.trapUp;return true}if(this.MSIEzoomKeys(l)){return true}return false},MSIEclick:function(l,k,j){if(this.trapClick){delete this.trapClick;return true}if(!this.MSIEzoomKeys(l)){return false}if(!this.settings.zoom.match(/Click/)){return false}return(f.Click(l,k)===false)},MSIEdblclick:function(l,k,j){if(!this.MSIEzoomKeys(l)){return false}return(f.DblClick(l,k)===false)},MSIEmouseover:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEmouseout:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.ClearTimer();return true},MSIEmousemove:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEzoomKeys:function(j){if(this.settings.CTRL&&!j.ctrlKey){return false}if(this.settings.CMD&&!j.metaKey){return false}if(this.settings.ALT&&!j.altKey){return false}if(this.settings.Shift&&!j.shiftKey){return false}return true}})});a.Browser.Select({MSIE:function(j){var k=(document.compatMode==="BackCompat");var l=j.versionAtLeast("8.0")&&document.documentMode>7;f.msiePositionBug=true;f.msieWidthBug=!k;f.msieIE8Bug=l;f.msieZIndexBug=!l;f.msieInlineBlockAlignBug=(!l||k);if(document.documentMode>=9){delete g.styles["#MathJax_Zoom"].filter}},Opera:function(j){f.operaPositionBug=true;f.operaRefreshBug=true},Firefox:function(j){f.ffMMLwidthBug=true;f.ffMMLcenterBug=true}});f.topImg=(f.msieInlineBlockAlignBug?c.Element("img",{style:{width:0,height:0},src:"about:blank"}):c.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(f.operaPositionBug){f.topImg.style.border="1px solid"}MathJax.Callback.Queue(["Styles",e,g.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",e,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); + +(function(b,c,f){var k="1.1.4";MathJax.Extension.MathMenu={version:k};var i=b.Browser.isPC,g=b.Browser.isMSIE;var e=(i?null:"5px");var j=b.CombineConfig("MathMenu",{delay:150,helpURL:"http://www.mathjax.org/help/user/",showRenderer:true,showFontMenu:false,showContext:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:100,height:50},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(i?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":e,"-webkit-border-radius":e,"-moz-border-radius":e,"-khtml-border-radius":e,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(i?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuTitle":{"background-color":"#CCCCCC",margin:(i?"-1px -1px 1px -1px":"-5px 0 0 0"),"text-align":"center","font-style":"italic","font-size":"80%",color:"#444444",padding:"2px 0",overflow:"hidden"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(i?"1em":".7em")},".MathJax_MenuLabel":{padding:(i?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(i?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(i?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(i?"Highlight":"#606872"),color:(i?"HighlightText":"white")}}});var d=function(l){if(!l){l=window.event}if(l){if(l.preventDefault){l.preventDefault()}if(l.stopPropagation){l.stopPropagation()}l.cancelBubble=true;l.returnValue=false}return false};var a=MathJax.Menu=MathJax.Object.Subclass({version:k,items:[],posted:false,title:null,margin:5,Init:function(l){this.items=[].slice.call(arguments,0)},With:function(l){if(l){b.Insert(this,l)}return this},Post:function(n,v){if(!n){n=window.event}var t=(!this.title?null:[["div",{className:"MathJax_MenuTitle"},[this.title]]]);var l=document.getElementById("MathJax_MenuFrame");if(!l){l=a.Background(this)}var o=c.addElement(l,"div",{onmouseup:a.Mouseup,ondblclick:this.False,ondragstart:this.False,onselectstart:this.False,oncontextmenu:this.False,menuItem:this,className:"MathJax_Menu"},t);for(var q=0,p=this.items.length;qdocument.body.offsetWidth-this.margin){u=document.body.offsetWidth-o.offsetWidth-this.margin}a.skipUp=true}else{var r="left",w=v.offsetWidth;u=v.offsetWidth-2;s=0;while(v&&v!==l){u+=v.offsetLeft;s+=v.offsetTop;v=v.parentNode}if(u+o.offsetWidth>document.body.offsetWidth-this.margin){r="right";u=Math.max(this.margin,u-w-o.offsetWidth+6)}if(!i){o.style["borderRadiusTop"+r]=0;o.style["WebkitBorderRadiusTop"+r]=0;o.style["MozBorderRadiusTop"+r]=0;o.style["KhtmlBorderRadiusTop"+r]=0}}o.style.left=u+"px";o.style.top=s+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return this.False(n)},Remove:function(l,m){var n=document.getElementById("MathJax_MenuFrame");if(n){n.parentNode.removeChild(n);if(this.msieBackgroundBug){detachEvent("onresize",a.Resize)}}},Mouseup:function(l,m){if(a.skipUp){delete a.skipUp}else{this.Remove(l,m)}},False:d},{config:j,div:null,Remove:function(l){a.Event(l,this,"Remove")},Mouseover:function(l){a.Event(l,this,"Mouseover")},Mouseout:function(l){a.Event(l,this,"Mouseout")},Mousedown:function(l){a.Event(l,this,"Mousedown")},Mouseup:function(l){a.Event(l,this,"Mouseup")},Mousemove:function(l){a.Event(l,this,"Mousemove")},Event:function(n,o,l){if(!n){n=window.event}var m=o.menuItem;if(m&&m[l]){return m[l](n,o)}return null},BGSTYLE:{position:"absolute",left:0,top:0,"z-index":200,width:"100%",height:"100%",border:0,padding:0,margin:0},Background:function(m){var n=c.addElement(document.body,"div",{style:this.BGSTYLE,id:"MathJax_MenuFrame"},[["div",{style:this.BGSTYLE,menuItem:m,onmousedown:this.Remove}]]);var l=n.firstChild;if(m.msieBackgroundBug){l.style.backgroundColor="white";l.style.filter="alpha(opacity=0)";n.width=n.height=0;this.Resize();attachEvent("onresize",this.Resize)}else{l.style.position="fixed"}return n},Resize:function(){setTimeout(a.SetWH,0)},SetWH:function(){var l=document.getElementById("MathJax_MenuFrame");if(l){l=l.firstChild;l.style.width=l.style.height="1px";l.style.width=document.body.scrollWidth+"px";l.style.height=document.body.scrollHeight+"px"}},saveCookie:function(){c.Cookie.Set("menu",this.cookie)},getCookie:function(){this.cookie=c.Cookie.Get("menu")}});var h=a.ITEM=MathJax.Object.Subclass({name:"",Create:function(m){if(!this.hidden){var l={onmouseover:a.Mouseover,onmouseout:a.Mouseout,onmouseup:a.Mouseup,onmousedown:this.False,ondragstart:this.False,onselectstart:this.False,onselectend:this.False,className:"MathJax_MenuItem",menuItem:this};if(this.disabled){l.className+=" MathJax_MenuDisabled"}c.addElement(m,"div",l,this.Label(l,m))}},Mouseover:function(q,s){if(!this.disabled){this.Activate(s)}if(!this.menu||!this.menu.posted){var r=document.getElementById("MathJax_MenuFrame").childNodes,n=s.parentNode.childNodes;for(var o=0,l=n.length;o=0&&s.parentNode.menuItem!==r[l].menuItem){r[l].menuItem.posted=false;r[l].parentNode.removeChild(r[l]);l--}if(this.Timer){this.Timer(q,s)}}},Mouseout:function(l,m){if(!this.menu||!this.menu.posted){this.Deactivate(m)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(l,m){return this.Remove(l,m)},Remove:function(l,m){m=m.parentNode.menuItem;return m.Remove(l,m)},Activate:function(l){this.Deactivate(l);l.className+=" MathJax_MenuActive"},Deactivate:function(l){l.className=l.className.replace(/ MathJax_MenuActive/,"")},With:function(l){if(l){b.Insert(this,l)}return this},False:d});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(l,n,m){this.name=l;this.action=n;this.With(m)},Label:function(l,m){return[this.name]},Mouseup:function(l,m){if(!this.disabled){this.Remove(l,m);this.action.call(this,l)}return this.False(l)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(i&&!b.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(l,n){this.name=l;var m=1;if(!(n instanceof a.ITEM)){this.With(n),m++}this.menu=a.apply(a,[].slice.call(arguments,m))},Label:function(l,m){l.onmousemove=a.Mousemove;this.menu.posted=false;return[this.name+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(l,m){if(this.timer){clearTimeout(this.timer)}l={clientX:l.clientX,clientY:l.clientY};this.timer=setTimeout(MathJax.Callback(["Mouseup",this,l,m]),j.delay)},Mouseup:function(n,p){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(n,p)}else{var o=document.getElementById("MathJax_MenuFrame").childNodes,l=o.length-1;while(l>=0){var q=o[l];q.menuItem.posted=false;q.parentNode.removeChild(q);if(q.menuItem===this.menu){break}l--}}}return this.False(n)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(i?"\u25CF":"\u2713"),Init:function(m,l,n){this.name=m;this.variable=l;this.With(n);if(this.value==null){this.value=this.name}},Label:function(m,n){var l={className:"MathJax_MenuRadioCheck"};if(j.settings[this.variable]!==this.value){l={style:{display:"none"}}}return[["span",l,[this.marker]]," "+this.name]},Mouseup:function(p,q){if(!this.disabled){var r=q.parentNode.childNodes;for(var n=0,l=r.length;n/g,">");n.document.open();n.document.write("MathJax Equation Source");n.document.write("
"+r+"
");n.document.write("");n.document.close();var p=n.document.body.firstChild;var o=(n.outerHeight-n.innerHeight)||30,m=(n.outerWidth-n.innerWidth)||30;m=Math.min(Math.floor(0.5*screen.width),p.offsetWidth+m+25);o=Math.min(Math.floor(0.5*screen.height),p.offsetHeight+o+25);n.resizeTo(m,o);if(q&&q.screenX!=null){var l=Math.max(0,Math.min(q.screenX-Math.floor(m/2),screen.width-m-20)),s=Math.max(0,Math.min(q.screenY-Math.floor(o/2),screen.height-o-20));n.moveTo(l,s)}delete a.ShowSource.w};a.Scale=function(){var m=MathJax.OutputJax["HTML-CSS"],l=MathJax.OutputJax.NativeMML;var o=(m?m.config.scale:l.config.scale);var n=prompt("Scale all mathematics (compared to surrounding text) by",o+"%");if(n){if(n.match(/^\s*\d+\s*%?\s*$/)){n=parseInt(n);if(n){if(n!==o){if(m){m.config.scale=n}if(l){l.config.scale=n}a.cookie.scale=n;a.saveCookie();b.Reprocess()}}else{alert("The scale should not be zero")}}else{alert("The scale should be a perentage (e.g., 120%)")}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){f.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var l=b.config.outputJax["jax/mml"];if(l[0]!==j.settings.renderer){MathJax.Callback.Queue(["Require",f,"[MathJax]/jax/output/"+j.settings.renderer+"/config.js"],["Post",b.Startup.signal,j.settings.renderer+" output selected"],[function(){var p=MathJax.OutputJax[j.settings.renderer];for(var o=0,n=l.length;o7;a.Augment({margin:20,msieBackgroundBug:(m||!n),msieAboutBug:m});if(document.documentMode>=9){delete j.styles["#MathJax_About"].filter;delete j.styles[".MathJax_Menu"].filter}}});b.Register.StartupHook("End Config",function(){j.settings=b.config.menuSettings;if(!j.settings.format){j.settings.format=(MathJax.InputJax.TeX?"Original":"MathML")}if(typeof(j.settings.showRenderer)!=="undefined"){j.showRenderer=j.settings.showRenderer}if(typeof(j.settings.showFontMenu)!=="undefined"){j.showFontMenu=j.settings.showFontMenu}if(typeof(j.settings.showContext)!=="undefined"){j.showContext=j.settings.showContext}a.getCookie();a.menu=a(h.COMMAND("Show Source",a.ShowSource),h.SUBMENU("Format",h.RADIO("MathML","format"),h.RADIO("Original","format",{value:"Original"})),h.RULE(),h.SUBMENU("Settings",h.SUBMENU("Zoom Trigger",h.RADIO("Hover","zoom",{action:a.Zoom}),h.RADIO("Click","zoom",{action:a.Zoom}),h.RADIO("Double-Click","zoom",{action:a.Zoom}),h.RADIO("No Zoom","zoom",{value:"None"}),h.RULE(),h.LABEL("Trigger Requires:"),h.CHECKBOX((b.Browser.isMac?"Option":"Alt"),"ALT"),h.CHECKBOX("Command","CMD",{hidden:!b.Browser.isMac}),h.CHECKBOX("Control","CTRL",{hidden:b.Browser.isMac}),h.CHECKBOX("Shift","Shift")),h.SUBMENU("Zoom Factor",h.RADIO("125%","zscale"),h.RADIO("133%","zscale"),h.RADIO("150%","zscale"),h.RADIO("175%","zscale"),h.RADIO("200%","zscale"),h.RADIO("250%","zscale"),h.RADIO("300%","zscale"),h.RADIO("400%","zscale")),h.RULE(),h.SUBMENU("Math Renderer",{hidden:!j.showRenderer},h.RADIO("HTML-CSS","renderer",{action:a.Renderer}),h.RADIO("MathML","renderer",{action:a.Renderer,value:"NativeMML"})),h.SUBMENU("Font Preference",{hidden:!j.showFontMenu},h.LABEL("For HTML-CSS:"),h.RADIO("Auto","font",{action:a.Font}),h.RULE(),h.RADIO("TeX (local)","font",{action:a.Font}),h.RADIO("TeX (web)","font",{action:a.Font}),h.RADIO("TeX (image)","font",{action:a.Font}),h.RULE(),h.RADIO("STIX (local)","font",{action:a.Font})),h.SUBMENU("Contextual Menu",{hidden:!j.showContext},h.RADIO("MathJax","context"),h.RADIO("Browser","context")),h.COMMAND("Scale All Math ...",a.Scale)),h.RULE(),h.COMMAND("About MathJax",a.About),h.COMMAND("MathJax Help",a.Help))});a.showRenderer=function(l){a.cookie.showRenderer=j.showRenderer=l;a.saveCookie();a.menu.items[3].menu.item[3].hidden=!l};a.showFontMenu=function(l){a.cookie.showFontMenu=j.showFontMenu=l;a.saveCookie();a.menu.items[3].menu.items[4].hidden=!l};a.showContext=function(l){a.cookie.showContext=j.showContext=l;a.saveCookie();a.menu.items[3].menu.items[5].hidden=!l};MathJax.Callback.Queue(["Styles",f,j.styles],["Post",b.Startup.signal,"MathMenu Ready"],["loadComplete",f,"[MathJax]/extensions/MathMenu.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax); + +MathJax.ElementJax.mml=MathJax.ElementJax({mimeType:"jax/mml"},{id:"mml",version:"1.1.1",directory:MathJax.ElementJax.directory+"/mml",extensionDir:MathJax.ElementJax.extensionDir+"/mml",optableDir:MathJax.ElementJax.directory+"/mml/optable"});MathJax.ElementJax.mml.Augment({Init:function(){if(arguments.length===1&&arguments[0].type==="math"){this.root=arguments[0]}else{this.root=MathJax.ElementJax.mml.math.apply(this,arguments)}if(this.root.mode){if(!this.root.display&&this.root.mode==="display"){this.root.display="block"}delete this.root.mode}}},{INHERIT:"_inherit_",AUTO:"_auto_",SIZE:{INFINITY:"infinity",SMALL:"small",NORMAL:"normal",BIG:"big"},COLOR:{TRANSPARENT:"transparent"},VARIANT:{NORMAL:"normal",BOLD:"bold",ITALIC:"italic",BOLDITALIC:"bold-italic",DOUBLESTRUCK:"double-struck",FRAKTUR:"fraktur",BOLDFRAKTUR:"bold-fraktur",SCRIPT:"script",BOLDSCRIPT:"bold-script",SANSSERIF:"sans-serif",BOLDSANSSERIF:"bold-sans-serif",SANSSERIFITALIC:"sans-serif-italic",SANSSERIFBOLDITALIC:"sans-serif-bold-italic",MONOSPACE:"monospace",INITIAL:"inital",TAILED:"tailed",LOOPED:"looped",STRETCHED:"stretched",CALIGRAPHIC:"-tex-caligraphic",OLDSTYLE:"-tex-oldstyle"},FORM:{PREFIX:"prefix",INFIX:"infix",POSTFIX:"postfix"},LINEBREAK:{AUTO:"auto",NEWLINE:"newline",NOBREAK:"nobreak",GOODBREAK:"goodbreak",BADBREAK:"badbreak"},LINEBREAKSTYLE:{BEFORE:"before",AFTER:"after",DUPLICATE:"duplicate",INFIXLINBREAKSTYLE:"infixlinebreakstyle"},INDENTALIGN:{LEFT:"left",CENTER:"center",RIGHT:"right",AUTO:"auto",ID:"id",INDENTALIGN:"indentalign"},INDENTSHIFT:{INDENTSHIFT:"indentshift"},LINETHICKNESS:{THIN:"thin",MEDIUM:"medium",THICK:"thick"},NOTATION:{LONGDIV:"longdiv",ACTUARIAL:"actuarial",RADICAL:"radical",BOX:"box",ROUNDEDBOX:"roundedbox",CIRCLE:"circle",LEFT:"left",RIGHT:"right",TOP:"top",BOTTOM:"bottom",UPDIAGONALSTRIKE:"updiagonalstrike",DOWNDIAGONALSTRIKE:"downdiagonalstrike",VERTICALSTRIKE:"verticalstrike",HORIZONTALSTRIKE:"horizontalstrike",MADRUWB:"madruwb"},ALIGN:{TOP:"top",BOTTOM:"bottom",CENTER:"center",BASELINE:"baseline",AXIS:"axis",LEFT:"left",RIGHT:"right"},LINES:{NONE:"none",SOLID:"solid",DASHED:"dashed"},SIDE:{LEFT:"left",RIGHT:"right",LEFTOVERLAP:"leftoverlap",RIGHTOVERLAP:"rightoverlap"},WIDTH:{AUTO:"auto",FIT:"fit"},ACTIONTYPE:{TOGGLE:"toggle",STATUSLINE:"statusline",TOOLTIP:"tooltip",INPUT:"input"},LENGTH:{VERYVERYTHINMATHSPACE:"veryverythinmathspace",VERYTHINMATHSPACE:"verythinmathspace",THINMATHSPACE:"thinmathspace",MEDIUMMATHSPACE:"mediummathspace",THICKMATHSPACE:"thickmathspace",VERYTHICKMATHSPACE:"verythickmathspace",VERYVERYTHICKMATHSPACE:"veryverythickmathspace",NEGATIVEVERYVERYTHINMATHSPACE:"negativeveryverythinmathspace",NEGATIVEVERYTHINMATHSPACE:"negativeverythinmathspace",NEGATIVETHINMATHSPACE:"negativethinmathspace",NEGATIVEMEDIUMMATHSPACE:"negativemediummathspace",NEGATIVETHICKMATHSPACE:"negativethickmathspace",NEGATIVEVERYTHICKMATHSPACE:"negativeverythickmathspace",NEGATIVEVERYVERYTHICKMATHSPACE:"negativeveryverythickmathspace"},OVERFLOW:{LINBREAK:"linebreak",SCROLL:"scroll",ELIDE:"elide",TRUNCATE:"truncate",SCALE:"scale"},UNIT:{EM:"em",EX:"ex",PX:"px",IN:"in",CM:"cm",MM:"mm",PT:"pt",PC:"pc"},TEXCLASS:{ORD:0,OP:1,BIN:2,REL:3,OPEN:4,CLOSE:5,PUNCT:6,INNER:7,VCENTER:8,NONE:-1},PLANE1:String.fromCharCode(55349)});(function(a){var d=false;var b=true;a.mbase=MathJax.Object.Subclass({type:"base",isToken:d,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT},noInherit:{},Init:function(){this.data=[];if(this.inferRow&&!(arguments.length===1&&arguments[0].inferred)){this.Append(a.mrow().With({inferred:b}))}this.Append.apply(this,arguments)},With:function(f){for(var g in f){if(f.hasOwnProperty(g)){this[g]=f[g]}}return this},Append:function(){if(this.inferRow&&this.data.length){this.data[0].Append.apply(this.data[0],arguments)}else{for(var g=0,f=arguments.length;g0&&this.Get("scriptlevel")>0&&h>=0){return""}return this.TEXSPACELENGTH[Math.abs(h)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(f){return""},isSpacelike:function(){return d},isEmbellished:function(){return d},Core:function(){return this},CoreMO:function(){return this},lineBreak:function(){if(this.isEmbellished()){return this.CoreMO().lineBreak()}else{return"none"}},array:function(){if(this.inferred){return this.data}else{return[this]}},toString:function(){return this.type+"("+this.data.join(",")+")"}},{childrenSpacelike:function(){for(var f=0;f=0;f--){if(this.data[0]&&!this.data[f].isSpacelike()){return this.data[f]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(h){for(var g=0,f=this.data.length;g0){f++}return f},adjustChild_texprimestyle:function(f){if(f==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:b,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(f){return b}});a.mroot=a.mbase.Subclass({type:"mroot",texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(f){if(f===1){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g===1){f+=2}return f},adjustChild_texprimestyle:function(f){if(f===0){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:b,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(h){var g=this.scriptlevel;if(g==null){g=this.Get("scriptlevel")}else{if(String(g).match(/^ *[-+]/)){delete this.scriptlevel;var f=this.Get("scriptlevel");this.scriptlevel=g;g=f+parseInt(g)}}return g},inheritFromMe:b,noInherit:{mpadded:{width:b,height:b,depth:b,lspace:b,voffset:b},mtable:{width:b,height:b,depth:b,align:b}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:b,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(j){this.getPrevClass(j);var g=this.getValues("open","close","separators");g.open=g.open.replace(/[ \t\n\r]/g,"");g.close=g.close.replace(/[ \t\n\r]/g,"");g.separators=g.separators.replace(/[ \t\n\r]/g,"");if(g.open!==""){this.SetData("open",a.mo(g.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));j=this.data.open.setTeXclass(j)}if(g.separators!==""){while(g.separators.length0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g>0){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.sub){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(f){if(f%2===1){return b}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(f){if(f==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(f):a.TEXCLASS.ORD)}if(f==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(f==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return d},adjustChild_displaystyle:function(f){if(f>0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g==this.under&&!this.Get("accentunder")){f++}if(g==this.over&&!this.Get("accent")){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.base&&this.data[this.over]){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:b,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:d,equalcolumns:d,displaystyle:d,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:b,noInherit:{mtable:{align:b,rowalign:b,columnalign:b,groupalign:b,alignmentscope:b,columnwidth:b,width:b,rowspacing:b,columnspacing:b,rowlines:b,columnlines:b,frame:b,framespacing:b,equalrows:b,equalcolumns:b,side:b,minlabelspacing:b,texClass:b,useHeight:1}},Append:function(){for(var g=0,f=arguments.length;g":e.REL,"?":[1,1,c.CLOSE],"\\":e.ORD,_:e.ORD11,"|":[2,2,c.ORD,{fence:true,stretchy:true,symmetric:true}],"#":e.ORD,"$":e.ORD,"\u002E":[0,3,c.PUNCT,{separator:true}],"\u02B9":e.ORD,"\u02C9":e.ACCENT,"\u02CA":e.ACCENT,"\u02CB":e.ACCENT,"\u0300":e.ACCENT,"\u0301":e.ACCENT,"\u0303":e.WIDEACCENT,"\u0304":e.ACCENT,"\u0306":e.ACCENT,"\u0307":e.ACCENT,"\u0308":e.ACCENT,"\u030C":e.ACCENT,"\u0332":e.WIDEACCENT,"\u0338":e.REL4,"\u2015":[0,0,c.ORD,{stretchy:true}],"\u2017":[0,0,c.ORD,{stretchy:true}],"\u2020":e.BIN3,"\u2021":e.BIN3,"\u20D7":e.ACCENT,"\u2118":e.ORD,"\u2205":e.ORD,"\u221E":e.ORD,"\u2305":e.BIN3,"\u2306":e.BIN3,"\u2322":e.REL4,"\u2323":e.REL4,"\u2329":e.OPEN,"\u232A":e.CLOSE,"\u23AA":e.ORD,"\u23AF":[0,0,c.ORD,{stretchy:true}],"\u23B0":e.OPEN,"\u23B1":e.CLOSE,"\u25EF":e.BIN3,"\u2660":e.ORD,"\u2661":e.ORD,"\u2662":e.ORD,"\u2663":e.ORD,"\u27EE":e.OPEN,"\u27EF":e.CLOSE,"\u27FC":e.REL4,"\u3008":e.OPEN,"\u3009":e.CLOSE,"\uFE37":e.WIDEACCENT,"\uFE38":e.WIDEACCENT}}},{OPTYPES:e})})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); + +MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="1.1.1";var a=MathJax.ElementJax.mml;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.MathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},MathMLattributes:function(){var j=[],g=this.defaults;var c=this.copyAttributes,l=this.skipAttributes;if(this.type==="math"){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.quoteHTML(k)+'"')}this[d]=k}}}for(var h=0,f=c.length;h126){e[f]="&#x"+h.toString(16).toUpperCase()+";"}else{var g={"&":"&","<":"<",">":">",'"':"""}[e[f]];if(g){e[f]=g}}}return e.join("")}});a.msubsup.Augment({toMathML:function(h){var e=this.type;if(this.data[this.sup]==null){e="msub"}if(this.data[this.sub]==null){e="msup"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(c){return c+"\n"+this.data[0].toMathML(c+" ")+"\n"+c+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.quoteHTML(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); + +(function(){var c="1.1";var a=MathJax.Hub.CombineConfig("TeX.noErrors",{multiLine:true,inlineDelimiters:["",""],style:{"font-family":"serif","font-size":"80%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var b="\u00A0";MathJax.Extension["TeX/noErrors"]={version:c,config:a};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){MathJax.InputJax.TeX.Augment({formatError:function(f,e,g,d){var i=a.inlineDelimiters;var h=(g||a.multiLine);if(!g){e=i[0]+e+i[1]}if(h){e=e.replace(/ /g,b)}else{e=e.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(e).With({isError:true,multiLine:h})}})});MathJax.Hub.Register.StartupHook("HTML-CSS Jax Config",function(){MathJax.Hub.Config({"HTML-CSS":{styles:{".MathJax .merror":MathJax.Hub.Insert({"font-style":null,"background-color":null,"vertical-align":(MathJax.Hub.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})})})();MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var a=MathJax.ElementJax.mml;var b=MathJax.OutputJax["HTML-CSS"];var c=a.math.prototype.toHTML;a.math.Augment({toHTML:function(d,e){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toHTML(d)}return c.call(this,d,e)}});a.merror.Augment({toHTML:function(j){if(!this.isError){return a.mbase.prototype.toHTML.call(this,j)}j=this.HTMLcreateSpan(j);if(this.multiLine){j.style.display="inline-block"}var l=this.data[0].data[0].data.join("").split(/\n/);for(var g=0,e=l.length;g1){var k=(n.h+n.d)/2,h=b.TeX.x_height/2;var f=b.config.styles[".MathJax .merror"]["font-size"];if(f&&f.match(/%/)){h*=parseInt(f)/100}j.parentNode.style.verticalAlign=b.Em(n.d+(h-k));n.h=h+k;n.d=k-h}j.bbox={h:n.h,d:n.d,w:d,lw:0,rw:d};return j}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Hub.Register.StartupHook("NativeMML Jax Ready",function(){var b=MathJax.ElementJax.mml;var a=MathJax.Extension["TeX/noErrors"].config;var c=b.math.prototype.toNativeMML;b.math.Augment({toNativeMML:function(d){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toNativeMML(d)}return c.call(this,d)}});b.merror.Augment({toNativeMML:function(g){if(!this.isError){return b.mbase.prototype.toNativeMML.call(this,g)}g=g.appendChild(document.createElement("span"));var h=this.data[0].data[0].data.join("").split(/\n/);for(var f=0,e=h.length;f1){g.style.verticalAlign="middle"}}for(var j in a.style){if(a.style.hasOwnProperty(j)){var d=j.replace(/-./g,function(i){return i.charAt(1).toUpperCase()});g.style[d]=a.style[j]}}return g}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); + +MathJax.Extension["TeX/noUndefined"]={version:"1.1",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(c){this.Push(a.mtext(c).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); + +(function(d){var c=true,f=false,i,h=String.fromCharCode(160);var e=MathJax.Object.Subclass({Init:function(k){this.global={};this.data=[b.start().With({global:this.global})];if(k){this.data[0].env=k}this.env=this.data[0].env},Push:function(){var l,k,n,o;for(l=0,k=arguments.length;l":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:i.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:i.TEXCLASS.ORD}],"\\|":["2225",{texClass:i.TEXCLASS.ORD}],"\\vert":["|",{texClass:i.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",c,0],textstyle:["SetStyle","T",f,0],scriptstyle:["SetStyle","S",f,1],scriptscriptstyle:["SetStyle","SS",f,2],rm:["SetFont",i.VARIANT.NORMAL],mit:["SetFont",i.VARIANT.ITALIC],oldstyle:["SetFont",i.VARIANT.OLDSTYLE],cal:["SetFont",i.VARIANT.CALIGRAPHIC],it:["SetFont",i.VARIANT.ITALIC],bf:["SetFont",i.VARIANT.BOLD],bbFont:["SetFont",i.VARIANT.DOUBLESTRUCK],scr:["SetFont",i.VARIANT.SCRIPT],frak:["SetFont",i.VARIANT.FRAKTUR],sf:["SetFont",i.VARIANT.SANSSERIF],tt:["SetFont",i.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedOp",0],arccos:["NamedOp",0],arctan:["NamedOp",0],arg:["NamedOp",0],cos:["NamedOp",0],cosh:["NamedOp",0],cot:["NamedOp",0],coth:["NamedOp",0],csc:["NamedOp",0],deg:["NamedOp",0],det:"NamedOp",dim:["NamedOp",0],exp:["NamedOp",0],gcd:"NamedOp",hom:["NamedOp",0],inf:"NamedOp",ker:["NamedOp",0],lg:["NamedOp",0],lim:"NamedOp",liminf:["NamedOp",null,"lim inf"],limsup:["NamedOp",null,"lim sup"],ln:["NamedOp",0],log:["NamedOp",0],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedOp",0],sin:["NamedOp",0],sinh:["NamedOp",0],sup:"NamedOp",tan:["NamedOp",0],tanh:["NamedOp",0],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","203E"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",i.LENGTH.THINMATHSPACE],":":["Spacer",i.LENGTH.THINMATHSPACE],">":["Spacer",i.LENGTH.MEDIUMMATHSPACE],";":["Spacer",i.LENGTH.THICKMATHSPACE],"!":["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",i.LENGTH.THINMATHSPACE],negthinspace:["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",i.TEXCLASS.ORD,0.85],Big:["MakeBig",i.TEXCLASS.ORD,1.15],bigg:["MakeBig",i.TEXCLASS.ORD,1.45],Bigg:["MakeBig",i.TEXCLASS.ORD,1.75],bigl:["MakeBig",i.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",i.TEXCLASS.OPEN,1.15],biggl:["MakeBig",i.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",i.TEXCLASS.OPEN,1.75],bigr:["MakeBig",i.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",i.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",i.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",i.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",i.TEXCLASS.REL,0.85],Bigm:["MakeBig",i.TEXCLASS.REL,1.15],biggm:["MakeBig",i.TEXCLASS.REL,1.45],Biggm:["MakeBig",i.TEXCLASS.REL,1.75],mathord:["TeXAtom",i.TEXCLASS.ORD],mathop:["TeXAtom",i.TEXCLASS.OP],mathopen:["TeXAtom",i.TEXCLASS.OPEN],mathclose:["TeXAtom",i.TEXCLASS.CLOSE],mathbin:["TeXAtom",i.TEXCLASS.BIN],mathrel:["TeXAtom",i.TEXCLASS.REL],mathpunct:["TeXAtom",i.TEXCLASS.PUNCT],mathinner:["TeXAtom",i.TEXCLASS.INNER],vcenter:["TeXAtom",i.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","02CA"],grave:["Accent","02CB"],ddot:["Accent","00A8"],tilde:["Accent","02DC"],bar:["Accent","02C9"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","02C6"],vec:["Accent","20D7"],dot:["Accent","02D9"],widetilde:["Accent","02DC",1],widehat:["Accent","02C6",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em"],eqalign:["Matrix",null,null,"right left",i.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"Cr",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\rm mod}"],pmod:["Macro","\\pod{{\\rm mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}{\\rm mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"],not:["Macro","\\mathrel{\\rlap{\\kern.5em\\notChar}}"]," ":["Macro","\\text{ }"],space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],def:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Macro","",1],nonumber:["Macro",""],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],require:"Require"},environment:{array:["Array"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],eqnarray:["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],"eqnarray*":["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],equation:[null,"Equation"],"equation*":[null,"Equation"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var k=this.config.Macros;for(var l in k){if(k.hasOwnProperty(l)){if(typeof(k[l])==="string"){g.macros[l]=["Macro",k[l]]}else{g.macros[l]=["Macro"].concat(k[l])}}}}};var a=MathJax.Object.Subclass({Init:function(l,m){this.string=l;this.i=0;this.macroCount=0;var k;if(m){k={};for(var n in m){if(m.hasOwnProperty(n)){k[n]=m[n]}}}this.stack=d.Stack(k);this.Parse();this.Push(b.stop())},Parse:function(){var k;while(this.id.config.MAXMACROS){d.Error("MathJax maximum macro substitution count exceeded; is there a recursive macro call?")}},Matrix:function(l,n,s,p,q,m,k){var r=this.GetNext();if(r===""){d.Error("Missing argument for "+l)}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var o=b.array().With({requireClose:c,arraydef:{rowspacing:(m||"4pt"),columnspacing:(q||"1em")}});if(n||s){o.open=n;o.close=s}if(k==="D"){o.arraydef.displaystyle=c}if(p!=null){o.arraydef.columnalign=p}this.Push(o)},Entry:function(k){this.Push(b.cell().With({isEntry:c,name:k}))},Cr:function(k){this.Push(b.cell().With({isCR:c,name:k}))},HLine:function(l,m){if(m==null){m="solid"}var n=this.stack.Top();if(n.type!=="array"||n.data.length){d.Error("Misplaced "+l)}if(n.table.length==0){n.arraydef.frame=m}else{var k=(n.arraydef.rowlines?n.arraydef.rowlines.split(/ /):[]);while(k.lengthd.config.MAXMACROS){d.Error("MathJax maximum substitution count exceeded; is there a recursive latex environment?")}var n=g.environment[m];if(!(n instanceof Array)){n=[n]}var k=b.begin().With({name:m,end:n[1],parse:this});if(n[0]&&this[n[0]]){k=this[n[0]].apply(this,[k].concat(n.slice(2)))}this.Push(k)},End:function(k){this.Push(b.end().With({name:this.GetArgument(k)}))},Equation:function(k,l){return l},ExtensionEnv:function(l,k){this.Extension(l.name,k,"environment")},Array:function(m,o,t,r,s,n,k,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){var l=(u.charAt(0)+u.charAt(u.length-1)).replace(/[^|:]/g,"");if(l!==""){q.arraydef.frame={"|":"solid",":":"dashed"}[l.charAt(0)];q.arraydef.framespacing=".5em .5ex"}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(k==="D"){q.arraydef.displaystyle=c}if(k==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=f}this.Push(m);return q},convertDelimiter:function(k){if(k){k=g.delimiter[k]}if(k==null){return null}if(k instanceof Array){k=k[0]}if(k.length===4){k=String.fromCharCode(parseInt(k,16))}return k},trimSpaces:function(k){if(typeof(k)!="string"){return k}return k.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var k=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(k){this.i+=k[1].length;return k[1]}else{this.i++;return" "}},GetArgument:function(l,m){switch(this.GetNext()){case"":if(!m){d.Error("Missing argument for "+l)}return null;case"}":if(!m){d.Error("Extra close brace or missing open brace")}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var k=++this.i,n=1;while(this.il.length){d.Error("Illegal macro parameter reference")}n=this.AddArgs(this.AddArgs(n,o),l[p-1]);o=""}}else{o+=p}}}return this.AddArgs(n,o)},AddArgs:function(l,k){if(k.match(/^[a-z]/i)&&l.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){l+=" "}if(l.length+k.length>d.config.MAXBUFFER){d.Error("MathJax internal buffer size exceeded; is there a recursive macro call?")}return l+k}});d.Augment({Stack:e,Parse:a,Definitions:g,Startup:j,config:{MAXMACROS:10000,MAXBUFFER:5*1024},Translate:function(k){var l,n=k.innerHTML.replace(/^\s+/,"").replace(/\s+$/,"");if(MathJax.Hub.Browser.isKonqueror){n=n.replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&")}var o=(k.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);n=d.prefilterMath(n,o,k);try{l=d.Parse(n).mml()}catch(m){if(!m.texError){throw m}l=this.formatError(m,n,o,k)}if(l.inferred){l=i.apply(MathJax.ElementJax,l.data)}else{l=i(l)}if(o){l.root.display="block"}return this.postfilterMath(l,o,k)},prefilterMath:function(l,m,k){return l.replace(/([_^]\s*\d)([0-9.,])/g,"$1 $2")},postfilterMath:function(l,m,k){this.combineRelations(l.root);return l},formatError:function(m,l,n,k){return i.merror(m.message.replace(/\n.*/,""))},Error:function(k){throw MathJax.Hub.Insert(Error(k),{texError:c})},Macro:function(k,l,m){g.macros[k]=["Macro"].concat([].slice.call(arguments,1))},combineRelations:function(l){for(var n=0,k=l.data.length;n0){align+="rl";spacing.push("0em 0em");j--}spacing=spacing.join(" ");if(g){return this.AMSarray(i,h,g,align,spacing)}return this.Array(i,null,null,align,spacing,".5em","D")},MultiIntegral:function(g,k){var j=this.GetNext();if(j==="\\"){var h=this.i;j=this.GetArgument(g);this.i=h;if(j==="\\limits"){if(g==="\\idotsint"){k="\\!\\!\\mathop{\\,\\,"+k+"}"}else{k="\\!\\!\\!\\mathop{\\,\\,\\,"+k+"}"}}}this.string=k+" "+this.string.slice(this.i);this.i=0},xArrow:function(i,m,k,g){var j={width:"+"+(k+g)+"mu",lspace:k+"mu"};var n=this.GetBrackets(i),o=this.ParseArg(i);var p=a.mo(a.chars(String.fromCharCode(m))).With({stretchy:true,texClass:a.TEXCLASS.REL});var h=a.munderover(p);h.SetData(h.over,a.mpadded(o).With(j).With({voffset:".15em"}));if(n){n=f.Parse(n,this.stack.env).mml();h.SetData(h.under,a.mpadded(n).With(j).With({voffset:"-.24em"}))}this.Push(h)},GetDelimiterArg:function(g){var h=this.trimSpaces(this.GetArgument(g));if(h==""){return null}if(!c.delimiter[h]){f.Error("Missing or unrecognized delimiter for "+g)}return this.convertDelimiter(h)}});d.multline=d.array.Subclass({type:"multline",EndEntry:function(){var g=a.mtd.apply(a,this.data);if(this.data.shove){g.columnalign=this.data.shove}this.row.push(g);this.data=[]},EndRow:function(){if(this.row.length!=1){f.Error("multline rows must have exactly one column")}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var h=this.table.length-1,j;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=a.ALIGN.LEFT}if(!this.table[h][0].columnalign){this.table[h][0].columnalign=a.ALIGN.RIGHT}var g=a.mtr;if(this.global.tag){this.table[0]=[this.global.tag].concat(this.table[0]);delete this.global.tag;g=a.mlabeledtr}this.table[0]=g.apply(a,this.table[0]);for(j=1,h=this.table.length;j]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}f=f.replace(/^\s*(?:\/\/)?\s*$/,"$2");f=f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity);g=b.ParseXML(f);if(g==null){b.Error("Error parsing MathML")}}var e=g.getElementsByTagName("parsererror")[0];if(e){b.Error("Error parsing MathML: "+e.textContent.replace(/This page.*?errors:|XML Parsing Error: |Below is a rendering of the page.*/g,""))}if(g.childNodes.length!==1){b.Error("MathML must be formed by a single element")}if(g.firstChild.nodeName.toLowerCase()==="html"){var d=g.getElementsByTagName("h1")[0];if(d&&d.textContent==="XML parsing error"&&d.nextSibling){b.Error("Error parsing MathML: "+String(d.nextSibling.nodeValue).replace(/fatal parsing error: /,""))}}if(g.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")!=="math"){b.Error("MathML must be formed by a element, not <"+g.firstChild.nodeName+">")}this.mml=this.MakeMML(g.firstChild)},MakeMML:function(h){var l=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");if(!(a[l]&&a[l].isa&&a[l].isa(a.mbase))){return a.merror("Unknown node type: "+l)}var d=a[l](),k,j,e,n;for(k=0,j=h.attributes.length;k").replace(/&/g,"&")}}g=this.prefilterMath(g,d)}try{e=b.Parse(g).mml}catch(f){if(!f.mathmlError){throw f}e=this.formatError(f,g,d)}return a(e)},prefilterMath:function(e,d){return e},prefilterMathML:function(d){return d},formatError:function(f,e,d){return a.merror(f.message.replace(/\n.*/,""))},Error:function(d){throw MathJax.Hub.Insert(Error(d),{mathmlError:true})},parseDOM:function(d){return this.parser.parseFromString(d,"text/xml")},parseMS:function(d){return(this.parser.loadXML(d)?this.parser:null)},parseDIV:function(d){this.div.innerHTML=d.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(d){return null},createParser:function(){if(window.DOMParser){this.parser=new DOMParser();return(this.parseDOM)}else{if(window.ActiveXObject){var e=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var f=0,d=e.length;f=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax.id==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/"/g,""")},createPreview:function(b,a){var c;if(this.config.preview==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterText(d)]}}else{if(this.config.preview instanceof Array){c=this.config.preview}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterText:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); + +(function(a,c,e,b,h){var i="1.1";var g=a.CombineConfig("MathZoom",{delay:400,styles:{"#MathJax_Zoom":{position:"absolute","background-color":"#F0F0F0",overflow:"auto",display:"block","z-index":301,padding:".5em",border:"1px solid black",margin:0,"font-family":"serif","font-size":"85%","font-weight":"normal","font-style":"normal","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","box-shadow":"5px 5px 15px #AAAAAA","-webkit-box-shadow":"5px 5px 15px #AAAAAA","-moz-box-shadow":"5px 5px 15px #AAAAAA","-khtml-box-shadow":"5px 5px 15px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},"#MathJax_ZoomOverlay":{position:"absolute",left:0,top:0,"z-index":300,display:"inline-block",width:"100%",height:"100%",border:0,padding:0,margin:0,"background-color":"white",opacity:0,filter:"alpha(opacity=0)"}}});var d=function(j){if(!j){j=window.event}if(j){if(j.preventDefault){j.preventDefault()}if(j.stopPropagation){j.stopPropagation()}j.cancelBubble=true;j.returnValue=false}return false};var f=MathJax.Extension.MathZoom={version:i,settings:a.config.menuSettings,HandleEvent:function(l,j,k){if(!l){l=window.event}if(f.settings.CTRL&&!l.ctrlKey){return true}if(f.settings.ALT&&!l.altKey){return true}if(f.settings.CMD&&!l.metaKey){return true}if(f.settings.Shift&&!l.shiftKey){return true}return f[j](l,k)},Click:function(k,j){if(this.settings.zoom==="Click"){return this.Zoom(j,k)}},DblClick:function(k,j){if(this.settings.zoom==="Double-Click"){return this.Zoom(j,k)}},Mouseover:function(k,j){if(this.settings.zoom==="Hover"){f.oldMouseOver=j.onmouseover;j.onmouseover=null;j.onmousemove=this.Mousemove;j.onmouseout=this.Mouseout;return f.Timer(k,j)}},Mouseout:function(j){this.onmouseover=f.oldMouseOver;delete f.oldMouseOver;this.onmousemove=this.onmouseout=null;f.ClearTimer();return d(j)},Mousemove:function(j){return f.Timer(j||window.event,this)},Timer:function(k,j){this.ClearTimer();this.timer=setTimeout(MathJax.Callback(["Zoom",this,j,{}]),g.delay);return d(k)},ClearTimer:function(){if(this.timer){clearTimeout(this.timer);delete this.timer}},Zoom:function(s,l){this.ClearTimer();this.Remove();var v=s.parentNode;if(v.className==="MathJax_MathContainer"){v=v.parentNode}if(v.parentNode.className==="MathJax_MathContainer"){v=v.parentNode.parentNode}var q=(String(v.className).match(/^MathJax_(MathML|Display)$/)?v:s).nextSibling;var m=a.getJaxFor(q),r=m.root;var o=(b&&m.outputJax.isa(b.constructor)?"HTMLCSS":(h&&m.outputJax.isa(h.constructor)?"MathML":null));if(!o){return}var j=Math.floor(0.85*document.body.clientWidth),p=Math.floor(0.85*document.body.clientHeight);var k=c.Element("span",{style:{position:"relative",display:"inline-block",height:0,width:0},id:"MathJax_ZoomFrame"},[["span",{id:"MathJax_ZoomOverlay",onmousedown:this.Remove}],["span",{id:"MathJax_Zoom",onclick:this.Remove,style:{visibility:"hidden",fontSize:this.settings.zscale,"max-width":j+"px","max-height":p+"px"}},[["span"]]]]);var x=k.lastChild,u=x.firstChild,n=k.firstChild;s.parentNode.insertBefore(k,s);if(this.msieZIndexBug){var t=c.Element("img",{src:"about:blank",id:"MathJax_ZoomTracker",style:{width:0,height:0,position:"relative"}});document.body.appendChild(k);k.style.position="absolute";k.style.zIndex=g.styles["#MathJax_ZoomOverlay"]["z-index"];k=t}var w=(this["Zoom"+o])(r,u,s);if(this.msiePositionBug){if(this.msieIE8Bug){u.style.position="absolute";x.style.height=u.offsetHeight;u.style.position="";if(x.offsetHeight<=p&&x.offsetWidth<=j){x.style.overflow="visible"}}if(this.msieWidthBug){x.style.width=Math.min(j,w.w)}else{if(w.w>j){x.style.width=j}}if(x.offsetHeight>p){x.style.Height=p+"px"}if(s.nextSibling){s.parentNode.insertBefore(k,s.nextSibling)}else{v.appendChild(k)}}else{if(this.operaPositionBug){x.style.width=Math.min(j,u.offsetWidth)+"px"}}this.Position(x,w,(o==="MathML"&&v.nodeName.toLowerCase()==="div"));x.style.visibility="";if(this.settings.zoom==="Hover"){n.onmouseover=this.Remove}if(window.addEventListener){addEventListener("resize",this.Resize,false)}else{if(window.attachEvent){attachEvent("onresize",this.Resize)}else{this.onresize=window.onresize;window.onresize=this.Resize}}return d(l)},ZoomHTMLCSS:function(o,q,p){q.className="MathJax";b.idPostfix="-zoom";b.getScales(q,q);o.toHTML(q,q);var r=o.HTMLspanElement().bbox;b.idPostfix="";if(r.width&&r.width!=="100%"){var j=Math.floor(0.85*document.body.clientWidth);q.style.width=j+"px";q.style.display="inline-block";var k=(o.id||"MathJax-Span-"+o.spanID)+"-zoom";var l=document.getElementById(k).firstChild;while(l&&l.style.width!==r.width){l=l.nextSibling}if(l){l.style.width="100%"}}q.appendChild(this.topImg);var n=this.topImg.offsetTop;q.removeChild(this.topImg);var m=(this.msieWidthBug?b.getW(p)*b.em:p.offsetWidth);return{w:r.w*b.em,Y:-n,W:m}},ZoomMathML:function(k,l,m){k.toNativeMML(l,l);var n;l.appendChild(this.topImg);n=this.topImg.offsetTop;l.removeChild(this.topImg);var j=(this.ffMMLwidthBug?m.parentNode:m).offsetWidth;return{w:l.offsetWidth,Y:-n,W:j}},Position:function(p,n,r){var k=this.Resize(),m=k.x,l=k.y,j=n.W;if(this.msiePositionBug){j=-j}if(r&&this.ffMMLcenterBug){j=0}var q=-Math.floor((p.offsetWidth-j)/2),o=n.Y;p.style.left=Math.max(q,20-m)+"px";p.style.top=Math.max(o,20-l)+"px"},Resize:function(l){if(f.onresize){f.onresize(l)}var j=0,o=0,n=document.getElementById("MathJax_ZoomFrame"),k=document.getElementById("MathJax_ZoomOverlay");var m=(f.msieZIndexBug?document.getElementById("MathJax_ZoomTracker"):n);if(f.operaPositionBug){n.style.border="1px solid"}if(m.offsetParent){do{j+=m.offsetLeft;o+=m.offsetTop}while(m=m.offsetParent)}if(f.operaPositionBug){n.style.border=""}if(f.msieZIndexBug){n.style.left=j+"px";n.style.top=o+"px"}k.style.left=(-j)+"px";k.style.top=(-o)+"px";if(f.msiePositionBug){setTimeout(f.SetWH,0)}else{f.SetWH()}return{x:j,y:o}},SetWH:function(){var j=document.getElementById("MathJax_ZoomOverlay");j.style.width=j.style.height="1px";j.style.width=document.body.scrollWidth+"px";j.style.height=document.body.scrollHeight+"px"},Remove:function(k){var l=document.getElementById("MathJax_ZoomFrame");if(l){l.parentNode.removeChild(l);l=document.getElementById("MathJax_ZoomTracker");if(l){l.parentNode.removeChild(l)}if(f.operaRefreshBug){var j=c.addElement(document.body,"div",{style:{position:"fixed",left:0,top:0,width:"100%",height:"100%",backgroundColor:"white",opacity:0},id:"MathJax_OperaDiv"});document.body.removeChild(j)}if(window.removeEventListener){removeEventListener("resize",f.Resize,false)}else{if(window.detachEvent){detachEvent("onresize",f.Resize)}else{window.onresize=f.onresize;delete f.onresize}}}return d(k)}};a.Register.StartupHook("HTML-CSS Jax Ready",function(){b=MathJax.OutputJax["HTML-CSS"];b.Augment({HandleEvent:f.HandleEvent})});a.Register.StartupHook("NativeMML Jax Ready",function(){h=MathJax.OutputJax.NativeMML;h.Augment({HandleEvent:f.HandleEvent,MSIEmouseup:function(l,k,j){if(this.trapUp){delete this.trapUp;return true}if(this.MSIEzoomKeys(l)){return true}return false},MSIEclick:function(l,k,j){if(this.trapClick){delete this.trapClick;return true}if(!this.MSIEzoomKeys(l)){return false}if(!this.settings.zoom.match(/Click/)){return false}return(f.Click(l,k)===false)},MSIEdblclick:function(l,k,j){if(!this.MSIEzoomKeys(l)){return false}return(f.DblClick(l,k)===false)},MSIEmouseover:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEmouseout:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.ClearTimer();return true},MSIEmousemove:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEzoomKeys:function(j){if(this.settings.CTRL&&!j.ctrlKey){return false}if(this.settings.CMD&&!j.metaKey){return false}if(this.settings.ALT&&!j.altKey){return false}if(this.settings.Shift&&!j.shiftKey){return false}return true}})});a.Browser.Select({MSIE:function(j){var k=(document.compatMode==="BackCompat");var l=j.versionAtLeast("8.0")&&document.documentMode>7;f.msiePositionBug=true;f.msieWidthBug=!k;f.msieIE8Bug=l;f.msieZIndexBug=!l;f.msieInlineBlockAlignBug=(!l||k);if(document.documentMode>=9){delete g.styles["#MathJax_Zoom"].filter}},Opera:function(j){f.operaPositionBug=true;f.operaRefreshBug=true},Firefox:function(j){f.ffMMLwidthBug=true;f.ffMMLcenterBug=true}});f.topImg=(f.msieInlineBlockAlignBug?c.Element("img",{style:{width:0,height:0},src:"about:blank"}):c.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(f.operaPositionBug){f.topImg.style.border="1px solid"}MathJax.Callback.Queue(["Styles",e,g.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",e,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); + +(function(b,c,f){var k="1.1.4";MathJax.Extension.MathMenu={version:k};var i=b.Browser.isPC,g=b.Browser.isMSIE;var e=(i?null:"5px");var j=b.CombineConfig("MathMenu",{delay:150,helpURL:"http://www.mathjax.org/help/user/",showRenderer:true,showFontMenu:false,showContext:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:100,height:50},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(i?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":e,"-webkit-border-radius":e,"-moz-border-radius":e,"-khtml-border-radius":e,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(i?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuTitle":{"background-color":"#CCCCCC",margin:(i?"-1px -1px 1px -1px":"-5px 0 0 0"),"text-align":"center","font-style":"italic","font-size":"80%",color:"#444444",padding:"2px 0",overflow:"hidden"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(i?"1em":".7em")},".MathJax_MenuLabel":{padding:(i?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(i?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(i?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(i?"Highlight":"#606872"),color:(i?"HighlightText":"white")}}});var d=function(l){if(!l){l=window.event}if(l){if(l.preventDefault){l.preventDefault()}if(l.stopPropagation){l.stopPropagation()}l.cancelBubble=true;l.returnValue=false}return false};var a=MathJax.Menu=MathJax.Object.Subclass({version:k,items:[],posted:false,title:null,margin:5,Init:function(l){this.items=[].slice.call(arguments,0)},With:function(l){if(l){b.Insert(this,l)}return this},Post:function(n,v){if(!n){n=window.event}var t=(!this.title?null:[["div",{className:"MathJax_MenuTitle"},[this.title]]]);var l=document.getElementById("MathJax_MenuFrame");if(!l){l=a.Background(this)}var o=c.addElement(l,"div",{onmouseup:a.Mouseup,ondblclick:this.False,ondragstart:this.False,onselectstart:this.False,oncontextmenu:this.False,menuItem:this,className:"MathJax_Menu"},t);for(var q=0,p=this.items.length;qdocument.body.offsetWidth-this.margin){u=document.body.offsetWidth-o.offsetWidth-this.margin}a.skipUp=true}else{var r="left",w=v.offsetWidth;u=v.offsetWidth-2;s=0;while(v&&v!==l){u+=v.offsetLeft;s+=v.offsetTop;v=v.parentNode}if(u+o.offsetWidth>document.body.offsetWidth-this.margin){r="right";u=Math.max(this.margin,u-w-o.offsetWidth+6)}if(!i){o.style["borderRadiusTop"+r]=0;o.style["WebkitBorderRadiusTop"+r]=0;o.style["MozBorderRadiusTop"+r]=0;o.style["KhtmlBorderRadiusTop"+r]=0}}o.style.left=u+"px";o.style.top=s+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return this.False(n)},Remove:function(l,m){var n=document.getElementById("MathJax_MenuFrame");if(n){n.parentNode.removeChild(n);if(this.msieBackgroundBug){detachEvent("onresize",a.Resize)}}},Mouseup:function(l,m){if(a.skipUp){delete a.skipUp}else{this.Remove(l,m)}},False:d},{config:j,div:null,Remove:function(l){a.Event(l,this,"Remove")},Mouseover:function(l){a.Event(l,this,"Mouseover")},Mouseout:function(l){a.Event(l,this,"Mouseout")},Mousedown:function(l){a.Event(l,this,"Mousedown")},Mouseup:function(l){a.Event(l,this,"Mouseup")},Mousemove:function(l){a.Event(l,this,"Mousemove")},Event:function(n,o,l){if(!n){n=window.event}var m=o.menuItem;if(m&&m[l]){return m[l](n,o)}return null},BGSTYLE:{position:"absolute",left:0,top:0,"z-index":200,width:"100%",height:"100%",border:0,padding:0,margin:0},Background:function(m){var n=c.addElement(document.body,"div",{style:this.BGSTYLE,id:"MathJax_MenuFrame"},[["div",{style:this.BGSTYLE,menuItem:m,onmousedown:this.Remove}]]);var l=n.firstChild;if(m.msieBackgroundBug){l.style.backgroundColor="white";l.style.filter="alpha(opacity=0)";n.width=n.height=0;this.Resize();attachEvent("onresize",this.Resize)}else{l.style.position="fixed"}return n},Resize:function(){setTimeout(a.SetWH,0)},SetWH:function(){var l=document.getElementById("MathJax_MenuFrame");if(l){l=l.firstChild;l.style.width=l.style.height="1px";l.style.width=document.body.scrollWidth+"px";l.style.height=document.body.scrollHeight+"px"}},saveCookie:function(){c.Cookie.Set("menu",this.cookie)},getCookie:function(){this.cookie=c.Cookie.Get("menu")}});var h=a.ITEM=MathJax.Object.Subclass({name:"",Create:function(m){if(!this.hidden){var l={onmouseover:a.Mouseover,onmouseout:a.Mouseout,onmouseup:a.Mouseup,onmousedown:this.False,ondragstart:this.False,onselectstart:this.False,onselectend:this.False,className:"MathJax_MenuItem",menuItem:this};if(this.disabled){l.className+=" MathJax_MenuDisabled"}c.addElement(m,"div",l,this.Label(l,m))}},Mouseover:function(q,s){if(!this.disabled){this.Activate(s)}if(!this.menu||!this.menu.posted){var r=document.getElementById("MathJax_MenuFrame").childNodes,n=s.parentNode.childNodes;for(var o=0,l=n.length;o=0&&s.parentNode.menuItem!==r[l].menuItem){r[l].menuItem.posted=false;r[l].parentNode.removeChild(r[l]);l--}if(this.Timer){this.Timer(q,s)}}},Mouseout:function(l,m){if(!this.menu||!this.menu.posted){this.Deactivate(m)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(l,m){return this.Remove(l,m)},Remove:function(l,m){m=m.parentNode.menuItem;return m.Remove(l,m)},Activate:function(l){this.Deactivate(l);l.className+=" MathJax_MenuActive"},Deactivate:function(l){l.className=l.className.replace(/ MathJax_MenuActive/,"")},With:function(l){if(l){b.Insert(this,l)}return this},False:d});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(l,n,m){this.name=l;this.action=n;this.With(m)},Label:function(l,m){return[this.name]},Mouseup:function(l,m){if(!this.disabled){this.Remove(l,m);this.action.call(this,l)}return this.False(l)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(i&&!b.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(l,n){this.name=l;var m=1;if(!(n instanceof a.ITEM)){this.With(n),m++}this.menu=a.apply(a,[].slice.call(arguments,m))},Label:function(l,m){l.onmousemove=a.Mousemove;this.menu.posted=false;return[this.name+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(l,m){if(this.timer){clearTimeout(this.timer)}l={clientX:l.clientX,clientY:l.clientY};this.timer=setTimeout(MathJax.Callback(["Mouseup",this,l,m]),j.delay)},Mouseup:function(n,p){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(n,p)}else{var o=document.getElementById("MathJax_MenuFrame").childNodes,l=o.length-1;while(l>=0){var q=o[l];q.menuItem.posted=false;q.parentNode.removeChild(q);if(q.menuItem===this.menu){break}l--}}}return this.False(n)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(i?"\u25CF":"\u2713"),Init:function(m,l,n){this.name=m;this.variable=l;this.With(n);if(this.value==null){this.value=this.name}},Label:function(m,n){var l={className:"MathJax_MenuRadioCheck"};if(j.settings[this.variable]!==this.value){l={style:{display:"none"}}}return[["span",l,[this.marker]]," "+this.name]},Mouseup:function(p,q){if(!this.disabled){var r=q.parentNode.childNodes;for(var n=0,l=r.length;n/g,">");n.document.open();n.document.write("MathJax Equation Source");n.document.write("
"+r+"
");n.document.write("");n.document.close();var p=n.document.body.firstChild;var o=(n.outerHeight-n.innerHeight)||30,m=(n.outerWidth-n.innerWidth)||30;m=Math.min(Math.floor(0.5*screen.width),p.offsetWidth+m+25);o=Math.min(Math.floor(0.5*screen.height),p.offsetHeight+o+25);n.resizeTo(m,o);if(q&&q.screenX!=null){var l=Math.max(0,Math.min(q.screenX-Math.floor(m/2),screen.width-m-20)),s=Math.max(0,Math.min(q.screenY-Math.floor(o/2),screen.height-o-20));n.moveTo(l,s)}delete a.ShowSource.w};a.Scale=function(){var m=MathJax.OutputJax["HTML-CSS"],l=MathJax.OutputJax.NativeMML;var o=(m?m.config.scale:l.config.scale);var n=prompt("Scale all mathematics (compared to surrounding text) by",o+"%");if(n){if(n.match(/^\s*\d+\s*%?\s*$/)){n=parseInt(n);if(n){if(n!==o){if(m){m.config.scale=n}if(l){l.config.scale=n}a.cookie.scale=n;a.saveCookie();b.Reprocess()}}else{alert("The scale should not be zero")}}else{alert("The scale should be a perentage (e.g., 120%)")}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){f.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var l=b.config.outputJax["jax/mml"];if(l[0]!==j.settings.renderer){MathJax.Callback.Queue(["Require",f,"[MathJax]/jax/output/"+j.settings.renderer+"/config.js"],["Post",b.Startup.signal,j.settings.renderer+" output selected"],[function(){var p=MathJax.OutputJax[j.settings.renderer];for(var o=0,n=l.length;o7;a.Augment({margin:20,msieBackgroundBug:(m||!n),msieAboutBug:m});if(document.documentMode>=9){delete j.styles["#MathJax_About"].filter;delete j.styles[".MathJax_Menu"].filter}}});b.Register.StartupHook("End Config",function(){j.settings=b.config.menuSettings;if(!j.settings.format){j.settings.format=(MathJax.InputJax.TeX?"Original":"MathML")}if(typeof(j.settings.showRenderer)!=="undefined"){j.showRenderer=j.settings.showRenderer}if(typeof(j.settings.showFontMenu)!=="undefined"){j.showFontMenu=j.settings.showFontMenu}if(typeof(j.settings.showContext)!=="undefined"){j.showContext=j.settings.showContext}a.getCookie();a.menu=a(h.COMMAND("Show Source",a.ShowSource),h.SUBMENU("Format",h.RADIO("MathML","format"),h.RADIO("Original","format",{value:"Original"})),h.RULE(),h.SUBMENU("Settings",h.SUBMENU("Zoom Trigger",h.RADIO("Hover","zoom",{action:a.Zoom}),h.RADIO("Click","zoom",{action:a.Zoom}),h.RADIO("Double-Click","zoom",{action:a.Zoom}),h.RADIO("No Zoom","zoom",{value:"None"}),h.RULE(),h.LABEL("Trigger Requires:"),h.CHECKBOX((b.Browser.isMac?"Option":"Alt"),"ALT"),h.CHECKBOX("Command","CMD",{hidden:!b.Browser.isMac}),h.CHECKBOX("Control","CTRL",{hidden:b.Browser.isMac}),h.CHECKBOX("Shift","Shift")),h.SUBMENU("Zoom Factor",h.RADIO("125%","zscale"),h.RADIO("133%","zscale"),h.RADIO("150%","zscale"),h.RADIO("175%","zscale"),h.RADIO("200%","zscale"),h.RADIO("250%","zscale"),h.RADIO("300%","zscale"),h.RADIO("400%","zscale")),h.RULE(),h.SUBMENU("Math Renderer",{hidden:!j.showRenderer},h.RADIO("HTML-CSS","renderer",{action:a.Renderer}),h.RADIO("MathML","renderer",{action:a.Renderer,value:"NativeMML"})),h.SUBMENU("Font Preference",{hidden:!j.showFontMenu},h.LABEL("For HTML-CSS:"),h.RADIO("Auto","font",{action:a.Font}),h.RULE(),h.RADIO("TeX (local)","font",{action:a.Font}),h.RADIO("TeX (web)","font",{action:a.Font}),h.RADIO("TeX (image)","font",{action:a.Font}),h.RULE(),h.RADIO("STIX (local)","font",{action:a.Font})),h.SUBMENU("Contextual Menu",{hidden:!j.showContext},h.RADIO("MathJax","context"),h.RADIO("Browser","context")),h.COMMAND("Scale All Math ...",a.Scale)),h.RULE(),h.COMMAND("About MathJax",a.About),h.COMMAND("MathJax Help",a.Help))});a.showRenderer=function(l){a.cookie.showRenderer=j.showRenderer=l;a.saveCookie();a.menu.items[3].menu.item[3].hidden=!l};a.showFontMenu=function(l){a.cookie.showFontMenu=j.showFontMenu=l;a.saveCookie();a.menu.items[3].menu.items[4].hidden=!l};a.showContext=function(l){a.cookie.showContext=j.showContext=l;a.saveCookie();a.menu.items[3].menu.items[5].hidden=!l};MathJax.Callback.Queue(["Styles",f,j.styles],["Post",b.Startup.signal,"MathMenu Ready"],["loadComplete",f,"[MathJax]/extensions/MathMenu.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax); + +MathJax.ElementJax.mml=MathJax.ElementJax({mimeType:"jax/mml"},{id:"mml",version:"1.1.1",directory:MathJax.ElementJax.directory+"/mml",extensionDir:MathJax.ElementJax.extensionDir+"/mml",optableDir:MathJax.ElementJax.directory+"/mml/optable"});MathJax.ElementJax.mml.Augment({Init:function(){if(arguments.length===1&&arguments[0].type==="math"){this.root=arguments[0]}else{this.root=MathJax.ElementJax.mml.math.apply(this,arguments)}if(this.root.mode){if(!this.root.display&&this.root.mode==="display"){this.root.display="block"}delete this.root.mode}}},{INHERIT:"_inherit_",AUTO:"_auto_",SIZE:{INFINITY:"infinity",SMALL:"small",NORMAL:"normal",BIG:"big"},COLOR:{TRANSPARENT:"transparent"},VARIANT:{NORMAL:"normal",BOLD:"bold",ITALIC:"italic",BOLDITALIC:"bold-italic",DOUBLESTRUCK:"double-struck",FRAKTUR:"fraktur",BOLDFRAKTUR:"bold-fraktur",SCRIPT:"script",BOLDSCRIPT:"bold-script",SANSSERIF:"sans-serif",BOLDSANSSERIF:"bold-sans-serif",SANSSERIFITALIC:"sans-serif-italic",SANSSERIFBOLDITALIC:"sans-serif-bold-italic",MONOSPACE:"monospace",INITIAL:"inital",TAILED:"tailed",LOOPED:"looped",STRETCHED:"stretched",CALIGRAPHIC:"-tex-caligraphic",OLDSTYLE:"-tex-oldstyle"},FORM:{PREFIX:"prefix",INFIX:"infix",POSTFIX:"postfix"},LINEBREAK:{AUTO:"auto",NEWLINE:"newline",NOBREAK:"nobreak",GOODBREAK:"goodbreak",BADBREAK:"badbreak"},LINEBREAKSTYLE:{BEFORE:"before",AFTER:"after",DUPLICATE:"duplicate",INFIXLINBREAKSTYLE:"infixlinebreakstyle"},INDENTALIGN:{LEFT:"left",CENTER:"center",RIGHT:"right",AUTO:"auto",ID:"id",INDENTALIGN:"indentalign"},INDENTSHIFT:{INDENTSHIFT:"indentshift"},LINETHICKNESS:{THIN:"thin",MEDIUM:"medium",THICK:"thick"},NOTATION:{LONGDIV:"longdiv",ACTUARIAL:"actuarial",RADICAL:"radical",BOX:"box",ROUNDEDBOX:"roundedbox",CIRCLE:"circle",LEFT:"left",RIGHT:"right",TOP:"top",BOTTOM:"bottom",UPDIAGONALSTRIKE:"updiagonalstrike",DOWNDIAGONALSTRIKE:"downdiagonalstrike",VERTICALSTRIKE:"verticalstrike",HORIZONTALSTRIKE:"horizontalstrike",MADRUWB:"madruwb"},ALIGN:{TOP:"top",BOTTOM:"bottom",CENTER:"center",BASELINE:"baseline",AXIS:"axis",LEFT:"left",RIGHT:"right"},LINES:{NONE:"none",SOLID:"solid",DASHED:"dashed"},SIDE:{LEFT:"left",RIGHT:"right",LEFTOVERLAP:"leftoverlap",RIGHTOVERLAP:"rightoverlap"},WIDTH:{AUTO:"auto",FIT:"fit"},ACTIONTYPE:{TOGGLE:"toggle",STATUSLINE:"statusline",TOOLTIP:"tooltip",INPUT:"input"},LENGTH:{VERYVERYTHINMATHSPACE:"veryverythinmathspace",VERYTHINMATHSPACE:"verythinmathspace",THINMATHSPACE:"thinmathspace",MEDIUMMATHSPACE:"mediummathspace",THICKMATHSPACE:"thickmathspace",VERYTHICKMATHSPACE:"verythickmathspace",VERYVERYTHICKMATHSPACE:"veryverythickmathspace",NEGATIVEVERYVERYTHINMATHSPACE:"negativeveryverythinmathspace",NEGATIVEVERYTHINMATHSPACE:"negativeverythinmathspace",NEGATIVETHINMATHSPACE:"negativethinmathspace",NEGATIVEMEDIUMMATHSPACE:"negativemediummathspace",NEGATIVETHICKMATHSPACE:"negativethickmathspace",NEGATIVEVERYTHICKMATHSPACE:"negativeverythickmathspace",NEGATIVEVERYVERYTHICKMATHSPACE:"negativeveryverythickmathspace"},OVERFLOW:{LINBREAK:"linebreak",SCROLL:"scroll",ELIDE:"elide",TRUNCATE:"truncate",SCALE:"scale"},UNIT:{EM:"em",EX:"ex",PX:"px",IN:"in",CM:"cm",MM:"mm",PT:"pt",PC:"pc"},TEXCLASS:{ORD:0,OP:1,BIN:2,REL:3,OPEN:4,CLOSE:5,PUNCT:6,INNER:7,VCENTER:8,NONE:-1},PLANE1:String.fromCharCode(55349)});(function(a){var d=false;var b=true;a.mbase=MathJax.Object.Subclass({type:"base",isToken:d,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT},noInherit:{},Init:function(){this.data=[];if(this.inferRow&&!(arguments.length===1&&arguments[0].inferred)){this.Append(a.mrow().With({inferred:b}))}this.Append.apply(this,arguments)},With:function(f){for(var g in f){if(f.hasOwnProperty(g)){this[g]=f[g]}}return this},Append:function(){if(this.inferRow&&this.data.length){this.data[0].Append.apply(this.data[0],arguments)}else{for(var g=0,f=arguments.length;g0&&this.Get("scriptlevel")>0&&h>=0){return""}return this.TEXSPACELENGTH[Math.abs(h)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(f){return""},isSpacelike:function(){return d},isEmbellished:function(){return d},Core:function(){return this},CoreMO:function(){return this},lineBreak:function(){if(this.isEmbellished()){return this.CoreMO().lineBreak()}else{return"none"}},array:function(){if(this.inferred){return this.data}else{return[this]}},toString:function(){return this.type+"("+this.data.join(",")+")"}},{childrenSpacelike:function(){for(var f=0;f=0;f--){if(this.data[0]&&!this.data[f].isSpacelike()){return this.data[f]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(h){for(var g=0,f=this.data.length;g0){f++}return f},adjustChild_texprimestyle:function(f){if(f==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:b,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(f){return b}});a.mroot=a.mbase.Subclass({type:"mroot",texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(f){if(f===1){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g===1){f+=2}return f},adjustChild_texprimestyle:function(f){if(f===0){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:b,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(h){var g=this.scriptlevel;if(g==null){g=this.Get("scriptlevel")}else{if(String(g).match(/^ *[-+]/)){delete this.scriptlevel;var f=this.Get("scriptlevel");this.scriptlevel=g;g=f+parseInt(g)}}return g},inheritFromMe:b,noInherit:{mpadded:{width:b,height:b,depth:b,lspace:b,voffset:b},mtable:{width:b,height:b,depth:b,align:b}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:b,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(j){this.getPrevClass(j);var g=this.getValues("open","close","separators");g.open=g.open.replace(/[ \t\n\r]/g,"");g.close=g.close.replace(/[ \t\n\r]/g,"");g.separators=g.separators.replace(/[ \t\n\r]/g,"");if(g.open!==""){this.SetData("open",a.mo(g.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));j=this.data.open.setTeXclass(j)}if(g.separators!==""){while(g.separators.length0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g>0){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.sub){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(f){if(f%2===1){return b}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(f){if(f==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(f):a.TEXCLASS.ORD)}if(f==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(f==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return d},adjustChild_displaystyle:function(f){if(f>0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g==this.under&&!this.Get("accentunder")){f++}if(g==this.over&&!this.Get("accent")){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.base&&this.data[this.over]){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:b,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:d,equalcolumns:d,displaystyle:d,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:b,noInherit:{mtable:{align:b,rowalign:b,columnalign:b,groupalign:b,alignmentscope:b,columnwidth:b,width:b,rowspacing:b,columnspacing:b,rowlines:b,columnlines:b,frame:b,framespacing:b,equalrows:b,equalcolumns:b,side:b,minlabelspacing:b,texClass:b,useHeight:1}},Append:function(){for(var g=0,f=arguments.length;g":e.REL,"?":[1,1,c.CLOSE],"\\":e.ORD,_:e.ORD11,"|":[2,2,c.ORD,{fence:true,stretchy:true,symmetric:true}],"#":e.ORD,"$":e.ORD,"\u002E":[0,3,c.PUNCT,{separator:true}],"\u02B9":e.ORD,"\u02C9":e.ACCENT,"\u02CA":e.ACCENT,"\u02CB":e.ACCENT,"\u0300":e.ACCENT,"\u0301":e.ACCENT,"\u0303":e.WIDEACCENT,"\u0304":e.ACCENT,"\u0306":e.ACCENT,"\u0307":e.ACCENT,"\u0308":e.ACCENT,"\u030C":e.ACCENT,"\u0332":e.WIDEACCENT,"\u0338":e.REL4,"\u2015":[0,0,c.ORD,{stretchy:true}],"\u2017":[0,0,c.ORD,{stretchy:true}],"\u2020":e.BIN3,"\u2021":e.BIN3,"\u20D7":e.ACCENT,"\u2118":e.ORD,"\u2205":e.ORD,"\u221E":e.ORD,"\u2305":e.BIN3,"\u2306":e.BIN3,"\u2322":e.REL4,"\u2323":e.REL4,"\u2329":e.OPEN,"\u232A":e.CLOSE,"\u23AA":e.ORD,"\u23AF":[0,0,c.ORD,{stretchy:true}],"\u23B0":e.OPEN,"\u23B1":e.CLOSE,"\u25EF":e.BIN3,"\u2660":e.ORD,"\u2661":e.ORD,"\u2662":e.ORD,"\u2663":e.ORD,"\u27EE":e.OPEN,"\u27EF":e.CLOSE,"\u27FC":e.REL4,"\u3008":e.OPEN,"\u3009":e.CLOSE,"\uFE37":e.WIDEACCENT,"\uFE38":e.WIDEACCENT}}},{OPTYPES:e})})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); + +MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="1.1.1";var a=MathJax.ElementJax.mml;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.MathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},MathMLattributes:function(){var j=[],g=this.defaults;var c=this.copyAttributes,l=this.skipAttributes;if(this.type==="math"){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.quoteHTML(k)+'"')}this[d]=k}}}for(var h=0,f=c.length;h126){e[f]="&#x"+h.toString(16).toUpperCase()+";"}else{var g={"&":"&","<":"<",">":">",'"':"""}[e[f]];if(g){e[f]=g}}}return e.join("")}});a.msubsup.Augment({toMathML:function(h){var e=this.type;if(this.data[this.sup]==null){e="msub"}if(this.data[this.sub]==null){e="msup"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(c){return c+"\n"+this.data[0].toMathML(c+" ")+"\n"+c+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.quoteHTML(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); + +(function(b,c){var a;b.Parse=MathJax.Object.Subclass({Init:function(d){this.Parse(d)},Parse:function(f){var g;if(typeof f!=="string"){g=f.parentNode}else{if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}f=f.replace(/^\s*(?:\/\/)?\s*$/,"$2");f=f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity);g=b.ParseXML(f);if(g==null){b.Error("Error parsing MathML")}}var e=g.getElementsByTagName("parsererror")[0];if(e){b.Error("Error parsing MathML: "+e.textContent.replace(/This page.*?errors:|XML Parsing Error: |Below is a rendering of the page.*/g,""))}if(g.childNodes.length!==1){b.Error("MathML must be formed by a single element")}if(g.firstChild.nodeName.toLowerCase()==="html"){var d=g.getElementsByTagName("h1")[0];if(d&&d.textContent==="XML parsing error"&&d.nextSibling){b.Error("Error parsing MathML: "+String(d.nextSibling.nodeValue).replace(/fatal parsing error: /,""))}}if(g.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")!=="math"){b.Error("MathML must be formed by a element, not <"+g.firstChild.nodeName+">")}this.mml=this.MakeMML(g.firstChild)},MakeMML:function(h){var l=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");if(!(a[l]&&a[l].isa&&a[l].isa(a.mbase))){return a.merror("Unknown node type: "+l)}var d=a[l](),k,j,e,n;for(k=0,j=h.attributes.length;k").replace(/&/g,"&")}}g=this.prefilterMath(g,d)}try{e=b.Parse(g).mml}catch(f){if(!f.mathmlError){throw f}e=this.formatError(f,g,d)}return a(e)},prefilterMath:function(e,d){return e},prefilterMathML:function(d){return d},formatError:function(f,e,d){return a.merror(f.message.replace(/\n.*/,""))},Error:function(d){throw MathJax.Hub.Insert(Error(d),{mathmlError:true})},parseDOM:function(d){return this.parser.parseFromString(d,"text/xml")},parseMS:function(d){return(this.parser.loadXML(d)?this.parser:null)},parseDIV:function(d){this.div.innerHTML=d.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(d){return null},createParser:function(){if(window.DOMParser){this.parser=new DOMParser();return(this.parseDOM)}else{if(window.ActiveXObject){var e=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var f=0,d=e.length;f span":{"text-align":h+"!important"}})}},InitializeMML:function(){this.initialized=true;if(MathJax.Hub.Browser.isMSIE){try{var f=document.createElement("object");f.id="mathplayer";f.classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987";document.getElementsByTagName("head")[0].appendChild(f);document.namespaces.add("mjx","http://www.w3.org/1998/Math/MathML");document.namespaces.mjx.doImport("#mathplayer")}catch(g){alert("MathJax was not able to set up MathPlayer.\n\nIf MathPlayer is not installed, you need to install it first.\nOtherwise, your security settings may be preventing ActiveX \ncontrols from running. Use the Internet Options item under\nthe Tools menu and select the Security tab, then press the\nCustom Level button. Check that the settings for\n'Run ActiveX Controls', and 'Binary and script behaviors'\nare enabled.\n\nCurrently you will see error messages rather than\ntypeset mathematics.")}}},Translate:function(g){if(!g.parentNode){return}if(!this.initialized){this.InitializeMML()}var k=g.previousSibling;if(k&&String(k.className).match(/^MathJax(_MathML|_Display)?$/)){k.parentNode.removeChild(k)}var j=g.MathJax.elementJax.root;var i=(j.Get("display")==="block"?"div":"span");var h=document.createElement(i),f=h;h.className="MathJax_MathML";h.style.fontSize=this.config.scale+"%";if(c&&this.config.showMathMenuMSIE){f=MathJax.HTML.addElement(h,"span",{className:"MathJax_MathContainer",style:{display:"inline-block",position:"relative"}})}j.toNativeMML(f);g.parentNode.insertBefore(h,g);if(c){if(this.config.showMathMenuMSIE){this.MSIEoverlay(h)}}else{j=h.firstChild;j.oncontextmenu=this.ContextMenu;j.onmouseover=this.Mouseover;j.onmousedown=this.Mousedown;j.onclick=this.Click;j.ondblclick=this.DblClick}},Remove:function(f){var g=f.SourceElement();if(!g){return}g=g.previousSibling;if(!g){return}if(g.className.match(/MathJax_MathML/)){g.parentNode.removeChild(g)}},MMLnamespace:"http://www.w3.org/1998/Math/MathML",MSIEoverlay:function(m){var l=m.firstChild;m.style.position="absolute";var n=m.scrollHeight,h=m.offsetWidth;var j=MathJax.HTML.addElement(m,"img",{src:"about:blank",style:{width:0,height:n+"px"}});var f=m.scrollHeight-n;m.removeChild(j);m.style.position="";var k,i,g=(m.parentNode.nodeName.toLowerCase()==="div");if(g&&this.quirks){k=-n;i=Math.floor(-h/2)}else{k=f-n,i=-h}MathJax.HTML.addElement(m,"span",{style:{display:"inline-block",width:0,height:0,position:"relative"}},[["span",{style:{display:"inline-block",position:"absolute",left:i+"px",top:k+"px",width:l.offsetWidth+"px",height:n+"px",cursor:"pointer","background-color":"white",filter:"alpha(opacity=0)"},onmousedown:this.MSIEevent,oncontextmenu:this.MSIEevent,onclick:this.MSIEevent,onmousemove:this.MSIEevent,ondblclick:this.MSIEevent,onmouseover:this.MSIEevent,onmouseout:this.MSIEevent}]])},MSIEmath:function(f){var g=f.parentNode.previousSibling.firstChild;return(g.nodeName.toLowerCase()==="span"?g.firstChild:g)},MSIEevent:function(){var g=b.MSIEmath(this);var f=window.event;var h=b["MSIE"+f.type];if(h&&h.call(b,f,g,this)){return false}g.fireEvent("on"+f.type,f);return false},MSIEmousedown:function(h,g,f){if(h[this.MENUKEY]&&h.button===this.LEFTBUTTON&&this.settings.context!=="MathJax"){this.trapUp=this.trapClick=true;this.ContextMenu.call(f,h,true);return true}if(this.MSIEzoomKeys&&this.MSIEzoomKeys(h)){this.trapUp=true;return true}return false},MSIEcontextmenu:function(h,g,f){if(this.settings.context==="MathJax"){this.trapUp=this.trapClick=true;this.ContextMenu.call(f,h,true);return true}return false},ContextMenu:function(i,j){if(b.config.showMathMenu&&(b.settings.context==="MathJax"||j)){if(b.safariContextMenuBug){setTimeout("window.getSelection().empty()",0)}if(!i||b.msieEventBug){i=window.event}var g=MathJax.Menu;if(g){if(document.selection){setTimeout("document.selection.empty()",0)}var f=(c?this.parentNode.parentNode.nextSibling:this.parentNode.nextSibling);g.jax=e.getJaxFor(f);g.menu.items[1].menu.items[1].name=(g.jax.inputJax.id==="MathML"?"Original":g.jax.inputJax.id);delete b.trapClick;delete b.trapUp;return g.menu.Post(i)}else{if(!d.loadingMathMenu){d.loadingMathMenu=true;var h={pageX:i.pageX,pageY:i.pageY,clientX:i.clientX,clientY:i.clientY};MathJax.Callback.Queue(d.Require("[MathJax]/extensions/MathMenu.js"),function(){delete d.loadingMathMenu},[this,arguments.callee,h,j])}if(!i){i=window.event}if(i.preventDefault){i.preventDefault()}if(i.stopPropagation){i.stopPropagation()}i.cancelBubble=true;i.returnValue=false;return false}}},Mousedown:function(f){if(b.config.showMathMenu){if(!f){f=window.event}if(b.settings.context==="MathJax"){if(!b.noContextMenuBug||f.button!==2){return}}else{if(!f[b.MENUKEY]||f.button!==b.LEFTBUTTON){return}}return b.ContextMenu.call(this,f,true)}},Mouseover:function(f){b.HandleEvent(f,"Mouseover",this)},Click:function(f){b.HandleEvent(f,"Click",this)},DblClick:function(f){b.HandleEvent(f,"DblClick",this)},HandleEvent:function(h,f,g){},NAMEDSPACE:{negativeveryverythinmathspace:"-.0556em",negativeverythinmathspace:"-.1111em",negativethinmathspace:"-.1667em",negativemediummathspace:"-.2222em",negativethickmathspace:"-.2778em",negativeverythickmathspace:"-.3333em",negativeveryverythickmathspace:"-.3889em"}});e.Register.StartupHook("mml Jax Ready",function(){a=MathJax.ElementJax.mml;a.mbase.Augment({toNativeMML:function(k){var h=this.NativeMMLelement(this.type);this.NativeMMLattributes(h);for(var j=0,g=this.data.length;j=0){if(this.negativeSkipBug){var f=i.style.position;i.style.position="absolute";j=this.startMarker;if(i.firstChild){i.insertBefore(j,i.firstChild)}else{i.appendChild(j)}j=this.startMarker}i.appendChild(this.endMarker);g=this.endMarker.offsetLeft-j.offsetLeft;i.removeChild(this.endMarker);if(this.negativeSkipBug){i.removeChild(j);i.style.position=f}}return g/this.em},Measured:function(h,g){if(h.bbox.width==null&&h.bbox.w&&!h.bbox.isMultiline){var f=this.getW(h);h.bbox.rw+=f-h.bbox.w;h.bbox.w=f}if(!g){g=h.parentNode}if(!g.bbox){g.bbox=h.bbox}return h},Remeasured:function(g,f){f.bbox=this.Measured(g,f).bbox},Em:function(f){if(Math.abs(f)<0.0006){return"0em"}return f.toFixed(3).replace(/\.?0+$/,"")+"em"},Percent:function(f){return(100*f).toFixed(1).replace(/\.?0+$/,"")+"%"},length2percent:function(f){return this.Percent(this.length2em(f))},length2em:function(k,i){if(typeof(k)!=="string"){k=k.toString()}if(k===""){return""}if(k===a.SIZE.NORMAL){return 1}if(k===a.SIZE.BIG){return 2}if(k===a.SIZE.SMALL){return 0.71}if(k==="infinity"){return e.BIGDIMEN}var h=this.FONTDATA.TeX_factor;if(k.match(/mathspace$/)){return e.MATHSPACE[k]*h}var g=k.match(/^\s*([-+]?(?:\.\d+|\d+(?:\.\d*)?))?(pt|em|ex|mu|px|pc|in|mm|cm|%)?/);var f=parseFloat(g[1]||"1"),j=g[2];if(i==null){i=1}if(j==="em"){return f*h}if(j==="ex"){return f*e.TeX.x_height*h}if(j==="%"){return f/100*i}if(j==="px"){return f/e.em}if(j==="pt"){return f/10*h}if(j==="pc"){return f*1.2*h}if(j==="in"){return f*this.pxPerInch/e.em}if(j==="cm"){return f*this.pxPerInch/e.em/2.54}if(j==="mm"){return f*this.pxPerInch/e.em/25.4}if(j==="mu"){return f/18*h}return f*h*i},thickness2em:function(f){var g=e.TeX.rule_thickness;if(f===a.LINETHICKNESS.MEDIUM){return g}if(f===a.LINETHICKNESS.THIN){return 0.67*g}if(f===a.LINETHICKNESS.THICK){return 1.67*g}return this.length2em(f,g)},createStrut:function(i,g,j){var f=this.Element("span",{style:{display:"inline-block",overflow:"hidden",height:g+"px",width:"1px",marginRight:"-1px"}});if(j){i.insertBefore(f,i.firstChild)}else{i.appendChild(f)}return f},createBlank:function(g,f,h){var i=this.Element("span",{style:{display:"inline-block",overflow:"hidden",height:"1px",width:this.Em(f)}});if(h){g.insertBefore(i,g.firstChild)}else{g.appendChild(i)}return i},createShift:function(g,f,i){var h=this.Element("span",{style:{marginLeft:this.Em(f)}});if(i){g.insertBefore(h,g.firstChild)}else{g.appendChild(h)}return h},createSpace:function(k,j,m,f,g){var i=this.Em(Math.max(0,j+m)),l=this.Em(-m);if(this.msieInlineBlockAlignBug){l=this.Em(e.getHD(k.parentNode).d-m)}if(k.isBox||k.className=="mspace"){k.bbox={h:j*k.scale,d:m*k.scale,w:f*k.scale,rw:f*k.scale,lw:0};k.style.height=i;k.style.verticalAlign=l}else{k=this.addElement(k,"span",{style:{height:i,verticalAlign:l}})}if(f>=0){k.style.width=this.Em(f);k.style.display="inline-block"}else{if(this.msieNegativeSpaceBug){k.style.height=""}k.style.marginLeft=this.Em(f);if(e.safariNegativeSpaceBug&&k.parentNode.firstChild==k){this.createBlank(k,0,true)}}if(g&&g!==a.COLOR.TRANSPARENT){k.style.backgroundColor=g}return k},createRule:function(o,k,m,p,i){var j=e.TeX.min_rule_thickness;if(p>0&&p*this.em0&&(k+m)*this.em0&&n.offsetWidth==0){n.style.width=this.Em(p)}if(o.isBox||o.className=="mspace"){o.bbox=n.bbox}return n},createFrame:function(o,m,n,p,r,g){var l=(this.msieBorderWidthBug?0:2*r);var q=this.Em(m+n-l),f=this.Em(-n-r),k=this.Em(p-l);var i=this.Em(r)+" "+g;var j=this.addElement(o,"span",{style:{border:i,display:"inline-block",overflow:"hidden",width:k,height:q},bbox:{h:m,d:n,w:p,rw:p,lw:0},noAdjust:true});if(f){j.style.verticalAlign=f}return j},createStack:function(h,j,g){if(this.msiePaddingWidthBug){this.createStrut(h,0)}var i=String(g).match(/%$/);var f=(!i&&g!=null?g:0);h=this.addElement(h,"span",{noAdjust:true,style:{display:"inline-block",position:"relative",width:(i?"100%":this.Em(f)),height:0}});if(!j){h.parentNode.bbox=h.bbox={h:-this.BIGDIMEN,d:-this.BIGDIMEN,w:f,lw:this.BIGDIMEN,rw:(!i&&g!=null?g:-this.BIGDIMEN)};if(i){h.bbox.width=g}}return h},createBox:function(g,f){var h=this.addElement(g,"span",{style:{position:"absolute"},isBox:true});if(f!=null){h.style.width=f}return h},addBox:function(f,g){g.style.position="absolute";g.isBox=true;return f.appendChild(g)},placeBox:function(n,m,k,i){var o=n.parentNode,v=n.bbox,q=o.bbox;if(this.msiePlaceBoxBug){this.addText(n,this.NBSP)}if(this.imgSpaceBug){this.addText(n,this.imgSpace)}var p=n.offsetHeight/this.em+1,z=0;if(n.noAdjust){p-=1}else{if(this.msieInlineBlockAlignBug){this.addElement(n,"img",{className:"MathJax_strut",border:0,src:"about:blank",style:{width:0,height:this.Em(p)}})}else{this.addElement(n,"span",{style:{display:"inline-block",width:0,height:this.Em(p)}})}}n.style.top=this.Em(-k-p);n.style.left=this.Em(m+z);if(v){if(this.negativeSkipBug){if(v.lw<0){z=v.lw;e.createBlank(n,-z,true);h=0}if(v.rw>v.w){e.createBlank(n,v.rw-v.w+0.1)}}if(!this.msieClipRectBug&&!v.noclip&&!i){var u=3/this.em;var s=(v.H==null?v.h:v.H),g=(v.D==null?v.d:v.D);var w=p-s-u,j=p+g+u,h=v.lw-3*u,f=1000;if(v.isFixed){f=v.width-h}n.style.clip="rect("+this.Em(w)+" "+this.Em(f)+" "+this.Em(j)+" "+this.Em(h)+")"}}if(v&&q){if(v.H!=null&&(q.H==null||v.H+k>q.H)){q.H=v.H+k}if(v.D!=null&&(q.D==null||v.D-k>q.D)){q.D=v.D-k}if(v.h+k>q.h){q.h=v.h+k}if(v.d-k>q.d){q.d=v.d-k}if(q.H!=null&&q.H<=q.h){delete q.H}if(q.D!=null&&q.D<=q.d){delete q.D}if(v.w+m>q.w){q.w=v.w+m;if(q.width==null){o.style.width=this.Em(q.w)}}if(v.rw+m>q.rw){q.rw=v.rw+m}if(v.lw+m=h-0.01||(o==k-1&&!g.stretch)){if(g.HW[o][2]){l*=g.HW[o][2]}if(g.HW[o][3]){f=g.HW[o][3]}var n=this.addElement(q,"span");this.createChar(n,[f,g.HW[o][1]],l,j);q.bbox=n.bbox;q.offset=0.65*q.bbox.w;q.scale=l;return}}if(g.stretch){this["extendDelimiter"+g.dir](q,p,g.stretch,l,j)}},extendDelimiterV:function(v,p,A,B,s){var i=this.createStack(v,true);var r=this.createBox(i),q=this.createBox(i);this.createChar(r,(A.top||A.ext),B,s);this.createChar(q,(A.bot||A.ext),B,s);var g={bbox:{w:0,lw:0,rw:0}},z=g,j;var w=r.bbox.h+r.bbox.d+q.bbox.h+q.bbox.d;var m=-r.bbox.h;this.placeBox(r,0,m,true);m-=r.bbox.d;if(A.mid){z=this.createBox(i);this.createChar(z,A.mid,B,s);w+=z.bbox.h+z.bbox.d}if(p>w){g=this.Element("span");this.createChar(g,A.ext,B,s);var x=g.bbox.h+g.bbox.d,f=x-0.05,t,l,u=(A.mid?2:1);l=t=Math.ceil((p-w)/(u*f));if(!A.fullExtenders){f=(p-w)/(u*t)}var o=(t/(t+1))*(x-f);f=x-o;m+=o+f-g.bbox.h;while(u-->0){while(t-->0){if(!this.msieCloneNodeBug){j=g.cloneNode(true)}else{j=this.Element("span");this.createChar(j,A.ext,B,s)}m-=f;this.placeBox(this.addBox(i,j),0,m,true)}m+=o-g.bbox.d;if(A.mid&&u){this.placeBox(z,0,m-z.bbox.h,true);t=l;m+=-(z.bbox.h+z.bbox.d)+o+f-g.bbox.h}}}else{m+=(w-p)/2;if(A.mid){this.placeBox(z,0,m-z.bbox.h,true);m+=-(z.bbox.h+z.bbox.d)}m+=(w-p)/2}this.placeBox(q,0,m-q.bbox.h,true);m-=q.bbox.h+q.bbox.d;v.bbox={w:Math.max(r.bbox.w,g.bbox.w,q.bbox.w,z.bbox.w),lw:Math.min(r.bbox.lw,g.bbox.lw,q.bbox.lw,z.bbox.lw),rw:Math.max(r.bbox.rw,g.bbox.rw,q.bbox.rw,z.bbox.rw),h:0,d:-m};v.scale=B;v.offset=0.55*v.bbox.w;v.isMultiChar=true;this.setStackWidth(i,v.bbox.w)},extendDelimiterH:function(u,h,z,B,r){var l=this.createStack(u,true);var i=this.createBox(l),v=this.createBox(l);this.createChar(i,(z.left||z.rep),B,r);this.createChar(v,(z.right||z.rep),B,r);var f=this.Element("span");this.createChar(f,z.rep,B,r);var y={bbox:{h:-this.BIGDIMEN,d:-this.BIGDIMEN}},g;this.placeBox(i,-i.bbox.lw,0,true);var p=(i.bbox.rw-i.bbox.lw)+(v.bbox.rw-v.bbox.lw)-0.05,o=i.bbox.rw-i.bbox.lw-0.025,q;if(z.mid){y=this.createBox(l);this.createChar(y,z.mid,B,r);p+=y.bbox.w}if(h>p){var A=f.bbox.rw-f.bbox.lw,j=A-0.05,s,m,t=(z.mid?2:1);m=s=Math.ceil((h-p)/(t*j));j=(h-p)/(t*s);q=(s/(s+1))*(A-j);j=A-q;o-=f.bbox.lw+q;while(t-->0){while(s-->0){if(!this.msieCloneNodeBug){g=f.cloneNode(true)}else{g=this.Element("span");this.createChar(g,z.rep,B,r)}this.placeBox(this.addBox(l,g),o,0,true);o+=j}if(z.mid&&t){this.placeBox(y,o,0,true);o+=y.bbox.w-q;s=m}}}else{q=Math.min(p-h,i.bbox.w/2);o-=q/2;if(z.mid){this.placeBox(y,o,0,true);o+=y.bbox.w}o-=q/2}this.placeBox(v,o,0,true);u.bbox={w:o+v.bbox.rw,lw:0,rw:o+v.bbox.rw,H:Math.max(i.bbox.h,f.bbox.h,v.bbox.h,y.bbox.h),D:Math.max(i.bbox.d,f.bbox.d,v.bbox.d,y.bbox.d),h:f.bbox.h,d:f.bbox.d};u.scale=B;u.isMultiChar=true;this.setStackWidth(l,u.bbox.w)},createChar:function(o,k,h,f){var n=o,p="",j={fonts:[k[1]],noRemap:true};if(f&&f===a.VARIANT.BOLD){j.fonts=[k[1]+"-bold",k[1]]}if(typeof(k[1])!=="string"){j=k[1]}if(k[0] instanceof Array){for(var l=0,g=k[0].length;l=r[q].low&&s<=r[q].high){if(r[q].remap&&r[q].remap[s]){s=k+r[q].remap[s]}else{s=s-r[q].low+k;if(r[q].add){s+=r[q].add}}if(j["variant"+r[q].offset]){j=this.FONTDATA.VARIANT[j["variant"+r[q].offset]]}break}}}if(j.remap&&j.remap[s]){if(j.remap[s] instanceof Array){var h=j.remap[s];s=h[0];j=this.FONTDATA.VARIANT[h[1]]}else{s=j.remap[s];if(j.remap.variant){j=this.FONTDATA.VARIANT[j.remap.variant]}}}if(this.FONTDATA.REMAP[s]&&!j.noRemap){s=this.FONTDATA.REMAP[s]}p=this.lookupChar(j,s);y=p[s];if(j!==x&&!y[5].img){if(u.length){this.addText(f,u);u=""}f=v;x=g;if(j!==x){if(x){f=this.addElement(v,"span")}else{g=j}}this.handleFont(f,p,f!==v);x=j}u=this.handleChar(f,p,y,s,u);if(y[0]/1000>v.bbox.h){v.bbox.h=y[0]/1000}if(y[1]/1000>v.bbox.d){v.bbox.d=y[1]/1000}if(v.bbox.w+y[3]/1000v.bbox.rw){v.bbox.rw=v.bbox.w+y[4]/1000}v.bbox.w+=y[2]/1000}if(u.length){this.addText(f,u)}if(v.scale&&v.scale!==1){v.bbox.h*=v.scale;v.bbox.d*=v.scale;v.bbox.w*=v.scale;v.bbox.lw*=v.scale;v.bbox.rw*=v.scale}if(o.length==1&&p.skew&&p.skew[s]){v.bbox.skew=p.skew[s]}},handleFont:function(h,f,j){h.style.fontFamily=f.family;if(!(e.FontFaceBug&&f.isWebFont)){var g=f.style||"normal",i=f.weight||"normal";if(g!=="normal"||j){h.style.fontStyle=g}if(i!=="normal"||j){h.style.fontWeight=i}}},handleChar:function(g,f,l,k,j){var i=l[5];if(i.img){return this.handleImg(g,f,l,k,j)}if(i.isUnknown&&this.FONTDATA.DELIMITERS[k]){if(j.length){this.addText(g,j)}var h=g.scale;e.createDelimiter(g,k,0,1,f);g.scale=h;l[0]=g.bbox.h*1000;l[1]=g.bbox.d*1000;l[2]=g.bbox.w*1000;l[3]=g.bbox.lw*1000;l[4]=g.bbox.rw*1000;return""}if(i.c==null){if(k<=65535){i.c=String.fromCharCode(k)}else{i.c=this.PLANE1+String.fromCharCode(k-119808+56320)}}if(l[2]||!this.msieAccentBug||j.length){return j+i.c}e.createShift(g,l[3]/1000);e.createShift(g,(l[4]-l[3])/1000);this.addText(g,i.c);e.createShift(g,-l[4]/1000);return""},handleImg:function(g,f,j,i,h){return h},lookupChar:function(j,p){var h,f;if(!j.FONTS){var o=this.FONTDATA.FONTS;var l=(j.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(l instanceof Array)){l=[l]}if(j.fonts!=l){j.fonts=l}j.FONTS=[];for(h=0,f=l.length;h=0;h--){if(g.Ranges[h][2]==k){g.Ranges.splice(h,1)}}this.loadFont(g.directory+"/"+k+".js")}}}},loadFont:function(g){var f=MathJax.Callback.Queue();f.Push(["Require",c,this.fontDir+"/"+g]);if(this.imgFonts){if(!MathJax.isPacked){g=g.replace(/\/([^\/]*)$/,e.imgPacked+"/$1")}f.Push(["Require",c,this.webfontDir+"/png/"+g])}d.RestartAfter(f.Push({}))},loadWebFont:function(f){f.available=f.isWebFont=true;if(e.FontFaceBug){f.family=f.name;if(e.msieFontCSSBug){f.family+="-Web"}}d.RestartAfter(this.Font.loadWebFont(f))},loadWebFontError:function(g,f){d.Startup.signal.Post("HTML-CSS Jax - disable web fonts");g.isWebFont=false;if(this.config.imageFont&&this.config.imageFont===this.fontInUse){this.imgFonts=true;d.Startup.signal.Post("HTML-CSS Jax - switch to image fonts");d.Startup.signal.Post("HTML-CSS Jax - using image fonts");MathJax.Message.Set("Web-Fonts not available -- using image fonts instead",null,3000);c.Require(this.directory+"/imageFonts.js",f)}else{this.allowWebFonts=false;f()}},Element:MathJax.HTML.Element,addElement:MathJax.HTML.addElement,TextNode:MathJax.HTML.TextNode,addText:MathJax.HTML.addText,ucMatch:MathJax.HTML.ucMatch,BIGDIMEN:10000000,ID:0,idPostfix:"",GetID:function(){this.ID++;return this.ID},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,scriptspace:0.1,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.1,min_rule_thickness:1.25},PLANE1:String.fromCharCode(55349),NBSP:String.fromCharCode(160),rfuzz:0});MathJax.Hub.Register.StartupHook("mml Jax Ready",function(){a=MathJax.ElementJax.mml;a.mbase.Augment({toHTML:function(l){var j=this.HTMLlineBreaks();if(j.length>2){return this.toHTMLmultiline(l,j)}l=this.HTMLcreateSpan(l);if(this.type!="mrow"){l=this.HTMLhandleSize(l)}for(var g=0,f=this.data.length;gg.d){g.d=h.d}if(h.h>g.h){g.h=h.h}if(h.D!=null&&h.D>g.D){g.D=h.D}if(h.H!=null&&h.H>g.H){g.H=h.H}if(i.style.paddingLeft){g.w+=parseFloat(i.style.paddingLeft)*(i.scale||1)}if(g.w+h.lwg.rw){g.rw=g.w+h.rw}g.w+=h.w;if(i.style.paddingRight){g.w+=parseFloat(i.style.paddingRight)*(i.scale||1)}if(h.width){g.width=h.width}},HTMLemptyBBox:function(f){f.h=f.d=f.H=f.D=f.rw=-e.BIGDIMEN;f.w=0;f.lw=e.BIGDIMEN;return f},HTMLcleanBBox:function(f){if(f.h===this.BIGDIMEN){f.h=f.d=f.H=f.D=f.w=f.rw=f.lw=0}if(f.D<=f.d){delete f.D}if(f.H<=f.h){delete f.H}},HTMLzeroBBox:function(){return{h:0,d:0,w:0,lw:0,rw:0}},HTMLcanStretch:function(f){if(this.isEmbellished()){return this.Core().HTMLcanStretch(f)}return false},HTMLstretchH:function(g,f){return this.HTMLspanElement()},HTMLstretchV:function(g,f,i){return this.HTMLspanElement()},HTMLnotEmpty:function(f){while(f){if((f.type!=="mrow"&&f.type!=="texatom")||f.data.length>1){return true}f=f.data[0]}return false},HTMLmeasureChild:function(g,f){if(this.data[g]!=null){e.Measured(this.data[g].toHTML(f),f)}else{f.bbox=this.HTMLzeroBBox()}},HTMLcreateSpan:function(f){if(this.spanID){var g=this.HTMLspanElement();if(g){while(g.firstChild){g.removeChild(g.firstChild)}g.bbox={w:0,h:0,d:0,lw:0,rw:0};g.scale=1;g.isMultChar=null;g.style.cssText="";return g}}if(this.href){f=e.addElement(f,"a",{href:this.href})}f=e.addElement(f,"span",{className:this.type});if(e.imgHeightBug){f.style.display="inline-block"}if(this["class"]!=null){f.className+=" "+this["class"]}if(this.style){f.style.cssText=this.style;if(f.style.fontSize){this.mathsize=f.style.fontSize;f.style.fontSize=""}}this.spanID=e.GetID();f.id=(this.id||"MathJax-Span-"+this.spanID)+e.idPostfix;f.bbox={w:0,h:0,d:0,lw:0,lr:0};if(this.href){f.parentNode.bbox=f.bbox}return f},HTMLspanElement:function(){if(!this.spanID){return null}return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+e.idPostfix)},HTMLhandleVariant:function(g,f,h){e.handleVariant(g,f,h)},HTMLhandleSize:function(f){if(!f.scale){f.scale=this.HTMLgetScale();if(f.scale!==1){f.style.fontSize=e.Percent(f.scale)}}return f},HTMLhandleColor:function(k){var m=this.getValues("mathcolor","color");if(this.mathbackground){m.mathbackground=this.mathbackground}if(this.background){m.background=this.background}if(this.style&&k.style.backgroundColor){m.mathbackground=k.style.backgroundColor;k.style.backgroundColor="transparent"}if(m.color&&!this.mathcolor){m.mathcolor=m.color}if(m.background&&!this.mathbackground){m.mathbackground=m.background}if(m.mathcolor){k.style.color=m.mathcolor}if(m.mathbackground&&m.mathbackground!==a.COLOR.TRANSPARENT){var n=1/e.em,j=0,i=0;if(this.isToken){j=k.bbox.lw;i=k.bbox.rw-k.bbox.w}if(k.style.paddingLeft!==""){j+=parseFloat(k.style.paddingLeft)*(k.scale||1)}if(k.style.paddingRight!==""){i-=parseFloat(k.style.paddingRight)*(k.scale||1)}var h=Math.max(0,e.getW(k)+(e.PaddingWidthBug?0:i-j));if(e.msieCharPaddingWidthBug&&k.style.paddingLeft!==""){h+=parseFloat(k.style.paddingLeft)*(k.scale||1)}var l=k.bbox.h+k.bbox.d,f=-k.bbox.d;if(h>0){h+=2*n;j-=n}if(l>0){l+=2*n;f-=n}i=-h-j;var g=e.Element("span",{id:"MathJax-Color-"+this.spanID+e.idPostfix,style:{display:"inline-block",backgroundColor:m.mathbackground,width:e.Em(h),height:e.Em(l),verticalAlign:e.Em(f),marginLeft:e.Em(j),marginRight:e.Em(i)}});if(e.msieInlineBlockAlignBug){g.style.position="relative";g.style.width=g.style.height=0;g.style.verticalAlign=g.style.marginLeft=g.style.marginRight="";e.placeBox(e.addElement(g,"span",{noAdjust:true,style:{display:"inline-block",position:"absolute",overflow:"hidden",width:e.Em(h),height:e.Em(l),background:m.mathbackground}}),j,k.bbox.h+n)}k.parentNode.insertBefore(g,k);if(e.msieColorPositionBug){k.style.position="relative"}return g}return null},HTMLremoveColor:function(){var f=document.getElementById("MathJax-Color-"+this.spanID+e.idPostfix);if(f){f.parentNode.removeChild(f)}},HTMLhandleSpace:function(i){if(this.useMMLspacing){if(this.type!=="mo"){return}var g=this.getValues("scriptlevel","lspace","rspace");if(g.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){g.lspace=Math.max(0,e.length2em(g.lspace));g.rspace=Math.max(0,e.length2em(g.rspace));var f=this,h=this.Parent();while(h&&h.isEmbellished()&&h.Core()===f){f=h;h=h.Parent();i=f.HTMLspanElement()}if(g.lspace){i.style.paddingLeft=e.Em(g.lspace)}if(g.rspace){i.style.paddingRight=e.Em(g.rspace)}}}else{var j=this.texSpacing();if(j!==""){j=e.length2em(j)/(i.scale||1);if(i.style.paddingLeft){j+=parseFloat(i.style.paddingLeft)}i.style.paddingLeft=e.Em(j)}}},HTMLgetScale:function(){var h=1,f=this.getValues("mathsize","scriptlevel","fontsize","scriptminsize");if(this.style){var g=this.HTMLspanElement();if(g.style.fontSize!=""){f.fontsize=g.style.fontSize}}if(f.fontsize&&!this.mathsize){f.mathsize=f.fontsize}if(f.scriptlevel!==0){if(f.scriptlevel>2){f.scriptlevel=2}h=Math.pow(this.Get("scriptsizemultiplier"),f.scriptlevel);f.scriptminsize=e.length2em(f.scriptminsize);if(hk.bbox.w){k.bbox.ic=k.bbox.rw-k.bbox.w;e.createBlank(k,k.bbox.ic);k.bbox.w=k.bbox.rw}}this.HTMLhandleSpace(k);this.HTMLhandleColor(k);return k},HTMLcanStretch:function(f){if(!this.Get("stretchy")){return false}var g=this.data.join("");if(g.length>1){return false}g=e.FONTDATA.DELIMITERS[g.charCodeAt(0)];return(g&&g.dir==f.substr(0,1))},HTMLstretchV:function(l,k,n){this.HTMLremoveColor();var f=this.getValues("symmetric","maxsize","minsize");var j=this.HTMLspanElement(),g;var i=e.TeX.axis_height,m=j.scale;if(f.symmetric){g=2*Math.max(k-i,n+i)}else{g=k+n}f.maxsize=e.length2em(f.maxsize,j.bbox.h+j.bbox.d);f.minsize=e.length2em(f.minsize,j.bbox.h+j.bbox.d);g=Math.max(f.minsize,Math.min(f.maxsize,g));j=this.HTMLcreateSpan(l);e.createDelimiter(j,this.data.join("").charCodeAt(0),g,m);if(f.symmetric){g=(j.bbox.h+j.bbox.d)/2+i}else{g=(j.bbox.h+j.bbox.d)*k/(k+n)}e.positionDelimiter(j,g);this.HTMLhandleSpace(j);this.HTMLhandleColor(j);return j},HTMLstretchH:function(i,f){this.HTMLremoveColor();var g=this.getValues("maxsize","minsize","mathvariant","fontweight");if(g.fontweight==="bold"&&!this.mathvariant){g.mathvariant=a.VARIANT.BOLD}var h=this.HTMLspanElement(),j=h.scale;g.maxsize=e.length2em(g.maxsize,h.bbox.w);g.minsize=e.length2em(g.minsize,h.bbox.w);f=Math.max(g.minsize,Math.min(g.maxsize,f));h=this.HTMLcreateSpan(i);e.createDelimiter(h,this.data.join("").charCodeAt(0),f,j,g.mathvariant);this.HTMLhandleSpace(h);this.HTMLhandleColor(h);return h}});a.mtext.Augment({toHTML:function(k){k=this.HTMLhandleSize(this.HTMLcreateSpan(k));k.bbox=null;if(this.Parent().type==="merror"){e.addText(k,this.data.join(""));var l=e.getHD(k),g=e.getW(k);k.bbox={h:l.h,d:l.d,w:g,lw:0,rw:g}}else{var j=this.HTMLgetVariant();for(var h=0,f=this.data.length;ho){f=((k.bbox.h+k.bbox.d)-(o-s))/2}var u=e.FONTDATA.DELIMITERS[e.FONTDATA.RULECHAR];if(!u||iF){F=q.bbox.w}if(!I[H]&&F>g){g=F}}}if(z==null&&B!=null){g=B}else{if(g==-e.BIGDIMEN){g=F}}for(H=F=0,C=this.data.length;HF){F=q.bbox.w}}}var w=e.TeX.rule_thickness,A=e.FONTDATA.TeX_factor;var h=l[this.base]||{bbox:this.HTMLzeroBBox()},J=(h.bbox.ic||0);var p,n,s,r,o,v,E;for(H=0,C=this.data.length;H0){m+=y;l-=y}}e.placeBox(f,i.bbox.w+o,Math.max(m,B.superscriptshift));e.placeBox(k,i.bbox.w+o-F,-Math.max(l,B.subscriptshift))}}this.HTMLhandleSpace(C);this.HTMLhandleColor(C);return C},HTMLstretchH:a.mbase.HTMLstretchH,HTMLstretchV:a.mbase.HTMLstretchV});a.mmultiscripts.Augment({toHTML:a.mbase.HTMLautoload});a.mtable.Augment({toHTML:a.mbase.HTMLautoload});a["annotation-xml"].Augment({toHTML:a.mbase.HTMLautoload});a.math.Augment({toHTML:function(n,g){var k=this.Get("alttext");if(k){g.setAttribute("aria-label",k)}var h=e.addElement(n,"nobr");n=this.HTMLcreateSpan(h);var l=e.createStack(n),i=e.createBox(l),m;l.style.fontSize=h.parentNode.style.fontSize;h.parentNode.style.fontSize="";if(this.data[0]!=null){if(e.msieColorBug){if(this.background){this.data[0].background=this.background;delete this.background}if(this.mathbackground){this.data[0].mathbackground=this.mathbackground;delete this.mathbackground}}a.mbase.prototype.displayAlign=d.config.displayAlign;a.mbase.prototype.displayIndent=d.config.displayIndent;m=e.Measured(this.data[0].toHTML(i),i)}e.placeBox(i,0,0);var j=e.em/e.outerEm;e.em/=j;n.bbox.h*=j;n.bbox.d*=j;n.bbox.w*=j;n.bbox.lw*=j;n.bbox.rw*=j;if(m&&m.bbox.width!=null){l.style.width=m.bbox.width;i.style.width="100%"}this.HTMLhandleColor(n);if(m){e.createRule(n,m.bbox.h*j,m.bbox.d*j,0)}if(!this.isMultiline&&this.Get("display")==="block"&&n.bbox.width==null){var o=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(o.indentalignfirst!==a.INDENTALIGN.INDENTALIGN){o.indentalign=o.indentalignfirst}if(o.indentalign===a.INDENTALIGN.AUTO){o.indentalign=this.displayAlign}g.style.textAlign=o.indentalign;if(o.indentshiftfirst!==a.INDENTSHIFT.INDENTSHIFT){o.indentshift=o.indentshiftfirst}if(o.indentshift==="auto"){o.indentshift=this.displayIndent}if(o.indentshift&&o.indentalign!==a.INDENTALIGN.CENTER){n.style[{left:"marginLeft",right:"marginRight"}[o.indentalign]]=e.Em(e.length2em(o.indentshift))}}return n}});a.TeXAtom.Augment({toHTML:function(g){g=this.HTMLcreateSpan(g);if(this.data[0]!=null){if(this.texClass===a.TEXCLASS.VCENTER){var f=e.createStack(g);var h=e.createBox(f);e.Measured(this.data[0].toHTML(h),h);e.placeBox(h,0,e.TeX.axis_height-(h.bbox.h+h.bbox.d)/2+h.bbox.d)}else{g.bbox=this.data[0].toHTML(g).bbox}}this.HTMLhandleSpace(g);this.HTMLhandleColor(g);return g}});MathJax.Hub.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",e,"jax.js"]),0)})});d.Register.StartupHook("End Config",function(){d.Browser.Select({MSIE:function(f){var i=f.versionAtLeast("7.0");var h=f.versionAtLeast("8.0")&&document.documentMode>7;var g=(document.compatMode==="BackCompat");e.config.styles[".MathJax .MathJax_HitBox"]["background-color"]="white";e.config.styles[".MathJax .MathJax_HitBox"].opacity=0;e.config.styles[".MathJax .MathJax_HitBox"].filter="alpha(opacity=0)";e.Augment({getMarginScale:e.getMSIEmarginScale,PaddingWidthBug:true,msieEventBug:f.isIE9,msieAccentBug:true,msieColorBug:true,msieColorPositionBug:true,msieRelativeWidthBug:g,msieMarginWidthBug:true,msiePaddingWidthBug:true,msieCharPaddingWidthBug:(h&&!g),msieBorderWidthBug:g,msieInlineBlockAlignBug:(!h||g),msieVerticalAlignBug:(h&&!g),msiePlaceBoxBug:(h&&!g),msieClipRectBug:!h,msieNegativeSpaceBug:g,msieCloneNodeBug:(h&&f.version==="8.0"),negativeSkipBug:true,msieIE6:!i,msieItalicWidthBug:true,zeroWidthBug:true,FontFaceBug:true,msieFontCSSBug:f.isIE9,allowWebFonts:"eot"})},Firefox:function(g){var h=false;if(g.versionAtLeast("3.5")){var f=String(document.location).replace(/[^\/]*$/,"");if(document.location.protocol!=="file:"||(d.config.root+"/").substr(0,f.length)===f){h="otf"}}e.Augment({useProcessingFrame:true,ffVerticalAlignBug:true,AccentBug:true,allowWebFonts:h})},Safari:function(j){var h=j.versionAtLeast("3.0");var g=j.versionAtLeast("3.1");j.isMobile=(navigator.appVersion.match(/Mobile/i)!=null);var f=(navigator.appVersion.match(/ Android (\d+)\.(\d+)/));var k=(g&&j.isMobile&&((navigator.platform.match(/iPad|iPod|iPhone/)&&!j.versionAtLeast("5.0"))||(f!=null&&(f[1]<2||(f[1]==2&&f[2]<2)))));e.Augment({config:{styles:{".MathJax img, .MathJax nobr, .MathJax a":{"max-width":"5000em","max-height":"5000em"}}},useProcessingFrame:true,rfuzz:0.05,AccentBug:true,AdjustSurd:true,safariContextMenuBug:true,safariNegativeSpaceBug:true,safariVerticalAlignBug:!g,safariTextNodeBug:!h,safariWebFontSerif:["serif"],allowWebFonts:(g&&!k?"otf":false)});if(k){var i=d.config["HTML-CSS"];if(i){i.availableFonts=[];i.preferredFont=null}else{d.config["HTML-CSS"]={availableFonts:[],preferredFont:null}}}},Chrome:function(f){e.Augment({useProcessingFrame:true,rfuzz:0.05,AccentBug:true,AdjustSurd:true,allowWebFonts:(f.versionAtLeast("4.0")?"otf":"svg"),safariNegativeSpaceBug:true,safariWebFontSerif:[""]})},Opera:function(f){f.isMini=(navigator.appVersion.match("Opera Mini")!=null);e.config.styles[".MathJax .merror"]["vertical-align"]=null;e.Augment({useProcessingFrame:true,operaHeightBug:true,operaVerticalAlignBug:true,operaFontSizeBug:f.versionAtLeast("10.61"),negativeSkipBug:true,zeroWidthBug:true,FontFaceBug:true,PaddingWidthBug:true,allowWebFonts:(f.versionAtLeast("10.0")&&!f.isMini?"otf":false),adjustAvailableFonts:function(j){for(var h=0,g=j.length;hv){v=aE}K[aE]=b.createStack(b.createBox(ag));l[aE]=-b.BIGDIMEN}O[aF][aE]=b.createBox(K[aE]);b.Measured(R.data[aE-ay].toHTML(O[aF][aE]),O[aF][aE]);if(R.data[aE-ay].isMultiline){O[aF][aE].style.width="100%"}if(O[aF][aE].bbox.h>w[aF]){w[aF]=O[aF][aE].bbox.h}if(O[aF][aE].bbox.d>I[aF]){I[aF]=O[aF][aE].bbox.d}if(O[aF][aE].bbox.w>l[aE]){l[aE]=O[aF][aE].bbox.w}}}if(w[0]+I[0]){w[0]=Math.max(w[0],Z)}if(w[O.length-1]+I[O.length-1]){I[O.length-1]=Math.max(I[O.length-1],af)}var al=aJ.columnspacing.split(/ /),S=aJ.rowspacing.split(/ /),ah=aJ.columnalign.split(/ /),L=aJ.rowalign.split(/ /),N=aJ.columnlines.split(/ /),k=aJ.rowlines.split(/ /),ap=aJ.columnwidth.split(/ /),au=[];for(aF=0,aC=al.length;aF0.98){ai=0.98/aw;aw=0.98}}else{if(aJ.width==="auto"){if(aw>0.98){ai=V/(U+V);aq=U+V}else{aq=U/(1-aw)}}else{aq=b.length2em(aJ.width);for(aF=0,aC=Math.min(v+1,al.length);aF0.01){if(aG&&aq>U){aq=(aq-U)/aG;for(aF=0,aC=B.length;aF=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax.id==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/"/g,""")},createPreview:function(b,a){var c;if(this.config.preview==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterText(d)]}}else{if(this.config.preview instanceof Array){c=this.config.preview}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterText:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); + +(function(a,c,e,b,h){var i="1.1";var g=a.CombineConfig("MathZoom",{delay:400,styles:{"#MathJax_Zoom":{position:"absolute","background-color":"#F0F0F0",overflow:"auto",display:"block","z-index":301,padding:".5em",border:"1px solid black",margin:0,"font-family":"serif","font-size":"85%","font-weight":"normal","font-style":"normal","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","box-shadow":"5px 5px 15px #AAAAAA","-webkit-box-shadow":"5px 5px 15px #AAAAAA","-moz-box-shadow":"5px 5px 15px #AAAAAA","-khtml-box-shadow":"5px 5px 15px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},"#MathJax_ZoomOverlay":{position:"absolute",left:0,top:0,"z-index":300,display:"inline-block",width:"100%",height:"100%",border:0,padding:0,margin:0,"background-color":"white",opacity:0,filter:"alpha(opacity=0)"}}});var d=function(j){if(!j){j=window.event}if(j){if(j.preventDefault){j.preventDefault()}if(j.stopPropagation){j.stopPropagation()}j.cancelBubble=true;j.returnValue=false}return false};var f=MathJax.Extension.MathZoom={version:i,settings:a.config.menuSettings,HandleEvent:function(l,j,k){if(!l){l=window.event}if(f.settings.CTRL&&!l.ctrlKey){return true}if(f.settings.ALT&&!l.altKey){return true}if(f.settings.CMD&&!l.metaKey){return true}if(f.settings.Shift&&!l.shiftKey){return true}return f[j](l,k)},Click:function(k,j){if(this.settings.zoom==="Click"){return this.Zoom(j,k)}},DblClick:function(k,j){if(this.settings.zoom==="Double-Click"){return this.Zoom(j,k)}},Mouseover:function(k,j){if(this.settings.zoom==="Hover"){f.oldMouseOver=j.onmouseover;j.onmouseover=null;j.onmousemove=this.Mousemove;j.onmouseout=this.Mouseout;return f.Timer(k,j)}},Mouseout:function(j){this.onmouseover=f.oldMouseOver;delete f.oldMouseOver;this.onmousemove=this.onmouseout=null;f.ClearTimer();return d(j)},Mousemove:function(j){return f.Timer(j||window.event,this)},Timer:function(k,j){this.ClearTimer();this.timer=setTimeout(MathJax.Callback(["Zoom",this,j,{}]),g.delay);return d(k)},ClearTimer:function(){if(this.timer){clearTimeout(this.timer);delete this.timer}},Zoom:function(s,l){this.ClearTimer();this.Remove();var v=s.parentNode;if(v.className==="MathJax_MathContainer"){v=v.parentNode}if(v.parentNode.className==="MathJax_MathContainer"){v=v.parentNode.parentNode}var q=(String(v.className).match(/^MathJax_(MathML|Display)$/)?v:s).nextSibling;var m=a.getJaxFor(q),r=m.root;var o=(b&&m.outputJax.isa(b.constructor)?"HTMLCSS":(h&&m.outputJax.isa(h.constructor)?"MathML":null));if(!o){return}var j=Math.floor(0.85*document.body.clientWidth),p=Math.floor(0.85*document.body.clientHeight);var k=c.Element("span",{style:{position:"relative",display:"inline-block",height:0,width:0},id:"MathJax_ZoomFrame"},[["span",{id:"MathJax_ZoomOverlay",onmousedown:this.Remove}],["span",{id:"MathJax_Zoom",onclick:this.Remove,style:{visibility:"hidden",fontSize:this.settings.zscale,"max-width":j+"px","max-height":p+"px"}},[["span"]]]]);var x=k.lastChild,u=x.firstChild,n=k.firstChild;s.parentNode.insertBefore(k,s);if(this.msieZIndexBug){var t=c.Element("img",{src:"about:blank",id:"MathJax_ZoomTracker",style:{width:0,height:0,position:"relative"}});document.body.appendChild(k);k.style.position="absolute";k.style.zIndex=g.styles["#MathJax_ZoomOverlay"]["z-index"];k=t}var w=(this["Zoom"+o])(r,u,s);if(this.msiePositionBug){if(this.msieIE8Bug){u.style.position="absolute";x.style.height=u.offsetHeight;u.style.position="";if(x.offsetHeight<=p&&x.offsetWidth<=j){x.style.overflow="visible"}}if(this.msieWidthBug){x.style.width=Math.min(j,w.w)}else{if(w.w>j){x.style.width=j}}if(x.offsetHeight>p){x.style.Height=p+"px"}if(s.nextSibling){s.parentNode.insertBefore(k,s.nextSibling)}else{v.appendChild(k)}}else{if(this.operaPositionBug){x.style.width=Math.min(j,u.offsetWidth)+"px"}}this.Position(x,w,(o==="MathML"&&v.nodeName.toLowerCase()==="div"));x.style.visibility="";if(this.settings.zoom==="Hover"){n.onmouseover=this.Remove}if(window.addEventListener){addEventListener("resize",this.Resize,false)}else{if(window.attachEvent){attachEvent("onresize",this.Resize)}else{this.onresize=window.onresize;window.onresize=this.Resize}}return d(l)},ZoomHTMLCSS:function(o,q,p){q.className="MathJax";b.idPostfix="-zoom";b.getScales(q,q);o.toHTML(q,q);var r=o.HTMLspanElement().bbox;b.idPostfix="";if(r.width&&r.width!=="100%"){var j=Math.floor(0.85*document.body.clientWidth);q.style.width=j+"px";q.style.display="inline-block";var k=(o.id||"MathJax-Span-"+o.spanID)+"-zoom";var l=document.getElementById(k).firstChild;while(l&&l.style.width!==r.width){l=l.nextSibling}if(l){l.style.width="100%"}}q.appendChild(this.topImg);var n=this.topImg.offsetTop;q.removeChild(this.topImg);var m=(this.msieWidthBug?b.getW(p)*b.em:p.offsetWidth);return{w:r.w*b.em,Y:-n,W:m}},ZoomMathML:function(k,l,m){k.toNativeMML(l,l);var n;l.appendChild(this.topImg);n=this.topImg.offsetTop;l.removeChild(this.topImg);var j=(this.ffMMLwidthBug?m.parentNode:m).offsetWidth;return{w:l.offsetWidth,Y:-n,W:j}},Position:function(p,n,r){var k=this.Resize(),m=k.x,l=k.y,j=n.W;if(this.msiePositionBug){j=-j}if(r&&this.ffMMLcenterBug){j=0}var q=-Math.floor((p.offsetWidth-j)/2),o=n.Y;p.style.left=Math.max(q,20-m)+"px";p.style.top=Math.max(o,20-l)+"px"},Resize:function(l){if(f.onresize){f.onresize(l)}var j=0,o=0,n=document.getElementById("MathJax_ZoomFrame"),k=document.getElementById("MathJax_ZoomOverlay");var m=(f.msieZIndexBug?document.getElementById("MathJax_ZoomTracker"):n);if(f.operaPositionBug){n.style.border="1px solid"}if(m.offsetParent){do{j+=m.offsetLeft;o+=m.offsetTop}while(m=m.offsetParent)}if(f.operaPositionBug){n.style.border=""}if(f.msieZIndexBug){n.style.left=j+"px";n.style.top=o+"px"}k.style.left=(-j)+"px";k.style.top=(-o)+"px";if(f.msiePositionBug){setTimeout(f.SetWH,0)}else{f.SetWH()}return{x:j,y:o}},SetWH:function(){var j=document.getElementById("MathJax_ZoomOverlay");j.style.width=j.style.height="1px";j.style.width=document.body.scrollWidth+"px";j.style.height=document.body.scrollHeight+"px"},Remove:function(k){var l=document.getElementById("MathJax_ZoomFrame");if(l){l.parentNode.removeChild(l);l=document.getElementById("MathJax_ZoomTracker");if(l){l.parentNode.removeChild(l)}if(f.operaRefreshBug){var j=c.addElement(document.body,"div",{style:{position:"fixed",left:0,top:0,width:"100%",height:"100%",backgroundColor:"white",opacity:0},id:"MathJax_OperaDiv"});document.body.removeChild(j)}if(window.removeEventListener){removeEventListener("resize",f.Resize,false)}else{if(window.detachEvent){detachEvent("onresize",f.Resize)}else{window.onresize=f.onresize;delete f.onresize}}}return d(k)}};a.Register.StartupHook("HTML-CSS Jax Ready",function(){b=MathJax.OutputJax["HTML-CSS"];b.Augment({HandleEvent:f.HandleEvent})});a.Register.StartupHook("NativeMML Jax Ready",function(){h=MathJax.OutputJax.NativeMML;h.Augment({HandleEvent:f.HandleEvent,MSIEmouseup:function(l,k,j){if(this.trapUp){delete this.trapUp;return true}if(this.MSIEzoomKeys(l)){return true}return false},MSIEclick:function(l,k,j){if(this.trapClick){delete this.trapClick;return true}if(!this.MSIEzoomKeys(l)){return false}if(!this.settings.zoom.match(/Click/)){return false}return(f.Click(l,k)===false)},MSIEdblclick:function(l,k,j){if(!this.MSIEzoomKeys(l)){return false}return(f.DblClick(l,k)===false)},MSIEmouseover:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEmouseout:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.ClearTimer();return true},MSIEmousemove:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEzoomKeys:function(j){if(this.settings.CTRL&&!j.ctrlKey){return false}if(this.settings.CMD&&!j.metaKey){return false}if(this.settings.ALT&&!j.altKey){return false}if(this.settings.Shift&&!j.shiftKey){return false}return true}})});a.Browser.Select({MSIE:function(j){var k=(document.compatMode==="BackCompat");var l=j.versionAtLeast("8.0")&&document.documentMode>7;f.msiePositionBug=true;f.msieWidthBug=!k;f.msieIE8Bug=l;f.msieZIndexBug=!l;f.msieInlineBlockAlignBug=(!l||k);if(document.documentMode>=9){delete g.styles["#MathJax_Zoom"].filter}},Opera:function(j){f.operaPositionBug=true;f.operaRefreshBug=true},Firefox:function(j){f.ffMMLwidthBug=true;f.ffMMLcenterBug=true}});f.topImg=(f.msieInlineBlockAlignBug?c.Element("img",{style:{width:0,height:0},src:"about:blank"}):c.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(f.operaPositionBug){f.topImg.style.border="1px solid"}MathJax.Callback.Queue(["Styles",e,g.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",e,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); + +(function(b,c,f){var k="1.1.4";MathJax.Extension.MathMenu={version:k};var i=b.Browser.isPC,g=b.Browser.isMSIE;var e=(i?null:"5px");var j=b.CombineConfig("MathMenu",{delay:150,helpURL:"http://www.mathjax.org/help/user/",showRenderer:true,showFontMenu:false,showContext:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:100,height:50},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(i?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":e,"-webkit-border-radius":e,"-moz-border-radius":e,"-khtml-border-radius":e,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(i?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuTitle":{"background-color":"#CCCCCC",margin:(i?"-1px -1px 1px -1px":"-5px 0 0 0"),"text-align":"center","font-style":"italic","font-size":"80%",color:"#444444",padding:"2px 0",overflow:"hidden"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(i?"1em":".7em")},".MathJax_MenuLabel":{padding:(i?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(i?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(i?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(i?"Highlight":"#606872"),color:(i?"HighlightText":"white")}}});var d=function(l){if(!l){l=window.event}if(l){if(l.preventDefault){l.preventDefault()}if(l.stopPropagation){l.stopPropagation()}l.cancelBubble=true;l.returnValue=false}return false};var a=MathJax.Menu=MathJax.Object.Subclass({version:k,items:[],posted:false,title:null,margin:5,Init:function(l){this.items=[].slice.call(arguments,0)},With:function(l){if(l){b.Insert(this,l)}return this},Post:function(n,v){if(!n){n=window.event}var t=(!this.title?null:[["div",{className:"MathJax_MenuTitle"},[this.title]]]);var l=document.getElementById("MathJax_MenuFrame");if(!l){l=a.Background(this)}var o=c.addElement(l,"div",{onmouseup:a.Mouseup,ondblclick:this.False,ondragstart:this.False,onselectstart:this.False,oncontextmenu:this.False,menuItem:this,className:"MathJax_Menu"},t);for(var q=0,p=this.items.length;qdocument.body.offsetWidth-this.margin){u=document.body.offsetWidth-o.offsetWidth-this.margin}a.skipUp=true}else{var r="left",w=v.offsetWidth;u=v.offsetWidth-2;s=0;while(v&&v!==l){u+=v.offsetLeft;s+=v.offsetTop;v=v.parentNode}if(u+o.offsetWidth>document.body.offsetWidth-this.margin){r="right";u=Math.max(this.margin,u-w-o.offsetWidth+6)}if(!i){o.style["borderRadiusTop"+r]=0;o.style["WebkitBorderRadiusTop"+r]=0;o.style["MozBorderRadiusTop"+r]=0;o.style["KhtmlBorderRadiusTop"+r]=0}}o.style.left=u+"px";o.style.top=s+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return this.False(n)},Remove:function(l,m){var n=document.getElementById("MathJax_MenuFrame");if(n){n.parentNode.removeChild(n);if(this.msieBackgroundBug){detachEvent("onresize",a.Resize)}}},Mouseup:function(l,m){if(a.skipUp){delete a.skipUp}else{this.Remove(l,m)}},False:d},{config:j,div:null,Remove:function(l){a.Event(l,this,"Remove")},Mouseover:function(l){a.Event(l,this,"Mouseover")},Mouseout:function(l){a.Event(l,this,"Mouseout")},Mousedown:function(l){a.Event(l,this,"Mousedown")},Mouseup:function(l){a.Event(l,this,"Mouseup")},Mousemove:function(l){a.Event(l,this,"Mousemove")},Event:function(n,o,l){if(!n){n=window.event}var m=o.menuItem;if(m&&m[l]){return m[l](n,o)}return null},BGSTYLE:{position:"absolute",left:0,top:0,"z-index":200,width:"100%",height:"100%",border:0,padding:0,margin:0},Background:function(m){var n=c.addElement(document.body,"div",{style:this.BGSTYLE,id:"MathJax_MenuFrame"},[["div",{style:this.BGSTYLE,menuItem:m,onmousedown:this.Remove}]]);var l=n.firstChild;if(m.msieBackgroundBug){l.style.backgroundColor="white";l.style.filter="alpha(opacity=0)";n.width=n.height=0;this.Resize();attachEvent("onresize",this.Resize)}else{l.style.position="fixed"}return n},Resize:function(){setTimeout(a.SetWH,0)},SetWH:function(){var l=document.getElementById("MathJax_MenuFrame");if(l){l=l.firstChild;l.style.width=l.style.height="1px";l.style.width=document.body.scrollWidth+"px";l.style.height=document.body.scrollHeight+"px"}},saveCookie:function(){c.Cookie.Set("menu",this.cookie)},getCookie:function(){this.cookie=c.Cookie.Get("menu")}});var h=a.ITEM=MathJax.Object.Subclass({name:"",Create:function(m){if(!this.hidden){var l={onmouseover:a.Mouseover,onmouseout:a.Mouseout,onmouseup:a.Mouseup,onmousedown:this.False,ondragstart:this.False,onselectstart:this.False,onselectend:this.False,className:"MathJax_MenuItem",menuItem:this};if(this.disabled){l.className+=" MathJax_MenuDisabled"}c.addElement(m,"div",l,this.Label(l,m))}},Mouseover:function(q,s){if(!this.disabled){this.Activate(s)}if(!this.menu||!this.menu.posted){var r=document.getElementById("MathJax_MenuFrame").childNodes,n=s.parentNode.childNodes;for(var o=0,l=n.length;o=0&&s.parentNode.menuItem!==r[l].menuItem){r[l].menuItem.posted=false;r[l].parentNode.removeChild(r[l]);l--}if(this.Timer){this.Timer(q,s)}}},Mouseout:function(l,m){if(!this.menu||!this.menu.posted){this.Deactivate(m)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(l,m){return this.Remove(l,m)},Remove:function(l,m){m=m.parentNode.menuItem;return m.Remove(l,m)},Activate:function(l){this.Deactivate(l);l.className+=" MathJax_MenuActive"},Deactivate:function(l){l.className=l.className.replace(/ MathJax_MenuActive/,"")},With:function(l){if(l){b.Insert(this,l)}return this},False:d});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(l,n,m){this.name=l;this.action=n;this.With(m)},Label:function(l,m){return[this.name]},Mouseup:function(l,m){if(!this.disabled){this.Remove(l,m);this.action.call(this,l)}return this.False(l)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(i&&!b.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(l,n){this.name=l;var m=1;if(!(n instanceof a.ITEM)){this.With(n),m++}this.menu=a.apply(a,[].slice.call(arguments,m))},Label:function(l,m){l.onmousemove=a.Mousemove;this.menu.posted=false;return[this.name+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(l,m){if(this.timer){clearTimeout(this.timer)}l={clientX:l.clientX,clientY:l.clientY};this.timer=setTimeout(MathJax.Callback(["Mouseup",this,l,m]),j.delay)},Mouseup:function(n,p){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(n,p)}else{var o=document.getElementById("MathJax_MenuFrame").childNodes,l=o.length-1;while(l>=0){var q=o[l];q.menuItem.posted=false;q.parentNode.removeChild(q);if(q.menuItem===this.menu){break}l--}}}return this.False(n)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(i?"\u25CF":"\u2713"),Init:function(m,l,n){this.name=m;this.variable=l;this.With(n);if(this.value==null){this.value=this.name}},Label:function(m,n){var l={className:"MathJax_MenuRadioCheck"};if(j.settings[this.variable]!==this.value){l={style:{display:"none"}}}return[["span",l,[this.marker]]," "+this.name]},Mouseup:function(p,q){if(!this.disabled){var r=q.parentNode.childNodes;for(var n=0,l=r.length;n/g,">");n.document.open();n.document.write("MathJax Equation Source");n.document.write("
"+r+"
");n.document.write("");n.document.close();var p=n.document.body.firstChild;var o=(n.outerHeight-n.innerHeight)||30,m=(n.outerWidth-n.innerWidth)||30;m=Math.min(Math.floor(0.5*screen.width),p.offsetWidth+m+25);o=Math.min(Math.floor(0.5*screen.height),p.offsetHeight+o+25);n.resizeTo(m,o);if(q&&q.screenX!=null){var l=Math.max(0,Math.min(q.screenX-Math.floor(m/2),screen.width-m-20)),s=Math.max(0,Math.min(q.screenY-Math.floor(o/2),screen.height-o-20));n.moveTo(l,s)}delete a.ShowSource.w};a.Scale=function(){var m=MathJax.OutputJax["HTML-CSS"],l=MathJax.OutputJax.NativeMML;var o=(m?m.config.scale:l.config.scale);var n=prompt("Scale all mathematics (compared to surrounding text) by",o+"%");if(n){if(n.match(/^\s*\d+\s*%?\s*$/)){n=parseInt(n);if(n){if(n!==o){if(m){m.config.scale=n}if(l){l.config.scale=n}a.cookie.scale=n;a.saveCookie();b.Reprocess()}}else{alert("The scale should not be zero")}}else{alert("The scale should be a perentage (e.g., 120%)")}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){f.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var l=b.config.outputJax["jax/mml"];if(l[0]!==j.settings.renderer){MathJax.Callback.Queue(["Require",f,"[MathJax]/jax/output/"+j.settings.renderer+"/config.js"],["Post",b.Startup.signal,j.settings.renderer+" output selected"],[function(){var p=MathJax.OutputJax[j.settings.renderer];for(var o=0,n=l.length;o7;a.Augment({margin:20,msieBackgroundBug:(m||!n),msieAboutBug:m});if(document.documentMode>=9){delete j.styles["#MathJax_About"].filter;delete j.styles[".MathJax_Menu"].filter}}});b.Register.StartupHook("End Config",function(){j.settings=b.config.menuSettings;if(!j.settings.format){j.settings.format=(MathJax.InputJax.TeX?"Original":"MathML")}if(typeof(j.settings.showRenderer)!=="undefined"){j.showRenderer=j.settings.showRenderer}if(typeof(j.settings.showFontMenu)!=="undefined"){j.showFontMenu=j.settings.showFontMenu}if(typeof(j.settings.showContext)!=="undefined"){j.showContext=j.settings.showContext}a.getCookie();a.menu=a(h.COMMAND("Show Source",a.ShowSource),h.SUBMENU("Format",h.RADIO("MathML","format"),h.RADIO("Original","format",{value:"Original"})),h.RULE(),h.SUBMENU("Settings",h.SUBMENU("Zoom Trigger",h.RADIO("Hover","zoom",{action:a.Zoom}),h.RADIO("Click","zoom",{action:a.Zoom}),h.RADIO("Double-Click","zoom",{action:a.Zoom}),h.RADIO("No Zoom","zoom",{value:"None"}),h.RULE(),h.LABEL("Trigger Requires:"),h.CHECKBOX((b.Browser.isMac?"Option":"Alt"),"ALT"),h.CHECKBOX("Command","CMD",{hidden:!b.Browser.isMac}),h.CHECKBOX("Control","CTRL",{hidden:b.Browser.isMac}),h.CHECKBOX("Shift","Shift")),h.SUBMENU("Zoom Factor",h.RADIO("125%","zscale"),h.RADIO("133%","zscale"),h.RADIO("150%","zscale"),h.RADIO("175%","zscale"),h.RADIO("200%","zscale"),h.RADIO("250%","zscale"),h.RADIO("300%","zscale"),h.RADIO("400%","zscale")),h.RULE(),h.SUBMENU("Math Renderer",{hidden:!j.showRenderer},h.RADIO("HTML-CSS","renderer",{action:a.Renderer}),h.RADIO("MathML","renderer",{action:a.Renderer,value:"NativeMML"})),h.SUBMENU("Font Preference",{hidden:!j.showFontMenu},h.LABEL("For HTML-CSS:"),h.RADIO("Auto","font",{action:a.Font}),h.RULE(),h.RADIO("TeX (local)","font",{action:a.Font}),h.RADIO("TeX (web)","font",{action:a.Font}),h.RADIO("TeX (image)","font",{action:a.Font}),h.RULE(),h.RADIO("STIX (local)","font",{action:a.Font})),h.SUBMENU("Contextual Menu",{hidden:!j.showContext},h.RADIO("MathJax","context"),h.RADIO("Browser","context")),h.COMMAND("Scale All Math ...",a.Scale)),h.RULE(),h.COMMAND("About MathJax",a.About),h.COMMAND("MathJax Help",a.Help))});a.showRenderer=function(l){a.cookie.showRenderer=j.showRenderer=l;a.saveCookie();a.menu.items[3].menu.item[3].hidden=!l};a.showFontMenu=function(l){a.cookie.showFontMenu=j.showFontMenu=l;a.saveCookie();a.menu.items[3].menu.items[4].hidden=!l};a.showContext=function(l){a.cookie.showContext=j.showContext=l;a.saveCookie();a.menu.items[3].menu.items[5].hidden=!l};MathJax.Callback.Queue(["Styles",f,j.styles],["Post",b.Startup.signal,"MathMenu Ready"],["loadComplete",f,"[MathJax]/extensions/MathMenu.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax); + +MathJax.ElementJax.mml=MathJax.ElementJax({mimeType:"jax/mml"},{id:"mml",version:"1.1.1",directory:MathJax.ElementJax.directory+"/mml",extensionDir:MathJax.ElementJax.extensionDir+"/mml",optableDir:MathJax.ElementJax.directory+"/mml/optable"});MathJax.ElementJax.mml.Augment({Init:function(){if(arguments.length===1&&arguments[0].type==="math"){this.root=arguments[0]}else{this.root=MathJax.ElementJax.mml.math.apply(this,arguments)}if(this.root.mode){if(!this.root.display&&this.root.mode==="display"){this.root.display="block"}delete this.root.mode}}},{INHERIT:"_inherit_",AUTO:"_auto_",SIZE:{INFINITY:"infinity",SMALL:"small",NORMAL:"normal",BIG:"big"},COLOR:{TRANSPARENT:"transparent"},VARIANT:{NORMAL:"normal",BOLD:"bold",ITALIC:"italic",BOLDITALIC:"bold-italic",DOUBLESTRUCK:"double-struck",FRAKTUR:"fraktur",BOLDFRAKTUR:"bold-fraktur",SCRIPT:"script",BOLDSCRIPT:"bold-script",SANSSERIF:"sans-serif",BOLDSANSSERIF:"bold-sans-serif",SANSSERIFITALIC:"sans-serif-italic",SANSSERIFBOLDITALIC:"sans-serif-bold-italic",MONOSPACE:"monospace",INITIAL:"inital",TAILED:"tailed",LOOPED:"looped",STRETCHED:"stretched",CALIGRAPHIC:"-tex-caligraphic",OLDSTYLE:"-tex-oldstyle"},FORM:{PREFIX:"prefix",INFIX:"infix",POSTFIX:"postfix"},LINEBREAK:{AUTO:"auto",NEWLINE:"newline",NOBREAK:"nobreak",GOODBREAK:"goodbreak",BADBREAK:"badbreak"},LINEBREAKSTYLE:{BEFORE:"before",AFTER:"after",DUPLICATE:"duplicate",INFIXLINBREAKSTYLE:"infixlinebreakstyle"},INDENTALIGN:{LEFT:"left",CENTER:"center",RIGHT:"right",AUTO:"auto",ID:"id",INDENTALIGN:"indentalign"},INDENTSHIFT:{INDENTSHIFT:"indentshift"},LINETHICKNESS:{THIN:"thin",MEDIUM:"medium",THICK:"thick"},NOTATION:{LONGDIV:"longdiv",ACTUARIAL:"actuarial",RADICAL:"radical",BOX:"box",ROUNDEDBOX:"roundedbox",CIRCLE:"circle",LEFT:"left",RIGHT:"right",TOP:"top",BOTTOM:"bottom",UPDIAGONALSTRIKE:"updiagonalstrike",DOWNDIAGONALSTRIKE:"downdiagonalstrike",VERTICALSTRIKE:"verticalstrike",HORIZONTALSTRIKE:"horizontalstrike",MADRUWB:"madruwb"},ALIGN:{TOP:"top",BOTTOM:"bottom",CENTER:"center",BASELINE:"baseline",AXIS:"axis",LEFT:"left",RIGHT:"right"},LINES:{NONE:"none",SOLID:"solid",DASHED:"dashed"},SIDE:{LEFT:"left",RIGHT:"right",LEFTOVERLAP:"leftoverlap",RIGHTOVERLAP:"rightoverlap"},WIDTH:{AUTO:"auto",FIT:"fit"},ACTIONTYPE:{TOGGLE:"toggle",STATUSLINE:"statusline",TOOLTIP:"tooltip",INPUT:"input"},LENGTH:{VERYVERYTHINMATHSPACE:"veryverythinmathspace",VERYTHINMATHSPACE:"verythinmathspace",THINMATHSPACE:"thinmathspace",MEDIUMMATHSPACE:"mediummathspace",THICKMATHSPACE:"thickmathspace",VERYTHICKMATHSPACE:"verythickmathspace",VERYVERYTHICKMATHSPACE:"veryverythickmathspace",NEGATIVEVERYVERYTHINMATHSPACE:"negativeveryverythinmathspace",NEGATIVEVERYTHINMATHSPACE:"negativeverythinmathspace",NEGATIVETHINMATHSPACE:"negativethinmathspace",NEGATIVEMEDIUMMATHSPACE:"negativemediummathspace",NEGATIVETHICKMATHSPACE:"negativethickmathspace",NEGATIVEVERYTHICKMATHSPACE:"negativeverythickmathspace",NEGATIVEVERYVERYTHICKMATHSPACE:"negativeveryverythickmathspace"},OVERFLOW:{LINBREAK:"linebreak",SCROLL:"scroll",ELIDE:"elide",TRUNCATE:"truncate",SCALE:"scale"},UNIT:{EM:"em",EX:"ex",PX:"px",IN:"in",CM:"cm",MM:"mm",PT:"pt",PC:"pc"},TEXCLASS:{ORD:0,OP:1,BIN:2,REL:3,OPEN:4,CLOSE:5,PUNCT:6,INNER:7,VCENTER:8,NONE:-1},PLANE1:String.fromCharCode(55349)});(function(a){var d=false;var b=true;a.mbase=MathJax.Object.Subclass({type:"base",isToken:d,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT},noInherit:{},Init:function(){this.data=[];if(this.inferRow&&!(arguments.length===1&&arguments[0].inferred)){this.Append(a.mrow().With({inferred:b}))}this.Append.apply(this,arguments)},With:function(f){for(var g in f){if(f.hasOwnProperty(g)){this[g]=f[g]}}return this},Append:function(){if(this.inferRow&&this.data.length){this.data[0].Append.apply(this.data[0],arguments)}else{for(var g=0,f=arguments.length;g0&&this.Get("scriptlevel")>0&&h>=0){return""}return this.TEXSPACELENGTH[Math.abs(h)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(f){return""},isSpacelike:function(){return d},isEmbellished:function(){return d},Core:function(){return this},CoreMO:function(){return this},lineBreak:function(){if(this.isEmbellished()){return this.CoreMO().lineBreak()}else{return"none"}},array:function(){if(this.inferred){return this.data}else{return[this]}},toString:function(){return this.type+"("+this.data.join(",")+")"}},{childrenSpacelike:function(){for(var f=0;f=0;f--){if(this.data[0]&&!this.data[f].isSpacelike()){return this.data[f]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(h){for(var g=0,f=this.data.length;g0){f++}return f},adjustChild_texprimestyle:function(f){if(f==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:b,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(f){return b}});a.mroot=a.mbase.Subclass({type:"mroot",texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(f){if(f===1){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g===1){f+=2}return f},adjustChild_texprimestyle:function(f){if(f===0){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:b,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(h){var g=this.scriptlevel;if(g==null){g=this.Get("scriptlevel")}else{if(String(g).match(/^ *[-+]/)){delete this.scriptlevel;var f=this.Get("scriptlevel");this.scriptlevel=g;g=f+parseInt(g)}}return g},inheritFromMe:b,noInherit:{mpadded:{width:b,height:b,depth:b,lspace:b,voffset:b},mtable:{width:b,height:b,depth:b,align:b}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:b,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(j){this.getPrevClass(j);var g=this.getValues("open","close","separators");g.open=g.open.replace(/[ \t\n\r]/g,"");g.close=g.close.replace(/[ \t\n\r]/g,"");g.separators=g.separators.replace(/[ \t\n\r]/g,"");if(g.open!==""){this.SetData("open",a.mo(g.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));j=this.data.open.setTeXclass(j)}if(g.separators!==""){while(g.separators.length0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g>0){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.sub){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(f){if(f%2===1){return b}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(f){if(f==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(f):a.TEXCLASS.ORD)}if(f==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(f==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return d},adjustChild_displaystyle:function(f){if(f>0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g==this.under&&!this.Get("accentunder")){f++}if(g==this.over&&!this.Get("accent")){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.base&&this.data[this.over]){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:b,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:d,equalcolumns:d,displaystyle:d,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:b,noInherit:{mtable:{align:b,rowalign:b,columnalign:b,groupalign:b,alignmentscope:b,columnwidth:b,width:b,rowspacing:b,columnspacing:b,rowlines:b,columnlines:b,frame:b,framespacing:b,equalrows:b,equalcolumns:b,side:b,minlabelspacing:b,texClass:b,useHeight:1}},Append:function(){for(var g=0,f=arguments.length;g":e.REL,"?":[1,1,c.CLOSE],"\\":e.ORD,_:e.ORD11,"|":[2,2,c.ORD,{fence:true,stretchy:true,symmetric:true}],"#":e.ORD,"$":e.ORD,"\u002E":[0,3,c.PUNCT,{separator:true}],"\u02B9":e.ORD,"\u02C9":e.ACCENT,"\u02CA":e.ACCENT,"\u02CB":e.ACCENT,"\u0300":e.ACCENT,"\u0301":e.ACCENT,"\u0303":e.WIDEACCENT,"\u0304":e.ACCENT,"\u0306":e.ACCENT,"\u0307":e.ACCENT,"\u0308":e.ACCENT,"\u030C":e.ACCENT,"\u0332":e.WIDEACCENT,"\u0338":e.REL4,"\u2015":[0,0,c.ORD,{stretchy:true}],"\u2017":[0,0,c.ORD,{stretchy:true}],"\u2020":e.BIN3,"\u2021":e.BIN3,"\u20D7":e.ACCENT,"\u2118":e.ORD,"\u2205":e.ORD,"\u221E":e.ORD,"\u2305":e.BIN3,"\u2306":e.BIN3,"\u2322":e.REL4,"\u2323":e.REL4,"\u2329":e.OPEN,"\u232A":e.CLOSE,"\u23AA":e.ORD,"\u23AF":[0,0,c.ORD,{stretchy:true}],"\u23B0":e.OPEN,"\u23B1":e.CLOSE,"\u25EF":e.BIN3,"\u2660":e.ORD,"\u2661":e.ORD,"\u2662":e.ORD,"\u2663":e.ORD,"\u27EE":e.OPEN,"\u27EF":e.CLOSE,"\u27FC":e.REL4,"\u3008":e.OPEN,"\u3009":e.CLOSE,"\uFE37":e.WIDEACCENT,"\uFE38":e.WIDEACCENT}}},{OPTYPES:e})})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); + +MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="1.1.1";var a=MathJax.ElementJax.mml;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.MathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},MathMLattributes:function(){var j=[],g=this.defaults;var c=this.copyAttributes,l=this.skipAttributes;if(this.type==="math"){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.quoteHTML(k)+'"')}this[d]=k}}}for(var h=0,f=c.length;h126){e[f]="&#x"+h.toString(16).toUpperCase()+";"}else{var g={"&":"&","<":"<",">":">",'"':"""}[e[f]];if(g){e[f]=g}}}return e.join("")}});a.msubsup.Augment({toMathML:function(h){var e=this.type;if(this.data[this.sup]==null){e="msub"}if(this.data[this.sub]==null){e="msup"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(c){return c+"\n"+this.data[0].toMathML(c+" ")+"\n"+c+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.quoteHTML(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); + +(function(b,c){var a;b.Parse=MathJax.Object.Subclass({Init:function(d){this.Parse(d)},Parse:function(f){var g;if(typeof f!=="string"){g=f.parentNode}else{if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}f=f.replace(/^\s*(?:\/\/)?\s*$/,"$2");f=f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity);g=b.ParseXML(f);if(g==null){b.Error("Error parsing MathML")}}var e=g.getElementsByTagName("parsererror")[0];if(e){b.Error("Error parsing MathML: "+e.textContent.replace(/This page.*?errors:|XML Parsing Error: |Below is a rendering of the page.*/g,""))}if(g.childNodes.length!==1){b.Error("MathML must be formed by a single element")}if(g.firstChild.nodeName.toLowerCase()==="html"){var d=g.getElementsByTagName("h1")[0];if(d&&d.textContent==="XML parsing error"&&d.nextSibling){b.Error("Error parsing MathML: "+String(d.nextSibling.nodeValue).replace(/fatal parsing error: /,""))}}if(g.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")!=="math"){b.Error("MathML must be formed by a element, not <"+g.firstChild.nodeName+">")}this.mml=this.MakeMML(g.firstChild)},MakeMML:function(h){var l=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");if(!(a[l]&&a[l].isa&&a[l].isa(a.mbase))){return a.merror("Unknown node type: "+l)}var d=a[l](),k,j,e,n;for(k=0,j=h.attributes.length;k").replace(/&/g,"&")}}g=this.prefilterMath(g,d)}try{e=b.Parse(g).mml}catch(f){if(!f.mathmlError){throw f}e=this.formatError(f,g,d)}return a(e)},prefilterMath:function(e,d){return e},prefilterMathML:function(d){return d},formatError:function(f,e,d){return a.merror(f.message.replace(/\n.*/,""))},Error:function(d){throw MathJax.Hub.Insert(Error(d),{mathmlError:true})},parseDOM:function(d){return this.parser.parseFromString(d,"text/xml")},parseMS:function(d){return(this.parser.loadXML(d)?this.parser:null)},parseDIV:function(d){this.div.innerHTML=d.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(d){return null},createParser:function(){if(window.DOMParser){this.parser=new DOMParser();return(this.parseDOM)}else{if(window.ActiveXObject){var e=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var f=0,d=e.length;f=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax.id==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/"/g,""")},createPreview:function(b,a){var c;if(this.config.preview==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterText(d)]}}else{if(this.config.preview instanceof Array){c=this.config.preview}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterText:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); + +(function(a,c,e,b,h){var i="1.1";var g=a.CombineConfig("MathZoom",{delay:400,styles:{"#MathJax_Zoom":{position:"absolute","background-color":"#F0F0F0",overflow:"auto",display:"block","z-index":301,padding:".5em",border:"1px solid black",margin:0,"font-family":"serif","font-size":"85%","font-weight":"normal","font-style":"normal","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","box-shadow":"5px 5px 15px #AAAAAA","-webkit-box-shadow":"5px 5px 15px #AAAAAA","-moz-box-shadow":"5px 5px 15px #AAAAAA","-khtml-box-shadow":"5px 5px 15px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},"#MathJax_ZoomOverlay":{position:"absolute",left:0,top:0,"z-index":300,display:"inline-block",width:"100%",height:"100%",border:0,padding:0,margin:0,"background-color":"white",opacity:0,filter:"alpha(opacity=0)"}}});var d=function(j){if(!j){j=window.event}if(j){if(j.preventDefault){j.preventDefault()}if(j.stopPropagation){j.stopPropagation()}j.cancelBubble=true;j.returnValue=false}return false};var f=MathJax.Extension.MathZoom={version:i,settings:a.config.menuSettings,HandleEvent:function(l,j,k){if(!l){l=window.event}if(f.settings.CTRL&&!l.ctrlKey){return true}if(f.settings.ALT&&!l.altKey){return true}if(f.settings.CMD&&!l.metaKey){return true}if(f.settings.Shift&&!l.shiftKey){return true}return f[j](l,k)},Click:function(k,j){if(this.settings.zoom==="Click"){return this.Zoom(j,k)}},DblClick:function(k,j){if(this.settings.zoom==="Double-Click"){return this.Zoom(j,k)}},Mouseover:function(k,j){if(this.settings.zoom==="Hover"){f.oldMouseOver=j.onmouseover;j.onmouseover=null;j.onmousemove=this.Mousemove;j.onmouseout=this.Mouseout;return f.Timer(k,j)}},Mouseout:function(j){this.onmouseover=f.oldMouseOver;delete f.oldMouseOver;this.onmousemove=this.onmouseout=null;f.ClearTimer();return d(j)},Mousemove:function(j){return f.Timer(j||window.event,this)},Timer:function(k,j){this.ClearTimer();this.timer=setTimeout(MathJax.Callback(["Zoom",this,j,{}]),g.delay);return d(k)},ClearTimer:function(){if(this.timer){clearTimeout(this.timer);delete this.timer}},Zoom:function(s,l){this.ClearTimer();this.Remove();var v=s.parentNode;if(v.className==="MathJax_MathContainer"){v=v.parentNode}if(v.parentNode.className==="MathJax_MathContainer"){v=v.parentNode.parentNode}var q=(String(v.className).match(/^MathJax_(MathML|Display)$/)?v:s).nextSibling;var m=a.getJaxFor(q),r=m.root;var o=(b&&m.outputJax.isa(b.constructor)?"HTMLCSS":(h&&m.outputJax.isa(h.constructor)?"MathML":null));if(!o){return}var j=Math.floor(0.85*document.body.clientWidth),p=Math.floor(0.85*document.body.clientHeight);var k=c.Element("span",{style:{position:"relative",display:"inline-block",height:0,width:0},id:"MathJax_ZoomFrame"},[["span",{id:"MathJax_ZoomOverlay",onmousedown:this.Remove}],["span",{id:"MathJax_Zoom",onclick:this.Remove,style:{visibility:"hidden",fontSize:this.settings.zscale,"max-width":j+"px","max-height":p+"px"}},[["span"]]]]);var x=k.lastChild,u=x.firstChild,n=k.firstChild;s.parentNode.insertBefore(k,s);if(this.msieZIndexBug){var t=c.Element("img",{src:"about:blank",id:"MathJax_ZoomTracker",style:{width:0,height:0,position:"relative"}});document.body.appendChild(k);k.style.position="absolute";k.style.zIndex=g.styles["#MathJax_ZoomOverlay"]["z-index"];k=t}var w=(this["Zoom"+o])(r,u,s);if(this.msiePositionBug){if(this.msieIE8Bug){u.style.position="absolute";x.style.height=u.offsetHeight;u.style.position="";if(x.offsetHeight<=p&&x.offsetWidth<=j){x.style.overflow="visible"}}if(this.msieWidthBug){x.style.width=Math.min(j,w.w)}else{if(w.w>j){x.style.width=j}}if(x.offsetHeight>p){x.style.Height=p+"px"}if(s.nextSibling){s.parentNode.insertBefore(k,s.nextSibling)}else{v.appendChild(k)}}else{if(this.operaPositionBug){x.style.width=Math.min(j,u.offsetWidth)+"px"}}this.Position(x,w,(o==="MathML"&&v.nodeName.toLowerCase()==="div"));x.style.visibility="";if(this.settings.zoom==="Hover"){n.onmouseover=this.Remove}if(window.addEventListener){addEventListener("resize",this.Resize,false)}else{if(window.attachEvent){attachEvent("onresize",this.Resize)}else{this.onresize=window.onresize;window.onresize=this.Resize}}return d(l)},ZoomHTMLCSS:function(o,q,p){q.className="MathJax";b.idPostfix="-zoom";b.getScales(q,q);o.toHTML(q,q);var r=o.HTMLspanElement().bbox;b.idPostfix="";if(r.width&&r.width!=="100%"){var j=Math.floor(0.85*document.body.clientWidth);q.style.width=j+"px";q.style.display="inline-block";var k=(o.id||"MathJax-Span-"+o.spanID)+"-zoom";var l=document.getElementById(k).firstChild;while(l&&l.style.width!==r.width){l=l.nextSibling}if(l){l.style.width="100%"}}q.appendChild(this.topImg);var n=this.topImg.offsetTop;q.removeChild(this.topImg);var m=(this.msieWidthBug?b.getW(p)*b.em:p.offsetWidth);return{w:r.w*b.em,Y:-n,W:m}},ZoomMathML:function(k,l,m){k.toNativeMML(l,l);var n;l.appendChild(this.topImg);n=this.topImg.offsetTop;l.removeChild(this.topImg);var j=(this.ffMMLwidthBug?m.parentNode:m).offsetWidth;return{w:l.offsetWidth,Y:-n,W:j}},Position:function(p,n,r){var k=this.Resize(),m=k.x,l=k.y,j=n.W;if(this.msiePositionBug){j=-j}if(r&&this.ffMMLcenterBug){j=0}var q=-Math.floor((p.offsetWidth-j)/2),o=n.Y;p.style.left=Math.max(q,20-m)+"px";p.style.top=Math.max(o,20-l)+"px"},Resize:function(l){if(f.onresize){f.onresize(l)}var j=0,o=0,n=document.getElementById("MathJax_ZoomFrame"),k=document.getElementById("MathJax_ZoomOverlay");var m=(f.msieZIndexBug?document.getElementById("MathJax_ZoomTracker"):n);if(f.operaPositionBug){n.style.border="1px solid"}if(m.offsetParent){do{j+=m.offsetLeft;o+=m.offsetTop}while(m=m.offsetParent)}if(f.operaPositionBug){n.style.border=""}if(f.msieZIndexBug){n.style.left=j+"px";n.style.top=o+"px"}k.style.left=(-j)+"px";k.style.top=(-o)+"px";if(f.msiePositionBug){setTimeout(f.SetWH,0)}else{f.SetWH()}return{x:j,y:o}},SetWH:function(){var j=document.getElementById("MathJax_ZoomOverlay");j.style.width=j.style.height="1px";j.style.width=document.body.scrollWidth+"px";j.style.height=document.body.scrollHeight+"px"},Remove:function(k){var l=document.getElementById("MathJax_ZoomFrame");if(l){l.parentNode.removeChild(l);l=document.getElementById("MathJax_ZoomTracker");if(l){l.parentNode.removeChild(l)}if(f.operaRefreshBug){var j=c.addElement(document.body,"div",{style:{position:"fixed",left:0,top:0,width:"100%",height:"100%",backgroundColor:"white",opacity:0},id:"MathJax_OperaDiv"});document.body.removeChild(j)}if(window.removeEventListener){removeEventListener("resize",f.Resize,false)}else{if(window.detachEvent){detachEvent("onresize",f.Resize)}else{window.onresize=f.onresize;delete f.onresize}}}return d(k)}};a.Register.StartupHook("HTML-CSS Jax Ready",function(){b=MathJax.OutputJax["HTML-CSS"];b.Augment({HandleEvent:f.HandleEvent})});a.Register.StartupHook("NativeMML Jax Ready",function(){h=MathJax.OutputJax.NativeMML;h.Augment({HandleEvent:f.HandleEvent,MSIEmouseup:function(l,k,j){if(this.trapUp){delete this.trapUp;return true}if(this.MSIEzoomKeys(l)){return true}return false},MSIEclick:function(l,k,j){if(this.trapClick){delete this.trapClick;return true}if(!this.MSIEzoomKeys(l)){return false}if(!this.settings.zoom.match(/Click/)){return false}return(f.Click(l,k)===false)},MSIEdblclick:function(l,k,j){if(!this.MSIEzoomKeys(l)){return false}return(f.DblClick(l,k)===false)},MSIEmouseover:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEmouseout:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.ClearTimer();return true},MSIEmousemove:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEzoomKeys:function(j){if(this.settings.CTRL&&!j.ctrlKey){return false}if(this.settings.CMD&&!j.metaKey){return false}if(this.settings.ALT&&!j.altKey){return false}if(this.settings.Shift&&!j.shiftKey){return false}return true}})});a.Browser.Select({MSIE:function(j){var k=(document.compatMode==="BackCompat");var l=j.versionAtLeast("8.0")&&document.documentMode>7;f.msiePositionBug=true;f.msieWidthBug=!k;f.msieIE8Bug=l;f.msieZIndexBug=!l;f.msieInlineBlockAlignBug=(!l||k);if(document.documentMode>=9){delete g.styles["#MathJax_Zoom"].filter}},Opera:function(j){f.operaPositionBug=true;f.operaRefreshBug=true},Firefox:function(j){f.ffMMLwidthBug=true;f.ffMMLcenterBug=true}});f.topImg=(f.msieInlineBlockAlignBug?c.Element("img",{style:{width:0,height:0},src:"about:blank"}):c.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(f.operaPositionBug){f.topImg.style.border="1px solid"}MathJax.Callback.Queue(["Styles",e,g.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",e,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); + +(function(b,c,f){var k="1.1.4";MathJax.Extension.MathMenu={version:k};var i=b.Browser.isPC,g=b.Browser.isMSIE;var e=(i?null:"5px");var j=b.CombineConfig("MathMenu",{delay:150,helpURL:"http://www.mathjax.org/help/user/",showRenderer:true,showFontMenu:false,showContext:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:100,height:50},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(i?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":e,"-webkit-border-radius":e,"-moz-border-radius":e,"-khtml-border-radius":e,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(i?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuTitle":{"background-color":"#CCCCCC",margin:(i?"-1px -1px 1px -1px":"-5px 0 0 0"),"text-align":"center","font-style":"italic","font-size":"80%",color:"#444444",padding:"2px 0",overflow:"hidden"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(i?"1em":".7em")},".MathJax_MenuLabel":{padding:(i?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(i?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(i?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(i?"Highlight":"#606872"),color:(i?"HighlightText":"white")}}});var d=function(l){if(!l){l=window.event}if(l){if(l.preventDefault){l.preventDefault()}if(l.stopPropagation){l.stopPropagation()}l.cancelBubble=true;l.returnValue=false}return false};var a=MathJax.Menu=MathJax.Object.Subclass({version:k,items:[],posted:false,title:null,margin:5,Init:function(l){this.items=[].slice.call(arguments,0)},With:function(l){if(l){b.Insert(this,l)}return this},Post:function(n,v){if(!n){n=window.event}var t=(!this.title?null:[["div",{className:"MathJax_MenuTitle"},[this.title]]]);var l=document.getElementById("MathJax_MenuFrame");if(!l){l=a.Background(this)}var o=c.addElement(l,"div",{onmouseup:a.Mouseup,ondblclick:this.False,ondragstart:this.False,onselectstart:this.False,oncontextmenu:this.False,menuItem:this,className:"MathJax_Menu"},t);for(var q=0,p=this.items.length;qdocument.body.offsetWidth-this.margin){u=document.body.offsetWidth-o.offsetWidth-this.margin}a.skipUp=true}else{var r="left",w=v.offsetWidth;u=v.offsetWidth-2;s=0;while(v&&v!==l){u+=v.offsetLeft;s+=v.offsetTop;v=v.parentNode}if(u+o.offsetWidth>document.body.offsetWidth-this.margin){r="right";u=Math.max(this.margin,u-w-o.offsetWidth+6)}if(!i){o.style["borderRadiusTop"+r]=0;o.style["WebkitBorderRadiusTop"+r]=0;o.style["MozBorderRadiusTop"+r]=0;o.style["KhtmlBorderRadiusTop"+r]=0}}o.style.left=u+"px";o.style.top=s+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return this.False(n)},Remove:function(l,m){var n=document.getElementById("MathJax_MenuFrame");if(n){n.parentNode.removeChild(n);if(this.msieBackgroundBug){detachEvent("onresize",a.Resize)}}},Mouseup:function(l,m){if(a.skipUp){delete a.skipUp}else{this.Remove(l,m)}},False:d},{config:j,div:null,Remove:function(l){a.Event(l,this,"Remove")},Mouseover:function(l){a.Event(l,this,"Mouseover")},Mouseout:function(l){a.Event(l,this,"Mouseout")},Mousedown:function(l){a.Event(l,this,"Mousedown")},Mouseup:function(l){a.Event(l,this,"Mouseup")},Mousemove:function(l){a.Event(l,this,"Mousemove")},Event:function(n,o,l){if(!n){n=window.event}var m=o.menuItem;if(m&&m[l]){return m[l](n,o)}return null},BGSTYLE:{position:"absolute",left:0,top:0,"z-index":200,width:"100%",height:"100%",border:0,padding:0,margin:0},Background:function(m){var n=c.addElement(document.body,"div",{style:this.BGSTYLE,id:"MathJax_MenuFrame"},[["div",{style:this.BGSTYLE,menuItem:m,onmousedown:this.Remove}]]);var l=n.firstChild;if(m.msieBackgroundBug){l.style.backgroundColor="white";l.style.filter="alpha(opacity=0)";n.width=n.height=0;this.Resize();attachEvent("onresize",this.Resize)}else{l.style.position="fixed"}return n},Resize:function(){setTimeout(a.SetWH,0)},SetWH:function(){var l=document.getElementById("MathJax_MenuFrame");if(l){l=l.firstChild;l.style.width=l.style.height="1px";l.style.width=document.body.scrollWidth+"px";l.style.height=document.body.scrollHeight+"px"}},saveCookie:function(){c.Cookie.Set("menu",this.cookie)},getCookie:function(){this.cookie=c.Cookie.Get("menu")}});var h=a.ITEM=MathJax.Object.Subclass({name:"",Create:function(m){if(!this.hidden){var l={onmouseover:a.Mouseover,onmouseout:a.Mouseout,onmouseup:a.Mouseup,onmousedown:this.False,ondragstart:this.False,onselectstart:this.False,onselectend:this.False,className:"MathJax_MenuItem",menuItem:this};if(this.disabled){l.className+=" MathJax_MenuDisabled"}c.addElement(m,"div",l,this.Label(l,m))}},Mouseover:function(q,s){if(!this.disabled){this.Activate(s)}if(!this.menu||!this.menu.posted){var r=document.getElementById("MathJax_MenuFrame").childNodes,n=s.parentNode.childNodes;for(var o=0,l=n.length;o=0&&s.parentNode.menuItem!==r[l].menuItem){r[l].menuItem.posted=false;r[l].parentNode.removeChild(r[l]);l--}if(this.Timer){this.Timer(q,s)}}},Mouseout:function(l,m){if(!this.menu||!this.menu.posted){this.Deactivate(m)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(l,m){return this.Remove(l,m)},Remove:function(l,m){m=m.parentNode.menuItem;return m.Remove(l,m)},Activate:function(l){this.Deactivate(l);l.className+=" MathJax_MenuActive"},Deactivate:function(l){l.className=l.className.replace(/ MathJax_MenuActive/,"")},With:function(l){if(l){b.Insert(this,l)}return this},False:d});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(l,n,m){this.name=l;this.action=n;this.With(m)},Label:function(l,m){return[this.name]},Mouseup:function(l,m){if(!this.disabled){this.Remove(l,m);this.action.call(this,l)}return this.False(l)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(i&&!b.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(l,n){this.name=l;var m=1;if(!(n instanceof a.ITEM)){this.With(n),m++}this.menu=a.apply(a,[].slice.call(arguments,m))},Label:function(l,m){l.onmousemove=a.Mousemove;this.menu.posted=false;return[this.name+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(l,m){if(this.timer){clearTimeout(this.timer)}l={clientX:l.clientX,clientY:l.clientY};this.timer=setTimeout(MathJax.Callback(["Mouseup",this,l,m]),j.delay)},Mouseup:function(n,p){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(n,p)}else{var o=document.getElementById("MathJax_MenuFrame").childNodes,l=o.length-1;while(l>=0){var q=o[l];q.menuItem.posted=false;q.parentNode.removeChild(q);if(q.menuItem===this.menu){break}l--}}}return this.False(n)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(i?"\u25CF":"\u2713"),Init:function(m,l,n){this.name=m;this.variable=l;this.With(n);if(this.value==null){this.value=this.name}},Label:function(m,n){var l={className:"MathJax_MenuRadioCheck"};if(j.settings[this.variable]!==this.value){l={style:{display:"none"}}}return[["span",l,[this.marker]]," "+this.name]},Mouseup:function(p,q){if(!this.disabled){var r=q.parentNode.childNodes;for(var n=0,l=r.length;n/g,">");n.document.open();n.document.write("MathJax Equation Source");n.document.write("
"+r+"
");n.document.write("");n.document.close();var p=n.document.body.firstChild;var o=(n.outerHeight-n.innerHeight)||30,m=(n.outerWidth-n.innerWidth)||30;m=Math.min(Math.floor(0.5*screen.width),p.offsetWidth+m+25);o=Math.min(Math.floor(0.5*screen.height),p.offsetHeight+o+25);n.resizeTo(m,o);if(q&&q.screenX!=null){var l=Math.max(0,Math.min(q.screenX-Math.floor(m/2),screen.width-m-20)),s=Math.max(0,Math.min(q.screenY-Math.floor(o/2),screen.height-o-20));n.moveTo(l,s)}delete a.ShowSource.w};a.Scale=function(){var m=MathJax.OutputJax["HTML-CSS"],l=MathJax.OutputJax.NativeMML;var o=(m?m.config.scale:l.config.scale);var n=prompt("Scale all mathematics (compared to surrounding text) by",o+"%");if(n){if(n.match(/^\s*\d+\s*%?\s*$/)){n=parseInt(n);if(n){if(n!==o){if(m){m.config.scale=n}if(l){l.config.scale=n}a.cookie.scale=n;a.saveCookie();b.Reprocess()}}else{alert("The scale should not be zero")}}else{alert("The scale should be a perentage (e.g., 120%)")}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){f.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var l=b.config.outputJax["jax/mml"];if(l[0]!==j.settings.renderer){MathJax.Callback.Queue(["Require",f,"[MathJax]/jax/output/"+j.settings.renderer+"/config.js"],["Post",b.Startup.signal,j.settings.renderer+" output selected"],[function(){var p=MathJax.OutputJax[j.settings.renderer];for(var o=0,n=l.length;o7;a.Augment({margin:20,msieBackgroundBug:(m||!n),msieAboutBug:m});if(document.documentMode>=9){delete j.styles["#MathJax_About"].filter;delete j.styles[".MathJax_Menu"].filter}}});b.Register.StartupHook("End Config",function(){j.settings=b.config.menuSettings;if(!j.settings.format){j.settings.format=(MathJax.InputJax.TeX?"Original":"MathML")}if(typeof(j.settings.showRenderer)!=="undefined"){j.showRenderer=j.settings.showRenderer}if(typeof(j.settings.showFontMenu)!=="undefined"){j.showFontMenu=j.settings.showFontMenu}if(typeof(j.settings.showContext)!=="undefined"){j.showContext=j.settings.showContext}a.getCookie();a.menu=a(h.COMMAND("Show Source",a.ShowSource),h.SUBMENU("Format",h.RADIO("MathML","format"),h.RADIO("Original","format",{value:"Original"})),h.RULE(),h.SUBMENU("Settings",h.SUBMENU("Zoom Trigger",h.RADIO("Hover","zoom",{action:a.Zoom}),h.RADIO("Click","zoom",{action:a.Zoom}),h.RADIO("Double-Click","zoom",{action:a.Zoom}),h.RADIO("No Zoom","zoom",{value:"None"}),h.RULE(),h.LABEL("Trigger Requires:"),h.CHECKBOX((b.Browser.isMac?"Option":"Alt"),"ALT"),h.CHECKBOX("Command","CMD",{hidden:!b.Browser.isMac}),h.CHECKBOX("Control","CTRL",{hidden:b.Browser.isMac}),h.CHECKBOX("Shift","Shift")),h.SUBMENU("Zoom Factor",h.RADIO("125%","zscale"),h.RADIO("133%","zscale"),h.RADIO("150%","zscale"),h.RADIO("175%","zscale"),h.RADIO("200%","zscale"),h.RADIO("250%","zscale"),h.RADIO("300%","zscale"),h.RADIO("400%","zscale")),h.RULE(),h.SUBMENU("Math Renderer",{hidden:!j.showRenderer},h.RADIO("HTML-CSS","renderer",{action:a.Renderer}),h.RADIO("MathML","renderer",{action:a.Renderer,value:"NativeMML"})),h.SUBMENU("Font Preference",{hidden:!j.showFontMenu},h.LABEL("For HTML-CSS:"),h.RADIO("Auto","font",{action:a.Font}),h.RULE(),h.RADIO("TeX (local)","font",{action:a.Font}),h.RADIO("TeX (web)","font",{action:a.Font}),h.RADIO("TeX (image)","font",{action:a.Font}),h.RULE(),h.RADIO("STIX (local)","font",{action:a.Font})),h.SUBMENU("Contextual Menu",{hidden:!j.showContext},h.RADIO("MathJax","context"),h.RADIO("Browser","context")),h.COMMAND("Scale All Math ...",a.Scale)),h.RULE(),h.COMMAND("About MathJax",a.About),h.COMMAND("MathJax Help",a.Help))});a.showRenderer=function(l){a.cookie.showRenderer=j.showRenderer=l;a.saveCookie();a.menu.items[3].menu.item[3].hidden=!l};a.showFontMenu=function(l){a.cookie.showFontMenu=j.showFontMenu=l;a.saveCookie();a.menu.items[3].menu.items[4].hidden=!l};a.showContext=function(l){a.cookie.showContext=j.showContext=l;a.saveCookie();a.menu.items[3].menu.items[5].hidden=!l};MathJax.Callback.Queue(["Styles",f,j.styles],["Post",b.Startup.signal,"MathMenu Ready"],["loadComplete",f,"[MathJax]/extensions/MathMenu.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax); + +MathJax.ElementJax.mml=MathJax.ElementJax({mimeType:"jax/mml"},{id:"mml",version:"1.1.1",directory:MathJax.ElementJax.directory+"/mml",extensionDir:MathJax.ElementJax.extensionDir+"/mml",optableDir:MathJax.ElementJax.directory+"/mml/optable"});MathJax.ElementJax.mml.Augment({Init:function(){if(arguments.length===1&&arguments[0].type==="math"){this.root=arguments[0]}else{this.root=MathJax.ElementJax.mml.math.apply(this,arguments)}if(this.root.mode){if(!this.root.display&&this.root.mode==="display"){this.root.display="block"}delete this.root.mode}}},{INHERIT:"_inherit_",AUTO:"_auto_",SIZE:{INFINITY:"infinity",SMALL:"small",NORMAL:"normal",BIG:"big"},COLOR:{TRANSPARENT:"transparent"},VARIANT:{NORMAL:"normal",BOLD:"bold",ITALIC:"italic",BOLDITALIC:"bold-italic",DOUBLESTRUCK:"double-struck",FRAKTUR:"fraktur",BOLDFRAKTUR:"bold-fraktur",SCRIPT:"script",BOLDSCRIPT:"bold-script",SANSSERIF:"sans-serif",BOLDSANSSERIF:"bold-sans-serif",SANSSERIFITALIC:"sans-serif-italic",SANSSERIFBOLDITALIC:"sans-serif-bold-italic",MONOSPACE:"monospace",INITIAL:"inital",TAILED:"tailed",LOOPED:"looped",STRETCHED:"stretched",CALIGRAPHIC:"-tex-caligraphic",OLDSTYLE:"-tex-oldstyle"},FORM:{PREFIX:"prefix",INFIX:"infix",POSTFIX:"postfix"},LINEBREAK:{AUTO:"auto",NEWLINE:"newline",NOBREAK:"nobreak",GOODBREAK:"goodbreak",BADBREAK:"badbreak"},LINEBREAKSTYLE:{BEFORE:"before",AFTER:"after",DUPLICATE:"duplicate",INFIXLINBREAKSTYLE:"infixlinebreakstyle"},INDENTALIGN:{LEFT:"left",CENTER:"center",RIGHT:"right",AUTO:"auto",ID:"id",INDENTALIGN:"indentalign"},INDENTSHIFT:{INDENTSHIFT:"indentshift"},LINETHICKNESS:{THIN:"thin",MEDIUM:"medium",THICK:"thick"},NOTATION:{LONGDIV:"longdiv",ACTUARIAL:"actuarial",RADICAL:"radical",BOX:"box",ROUNDEDBOX:"roundedbox",CIRCLE:"circle",LEFT:"left",RIGHT:"right",TOP:"top",BOTTOM:"bottom",UPDIAGONALSTRIKE:"updiagonalstrike",DOWNDIAGONALSTRIKE:"downdiagonalstrike",VERTICALSTRIKE:"verticalstrike",HORIZONTALSTRIKE:"horizontalstrike",MADRUWB:"madruwb"},ALIGN:{TOP:"top",BOTTOM:"bottom",CENTER:"center",BASELINE:"baseline",AXIS:"axis",LEFT:"left",RIGHT:"right"},LINES:{NONE:"none",SOLID:"solid",DASHED:"dashed"},SIDE:{LEFT:"left",RIGHT:"right",LEFTOVERLAP:"leftoverlap",RIGHTOVERLAP:"rightoverlap"},WIDTH:{AUTO:"auto",FIT:"fit"},ACTIONTYPE:{TOGGLE:"toggle",STATUSLINE:"statusline",TOOLTIP:"tooltip",INPUT:"input"},LENGTH:{VERYVERYTHINMATHSPACE:"veryverythinmathspace",VERYTHINMATHSPACE:"verythinmathspace",THINMATHSPACE:"thinmathspace",MEDIUMMATHSPACE:"mediummathspace",THICKMATHSPACE:"thickmathspace",VERYTHICKMATHSPACE:"verythickmathspace",VERYVERYTHICKMATHSPACE:"veryverythickmathspace",NEGATIVEVERYVERYTHINMATHSPACE:"negativeveryverythinmathspace",NEGATIVEVERYTHINMATHSPACE:"negativeverythinmathspace",NEGATIVETHINMATHSPACE:"negativethinmathspace",NEGATIVEMEDIUMMATHSPACE:"negativemediummathspace",NEGATIVETHICKMATHSPACE:"negativethickmathspace",NEGATIVEVERYTHICKMATHSPACE:"negativeverythickmathspace",NEGATIVEVERYVERYTHICKMATHSPACE:"negativeveryverythickmathspace"},OVERFLOW:{LINBREAK:"linebreak",SCROLL:"scroll",ELIDE:"elide",TRUNCATE:"truncate",SCALE:"scale"},UNIT:{EM:"em",EX:"ex",PX:"px",IN:"in",CM:"cm",MM:"mm",PT:"pt",PC:"pc"},TEXCLASS:{ORD:0,OP:1,BIN:2,REL:3,OPEN:4,CLOSE:5,PUNCT:6,INNER:7,VCENTER:8,NONE:-1},PLANE1:String.fromCharCode(55349)});(function(a){var d=false;var b=true;a.mbase=MathJax.Object.Subclass({type:"base",isToken:d,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT},noInherit:{},Init:function(){this.data=[];if(this.inferRow&&!(arguments.length===1&&arguments[0].inferred)){this.Append(a.mrow().With({inferred:b}))}this.Append.apply(this,arguments)},With:function(f){for(var g in f){if(f.hasOwnProperty(g)){this[g]=f[g]}}return this},Append:function(){if(this.inferRow&&this.data.length){this.data[0].Append.apply(this.data[0],arguments)}else{for(var g=0,f=arguments.length;g0&&this.Get("scriptlevel")>0&&h>=0){return""}return this.TEXSPACELENGTH[Math.abs(h)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(f){return""},isSpacelike:function(){return d},isEmbellished:function(){return d},Core:function(){return this},CoreMO:function(){return this},lineBreak:function(){if(this.isEmbellished()){return this.CoreMO().lineBreak()}else{return"none"}},array:function(){if(this.inferred){return this.data}else{return[this]}},toString:function(){return this.type+"("+this.data.join(",")+")"}},{childrenSpacelike:function(){for(var f=0;f=0;f--){if(this.data[0]&&!this.data[f].isSpacelike()){return this.data[f]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(h){for(var g=0,f=this.data.length;g0){f++}return f},adjustChild_texprimestyle:function(f){if(f==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:b,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(f){return b}});a.mroot=a.mbase.Subclass({type:"mroot",texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(f){if(f===1){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g===1){f+=2}return f},adjustChild_texprimestyle:function(f){if(f===0){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:b,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(h){var g=this.scriptlevel;if(g==null){g=this.Get("scriptlevel")}else{if(String(g).match(/^ *[-+]/)){delete this.scriptlevel;var f=this.Get("scriptlevel");this.scriptlevel=g;g=f+parseInt(g)}}return g},inheritFromMe:b,noInherit:{mpadded:{width:b,height:b,depth:b,lspace:b,voffset:b},mtable:{width:b,height:b,depth:b,align:b}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:b,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(j){this.getPrevClass(j);var g=this.getValues("open","close","separators");g.open=g.open.replace(/[ \t\n\r]/g,"");g.close=g.close.replace(/[ \t\n\r]/g,"");g.separators=g.separators.replace(/[ \t\n\r]/g,"");if(g.open!==""){this.SetData("open",a.mo(g.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));j=this.data.open.setTeXclass(j)}if(g.separators!==""){while(g.separators.length0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g>0){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.sub){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(f){if(f%2===1){return b}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(f){if(f==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(f):a.TEXCLASS.ORD)}if(f==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(f==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return d},adjustChild_displaystyle:function(f){if(f>0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g==this.under&&!this.Get("accentunder")){f++}if(g==this.over&&!this.Get("accent")){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.base&&this.data[this.over]){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:b,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:d,equalcolumns:d,displaystyle:d,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:b,noInherit:{mtable:{align:b,rowalign:b,columnalign:b,groupalign:b,alignmentscope:b,columnwidth:b,width:b,rowspacing:b,columnspacing:b,rowlines:b,columnlines:b,frame:b,framespacing:b,equalrows:b,equalcolumns:b,side:b,minlabelspacing:b,texClass:b,useHeight:1}},Append:function(){for(var g=0,f=arguments.length;g":e.REL,"?":[1,1,c.CLOSE],"\\":e.ORD,_:e.ORD11,"|":[2,2,c.ORD,{fence:true,stretchy:true,symmetric:true}],"#":e.ORD,"$":e.ORD,"\u002E":[0,3,c.PUNCT,{separator:true}],"\u02B9":e.ORD,"\u02C9":e.ACCENT,"\u02CA":e.ACCENT,"\u02CB":e.ACCENT,"\u0300":e.ACCENT,"\u0301":e.ACCENT,"\u0303":e.WIDEACCENT,"\u0304":e.ACCENT,"\u0306":e.ACCENT,"\u0307":e.ACCENT,"\u0308":e.ACCENT,"\u030C":e.ACCENT,"\u0332":e.WIDEACCENT,"\u0338":e.REL4,"\u2015":[0,0,c.ORD,{stretchy:true}],"\u2017":[0,0,c.ORD,{stretchy:true}],"\u2020":e.BIN3,"\u2021":e.BIN3,"\u20D7":e.ACCENT,"\u2118":e.ORD,"\u2205":e.ORD,"\u221E":e.ORD,"\u2305":e.BIN3,"\u2306":e.BIN3,"\u2322":e.REL4,"\u2323":e.REL4,"\u2329":e.OPEN,"\u232A":e.CLOSE,"\u23AA":e.ORD,"\u23AF":[0,0,c.ORD,{stretchy:true}],"\u23B0":e.OPEN,"\u23B1":e.CLOSE,"\u25EF":e.BIN3,"\u2660":e.ORD,"\u2661":e.ORD,"\u2662":e.ORD,"\u2663":e.ORD,"\u27EE":e.OPEN,"\u27EF":e.CLOSE,"\u27FC":e.REL4,"\u3008":e.OPEN,"\u3009":e.CLOSE,"\uFE37":e.WIDEACCENT,"\uFE38":e.WIDEACCENT}}},{OPTYPES:e})})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); + +MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="1.1.1";var a=MathJax.ElementJax.mml;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.MathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},MathMLattributes:function(){var j=[],g=this.defaults;var c=this.copyAttributes,l=this.skipAttributes;if(this.type==="math"){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.quoteHTML(k)+'"')}this[d]=k}}}for(var h=0,f=c.length;h126){e[f]="&#x"+h.toString(16).toUpperCase()+";"}else{var g={"&":"&","<":"<",">":">",'"':"""}[e[f]];if(g){e[f]=g}}}return e.join("")}});a.msubsup.Augment({toMathML:function(h){var e=this.type;if(this.data[this.sup]==null){e="msub"}if(this.data[this.sub]==null){e="msup"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(c){return c+"\n"+this.data[0].toMathML(c+" ")+"\n"+c+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.quoteHTML(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); + +(function(){var c="1.1";var a=MathJax.Hub.CombineConfig("TeX.noErrors",{multiLine:true,inlineDelimiters:["",""],style:{"font-family":"serif","font-size":"80%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var b="\u00A0";MathJax.Extension["TeX/noErrors"]={version:c,config:a};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){MathJax.InputJax.TeX.Augment({formatError:function(f,e,g,d){var i=a.inlineDelimiters;var h=(g||a.multiLine);if(!g){e=i[0]+e+i[1]}if(h){e=e.replace(/ /g,b)}else{e=e.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(e).With({isError:true,multiLine:h})}})});MathJax.Hub.Register.StartupHook("HTML-CSS Jax Config",function(){MathJax.Hub.Config({"HTML-CSS":{styles:{".MathJax .merror":MathJax.Hub.Insert({"font-style":null,"background-color":null,"vertical-align":(MathJax.Hub.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})})})();MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var a=MathJax.ElementJax.mml;var b=MathJax.OutputJax["HTML-CSS"];var c=a.math.prototype.toHTML;a.math.Augment({toHTML:function(d,e){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toHTML(d)}return c.call(this,d,e)}});a.merror.Augment({toHTML:function(j){if(!this.isError){return a.mbase.prototype.toHTML.call(this,j)}j=this.HTMLcreateSpan(j);if(this.multiLine){j.style.display="inline-block"}var l=this.data[0].data[0].data.join("").split(/\n/);for(var g=0,e=l.length;g1){var k=(n.h+n.d)/2,h=b.TeX.x_height/2;var f=b.config.styles[".MathJax .merror"]["font-size"];if(f&&f.match(/%/)){h*=parseInt(f)/100}j.parentNode.style.verticalAlign=b.Em(n.d+(h-k));n.h=h+k;n.d=k-h}j.bbox={h:n.h,d:n.d,w:d,lw:0,rw:d};return j}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Hub.Register.StartupHook("NativeMML Jax Ready",function(){var b=MathJax.ElementJax.mml;var a=MathJax.Extension["TeX/noErrors"].config;var c=b.math.prototype.toNativeMML;b.math.Augment({toNativeMML:function(d){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toNativeMML(d)}return c.call(this,d)}});b.merror.Augment({toNativeMML:function(g){if(!this.isError){return b.mbase.prototype.toNativeMML.call(this,g)}g=g.appendChild(document.createElement("span"));var h=this.data[0].data[0].data.join("").split(/\n/);for(var f=0,e=h.length;f1){g.style.verticalAlign="middle"}}for(var j in a.style){if(a.style.hasOwnProperty(j)){var d=j.replace(/-./g,function(i){return i.charAt(1).toUpperCase()});g.style[d]=a.style[j]}}return g}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); + +MathJax.Extension["TeX/noUndefined"]={version:"1.1",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(c){this.Push(a.mtext(c).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); + +(function(d){var c=true,f=false,i,h=String.fromCharCode(160);var e=MathJax.Object.Subclass({Init:function(k){this.global={};this.data=[b.start().With({global:this.global})];if(k){this.data[0].env=k}this.env=this.data[0].env},Push:function(){var l,k,n,o;for(l=0,k=arguments.length;l":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:i.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:i.TEXCLASS.ORD}],"\\|":["2225",{texClass:i.TEXCLASS.ORD}],"\\vert":["|",{texClass:i.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",c,0],textstyle:["SetStyle","T",f,0],scriptstyle:["SetStyle","S",f,1],scriptscriptstyle:["SetStyle","SS",f,2],rm:["SetFont",i.VARIANT.NORMAL],mit:["SetFont",i.VARIANT.ITALIC],oldstyle:["SetFont",i.VARIANT.OLDSTYLE],cal:["SetFont",i.VARIANT.CALIGRAPHIC],it:["SetFont",i.VARIANT.ITALIC],bf:["SetFont",i.VARIANT.BOLD],bbFont:["SetFont",i.VARIANT.DOUBLESTRUCK],scr:["SetFont",i.VARIANT.SCRIPT],frak:["SetFont",i.VARIANT.FRAKTUR],sf:["SetFont",i.VARIANT.SANSSERIF],tt:["SetFont",i.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedOp",0],arccos:["NamedOp",0],arctan:["NamedOp",0],arg:["NamedOp",0],cos:["NamedOp",0],cosh:["NamedOp",0],cot:["NamedOp",0],coth:["NamedOp",0],csc:["NamedOp",0],deg:["NamedOp",0],det:"NamedOp",dim:["NamedOp",0],exp:["NamedOp",0],gcd:"NamedOp",hom:["NamedOp",0],inf:"NamedOp",ker:["NamedOp",0],lg:["NamedOp",0],lim:"NamedOp",liminf:["NamedOp",null,"lim inf"],limsup:["NamedOp",null,"lim sup"],ln:["NamedOp",0],log:["NamedOp",0],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedOp",0],sin:["NamedOp",0],sinh:["NamedOp",0],sup:"NamedOp",tan:["NamedOp",0],tanh:["NamedOp",0],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","203E"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",i.LENGTH.THINMATHSPACE],":":["Spacer",i.LENGTH.THINMATHSPACE],">":["Spacer",i.LENGTH.MEDIUMMATHSPACE],";":["Spacer",i.LENGTH.THICKMATHSPACE],"!":["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",i.LENGTH.THINMATHSPACE],negthinspace:["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",i.TEXCLASS.ORD,0.85],Big:["MakeBig",i.TEXCLASS.ORD,1.15],bigg:["MakeBig",i.TEXCLASS.ORD,1.45],Bigg:["MakeBig",i.TEXCLASS.ORD,1.75],bigl:["MakeBig",i.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",i.TEXCLASS.OPEN,1.15],biggl:["MakeBig",i.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",i.TEXCLASS.OPEN,1.75],bigr:["MakeBig",i.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",i.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",i.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",i.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",i.TEXCLASS.REL,0.85],Bigm:["MakeBig",i.TEXCLASS.REL,1.15],biggm:["MakeBig",i.TEXCLASS.REL,1.45],Biggm:["MakeBig",i.TEXCLASS.REL,1.75],mathord:["TeXAtom",i.TEXCLASS.ORD],mathop:["TeXAtom",i.TEXCLASS.OP],mathopen:["TeXAtom",i.TEXCLASS.OPEN],mathclose:["TeXAtom",i.TEXCLASS.CLOSE],mathbin:["TeXAtom",i.TEXCLASS.BIN],mathrel:["TeXAtom",i.TEXCLASS.REL],mathpunct:["TeXAtom",i.TEXCLASS.PUNCT],mathinner:["TeXAtom",i.TEXCLASS.INNER],vcenter:["TeXAtom",i.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","02CA"],grave:["Accent","02CB"],ddot:["Accent","00A8"],tilde:["Accent","02DC"],bar:["Accent","02C9"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","02C6"],vec:["Accent","20D7"],dot:["Accent","02D9"],widetilde:["Accent","02DC",1],widehat:["Accent","02C6",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em"],eqalign:["Matrix",null,null,"right left",i.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"Cr",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\rm mod}"],pmod:["Macro","\\pod{{\\rm mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}{\\rm mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"],not:["Macro","\\mathrel{\\rlap{\\kern.5em\\notChar}}"]," ":["Macro","\\text{ }"],space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],def:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Macro","",1],nonumber:["Macro",""],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],require:"Require"},environment:{array:["Array"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],eqnarray:["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],"eqnarray*":["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],equation:[null,"Equation"],"equation*":[null,"Equation"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var k=this.config.Macros;for(var l in k){if(k.hasOwnProperty(l)){if(typeof(k[l])==="string"){g.macros[l]=["Macro",k[l]]}else{g.macros[l]=["Macro"].concat(k[l])}}}}};var a=MathJax.Object.Subclass({Init:function(l,m){this.string=l;this.i=0;this.macroCount=0;var k;if(m){k={};for(var n in m){if(m.hasOwnProperty(n)){k[n]=m[n]}}}this.stack=d.Stack(k);this.Parse();this.Push(b.stop())},Parse:function(){var k;while(this.id.config.MAXMACROS){d.Error("MathJax maximum macro substitution count exceeded; is there a recursive macro call?")}},Matrix:function(l,n,s,p,q,m,k){var r=this.GetNext();if(r===""){d.Error("Missing argument for "+l)}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var o=b.array().With({requireClose:c,arraydef:{rowspacing:(m||"4pt"),columnspacing:(q||"1em")}});if(n||s){o.open=n;o.close=s}if(k==="D"){o.arraydef.displaystyle=c}if(p!=null){o.arraydef.columnalign=p}this.Push(o)},Entry:function(k){this.Push(b.cell().With({isEntry:c,name:k}))},Cr:function(k){this.Push(b.cell().With({isCR:c,name:k}))},HLine:function(l,m){if(m==null){m="solid"}var n=this.stack.Top();if(n.type!=="array"||n.data.length){d.Error("Misplaced "+l)}if(n.table.length==0){n.arraydef.frame=m}else{var k=(n.arraydef.rowlines?n.arraydef.rowlines.split(/ /):[]);while(k.lengthd.config.MAXMACROS){d.Error("MathJax maximum substitution count exceeded; is there a recursive latex environment?")}var n=g.environment[m];if(!(n instanceof Array)){n=[n]}var k=b.begin().With({name:m,end:n[1],parse:this});if(n[0]&&this[n[0]]){k=this[n[0]].apply(this,[k].concat(n.slice(2)))}this.Push(k)},End:function(k){this.Push(b.end().With({name:this.GetArgument(k)}))},Equation:function(k,l){return l},ExtensionEnv:function(l,k){this.Extension(l.name,k,"environment")},Array:function(m,o,t,r,s,n,k,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){var l=(u.charAt(0)+u.charAt(u.length-1)).replace(/[^|:]/g,"");if(l!==""){q.arraydef.frame={"|":"solid",":":"dashed"}[l.charAt(0)];q.arraydef.framespacing=".5em .5ex"}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(k==="D"){q.arraydef.displaystyle=c}if(k==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=f}this.Push(m);return q},convertDelimiter:function(k){if(k){k=g.delimiter[k]}if(k==null){return null}if(k instanceof Array){k=k[0]}if(k.length===4){k=String.fromCharCode(parseInt(k,16))}return k},trimSpaces:function(k){if(typeof(k)!="string"){return k}return k.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var k=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(k){this.i+=k[1].length;return k[1]}else{this.i++;return" "}},GetArgument:function(l,m){switch(this.GetNext()){case"":if(!m){d.Error("Missing argument for "+l)}return null;case"}":if(!m){d.Error("Extra close brace or missing open brace")}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var k=++this.i,n=1;while(this.il.length){d.Error("Illegal macro parameter reference")}n=this.AddArgs(this.AddArgs(n,o),l[p-1]);o=""}}else{o+=p}}}return this.AddArgs(n,o)},AddArgs:function(l,k){if(k.match(/^[a-z]/i)&&l.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){l+=" "}if(l.length+k.length>d.config.MAXBUFFER){d.Error("MathJax internal buffer size exceeded; is there a recursive macro call?")}return l+k}});d.Augment({Stack:e,Parse:a,Definitions:g,Startup:j,config:{MAXMACROS:10000,MAXBUFFER:5*1024},Translate:function(k){var l,n=k.innerHTML.replace(/^\s+/,"").replace(/\s+$/,"");if(MathJax.Hub.Browser.isKonqueror){n=n.replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&")}var o=(k.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);n=d.prefilterMath(n,o,k);try{l=d.Parse(n).mml()}catch(m){if(!m.texError){throw m}l=this.formatError(m,n,o,k)}if(l.inferred){l=i.apply(MathJax.ElementJax,l.data)}else{l=i(l)}if(o){l.root.display="block"}return this.postfilterMath(l,o,k)},prefilterMath:function(l,m,k){return l.replace(/([_^]\s*\d)([0-9.,])/g,"$1 $2")},postfilterMath:function(l,m,k){this.combineRelations(l.root);return l},formatError:function(m,l,n,k){return i.merror(m.message.replace(/\n.*/,""))},Error:function(k){throw MathJax.Hub.Insert(Error(k),{texError:c})},Macro:function(k,l,m){g.macros[k]=["Macro"].concat([].slice.call(arguments,1))},combineRelations:function(l){for(var n=0,k=l.data.length;n0){align+="rl";spacing.push("0em 0em");j--}spacing=spacing.join(" ");if(g){return this.AMSarray(i,h,g,align,spacing)}return this.Array(i,null,null,align,spacing,".5em","D")},MultiIntegral:function(g,k){var j=this.GetNext();if(j==="\\"){var h=this.i;j=this.GetArgument(g);this.i=h;if(j==="\\limits"){if(g==="\\idotsint"){k="\\!\\!\\mathop{\\,\\,"+k+"}"}else{k="\\!\\!\\!\\mathop{\\,\\,\\,"+k+"}"}}}this.string=k+" "+this.string.slice(this.i);this.i=0},xArrow:function(i,m,k,g){var j={width:"+"+(k+g)+"mu",lspace:k+"mu"};var n=this.GetBrackets(i),o=this.ParseArg(i);var p=a.mo(a.chars(String.fromCharCode(m))).With({stretchy:true,texClass:a.TEXCLASS.REL});var h=a.munderover(p);h.SetData(h.over,a.mpadded(o).With(j).With({voffset:".15em"}));if(n){n=f.Parse(n,this.stack.env).mml();h.SetData(h.under,a.mpadded(n).With(j).With({voffset:"-.24em"}))}this.Push(h)},GetDelimiterArg:function(g){var h=this.trimSpaces(this.GetArgument(g));if(h==""){return null}if(!c.delimiter[h]){f.Error("Missing or unrecognized delimiter for "+g)}return this.convertDelimiter(h)}});d.multline=d.array.Subclass({type:"multline",EndEntry:function(){var g=a.mtd.apply(a,this.data);if(this.data.shove){g.columnalign=this.data.shove}this.row.push(g);this.data=[]},EndRow:function(){if(this.row.length!=1){f.Error("multline rows must have exactly one column")}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var h=this.table.length-1,j;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=a.ALIGN.LEFT}if(!this.table[h][0].columnalign){this.table[h][0].columnalign=a.ALIGN.RIGHT}var g=a.mtr;if(this.global.tag){this.table[0]=[this.global.tag].concat(this.table[0]);delete this.global.tag;g=a.mlabeledtr}this.table[0]=g.apply(a,this.table[0]);for(j=1,h=this.table.length;j]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}f=f.replace(/^\s*(?:\/\/)?\s*$/,"$2");f=f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity);g=b.ParseXML(f);if(g==null){b.Error("Error parsing MathML")}}var e=g.getElementsByTagName("parsererror")[0];if(e){b.Error("Error parsing MathML: "+e.textContent.replace(/This page.*?errors:|XML Parsing Error: |Below is a rendering of the page.*/g,""))}if(g.childNodes.length!==1){b.Error("MathML must be formed by a single element")}if(g.firstChild.nodeName.toLowerCase()==="html"){var d=g.getElementsByTagName("h1")[0];if(d&&d.textContent==="XML parsing error"&&d.nextSibling){b.Error("Error parsing MathML: "+String(d.nextSibling.nodeValue).replace(/fatal parsing error: /,""))}}if(g.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")!=="math"){b.Error("MathML must be formed by a element, not <"+g.firstChild.nodeName+">")}this.mml=this.MakeMML(g.firstChild)},MakeMML:function(h){var l=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");if(!(a[l]&&a[l].isa&&a[l].isa(a.mbase))){return a.merror("Unknown node type: "+l)}var d=a[l](),k,j,e,n;for(k=0,j=h.attributes.length;k").replace(/&/g,"&")}}g=this.prefilterMath(g,d)}try{e=b.Parse(g).mml}catch(f){if(!f.mathmlError){throw f}e=this.formatError(f,g,d)}return a(e)},prefilterMath:function(e,d){return e},prefilterMathML:function(d){return d},formatError:function(f,e,d){return a.merror(f.message.replace(/\n.*/,""))},Error:function(d){throw MathJax.Hub.Insert(Error(d),{mathmlError:true})},parseDOM:function(d){return this.parser.parseFromString(d,"text/xml")},parseMS:function(d){return(this.parser.loadXML(d)?this.parser:null)},parseDIV:function(d){this.div.innerHTML=d.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(d){return null},createParser:function(){if(window.DOMParser){this.parser=new DOMParser();return(this.parseDOM)}else{if(window.ActiveXObject){var e=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var f=0,d=e.length;f span":{"text-align":h+"!important"}})}},InitializeMML:function(){this.initialized=true;if(MathJax.Hub.Browser.isMSIE){try{var f=document.createElement("object");f.id="mathplayer";f.classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987";document.getElementsByTagName("head")[0].appendChild(f);document.namespaces.add("mjx","http://www.w3.org/1998/Math/MathML");document.namespaces.mjx.doImport("#mathplayer")}catch(g){alert("MathJax was not able to set up MathPlayer.\n\nIf MathPlayer is not installed, you need to install it first.\nOtherwise, your security settings may be preventing ActiveX \ncontrols from running. Use the Internet Options item under\nthe Tools menu and select the Security tab, then press the\nCustom Level button. Check that the settings for\n'Run ActiveX Controls', and 'Binary and script behaviors'\nare enabled.\n\nCurrently you will see error messages rather than\ntypeset mathematics.")}}},Translate:function(g){if(!g.parentNode){return}if(!this.initialized){this.InitializeMML()}var k=g.previousSibling;if(k&&String(k.className).match(/^MathJax(_MathML|_Display)?$/)){k.parentNode.removeChild(k)}var j=g.MathJax.elementJax.root;var i=(j.Get("display")==="block"?"div":"span");var h=document.createElement(i),f=h;h.className="MathJax_MathML";h.style.fontSize=this.config.scale+"%";if(c&&this.config.showMathMenuMSIE){f=MathJax.HTML.addElement(h,"span",{className:"MathJax_MathContainer",style:{display:"inline-block",position:"relative"}})}j.toNativeMML(f);g.parentNode.insertBefore(h,g);if(c){if(this.config.showMathMenuMSIE){this.MSIEoverlay(h)}}else{j=h.firstChild;j.oncontextmenu=this.ContextMenu;j.onmouseover=this.Mouseover;j.onmousedown=this.Mousedown;j.onclick=this.Click;j.ondblclick=this.DblClick}},Remove:function(f){var g=f.SourceElement();if(!g){return}g=g.previousSibling;if(!g){return}if(g.className.match(/MathJax_MathML/)){g.parentNode.removeChild(g)}},MMLnamespace:"http://www.w3.org/1998/Math/MathML",MSIEoverlay:function(m){var l=m.firstChild;m.style.position="absolute";var n=m.scrollHeight,h=m.offsetWidth;var j=MathJax.HTML.addElement(m,"img",{src:"about:blank",style:{width:0,height:n+"px"}});var f=m.scrollHeight-n;m.removeChild(j);m.style.position="";var k,i,g=(m.parentNode.nodeName.toLowerCase()==="div");if(g&&this.quirks){k=-n;i=Math.floor(-h/2)}else{k=f-n,i=-h}MathJax.HTML.addElement(m,"span",{style:{display:"inline-block",width:0,height:0,position:"relative"}},[["span",{style:{display:"inline-block",position:"absolute",left:i+"px",top:k+"px",width:l.offsetWidth+"px",height:n+"px",cursor:"pointer","background-color":"white",filter:"alpha(opacity=0)"},onmousedown:this.MSIEevent,oncontextmenu:this.MSIEevent,onclick:this.MSIEevent,onmousemove:this.MSIEevent,ondblclick:this.MSIEevent,onmouseover:this.MSIEevent,onmouseout:this.MSIEevent}]])},MSIEmath:function(f){var g=f.parentNode.previousSibling.firstChild;return(g.nodeName.toLowerCase()==="span"?g.firstChild:g)},MSIEevent:function(){var g=b.MSIEmath(this);var f=window.event;var h=b["MSIE"+f.type];if(h&&h.call(b,f,g,this)){return false}g.fireEvent("on"+f.type,f);return false},MSIEmousedown:function(h,g,f){if(h[this.MENUKEY]&&h.button===this.LEFTBUTTON&&this.settings.context!=="MathJax"){this.trapUp=this.trapClick=true;this.ContextMenu.call(f,h,true);return true}if(this.MSIEzoomKeys&&this.MSIEzoomKeys(h)){this.trapUp=true;return true}return false},MSIEcontextmenu:function(h,g,f){if(this.settings.context==="MathJax"){this.trapUp=this.trapClick=true;this.ContextMenu.call(f,h,true);return true}return false},ContextMenu:function(i,j){if(b.config.showMathMenu&&(b.settings.context==="MathJax"||j)){if(b.safariContextMenuBug){setTimeout("window.getSelection().empty()",0)}if(!i||b.msieEventBug){i=window.event}var g=MathJax.Menu;if(g){if(document.selection){setTimeout("document.selection.empty()",0)}var f=(c?this.parentNode.parentNode.nextSibling:this.parentNode.nextSibling);g.jax=e.getJaxFor(f);g.menu.items[1].menu.items[1].name=(g.jax.inputJax.id==="MathML"?"Original":g.jax.inputJax.id);delete b.trapClick;delete b.trapUp;return g.menu.Post(i)}else{if(!d.loadingMathMenu){d.loadingMathMenu=true;var h={pageX:i.pageX,pageY:i.pageY,clientX:i.clientX,clientY:i.clientY};MathJax.Callback.Queue(d.Require("[MathJax]/extensions/MathMenu.js"),function(){delete d.loadingMathMenu},[this,arguments.callee,h,j])}if(!i){i=window.event}if(i.preventDefault){i.preventDefault()}if(i.stopPropagation){i.stopPropagation()}i.cancelBubble=true;i.returnValue=false;return false}}},Mousedown:function(f){if(b.config.showMathMenu){if(!f){f=window.event}if(b.settings.context==="MathJax"){if(!b.noContextMenuBug||f.button!==2){return}}else{if(!f[b.MENUKEY]||f.button!==b.LEFTBUTTON){return}}return b.ContextMenu.call(this,f,true)}},Mouseover:function(f){b.HandleEvent(f,"Mouseover",this)},Click:function(f){b.HandleEvent(f,"Click",this)},DblClick:function(f){b.HandleEvent(f,"DblClick",this)},HandleEvent:function(h,f,g){},NAMEDSPACE:{negativeveryverythinmathspace:"-.0556em",negativeverythinmathspace:"-.1111em",negativethinmathspace:"-.1667em",negativemediummathspace:"-.2222em",negativethickmathspace:"-.2778em",negativeverythickmathspace:"-.3333em",negativeveryverythickmathspace:"-.3889em"}});e.Register.StartupHook("mml Jax Ready",function(){a=MathJax.ElementJax.mml;a.mbase.Augment({toNativeMML:function(k){var h=this.NativeMMLelement(this.type);this.NativeMMLattributes(h);for(var j=0,g=this.data.length;j=0){if(this.negativeSkipBug){var f=i.style.position;i.style.position="absolute";j=this.startMarker;if(i.firstChild){i.insertBefore(j,i.firstChild)}else{i.appendChild(j)}j=this.startMarker}i.appendChild(this.endMarker);g=this.endMarker.offsetLeft-j.offsetLeft;i.removeChild(this.endMarker);if(this.negativeSkipBug){i.removeChild(j);i.style.position=f}}return g/this.em},Measured:function(h,g){if(h.bbox.width==null&&h.bbox.w&&!h.bbox.isMultiline){var f=this.getW(h);h.bbox.rw+=f-h.bbox.w;h.bbox.w=f}if(!g){g=h.parentNode}if(!g.bbox){g.bbox=h.bbox}return h},Remeasured:function(g,f){f.bbox=this.Measured(g,f).bbox},Em:function(f){if(Math.abs(f)<0.0006){return"0em"}return f.toFixed(3).replace(/\.?0+$/,"")+"em"},Percent:function(f){return(100*f).toFixed(1).replace(/\.?0+$/,"")+"%"},length2percent:function(f){return this.Percent(this.length2em(f))},length2em:function(k,i){if(typeof(k)!=="string"){k=k.toString()}if(k===""){return""}if(k===a.SIZE.NORMAL){return 1}if(k===a.SIZE.BIG){return 2}if(k===a.SIZE.SMALL){return 0.71}if(k==="infinity"){return e.BIGDIMEN}var h=this.FONTDATA.TeX_factor;if(k.match(/mathspace$/)){return e.MATHSPACE[k]*h}var g=k.match(/^\s*([-+]?(?:\.\d+|\d+(?:\.\d*)?))?(pt|em|ex|mu|px|pc|in|mm|cm|%)?/);var f=parseFloat(g[1]||"1"),j=g[2];if(i==null){i=1}if(j==="em"){return f*h}if(j==="ex"){return f*e.TeX.x_height*h}if(j==="%"){return f/100*i}if(j==="px"){return f/e.em}if(j==="pt"){return f/10*h}if(j==="pc"){return f*1.2*h}if(j==="in"){return f*this.pxPerInch/e.em}if(j==="cm"){return f*this.pxPerInch/e.em/2.54}if(j==="mm"){return f*this.pxPerInch/e.em/25.4}if(j==="mu"){return f/18*h}return f*h*i},thickness2em:function(f){var g=e.TeX.rule_thickness;if(f===a.LINETHICKNESS.MEDIUM){return g}if(f===a.LINETHICKNESS.THIN){return 0.67*g}if(f===a.LINETHICKNESS.THICK){return 1.67*g}return this.length2em(f,g)},createStrut:function(i,g,j){var f=this.Element("span",{style:{display:"inline-block",overflow:"hidden",height:g+"px",width:"1px",marginRight:"-1px"}});if(j){i.insertBefore(f,i.firstChild)}else{i.appendChild(f)}return f},createBlank:function(g,f,h){var i=this.Element("span",{style:{display:"inline-block",overflow:"hidden",height:"1px",width:this.Em(f)}});if(h){g.insertBefore(i,g.firstChild)}else{g.appendChild(i)}return i},createShift:function(g,f,i){var h=this.Element("span",{style:{marginLeft:this.Em(f)}});if(i){g.insertBefore(h,g.firstChild)}else{g.appendChild(h)}return h},createSpace:function(k,j,m,f,g){var i=this.Em(Math.max(0,j+m)),l=this.Em(-m);if(this.msieInlineBlockAlignBug){l=this.Em(e.getHD(k.parentNode).d-m)}if(k.isBox||k.className=="mspace"){k.bbox={h:j*k.scale,d:m*k.scale,w:f*k.scale,rw:f*k.scale,lw:0};k.style.height=i;k.style.verticalAlign=l}else{k=this.addElement(k,"span",{style:{height:i,verticalAlign:l}})}if(f>=0){k.style.width=this.Em(f);k.style.display="inline-block"}else{if(this.msieNegativeSpaceBug){k.style.height=""}k.style.marginLeft=this.Em(f);if(e.safariNegativeSpaceBug&&k.parentNode.firstChild==k){this.createBlank(k,0,true)}}if(g&&g!==a.COLOR.TRANSPARENT){k.style.backgroundColor=g}return k},createRule:function(o,k,m,p,i){var j=e.TeX.min_rule_thickness;if(p>0&&p*this.em0&&(k+m)*this.em0&&n.offsetWidth==0){n.style.width=this.Em(p)}if(o.isBox||o.className=="mspace"){o.bbox=n.bbox}return n},createFrame:function(o,m,n,p,r,g){var l=(this.msieBorderWidthBug?0:2*r);var q=this.Em(m+n-l),f=this.Em(-n-r),k=this.Em(p-l);var i=this.Em(r)+" "+g;var j=this.addElement(o,"span",{style:{border:i,display:"inline-block",overflow:"hidden",width:k,height:q},bbox:{h:m,d:n,w:p,rw:p,lw:0},noAdjust:true});if(f){j.style.verticalAlign=f}return j},createStack:function(h,j,g){if(this.msiePaddingWidthBug){this.createStrut(h,0)}var i=String(g).match(/%$/);var f=(!i&&g!=null?g:0);h=this.addElement(h,"span",{noAdjust:true,style:{display:"inline-block",position:"relative",width:(i?"100%":this.Em(f)),height:0}});if(!j){h.parentNode.bbox=h.bbox={h:-this.BIGDIMEN,d:-this.BIGDIMEN,w:f,lw:this.BIGDIMEN,rw:(!i&&g!=null?g:-this.BIGDIMEN)};if(i){h.bbox.width=g}}return h},createBox:function(g,f){var h=this.addElement(g,"span",{style:{position:"absolute"},isBox:true});if(f!=null){h.style.width=f}return h},addBox:function(f,g){g.style.position="absolute";g.isBox=true;return f.appendChild(g)},placeBox:function(n,m,k,i){var o=n.parentNode,v=n.bbox,q=o.bbox;if(this.msiePlaceBoxBug){this.addText(n,this.NBSP)}if(this.imgSpaceBug){this.addText(n,this.imgSpace)}var p=n.offsetHeight/this.em+1,z=0;if(n.noAdjust){p-=1}else{if(this.msieInlineBlockAlignBug){this.addElement(n,"img",{className:"MathJax_strut",border:0,src:"about:blank",style:{width:0,height:this.Em(p)}})}else{this.addElement(n,"span",{style:{display:"inline-block",width:0,height:this.Em(p)}})}}n.style.top=this.Em(-k-p);n.style.left=this.Em(m+z);if(v){if(this.negativeSkipBug){if(v.lw<0){z=v.lw;e.createBlank(n,-z,true);h=0}if(v.rw>v.w){e.createBlank(n,v.rw-v.w+0.1)}}if(!this.msieClipRectBug&&!v.noclip&&!i){var u=3/this.em;var s=(v.H==null?v.h:v.H),g=(v.D==null?v.d:v.D);var w=p-s-u,j=p+g+u,h=v.lw-3*u,f=1000;if(v.isFixed){f=v.width-h}n.style.clip="rect("+this.Em(w)+" "+this.Em(f)+" "+this.Em(j)+" "+this.Em(h)+")"}}if(v&&q){if(v.H!=null&&(q.H==null||v.H+k>q.H)){q.H=v.H+k}if(v.D!=null&&(q.D==null||v.D-k>q.D)){q.D=v.D-k}if(v.h+k>q.h){q.h=v.h+k}if(v.d-k>q.d){q.d=v.d-k}if(q.H!=null&&q.H<=q.h){delete q.H}if(q.D!=null&&q.D<=q.d){delete q.D}if(v.w+m>q.w){q.w=v.w+m;if(q.width==null){o.style.width=this.Em(q.w)}}if(v.rw+m>q.rw){q.rw=v.rw+m}if(v.lw+m=h-0.01||(o==k-1&&!g.stretch)){if(g.HW[o][2]){l*=g.HW[o][2]}if(g.HW[o][3]){f=g.HW[o][3]}var n=this.addElement(q,"span");this.createChar(n,[f,g.HW[o][1]],l,j);q.bbox=n.bbox;q.offset=0.65*q.bbox.w;q.scale=l;return}}if(g.stretch){this["extendDelimiter"+g.dir](q,p,g.stretch,l,j)}},extendDelimiterV:function(v,p,A,B,s){var i=this.createStack(v,true);var r=this.createBox(i),q=this.createBox(i);this.createChar(r,(A.top||A.ext),B,s);this.createChar(q,(A.bot||A.ext),B,s);var g={bbox:{w:0,lw:0,rw:0}},z=g,j;var w=r.bbox.h+r.bbox.d+q.bbox.h+q.bbox.d;var m=-r.bbox.h;this.placeBox(r,0,m,true);m-=r.bbox.d;if(A.mid){z=this.createBox(i);this.createChar(z,A.mid,B,s);w+=z.bbox.h+z.bbox.d}if(p>w){g=this.Element("span");this.createChar(g,A.ext,B,s);var x=g.bbox.h+g.bbox.d,f=x-0.05,t,l,u=(A.mid?2:1);l=t=Math.ceil((p-w)/(u*f));if(!A.fullExtenders){f=(p-w)/(u*t)}var o=(t/(t+1))*(x-f);f=x-o;m+=o+f-g.bbox.h;while(u-->0){while(t-->0){if(!this.msieCloneNodeBug){j=g.cloneNode(true)}else{j=this.Element("span");this.createChar(j,A.ext,B,s)}m-=f;this.placeBox(this.addBox(i,j),0,m,true)}m+=o-g.bbox.d;if(A.mid&&u){this.placeBox(z,0,m-z.bbox.h,true);t=l;m+=-(z.bbox.h+z.bbox.d)+o+f-g.bbox.h}}}else{m+=(w-p)/2;if(A.mid){this.placeBox(z,0,m-z.bbox.h,true);m+=-(z.bbox.h+z.bbox.d)}m+=(w-p)/2}this.placeBox(q,0,m-q.bbox.h,true);m-=q.bbox.h+q.bbox.d;v.bbox={w:Math.max(r.bbox.w,g.bbox.w,q.bbox.w,z.bbox.w),lw:Math.min(r.bbox.lw,g.bbox.lw,q.bbox.lw,z.bbox.lw),rw:Math.max(r.bbox.rw,g.bbox.rw,q.bbox.rw,z.bbox.rw),h:0,d:-m};v.scale=B;v.offset=0.55*v.bbox.w;v.isMultiChar=true;this.setStackWidth(i,v.bbox.w)},extendDelimiterH:function(u,h,z,B,r){var l=this.createStack(u,true);var i=this.createBox(l),v=this.createBox(l);this.createChar(i,(z.left||z.rep),B,r);this.createChar(v,(z.right||z.rep),B,r);var f=this.Element("span");this.createChar(f,z.rep,B,r);var y={bbox:{h:-this.BIGDIMEN,d:-this.BIGDIMEN}},g;this.placeBox(i,-i.bbox.lw,0,true);var p=(i.bbox.rw-i.bbox.lw)+(v.bbox.rw-v.bbox.lw)-0.05,o=i.bbox.rw-i.bbox.lw-0.025,q;if(z.mid){y=this.createBox(l);this.createChar(y,z.mid,B,r);p+=y.bbox.w}if(h>p){var A=f.bbox.rw-f.bbox.lw,j=A-0.05,s,m,t=(z.mid?2:1);m=s=Math.ceil((h-p)/(t*j));j=(h-p)/(t*s);q=(s/(s+1))*(A-j);j=A-q;o-=f.bbox.lw+q;while(t-->0){while(s-->0){if(!this.msieCloneNodeBug){g=f.cloneNode(true)}else{g=this.Element("span");this.createChar(g,z.rep,B,r)}this.placeBox(this.addBox(l,g),o,0,true);o+=j}if(z.mid&&t){this.placeBox(y,o,0,true);o+=y.bbox.w-q;s=m}}}else{q=Math.min(p-h,i.bbox.w/2);o-=q/2;if(z.mid){this.placeBox(y,o,0,true);o+=y.bbox.w}o-=q/2}this.placeBox(v,o,0,true);u.bbox={w:o+v.bbox.rw,lw:0,rw:o+v.bbox.rw,H:Math.max(i.bbox.h,f.bbox.h,v.bbox.h,y.bbox.h),D:Math.max(i.bbox.d,f.bbox.d,v.bbox.d,y.bbox.d),h:f.bbox.h,d:f.bbox.d};u.scale=B;u.isMultiChar=true;this.setStackWidth(l,u.bbox.w)},createChar:function(o,k,h,f){var n=o,p="",j={fonts:[k[1]],noRemap:true};if(f&&f===a.VARIANT.BOLD){j.fonts=[k[1]+"-bold",k[1]]}if(typeof(k[1])!=="string"){j=k[1]}if(k[0] instanceof Array){for(var l=0,g=k[0].length;l=r[q].low&&s<=r[q].high){if(r[q].remap&&r[q].remap[s]){s=k+r[q].remap[s]}else{s=s-r[q].low+k;if(r[q].add){s+=r[q].add}}if(j["variant"+r[q].offset]){j=this.FONTDATA.VARIANT[j["variant"+r[q].offset]]}break}}}if(j.remap&&j.remap[s]){if(j.remap[s] instanceof Array){var h=j.remap[s];s=h[0];j=this.FONTDATA.VARIANT[h[1]]}else{s=j.remap[s];if(j.remap.variant){j=this.FONTDATA.VARIANT[j.remap.variant]}}}if(this.FONTDATA.REMAP[s]&&!j.noRemap){s=this.FONTDATA.REMAP[s]}p=this.lookupChar(j,s);y=p[s];if(j!==x&&!y[5].img){if(u.length){this.addText(f,u);u=""}f=v;x=g;if(j!==x){if(x){f=this.addElement(v,"span")}else{g=j}}this.handleFont(f,p,f!==v);x=j}u=this.handleChar(f,p,y,s,u);if(y[0]/1000>v.bbox.h){v.bbox.h=y[0]/1000}if(y[1]/1000>v.bbox.d){v.bbox.d=y[1]/1000}if(v.bbox.w+y[3]/1000v.bbox.rw){v.bbox.rw=v.bbox.w+y[4]/1000}v.bbox.w+=y[2]/1000}if(u.length){this.addText(f,u)}if(v.scale&&v.scale!==1){v.bbox.h*=v.scale;v.bbox.d*=v.scale;v.bbox.w*=v.scale;v.bbox.lw*=v.scale;v.bbox.rw*=v.scale}if(o.length==1&&p.skew&&p.skew[s]){v.bbox.skew=p.skew[s]}},handleFont:function(h,f,j){h.style.fontFamily=f.family;if(!(e.FontFaceBug&&f.isWebFont)){var g=f.style||"normal",i=f.weight||"normal";if(g!=="normal"||j){h.style.fontStyle=g}if(i!=="normal"||j){h.style.fontWeight=i}}},handleChar:function(g,f,l,k,j){var i=l[5];if(i.img){return this.handleImg(g,f,l,k,j)}if(i.isUnknown&&this.FONTDATA.DELIMITERS[k]){if(j.length){this.addText(g,j)}var h=g.scale;e.createDelimiter(g,k,0,1,f);g.scale=h;l[0]=g.bbox.h*1000;l[1]=g.bbox.d*1000;l[2]=g.bbox.w*1000;l[3]=g.bbox.lw*1000;l[4]=g.bbox.rw*1000;return""}if(i.c==null){if(k<=65535){i.c=String.fromCharCode(k)}else{i.c=this.PLANE1+String.fromCharCode(k-119808+56320)}}if(l[2]||!this.msieAccentBug||j.length){return j+i.c}e.createShift(g,l[3]/1000);e.createShift(g,(l[4]-l[3])/1000);this.addText(g,i.c);e.createShift(g,-l[4]/1000);return""},handleImg:function(g,f,j,i,h){return h},lookupChar:function(j,p){var h,f;if(!j.FONTS){var o=this.FONTDATA.FONTS;var l=(j.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(l instanceof Array)){l=[l]}if(j.fonts!=l){j.fonts=l}j.FONTS=[];for(h=0,f=l.length;h=0;h--){if(g.Ranges[h][2]==k){g.Ranges.splice(h,1)}}this.loadFont(g.directory+"/"+k+".js")}}}},loadFont:function(g){var f=MathJax.Callback.Queue();f.Push(["Require",c,this.fontDir+"/"+g]);if(this.imgFonts){if(!MathJax.isPacked){g=g.replace(/\/([^\/]*)$/,e.imgPacked+"/$1")}f.Push(["Require",c,this.webfontDir+"/png/"+g])}d.RestartAfter(f.Push({}))},loadWebFont:function(f){f.available=f.isWebFont=true;if(e.FontFaceBug){f.family=f.name;if(e.msieFontCSSBug){f.family+="-Web"}}d.RestartAfter(this.Font.loadWebFont(f))},loadWebFontError:function(g,f){d.Startup.signal.Post("HTML-CSS Jax - disable web fonts");g.isWebFont=false;if(this.config.imageFont&&this.config.imageFont===this.fontInUse){this.imgFonts=true;d.Startup.signal.Post("HTML-CSS Jax - switch to image fonts");d.Startup.signal.Post("HTML-CSS Jax - using image fonts");MathJax.Message.Set("Web-Fonts not available -- using image fonts instead",null,3000);c.Require(this.directory+"/imageFonts.js",f)}else{this.allowWebFonts=false;f()}},Element:MathJax.HTML.Element,addElement:MathJax.HTML.addElement,TextNode:MathJax.HTML.TextNode,addText:MathJax.HTML.addText,ucMatch:MathJax.HTML.ucMatch,BIGDIMEN:10000000,ID:0,idPostfix:"",GetID:function(){this.ID++;return this.ID},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,scriptspace:0.1,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.1,min_rule_thickness:1.25},PLANE1:String.fromCharCode(55349),NBSP:String.fromCharCode(160),rfuzz:0});MathJax.Hub.Register.StartupHook("mml Jax Ready",function(){a=MathJax.ElementJax.mml;a.mbase.Augment({toHTML:function(l){var j=this.HTMLlineBreaks();if(j.length>2){return this.toHTMLmultiline(l,j)}l=this.HTMLcreateSpan(l);if(this.type!="mrow"){l=this.HTMLhandleSize(l)}for(var g=0,f=this.data.length;gg.d){g.d=h.d}if(h.h>g.h){g.h=h.h}if(h.D!=null&&h.D>g.D){g.D=h.D}if(h.H!=null&&h.H>g.H){g.H=h.H}if(i.style.paddingLeft){g.w+=parseFloat(i.style.paddingLeft)*(i.scale||1)}if(g.w+h.lwg.rw){g.rw=g.w+h.rw}g.w+=h.w;if(i.style.paddingRight){g.w+=parseFloat(i.style.paddingRight)*(i.scale||1)}if(h.width){g.width=h.width}},HTMLemptyBBox:function(f){f.h=f.d=f.H=f.D=f.rw=-e.BIGDIMEN;f.w=0;f.lw=e.BIGDIMEN;return f},HTMLcleanBBox:function(f){if(f.h===this.BIGDIMEN){f.h=f.d=f.H=f.D=f.w=f.rw=f.lw=0}if(f.D<=f.d){delete f.D}if(f.H<=f.h){delete f.H}},HTMLzeroBBox:function(){return{h:0,d:0,w:0,lw:0,rw:0}},HTMLcanStretch:function(f){if(this.isEmbellished()){return this.Core().HTMLcanStretch(f)}return false},HTMLstretchH:function(g,f){return this.HTMLspanElement()},HTMLstretchV:function(g,f,i){return this.HTMLspanElement()},HTMLnotEmpty:function(f){while(f){if((f.type!=="mrow"&&f.type!=="texatom")||f.data.length>1){return true}f=f.data[0]}return false},HTMLmeasureChild:function(g,f){if(this.data[g]!=null){e.Measured(this.data[g].toHTML(f),f)}else{f.bbox=this.HTMLzeroBBox()}},HTMLcreateSpan:function(f){if(this.spanID){var g=this.HTMLspanElement();if(g){while(g.firstChild){g.removeChild(g.firstChild)}g.bbox={w:0,h:0,d:0,lw:0,rw:0};g.scale=1;g.isMultChar=null;g.style.cssText="";return g}}if(this.href){f=e.addElement(f,"a",{href:this.href})}f=e.addElement(f,"span",{className:this.type});if(e.imgHeightBug){f.style.display="inline-block"}if(this["class"]!=null){f.className+=" "+this["class"]}if(this.style){f.style.cssText=this.style;if(f.style.fontSize){this.mathsize=f.style.fontSize;f.style.fontSize=""}}this.spanID=e.GetID();f.id=(this.id||"MathJax-Span-"+this.spanID)+e.idPostfix;f.bbox={w:0,h:0,d:0,lw:0,lr:0};if(this.href){f.parentNode.bbox=f.bbox}return f},HTMLspanElement:function(){if(!this.spanID){return null}return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+e.idPostfix)},HTMLhandleVariant:function(g,f,h){e.handleVariant(g,f,h)},HTMLhandleSize:function(f){if(!f.scale){f.scale=this.HTMLgetScale();if(f.scale!==1){f.style.fontSize=e.Percent(f.scale)}}return f},HTMLhandleColor:function(k){var m=this.getValues("mathcolor","color");if(this.mathbackground){m.mathbackground=this.mathbackground}if(this.background){m.background=this.background}if(this.style&&k.style.backgroundColor){m.mathbackground=k.style.backgroundColor;k.style.backgroundColor="transparent"}if(m.color&&!this.mathcolor){m.mathcolor=m.color}if(m.background&&!this.mathbackground){m.mathbackground=m.background}if(m.mathcolor){k.style.color=m.mathcolor}if(m.mathbackground&&m.mathbackground!==a.COLOR.TRANSPARENT){var n=1/e.em,j=0,i=0;if(this.isToken){j=k.bbox.lw;i=k.bbox.rw-k.bbox.w}if(k.style.paddingLeft!==""){j+=parseFloat(k.style.paddingLeft)*(k.scale||1)}if(k.style.paddingRight!==""){i-=parseFloat(k.style.paddingRight)*(k.scale||1)}var h=Math.max(0,e.getW(k)+(e.PaddingWidthBug?0:i-j));if(e.msieCharPaddingWidthBug&&k.style.paddingLeft!==""){h+=parseFloat(k.style.paddingLeft)*(k.scale||1)}var l=k.bbox.h+k.bbox.d,f=-k.bbox.d;if(h>0){h+=2*n;j-=n}if(l>0){l+=2*n;f-=n}i=-h-j;var g=e.Element("span",{id:"MathJax-Color-"+this.spanID+e.idPostfix,style:{display:"inline-block",backgroundColor:m.mathbackground,width:e.Em(h),height:e.Em(l),verticalAlign:e.Em(f),marginLeft:e.Em(j),marginRight:e.Em(i)}});if(e.msieInlineBlockAlignBug){g.style.position="relative";g.style.width=g.style.height=0;g.style.verticalAlign=g.style.marginLeft=g.style.marginRight="";e.placeBox(e.addElement(g,"span",{noAdjust:true,style:{display:"inline-block",position:"absolute",overflow:"hidden",width:e.Em(h),height:e.Em(l),background:m.mathbackground}}),j,k.bbox.h+n)}k.parentNode.insertBefore(g,k);if(e.msieColorPositionBug){k.style.position="relative"}return g}return null},HTMLremoveColor:function(){var f=document.getElementById("MathJax-Color-"+this.spanID+e.idPostfix);if(f){f.parentNode.removeChild(f)}},HTMLhandleSpace:function(i){if(this.useMMLspacing){if(this.type!=="mo"){return}var g=this.getValues("scriptlevel","lspace","rspace");if(g.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){g.lspace=Math.max(0,e.length2em(g.lspace));g.rspace=Math.max(0,e.length2em(g.rspace));var f=this,h=this.Parent();while(h&&h.isEmbellished()&&h.Core()===f){f=h;h=h.Parent();i=f.HTMLspanElement()}if(g.lspace){i.style.paddingLeft=e.Em(g.lspace)}if(g.rspace){i.style.paddingRight=e.Em(g.rspace)}}}else{var j=this.texSpacing();if(j!==""){j=e.length2em(j)/(i.scale||1);if(i.style.paddingLeft){j+=parseFloat(i.style.paddingLeft)}i.style.paddingLeft=e.Em(j)}}},HTMLgetScale:function(){var h=1,f=this.getValues("mathsize","scriptlevel","fontsize","scriptminsize");if(this.style){var g=this.HTMLspanElement();if(g.style.fontSize!=""){f.fontsize=g.style.fontSize}}if(f.fontsize&&!this.mathsize){f.mathsize=f.fontsize}if(f.scriptlevel!==0){if(f.scriptlevel>2){f.scriptlevel=2}h=Math.pow(this.Get("scriptsizemultiplier"),f.scriptlevel);f.scriptminsize=e.length2em(f.scriptminsize);if(hk.bbox.w){k.bbox.ic=k.bbox.rw-k.bbox.w;e.createBlank(k,k.bbox.ic);k.bbox.w=k.bbox.rw}}this.HTMLhandleSpace(k);this.HTMLhandleColor(k);return k},HTMLcanStretch:function(f){if(!this.Get("stretchy")){return false}var g=this.data.join("");if(g.length>1){return false}g=e.FONTDATA.DELIMITERS[g.charCodeAt(0)];return(g&&g.dir==f.substr(0,1))},HTMLstretchV:function(l,k,n){this.HTMLremoveColor();var f=this.getValues("symmetric","maxsize","minsize");var j=this.HTMLspanElement(),g;var i=e.TeX.axis_height,m=j.scale;if(f.symmetric){g=2*Math.max(k-i,n+i)}else{g=k+n}f.maxsize=e.length2em(f.maxsize,j.bbox.h+j.bbox.d);f.minsize=e.length2em(f.minsize,j.bbox.h+j.bbox.d);g=Math.max(f.minsize,Math.min(f.maxsize,g));j=this.HTMLcreateSpan(l);e.createDelimiter(j,this.data.join("").charCodeAt(0),g,m);if(f.symmetric){g=(j.bbox.h+j.bbox.d)/2+i}else{g=(j.bbox.h+j.bbox.d)*k/(k+n)}e.positionDelimiter(j,g);this.HTMLhandleSpace(j);this.HTMLhandleColor(j);return j},HTMLstretchH:function(i,f){this.HTMLremoveColor();var g=this.getValues("maxsize","minsize","mathvariant","fontweight");if(g.fontweight==="bold"&&!this.mathvariant){g.mathvariant=a.VARIANT.BOLD}var h=this.HTMLspanElement(),j=h.scale;g.maxsize=e.length2em(g.maxsize,h.bbox.w);g.minsize=e.length2em(g.minsize,h.bbox.w);f=Math.max(g.minsize,Math.min(g.maxsize,f));h=this.HTMLcreateSpan(i);e.createDelimiter(h,this.data.join("").charCodeAt(0),f,j,g.mathvariant);this.HTMLhandleSpace(h);this.HTMLhandleColor(h);return h}});a.mtext.Augment({toHTML:function(k){k=this.HTMLhandleSize(this.HTMLcreateSpan(k));k.bbox=null;if(this.Parent().type==="merror"){e.addText(k,this.data.join(""));var l=e.getHD(k),g=e.getW(k);k.bbox={h:l.h,d:l.d,w:g,lw:0,rw:g}}else{var j=this.HTMLgetVariant();for(var h=0,f=this.data.length;ho){f=((k.bbox.h+k.bbox.d)-(o-s))/2}var u=e.FONTDATA.DELIMITERS[e.FONTDATA.RULECHAR];if(!u||iF){F=q.bbox.w}if(!I[H]&&F>g){g=F}}}if(z==null&&B!=null){g=B}else{if(g==-e.BIGDIMEN){g=F}}for(H=F=0,C=this.data.length;HF){F=q.bbox.w}}}var w=e.TeX.rule_thickness,A=e.FONTDATA.TeX_factor;var h=l[this.base]||{bbox:this.HTMLzeroBBox()},J=(h.bbox.ic||0);var p,n,s,r,o,v,E;for(H=0,C=this.data.length;H0){m+=y;l-=y}}e.placeBox(f,i.bbox.w+o,Math.max(m,B.superscriptshift));e.placeBox(k,i.bbox.w+o-F,-Math.max(l,B.subscriptshift))}}this.HTMLhandleSpace(C);this.HTMLhandleColor(C);return C},HTMLstretchH:a.mbase.HTMLstretchH,HTMLstretchV:a.mbase.HTMLstretchV});a.mmultiscripts.Augment({toHTML:a.mbase.HTMLautoload});a.mtable.Augment({toHTML:a.mbase.HTMLautoload});a["annotation-xml"].Augment({toHTML:a.mbase.HTMLautoload});a.math.Augment({toHTML:function(n,g){var k=this.Get("alttext");if(k){g.setAttribute("aria-label",k)}var h=e.addElement(n,"nobr");n=this.HTMLcreateSpan(h);var l=e.createStack(n),i=e.createBox(l),m;l.style.fontSize=h.parentNode.style.fontSize;h.parentNode.style.fontSize="";if(this.data[0]!=null){if(e.msieColorBug){if(this.background){this.data[0].background=this.background;delete this.background}if(this.mathbackground){this.data[0].mathbackground=this.mathbackground;delete this.mathbackground}}a.mbase.prototype.displayAlign=d.config.displayAlign;a.mbase.prototype.displayIndent=d.config.displayIndent;m=e.Measured(this.data[0].toHTML(i),i)}e.placeBox(i,0,0);var j=e.em/e.outerEm;e.em/=j;n.bbox.h*=j;n.bbox.d*=j;n.bbox.w*=j;n.bbox.lw*=j;n.bbox.rw*=j;if(m&&m.bbox.width!=null){l.style.width=m.bbox.width;i.style.width="100%"}this.HTMLhandleColor(n);if(m){e.createRule(n,m.bbox.h*j,m.bbox.d*j,0)}if(!this.isMultiline&&this.Get("display")==="block"&&n.bbox.width==null){var o=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(o.indentalignfirst!==a.INDENTALIGN.INDENTALIGN){o.indentalign=o.indentalignfirst}if(o.indentalign===a.INDENTALIGN.AUTO){o.indentalign=this.displayAlign}g.style.textAlign=o.indentalign;if(o.indentshiftfirst!==a.INDENTSHIFT.INDENTSHIFT){o.indentshift=o.indentshiftfirst}if(o.indentshift==="auto"){o.indentshift=this.displayIndent}if(o.indentshift&&o.indentalign!==a.INDENTALIGN.CENTER){n.style[{left:"marginLeft",right:"marginRight"}[o.indentalign]]=e.Em(e.length2em(o.indentshift))}}return n}});a.TeXAtom.Augment({toHTML:function(g){g=this.HTMLcreateSpan(g);if(this.data[0]!=null){if(this.texClass===a.TEXCLASS.VCENTER){var f=e.createStack(g);var h=e.createBox(f);e.Measured(this.data[0].toHTML(h),h);e.placeBox(h,0,e.TeX.axis_height-(h.bbox.h+h.bbox.d)/2+h.bbox.d)}else{g.bbox=this.data[0].toHTML(g).bbox}}this.HTMLhandleSpace(g);this.HTMLhandleColor(g);return g}});MathJax.Hub.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",e,"jax.js"]),0)})});d.Register.StartupHook("End Config",function(){d.Browser.Select({MSIE:function(f){var i=f.versionAtLeast("7.0");var h=f.versionAtLeast("8.0")&&document.documentMode>7;var g=(document.compatMode==="BackCompat");e.config.styles[".MathJax .MathJax_HitBox"]["background-color"]="white";e.config.styles[".MathJax .MathJax_HitBox"].opacity=0;e.config.styles[".MathJax .MathJax_HitBox"].filter="alpha(opacity=0)";e.Augment({getMarginScale:e.getMSIEmarginScale,PaddingWidthBug:true,msieEventBug:f.isIE9,msieAccentBug:true,msieColorBug:true,msieColorPositionBug:true,msieRelativeWidthBug:g,msieMarginWidthBug:true,msiePaddingWidthBug:true,msieCharPaddingWidthBug:(h&&!g),msieBorderWidthBug:g,msieInlineBlockAlignBug:(!h||g),msieVerticalAlignBug:(h&&!g),msiePlaceBoxBug:(h&&!g),msieClipRectBug:!h,msieNegativeSpaceBug:g,msieCloneNodeBug:(h&&f.version==="8.0"),negativeSkipBug:true,msieIE6:!i,msieItalicWidthBug:true,zeroWidthBug:true,FontFaceBug:true,msieFontCSSBug:f.isIE9,allowWebFonts:"eot"})},Firefox:function(g){var h=false;if(g.versionAtLeast("3.5")){var f=String(document.location).replace(/[^\/]*$/,"");if(document.location.protocol!=="file:"||(d.config.root+"/").substr(0,f.length)===f){h="otf"}}e.Augment({useProcessingFrame:true,ffVerticalAlignBug:true,AccentBug:true,allowWebFonts:h})},Safari:function(j){var h=j.versionAtLeast("3.0");var g=j.versionAtLeast("3.1");j.isMobile=(navigator.appVersion.match(/Mobile/i)!=null);var f=(navigator.appVersion.match(/ Android (\d+)\.(\d+)/));var k=(g&&j.isMobile&&((navigator.platform.match(/iPad|iPod|iPhone/)&&!j.versionAtLeast("5.0"))||(f!=null&&(f[1]<2||(f[1]==2&&f[2]<2)))));e.Augment({config:{styles:{".MathJax img, .MathJax nobr, .MathJax a":{"max-width":"5000em","max-height":"5000em"}}},useProcessingFrame:true,rfuzz:0.05,AccentBug:true,AdjustSurd:true,safariContextMenuBug:true,safariNegativeSpaceBug:true,safariVerticalAlignBug:!g,safariTextNodeBug:!h,safariWebFontSerif:["serif"],allowWebFonts:(g&&!k?"otf":false)});if(k){var i=d.config["HTML-CSS"];if(i){i.availableFonts=[];i.preferredFont=null}else{d.config["HTML-CSS"]={availableFonts:[],preferredFont:null}}}},Chrome:function(f){e.Augment({useProcessingFrame:true,rfuzz:0.05,AccentBug:true,AdjustSurd:true,allowWebFonts:(f.versionAtLeast("4.0")?"otf":"svg"),safariNegativeSpaceBug:true,safariWebFontSerif:[""]})},Opera:function(f){f.isMini=(navigator.appVersion.match("Opera Mini")!=null);e.config.styles[".MathJax .merror"]["vertical-align"]=null;e.Augment({useProcessingFrame:true,operaHeightBug:true,operaVerticalAlignBug:true,operaFontSizeBug:f.versionAtLeast("10.61"),negativeSkipBug:true,zeroWidthBug:true,FontFaceBug:true,PaddingWidthBug:true,allowWebFonts:(f.versionAtLeast("10.0")&&!f.isMini?"otf":false),adjustAvailableFonts:function(j){for(var h=0,g=j.length;hv){v=aE}K[aE]=b.createStack(b.createBox(ag));l[aE]=-b.BIGDIMEN}O[aF][aE]=b.createBox(K[aE]);b.Measured(R.data[aE-ay].toHTML(O[aF][aE]),O[aF][aE]);if(R.data[aE-ay].isMultiline){O[aF][aE].style.width="100%"}if(O[aF][aE].bbox.h>w[aF]){w[aF]=O[aF][aE].bbox.h}if(O[aF][aE].bbox.d>I[aF]){I[aF]=O[aF][aE].bbox.d}if(O[aF][aE].bbox.w>l[aE]){l[aE]=O[aF][aE].bbox.w}}}if(w[0]+I[0]){w[0]=Math.max(w[0],Z)}if(w[O.length-1]+I[O.length-1]){I[O.length-1]=Math.max(I[O.length-1],af)}var al=aJ.columnspacing.split(/ /),S=aJ.rowspacing.split(/ /),ah=aJ.columnalign.split(/ /),L=aJ.rowalign.split(/ /),N=aJ.columnlines.split(/ /),k=aJ.rowlines.split(/ /),ap=aJ.columnwidth.split(/ /),au=[];for(aF=0,aC=al.length;aF0.98){ai=0.98/aw;aw=0.98}}else{if(aJ.width==="auto"){if(aw>0.98){ai=V/(U+V);aq=U+V}else{aq=U/(1-aw)}}else{aq=b.length2em(aJ.width);for(aF=0,aC=Math.min(v+1,al.length);aF0.01){if(aG&&aq>U){aq=(aq-U)/aG;for(aF=0,aC=B.length;aF=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax.id==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/"/g,""")},createPreview:function(b,a){var c;if(this.config.preview==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterText(d)]}}else{if(this.config.preview instanceof Array){c=this.config.preview}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterText:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); + +(function(a,c,e,b,h){var i="1.1";var g=a.CombineConfig("MathZoom",{delay:400,styles:{"#MathJax_Zoom":{position:"absolute","background-color":"#F0F0F0",overflow:"auto",display:"block","z-index":301,padding:".5em",border:"1px solid black",margin:0,"font-family":"serif","font-size":"85%","font-weight":"normal","font-style":"normal","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","box-shadow":"5px 5px 15px #AAAAAA","-webkit-box-shadow":"5px 5px 15px #AAAAAA","-moz-box-shadow":"5px 5px 15px #AAAAAA","-khtml-box-shadow":"5px 5px 15px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},"#MathJax_ZoomOverlay":{position:"absolute",left:0,top:0,"z-index":300,display:"inline-block",width:"100%",height:"100%",border:0,padding:0,margin:0,"background-color":"white",opacity:0,filter:"alpha(opacity=0)"}}});var d=function(j){if(!j){j=window.event}if(j){if(j.preventDefault){j.preventDefault()}if(j.stopPropagation){j.stopPropagation()}j.cancelBubble=true;j.returnValue=false}return false};var f=MathJax.Extension.MathZoom={version:i,settings:a.config.menuSettings,HandleEvent:function(l,j,k){if(!l){l=window.event}if(f.settings.CTRL&&!l.ctrlKey){return true}if(f.settings.ALT&&!l.altKey){return true}if(f.settings.CMD&&!l.metaKey){return true}if(f.settings.Shift&&!l.shiftKey){return true}return f[j](l,k)},Click:function(k,j){if(this.settings.zoom==="Click"){return this.Zoom(j,k)}},DblClick:function(k,j){if(this.settings.zoom==="Double-Click"){return this.Zoom(j,k)}},Mouseover:function(k,j){if(this.settings.zoom==="Hover"){f.oldMouseOver=j.onmouseover;j.onmouseover=null;j.onmousemove=this.Mousemove;j.onmouseout=this.Mouseout;return f.Timer(k,j)}},Mouseout:function(j){this.onmouseover=f.oldMouseOver;delete f.oldMouseOver;this.onmousemove=this.onmouseout=null;f.ClearTimer();return d(j)},Mousemove:function(j){return f.Timer(j||window.event,this)},Timer:function(k,j){this.ClearTimer();this.timer=setTimeout(MathJax.Callback(["Zoom",this,j,{}]),g.delay);return d(k)},ClearTimer:function(){if(this.timer){clearTimeout(this.timer);delete this.timer}},Zoom:function(s,l){this.ClearTimer();this.Remove();var v=s.parentNode;if(v.className==="MathJax_MathContainer"){v=v.parentNode}if(v.parentNode.className==="MathJax_MathContainer"){v=v.parentNode.parentNode}var q=(String(v.className).match(/^MathJax_(MathML|Display)$/)?v:s).nextSibling;var m=a.getJaxFor(q),r=m.root;var o=(b&&m.outputJax.isa(b.constructor)?"HTMLCSS":(h&&m.outputJax.isa(h.constructor)?"MathML":null));if(!o){return}var j=Math.floor(0.85*document.body.clientWidth),p=Math.floor(0.85*document.body.clientHeight);var k=c.Element("span",{style:{position:"relative",display:"inline-block",height:0,width:0},id:"MathJax_ZoomFrame"},[["span",{id:"MathJax_ZoomOverlay",onmousedown:this.Remove}],["span",{id:"MathJax_Zoom",onclick:this.Remove,style:{visibility:"hidden",fontSize:this.settings.zscale,"max-width":j+"px","max-height":p+"px"}},[["span"]]]]);var x=k.lastChild,u=x.firstChild,n=k.firstChild;s.parentNode.insertBefore(k,s);if(this.msieZIndexBug){var t=c.Element("img",{src:"about:blank",id:"MathJax_ZoomTracker",style:{width:0,height:0,position:"relative"}});document.body.appendChild(k);k.style.position="absolute";k.style.zIndex=g.styles["#MathJax_ZoomOverlay"]["z-index"];k=t}var w=(this["Zoom"+o])(r,u,s);if(this.msiePositionBug){if(this.msieIE8Bug){u.style.position="absolute";x.style.height=u.offsetHeight;u.style.position="";if(x.offsetHeight<=p&&x.offsetWidth<=j){x.style.overflow="visible"}}if(this.msieWidthBug){x.style.width=Math.min(j,w.w)}else{if(w.w>j){x.style.width=j}}if(x.offsetHeight>p){x.style.Height=p+"px"}if(s.nextSibling){s.parentNode.insertBefore(k,s.nextSibling)}else{v.appendChild(k)}}else{if(this.operaPositionBug){x.style.width=Math.min(j,u.offsetWidth)+"px"}}this.Position(x,w,(o==="MathML"&&v.nodeName.toLowerCase()==="div"));x.style.visibility="";if(this.settings.zoom==="Hover"){n.onmouseover=this.Remove}if(window.addEventListener){addEventListener("resize",this.Resize,false)}else{if(window.attachEvent){attachEvent("onresize",this.Resize)}else{this.onresize=window.onresize;window.onresize=this.Resize}}return d(l)},ZoomHTMLCSS:function(o,q,p){q.className="MathJax";b.idPostfix="-zoom";b.getScales(q,q);o.toHTML(q,q);var r=o.HTMLspanElement().bbox;b.idPostfix="";if(r.width&&r.width!=="100%"){var j=Math.floor(0.85*document.body.clientWidth);q.style.width=j+"px";q.style.display="inline-block";var k=(o.id||"MathJax-Span-"+o.spanID)+"-zoom";var l=document.getElementById(k).firstChild;while(l&&l.style.width!==r.width){l=l.nextSibling}if(l){l.style.width="100%"}}q.appendChild(this.topImg);var n=this.topImg.offsetTop;q.removeChild(this.topImg);var m=(this.msieWidthBug?b.getW(p)*b.em:p.offsetWidth);return{w:r.w*b.em,Y:-n,W:m}},ZoomMathML:function(k,l,m){k.toNativeMML(l,l);var n;l.appendChild(this.topImg);n=this.topImg.offsetTop;l.removeChild(this.topImg);var j=(this.ffMMLwidthBug?m.parentNode:m).offsetWidth;return{w:l.offsetWidth,Y:-n,W:j}},Position:function(p,n,r){var k=this.Resize(),m=k.x,l=k.y,j=n.W;if(this.msiePositionBug){j=-j}if(r&&this.ffMMLcenterBug){j=0}var q=-Math.floor((p.offsetWidth-j)/2),o=n.Y;p.style.left=Math.max(q,20-m)+"px";p.style.top=Math.max(o,20-l)+"px"},Resize:function(l){if(f.onresize){f.onresize(l)}var j=0,o=0,n=document.getElementById("MathJax_ZoomFrame"),k=document.getElementById("MathJax_ZoomOverlay");var m=(f.msieZIndexBug?document.getElementById("MathJax_ZoomTracker"):n);if(f.operaPositionBug){n.style.border="1px solid"}if(m.offsetParent){do{j+=m.offsetLeft;o+=m.offsetTop}while(m=m.offsetParent)}if(f.operaPositionBug){n.style.border=""}if(f.msieZIndexBug){n.style.left=j+"px";n.style.top=o+"px"}k.style.left=(-j)+"px";k.style.top=(-o)+"px";if(f.msiePositionBug){setTimeout(f.SetWH,0)}else{f.SetWH()}return{x:j,y:o}},SetWH:function(){var j=document.getElementById("MathJax_ZoomOverlay");j.style.width=j.style.height="1px";j.style.width=document.body.scrollWidth+"px";j.style.height=document.body.scrollHeight+"px"},Remove:function(k){var l=document.getElementById("MathJax_ZoomFrame");if(l){l.parentNode.removeChild(l);l=document.getElementById("MathJax_ZoomTracker");if(l){l.parentNode.removeChild(l)}if(f.operaRefreshBug){var j=c.addElement(document.body,"div",{style:{position:"fixed",left:0,top:0,width:"100%",height:"100%",backgroundColor:"white",opacity:0},id:"MathJax_OperaDiv"});document.body.removeChild(j)}if(window.removeEventListener){removeEventListener("resize",f.Resize,false)}else{if(window.detachEvent){detachEvent("onresize",f.Resize)}else{window.onresize=f.onresize;delete f.onresize}}}return d(k)}};a.Register.StartupHook("HTML-CSS Jax Ready",function(){b=MathJax.OutputJax["HTML-CSS"];b.Augment({HandleEvent:f.HandleEvent})});a.Register.StartupHook("NativeMML Jax Ready",function(){h=MathJax.OutputJax.NativeMML;h.Augment({HandleEvent:f.HandleEvent,MSIEmouseup:function(l,k,j){if(this.trapUp){delete this.trapUp;return true}if(this.MSIEzoomKeys(l)){return true}return false},MSIEclick:function(l,k,j){if(this.trapClick){delete this.trapClick;return true}if(!this.MSIEzoomKeys(l)){return false}if(!this.settings.zoom.match(/Click/)){return false}return(f.Click(l,k)===false)},MSIEdblclick:function(l,k,j){if(!this.MSIEzoomKeys(l)){return false}return(f.DblClick(l,k)===false)},MSIEmouseover:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEmouseout:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.ClearTimer();return true},MSIEmousemove:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEzoomKeys:function(j){if(this.settings.CTRL&&!j.ctrlKey){return false}if(this.settings.CMD&&!j.metaKey){return false}if(this.settings.ALT&&!j.altKey){return false}if(this.settings.Shift&&!j.shiftKey){return false}return true}})});a.Browser.Select({MSIE:function(j){var k=(document.compatMode==="BackCompat");var l=j.versionAtLeast("8.0")&&document.documentMode>7;f.msiePositionBug=true;f.msieWidthBug=!k;f.msieIE8Bug=l;f.msieZIndexBug=!l;f.msieInlineBlockAlignBug=(!l||k);if(document.documentMode>=9){delete g.styles["#MathJax_Zoom"].filter}},Opera:function(j){f.operaPositionBug=true;f.operaRefreshBug=true},Firefox:function(j){f.ffMMLwidthBug=true;f.ffMMLcenterBug=true}});f.topImg=(f.msieInlineBlockAlignBug?c.Element("img",{style:{width:0,height:0},src:"about:blank"}):c.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(f.operaPositionBug){f.topImg.style.border="1px solid"}MathJax.Callback.Queue(["Styles",e,g.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",e,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); + +(function(b,c,f){var k="1.1.4";MathJax.Extension.MathMenu={version:k};var i=b.Browser.isPC,g=b.Browser.isMSIE;var e=(i?null:"5px");var j=b.CombineConfig("MathMenu",{delay:150,helpURL:"http://www.mathjax.org/help/user/",showRenderer:true,showFontMenu:false,showContext:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:100,height:50},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(i?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":e,"-webkit-border-radius":e,"-moz-border-radius":e,"-khtml-border-radius":e,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(i?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuTitle":{"background-color":"#CCCCCC",margin:(i?"-1px -1px 1px -1px":"-5px 0 0 0"),"text-align":"center","font-style":"italic","font-size":"80%",color:"#444444",padding:"2px 0",overflow:"hidden"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(i?"1em":".7em")},".MathJax_MenuLabel":{padding:(i?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(i?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(i?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(i?"Highlight":"#606872"),color:(i?"HighlightText":"white")}}});var d=function(l){if(!l){l=window.event}if(l){if(l.preventDefault){l.preventDefault()}if(l.stopPropagation){l.stopPropagation()}l.cancelBubble=true;l.returnValue=false}return false};var a=MathJax.Menu=MathJax.Object.Subclass({version:k,items:[],posted:false,title:null,margin:5,Init:function(l){this.items=[].slice.call(arguments,0)},With:function(l){if(l){b.Insert(this,l)}return this},Post:function(n,v){if(!n){n=window.event}var t=(!this.title?null:[["div",{className:"MathJax_MenuTitle"},[this.title]]]);var l=document.getElementById("MathJax_MenuFrame");if(!l){l=a.Background(this)}var o=c.addElement(l,"div",{onmouseup:a.Mouseup,ondblclick:this.False,ondragstart:this.False,onselectstart:this.False,oncontextmenu:this.False,menuItem:this,className:"MathJax_Menu"},t);for(var q=0,p=this.items.length;qdocument.body.offsetWidth-this.margin){u=document.body.offsetWidth-o.offsetWidth-this.margin}a.skipUp=true}else{var r="left",w=v.offsetWidth;u=v.offsetWidth-2;s=0;while(v&&v!==l){u+=v.offsetLeft;s+=v.offsetTop;v=v.parentNode}if(u+o.offsetWidth>document.body.offsetWidth-this.margin){r="right";u=Math.max(this.margin,u-w-o.offsetWidth+6)}if(!i){o.style["borderRadiusTop"+r]=0;o.style["WebkitBorderRadiusTop"+r]=0;o.style["MozBorderRadiusTop"+r]=0;o.style["KhtmlBorderRadiusTop"+r]=0}}o.style.left=u+"px";o.style.top=s+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return this.False(n)},Remove:function(l,m){var n=document.getElementById("MathJax_MenuFrame");if(n){n.parentNode.removeChild(n);if(this.msieBackgroundBug){detachEvent("onresize",a.Resize)}}},Mouseup:function(l,m){if(a.skipUp){delete a.skipUp}else{this.Remove(l,m)}},False:d},{config:j,div:null,Remove:function(l){a.Event(l,this,"Remove")},Mouseover:function(l){a.Event(l,this,"Mouseover")},Mouseout:function(l){a.Event(l,this,"Mouseout")},Mousedown:function(l){a.Event(l,this,"Mousedown")},Mouseup:function(l){a.Event(l,this,"Mouseup")},Mousemove:function(l){a.Event(l,this,"Mousemove")},Event:function(n,o,l){if(!n){n=window.event}var m=o.menuItem;if(m&&m[l]){return m[l](n,o)}return null},BGSTYLE:{position:"absolute",left:0,top:0,"z-index":200,width:"100%",height:"100%",border:0,padding:0,margin:0},Background:function(m){var n=c.addElement(document.body,"div",{style:this.BGSTYLE,id:"MathJax_MenuFrame"},[["div",{style:this.BGSTYLE,menuItem:m,onmousedown:this.Remove}]]);var l=n.firstChild;if(m.msieBackgroundBug){l.style.backgroundColor="white";l.style.filter="alpha(opacity=0)";n.width=n.height=0;this.Resize();attachEvent("onresize",this.Resize)}else{l.style.position="fixed"}return n},Resize:function(){setTimeout(a.SetWH,0)},SetWH:function(){var l=document.getElementById("MathJax_MenuFrame");if(l){l=l.firstChild;l.style.width=l.style.height="1px";l.style.width=document.body.scrollWidth+"px";l.style.height=document.body.scrollHeight+"px"}},saveCookie:function(){c.Cookie.Set("menu",this.cookie)},getCookie:function(){this.cookie=c.Cookie.Get("menu")}});var h=a.ITEM=MathJax.Object.Subclass({name:"",Create:function(m){if(!this.hidden){var l={onmouseover:a.Mouseover,onmouseout:a.Mouseout,onmouseup:a.Mouseup,onmousedown:this.False,ondragstart:this.False,onselectstart:this.False,onselectend:this.False,className:"MathJax_MenuItem",menuItem:this};if(this.disabled){l.className+=" MathJax_MenuDisabled"}c.addElement(m,"div",l,this.Label(l,m))}},Mouseover:function(q,s){if(!this.disabled){this.Activate(s)}if(!this.menu||!this.menu.posted){var r=document.getElementById("MathJax_MenuFrame").childNodes,n=s.parentNode.childNodes;for(var o=0,l=n.length;o=0&&s.parentNode.menuItem!==r[l].menuItem){r[l].menuItem.posted=false;r[l].parentNode.removeChild(r[l]);l--}if(this.Timer){this.Timer(q,s)}}},Mouseout:function(l,m){if(!this.menu||!this.menu.posted){this.Deactivate(m)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(l,m){return this.Remove(l,m)},Remove:function(l,m){m=m.parentNode.menuItem;return m.Remove(l,m)},Activate:function(l){this.Deactivate(l);l.className+=" MathJax_MenuActive"},Deactivate:function(l){l.className=l.className.replace(/ MathJax_MenuActive/,"")},With:function(l){if(l){b.Insert(this,l)}return this},False:d});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(l,n,m){this.name=l;this.action=n;this.With(m)},Label:function(l,m){return[this.name]},Mouseup:function(l,m){if(!this.disabled){this.Remove(l,m);this.action.call(this,l)}return this.False(l)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(i&&!b.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(l,n){this.name=l;var m=1;if(!(n instanceof a.ITEM)){this.With(n),m++}this.menu=a.apply(a,[].slice.call(arguments,m))},Label:function(l,m){l.onmousemove=a.Mousemove;this.menu.posted=false;return[this.name+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(l,m){if(this.timer){clearTimeout(this.timer)}l={clientX:l.clientX,clientY:l.clientY};this.timer=setTimeout(MathJax.Callback(["Mouseup",this,l,m]),j.delay)},Mouseup:function(n,p){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(n,p)}else{var o=document.getElementById("MathJax_MenuFrame").childNodes,l=o.length-1;while(l>=0){var q=o[l];q.menuItem.posted=false;q.parentNode.removeChild(q);if(q.menuItem===this.menu){break}l--}}}return this.False(n)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(i?"\u25CF":"\u2713"),Init:function(m,l,n){this.name=m;this.variable=l;this.With(n);if(this.value==null){this.value=this.name}},Label:function(m,n){var l={className:"MathJax_MenuRadioCheck"};if(j.settings[this.variable]!==this.value){l={style:{display:"none"}}}return[["span",l,[this.marker]]," "+this.name]},Mouseup:function(p,q){if(!this.disabled){var r=q.parentNode.childNodes;for(var n=0,l=r.length;n/g,">");n.document.open();n.document.write("MathJax Equation Source");n.document.write("
"+r+"
");n.document.write("");n.document.close();var p=n.document.body.firstChild;var o=(n.outerHeight-n.innerHeight)||30,m=(n.outerWidth-n.innerWidth)||30;m=Math.min(Math.floor(0.5*screen.width),p.offsetWidth+m+25);o=Math.min(Math.floor(0.5*screen.height),p.offsetHeight+o+25);n.resizeTo(m,o);if(q&&q.screenX!=null){var l=Math.max(0,Math.min(q.screenX-Math.floor(m/2),screen.width-m-20)),s=Math.max(0,Math.min(q.screenY-Math.floor(o/2),screen.height-o-20));n.moveTo(l,s)}delete a.ShowSource.w};a.Scale=function(){var m=MathJax.OutputJax["HTML-CSS"],l=MathJax.OutputJax.NativeMML;var o=(m?m.config.scale:l.config.scale);var n=prompt("Scale all mathematics (compared to surrounding text) by",o+"%");if(n){if(n.match(/^\s*\d+\s*%?\s*$/)){n=parseInt(n);if(n){if(n!==o){if(m){m.config.scale=n}if(l){l.config.scale=n}a.cookie.scale=n;a.saveCookie();b.Reprocess()}}else{alert("The scale should not be zero")}}else{alert("The scale should be a perentage (e.g., 120%)")}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){f.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var l=b.config.outputJax["jax/mml"];if(l[0]!==j.settings.renderer){MathJax.Callback.Queue(["Require",f,"[MathJax]/jax/output/"+j.settings.renderer+"/config.js"],["Post",b.Startup.signal,j.settings.renderer+" output selected"],[function(){var p=MathJax.OutputJax[j.settings.renderer];for(var o=0,n=l.length;o7;a.Augment({margin:20,msieBackgroundBug:(m||!n),msieAboutBug:m});if(document.documentMode>=9){delete j.styles["#MathJax_About"].filter;delete j.styles[".MathJax_Menu"].filter}}});b.Register.StartupHook("End Config",function(){j.settings=b.config.menuSettings;if(!j.settings.format){j.settings.format=(MathJax.InputJax.TeX?"Original":"MathML")}if(typeof(j.settings.showRenderer)!=="undefined"){j.showRenderer=j.settings.showRenderer}if(typeof(j.settings.showFontMenu)!=="undefined"){j.showFontMenu=j.settings.showFontMenu}if(typeof(j.settings.showContext)!=="undefined"){j.showContext=j.settings.showContext}a.getCookie();a.menu=a(h.COMMAND("Show Source",a.ShowSource),h.SUBMENU("Format",h.RADIO("MathML","format"),h.RADIO("Original","format",{value:"Original"})),h.RULE(),h.SUBMENU("Settings",h.SUBMENU("Zoom Trigger",h.RADIO("Hover","zoom",{action:a.Zoom}),h.RADIO("Click","zoom",{action:a.Zoom}),h.RADIO("Double-Click","zoom",{action:a.Zoom}),h.RADIO("No Zoom","zoom",{value:"None"}),h.RULE(),h.LABEL("Trigger Requires:"),h.CHECKBOX((b.Browser.isMac?"Option":"Alt"),"ALT"),h.CHECKBOX("Command","CMD",{hidden:!b.Browser.isMac}),h.CHECKBOX("Control","CTRL",{hidden:b.Browser.isMac}),h.CHECKBOX("Shift","Shift")),h.SUBMENU("Zoom Factor",h.RADIO("125%","zscale"),h.RADIO("133%","zscale"),h.RADIO("150%","zscale"),h.RADIO("175%","zscale"),h.RADIO("200%","zscale"),h.RADIO("250%","zscale"),h.RADIO("300%","zscale"),h.RADIO("400%","zscale")),h.RULE(),h.SUBMENU("Math Renderer",{hidden:!j.showRenderer},h.RADIO("HTML-CSS","renderer",{action:a.Renderer}),h.RADIO("MathML","renderer",{action:a.Renderer,value:"NativeMML"})),h.SUBMENU("Font Preference",{hidden:!j.showFontMenu},h.LABEL("For HTML-CSS:"),h.RADIO("Auto","font",{action:a.Font}),h.RULE(),h.RADIO("TeX (local)","font",{action:a.Font}),h.RADIO("TeX (web)","font",{action:a.Font}),h.RADIO("TeX (image)","font",{action:a.Font}),h.RULE(),h.RADIO("STIX (local)","font",{action:a.Font})),h.SUBMENU("Contextual Menu",{hidden:!j.showContext},h.RADIO("MathJax","context"),h.RADIO("Browser","context")),h.COMMAND("Scale All Math ...",a.Scale)),h.RULE(),h.COMMAND("About MathJax",a.About),h.COMMAND("MathJax Help",a.Help))});a.showRenderer=function(l){a.cookie.showRenderer=j.showRenderer=l;a.saveCookie();a.menu.items[3].menu.item[3].hidden=!l};a.showFontMenu=function(l){a.cookie.showFontMenu=j.showFontMenu=l;a.saveCookie();a.menu.items[3].menu.items[4].hidden=!l};a.showContext=function(l){a.cookie.showContext=j.showContext=l;a.saveCookie();a.menu.items[3].menu.items[5].hidden=!l};MathJax.Callback.Queue(["Styles",f,j.styles],["Post",b.Startup.signal,"MathMenu Ready"],["loadComplete",f,"[MathJax]/extensions/MathMenu.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax); + +MathJax.ElementJax.mml=MathJax.ElementJax({mimeType:"jax/mml"},{id:"mml",version:"1.1.1",directory:MathJax.ElementJax.directory+"/mml",extensionDir:MathJax.ElementJax.extensionDir+"/mml",optableDir:MathJax.ElementJax.directory+"/mml/optable"});MathJax.ElementJax.mml.Augment({Init:function(){if(arguments.length===1&&arguments[0].type==="math"){this.root=arguments[0]}else{this.root=MathJax.ElementJax.mml.math.apply(this,arguments)}if(this.root.mode){if(!this.root.display&&this.root.mode==="display"){this.root.display="block"}delete this.root.mode}}},{INHERIT:"_inherit_",AUTO:"_auto_",SIZE:{INFINITY:"infinity",SMALL:"small",NORMAL:"normal",BIG:"big"},COLOR:{TRANSPARENT:"transparent"},VARIANT:{NORMAL:"normal",BOLD:"bold",ITALIC:"italic",BOLDITALIC:"bold-italic",DOUBLESTRUCK:"double-struck",FRAKTUR:"fraktur",BOLDFRAKTUR:"bold-fraktur",SCRIPT:"script",BOLDSCRIPT:"bold-script",SANSSERIF:"sans-serif",BOLDSANSSERIF:"bold-sans-serif",SANSSERIFITALIC:"sans-serif-italic",SANSSERIFBOLDITALIC:"sans-serif-bold-italic",MONOSPACE:"monospace",INITIAL:"inital",TAILED:"tailed",LOOPED:"looped",STRETCHED:"stretched",CALIGRAPHIC:"-tex-caligraphic",OLDSTYLE:"-tex-oldstyle"},FORM:{PREFIX:"prefix",INFIX:"infix",POSTFIX:"postfix"},LINEBREAK:{AUTO:"auto",NEWLINE:"newline",NOBREAK:"nobreak",GOODBREAK:"goodbreak",BADBREAK:"badbreak"},LINEBREAKSTYLE:{BEFORE:"before",AFTER:"after",DUPLICATE:"duplicate",INFIXLINBREAKSTYLE:"infixlinebreakstyle"},INDENTALIGN:{LEFT:"left",CENTER:"center",RIGHT:"right",AUTO:"auto",ID:"id",INDENTALIGN:"indentalign"},INDENTSHIFT:{INDENTSHIFT:"indentshift"},LINETHICKNESS:{THIN:"thin",MEDIUM:"medium",THICK:"thick"},NOTATION:{LONGDIV:"longdiv",ACTUARIAL:"actuarial",RADICAL:"radical",BOX:"box",ROUNDEDBOX:"roundedbox",CIRCLE:"circle",LEFT:"left",RIGHT:"right",TOP:"top",BOTTOM:"bottom",UPDIAGONALSTRIKE:"updiagonalstrike",DOWNDIAGONALSTRIKE:"downdiagonalstrike",VERTICALSTRIKE:"verticalstrike",HORIZONTALSTRIKE:"horizontalstrike",MADRUWB:"madruwb"},ALIGN:{TOP:"top",BOTTOM:"bottom",CENTER:"center",BASELINE:"baseline",AXIS:"axis",LEFT:"left",RIGHT:"right"},LINES:{NONE:"none",SOLID:"solid",DASHED:"dashed"},SIDE:{LEFT:"left",RIGHT:"right",LEFTOVERLAP:"leftoverlap",RIGHTOVERLAP:"rightoverlap"},WIDTH:{AUTO:"auto",FIT:"fit"},ACTIONTYPE:{TOGGLE:"toggle",STATUSLINE:"statusline",TOOLTIP:"tooltip",INPUT:"input"},LENGTH:{VERYVERYTHINMATHSPACE:"veryverythinmathspace",VERYTHINMATHSPACE:"verythinmathspace",THINMATHSPACE:"thinmathspace",MEDIUMMATHSPACE:"mediummathspace",THICKMATHSPACE:"thickmathspace",VERYTHICKMATHSPACE:"verythickmathspace",VERYVERYTHICKMATHSPACE:"veryverythickmathspace",NEGATIVEVERYVERYTHINMATHSPACE:"negativeveryverythinmathspace",NEGATIVEVERYTHINMATHSPACE:"negativeverythinmathspace",NEGATIVETHINMATHSPACE:"negativethinmathspace",NEGATIVEMEDIUMMATHSPACE:"negativemediummathspace",NEGATIVETHICKMATHSPACE:"negativethickmathspace",NEGATIVEVERYTHICKMATHSPACE:"negativeverythickmathspace",NEGATIVEVERYVERYTHICKMATHSPACE:"negativeveryverythickmathspace"},OVERFLOW:{LINBREAK:"linebreak",SCROLL:"scroll",ELIDE:"elide",TRUNCATE:"truncate",SCALE:"scale"},UNIT:{EM:"em",EX:"ex",PX:"px",IN:"in",CM:"cm",MM:"mm",PT:"pt",PC:"pc"},TEXCLASS:{ORD:0,OP:1,BIN:2,REL:3,OPEN:4,CLOSE:5,PUNCT:6,INNER:7,VCENTER:8,NONE:-1},PLANE1:String.fromCharCode(55349)});(function(a){var d=false;var b=true;a.mbase=MathJax.Object.Subclass({type:"base",isToken:d,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT},noInherit:{},Init:function(){this.data=[];if(this.inferRow&&!(arguments.length===1&&arguments[0].inferred)){this.Append(a.mrow().With({inferred:b}))}this.Append.apply(this,arguments)},With:function(f){for(var g in f){if(f.hasOwnProperty(g)){this[g]=f[g]}}return this},Append:function(){if(this.inferRow&&this.data.length){this.data[0].Append.apply(this.data[0],arguments)}else{for(var g=0,f=arguments.length;g0&&this.Get("scriptlevel")>0&&h>=0){return""}return this.TEXSPACELENGTH[Math.abs(h)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(f){return""},isSpacelike:function(){return d},isEmbellished:function(){return d},Core:function(){return this},CoreMO:function(){return this},lineBreak:function(){if(this.isEmbellished()){return this.CoreMO().lineBreak()}else{return"none"}},array:function(){if(this.inferred){return this.data}else{return[this]}},toString:function(){return this.type+"("+this.data.join(",")+")"}},{childrenSpacelike:function(){for(var f=0;f=0;f--){if(this.data[0]&&!this.data[f].isSpacelike()){return this.data[f]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(h){for(var g=0,f=this.data.length;g0){f++}return f},adjustChild_texprimestyle:function(f){if(f==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:b,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(f){return b}});a.mroot=a.mbase.Subclass({type:"mroot",texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(f){if(f===1){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g===1){f+=2}return f},adjustChild_texprimestyle:function(f){if(f===0){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:b,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(h){var g=this.scriptlevel;if(g==null){g=this.Get("scriptlevel")}else{if(String(g).match(/^ *[-+]/)){delete this.scriptlevel;var f=this.Get("scriptlevel");this.scriptlevel=g;g=f+parseInt(g)}}return g},inheritFromMe:b,noInherit:{mpadded:{width:b,height:b,depth:b,lspace:b,voffset:b},mtable:{width:b,height:b,depth:b,align:b}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:b,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(j){this.getPrevClass(j);var g=this.getValues("open","close","separators");g.open=g.open.replace(/[ \t\n\r]/g,"");g.close=g.close.replace(/[ \t\n\r]/g,"");g.separators=g.separators.replace(/[ \t\n\r]/g,"");if(g.open!==""){this.SetData("open",a.mo(g.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));j=this.data.open.setTeXclass(j)}if(g.separators!==""){while(g.separators.length0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g>0){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.sub){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(f){if(f%2===1){return b}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(f){if(f==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(f):a.TEXCLASS.ORD)}if(f==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(f==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return d},adjustChild_displaystyle:function(f){if(f>0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g==this.under&&!this.Get("accentunder")){f++}if(g==this.over&&!this.Get("accent")){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.base&&this.data[this.over]){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:b,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:d,equalcolumns:d,displaystyle:d,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:b,noInherit:{mtable:{align:b,rowalign:b,columnalign:b,groupalign:b,alignmentscope:b,columnwidth:b,width:b,rowspacing:b,columnspacing:b,rowlines:b,columnlines:b,frame:b,framespacing:b,equalrows:b,equalcolumns:b,side:b,minlabelspacing:b,texClass:b,useHeight:1}},Append:function(){for(var g=0,f=arguments.length;g":e.REL,"?":[1,1,c.CLOSE],"\\":e.ORD,_:e.ORD11,"|":[2,2,c.ORD,{fence:true,stretchy:true,symmetric:true}],"#":e.ORD,"$":e.ORD,"\u002E":[0,3,c.PUNCT,{separator:true}],"\u02B9":e.ORD,"\u02C9":e.ACCENT,"\u02CA":e.ACCENT,"\u02CB":e.ACCENT,"\u0300":e.ACCENT,"\u0301":e.ACCENT,"\u0303":e.WIDEACCENT,"\u0304":e.ACCENT,"\u0306":e.ACCENT,"\u0307":e.ACCENT,"\u0308":e.ACCENT,"\u030C":e.ACCENT,"\u0332":e.WIDEACCENT,"\u0338":e.REL4,"\u2015":[0,0,c.ORD,{stretchy:true}],"\u2017":[0,0,c.ORD,{stretchy:true}],"\u2020":e.BIN3,"\u2021":e.BIN3,"\u20D7":e.ACCENT,"\u2118":e.ORD,"\u2205":e.ORD,"\u221E":e.ORD,"\u2305":e.BIN3,"\u2306":e.BIN3,"\u2322":e.REL4,"\u2323":e.REL4,"\u2329":e.OPEN,"\u232A":e.CLOSE,"\u23AA":e.ORD,"\u23AF":[0,0,c.ORD,{stretchy:true}],"\u23B0":e.OPEN,"\u23B1":e.CLOSE,"\u25EF":e.BIN3,"\u2660":e.ORD,"\u2661":e.ORD,"\u2662":e.ORD,"\u2663":e.ORD,"\u27EE":e.OPEN,"\u27EF":e.CLOSE,"\u27FC":e.REL4,"\u3008":e.OPEN,"\u3009":e.CLOSE,"\uFE37":e.WIDEACCENT,"\uFE38":e.WIDEACCENT}}},{OPTYPES:e})})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); + +MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="1.1.1";var a=MathJax.ElementJax.mml;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.MathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},MathMLattributes:function(){var j=[],g=this.defaults;var c=this.copyAttributes,l=this.skipAttributes;if(this.type==="math"){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.quoteHTML(k)+'"')}this[d]=k}}}for(var h=0,f=c.length;h126){e[f]="&#x"+h.toString(16).toUpperCase()+";"}else{var g={"&":"&","<":"<",">":">",'"':"""}[e[f]];if(g){e[f]=g}}}return e.join("")}});a.msubsup.Augment({toMathML:function(h){var e=this.type;if(this.data[this.sup]==null){e="msub"}if(this.data[this.sub]==null){e="msup"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(c){return c+"\n"+this.data[0].toMathML(c+" ")+"\n"+c+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.quoteHTML(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); + +(function(){var c="1.1";var a=MathJax.Hub.CombineConfig("TeX.noErrors",{multiLine:true,inlineDelimiters:["",""],style:{"font-family":"serif","font-size":"80%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var b="\u00A0";MathJax.Extension["TeX/noErrors"]={version:c,config:a};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){MathJax.InputJax.TeX.Augment({formatError:function(f,e,g,d){var i=a.inlineDelimiters;var h=(g||a.multiLine);if(!g){e=i[0]+e+i[1]}if(h){e=e.replace(/ /g,b)}else{e=e.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(e).With({isError:true,multiLine:h})}})});MathJax.Hub.Register.StartupHook("HTML-CSS Jax Config",function(){MathJax.Hub.Config({"HTML-CSS":{styles:{".MathJax .merror":MathJax.Hub.Insert({"font-style":null,"background-color":null,"vertical-align":(MathJax.Hub.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})})})();MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var a=MathJax.ElementJax.mml;var b=MathJax.OutputJax["HTML-CSS"];var c=a.math.prototype.toHTML;a.math.Augment({toHTML:function(d,e){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toHTML(d)}return c.call(this,d,e)}});a.merror.Augment({toHTML:function(j){if(!this.isError){return a.mbase.prototype.toHTML.call(this,j)}j=this.HTMLcreateSpan(j);if(this.multiLine){j.style.display="inline-block"}var l=this.data[0].data[0].data.join("").split(/\n/);for(var g=0,e=l.length;g1){var k=(n.h+n.d)/2,h=b.TeX.x_height/2;var f=b.config.styles[".MathJax .merror"]["font-size"];if(f&&f.match(/%/)){h*=parseInt(f)/100}j.parentNode.style.verticalAlign=b.Em(n.d+(h-k));n.h=h+k;n.d=k-h}j.bbox={h:n.h,d:n.d,w:d,lw:0,rw:d};return j}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Hub.Register.StartupHook("NativeMML Jax Ready",function(){var b=MathJax.ElementJax.mml;var a=MathJax.Extension["TeX/noErrors"].config;var c=b.math.prototype.toNativeMML;b.math.Augment({toNativeMML:function(d){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toNativeMML(d)}return c.call(this,d)}});b.merror.Augment({toNativeMML:function(g){if(!this.isError){return b.mbase.prototype.toNativeMML.call(this,g)}g=g.appendChild(document.createElement("span"));var h=this.data[0].data[0].data.join("").split(/\n/);for(var f=0,e=h.length;f1){g.style.verticalAlign="middle"}}for(var j in a.style){if(a.style.hasOwnProperty(j)){var d=j.replace(/-./g,function(i){return i.charAt(1).toUpperCase()});g.style[d]=a.style[j]}}return g}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); + +MathJax.Extension["TeX/noUndefined"]={version:"1.1",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(c){this.Push(a.mtext(c).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); + +(function(d){var c=true,f=false,i,h=String.fromCharCode(160);var e=MathJax.Object.Subclass({Init:function(k){this.global={};this.data=[b.start().With({global:this.global})];if(k){this.data[0].env=k}this.env=this.data[0].env},Push:function(){var l,k,n,o;for(l=0,k=arguments.length;l":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:i.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:i.TEXCLASS.ORD}],"\\|":["2225",{texClass:i.TEXCLASS.ORD}],"\\vert":["|",{texClass:i.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",c,0],textstyle:["SetStyle","T",f,0],scriptstyle:["SetStyle","S",f,1],scriptscriptstyle:["SetStyle","SS",f,2],rm:["SetFont",i.VARIANT.NORMAL],mit:["SetFont",i.VARIANT.ITALIC],oldstyle:["SetFont",i.VARIANT.OLDSTYLE],cal:["SetFont",i.VARIANT.CALIGRAPHIC],it:["SetFont",i.VARIANT.ITALIC],bf:["SetFont",i.VARIANT.BOLD],bbFont:["SetFont",i.VARIANT.DOUBLESTRUCK],scr:["SetFont",i.VARIANT.SCRIPT],frak:["SetFont",i.VARIANT.FRAKTUR],sf:["SetFont",i.VARIANT.SANSSERIF],tt:["SetFont",i.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedOp",0],arccos:["NamedOp",0],arctan:["NamedOp",0],arg:["NamedOp",0],cos:["NamedOp",0],cosh:["NamedOp",0],cot:["NamedOp",0],coth:["NamedOp",0],csc:["NamedOp",0],deg:["NamedOp",0],det:"NamedOp",dim:["NamedOp",0],exp:["NamedOp",0],gcd:"NamedOp",hom:["NamedOp",0],inf:"NamedOp",ker:["NamedOp",0],lg:["NamedOp",0],lim:"NamedOp",liminf:["NamedOp",null,"lim inf"],limsup:["NamedOp",null,"lim sup"],ln:["NamedOp",0],log:["NamedOp",0],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedOp",0],sin:["NamedOp",0],sinh:["NamedOp",0],sup:"NamedOp",tan:["NamedOp",0],tanh:["NamedOp",0],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","203E"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",i.LENGTH.THINMATHSPACE],":":["Spacer",i.LENGTH.THINMATHSPACE],">":["Spacer",i.LENGTH.MEDIUMMATHSPACE],";":["Spacer",i.LENGTH.THICKMATHSPACE],"!":["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",i.LENGTH.THINMATHSPACE],negthinspace:["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",i.TEXCLASS.ORD,0.85],Big:["MakeBig",i.TEXCLASS.ORD,1.15],bigg:["MakeBig",i.TEXCLASS.ORD,1.45],Bigg:["MakeBig",i.TEXCLASS.ORD,1.75],bigl:["MakeBig",i.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",i.TEXCLASS.OPEN,1.15],biggl:["MakeBig",i.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",i.TEXCLASS.OPEN,1.75],bigr:["MakeBig",i.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",i.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",i.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",i.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",i.TEXCLASS.REL,0.85],Bigm:["MakeBig",i.TEXCLASS.REL,1.15],biggm:["MakeBig",i.TEXCLASS.REL,1.45],Biggm:["MakeBig",i.TEXCLASS.REL,1.75],mathord:["TeXAtom",i.TEXCLASS.ORD],mathop:["TeXAtom",i.TEXCLASS.OP],mathopen:["TeXAtom",i.TEXCLASS.OPEN],mathclose:["TeXAtom",i.TEXCLASS.CLOSE],mathbin:["TeXAtom",i.TEXCLASS.BIN],mathrel:["TeXAtom",i.TEXCLASS.REL],mathpunct:["TeXAtom",i.TEXCLASS.PUNCT],mathinner:["TeXAtom",i.TEXCLASS.INNER],vcenter:["TeXAtom",i.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","02CA"],grave:["Accent","02CB"],ddot:["Accent","00A8"],tilde:["Accent","02DC"],bar:["Accent","02C9"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","02C6"],vec:["Accent","20D7"],dot:["Accent","02D9"],widetilde:["Accent","02DC",1],widehat:["Accent","02C6",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em"],eqalign:["Matrix",null,null,"right left",i.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"Cr",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\rm mod}"],pmod:["Macro","\\pod{{\\rm mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}{\\rm mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"],not:["Macro","\\mathrel{\\rlap{\\kern.5em\\notChar}}"]," ":["Macro","\\text{ }"],space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],def:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Macro","",1],nonumber:["Macro",""],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],require:"Require"},environment:{array:["Array"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],eqnarray:["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],"eqnarray*":["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],equation:[null,"Equation"],"equation*":[null,"Equation"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var k=this.config.Macros;for(var l in k){if(k.hasOwnProperty(l)){if(typeof(k[l])==="string"){g.macros[l]=["Macro",k[l]]}else{g.macros[l]=["Macro"].concat(k[l])}}}}};var a=MathJax.Object.Subclass({Init:function(l,m){this.string=l;this.i=0;this.macroCount=0;var k;if(m){k={};for(var n in m){if(m.hasOwnProperty(n)){k[n]=m[n]}}}this.stack=d.Stack(k);this.Parse();this.Push(b.stop())},Parse:function(){var k;while(this.id.config.MAXMACROS){d.Error("MathJax maximum macro substitution count exceeded; is there a recursive macro call?")}},Matrix:function(l,n,s,p,q,m,k){var r=this.GetNext();if(r===""){d.Error("Missing argument for "+l)}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var o=b.array().With({requireClose:c,arraydef:{rowspacing:(m||"4pt"),columnspacing:(q||"1em")}});if(n||s){o.open=n;o.close=s}if(k==="D"){o.arraydef.displaystyle=c}if(p!=null){o.arraydef.columnalign=p}this.Push(o)},Entry:function(k){this.Push(b.cell().With({isEntry:c,name:k}))},Cr:function(k){this.Push(b.cell().With({isCR:c,name:k}))},HLine:function(l,m){if(m==null){m="solid"}var n=this.stack.Top();if(n.type!=="array"||n.data.length){d.Error("Misplaced "+l)}if(n.table.length==0){n.arraydef.frame=m}else{var k=(n.arraydef.rowlines?n.arraydef.rowlines.split(/ /):[]);while(k.lengthd.config.MAXMACROS){d.Error("MathJax maximum substitution count exceeded; is there a recursive latex environment?")}var n=g.environment[m];if(!(n instanceof Array)){n=[n]}var k=b.begin().With({name:m,end:n[1],parse:this});if(n[0]&&this[n[0]]){k=this[n[0]].apply(this,[k].concat(n.slice(2)))}this.Push(k)},End:function(k){this.Push(b.end().With({name:this.GetArgument(k)}))},Equation:function(k,l){return l},ExtensionEnv:function(l,k){this.Extension(l.name,k,"environment")},Array:function(m,o,t,r,s,n,k,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){var l=(u.charAt(0)+u.charAt(u.length-1)).replace(/[^|:]/g,"");if(l!==""){q.arraydef.frame={"|":"solid",":":"dashed"}[l.charAt(0)];q.arraydef.framespacing=".5em .5ex"}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(k==="D"){q.arraydef.displaystyle=c}if(k==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=f}this.Push(m);return q},convertDelimiter:function(k){if(k){k=g.delimiter[k]}if(k==null){return null}if(k instanceof Array){k=k[0]}if(k.length===4){k=String.fromCharCode(parseInt(k,16))}return k},trimSpaces:function(k){if(typeof(k)!="string"){return k}return k.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var k=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(k){this.i+=k[1].length;return k[1]}else{this.i++;return" "}},GetArgument:function(l,m){switch(this.GetNext()){case"":if(!m){d.Error("Missing argument for "+l)}return null;case"}":if(!m){d.Error("Extra close brace or missing open brace")}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var k=++this.i,n=1;while(this.il.length){d.Error("Illegal macro parameter reference")}n=this.AddArgs(this.AddArgs(n,o),l[p-1]);o=""}}else{o+=p}}}return this.AddArgs(n,o)},AddArgs:function(l,k){if(k.match(/^[a-z]/i)&&l.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){l+=" "}if(l.length+k.length>d.config.MAXBUFFER){d.Error("MathJax internal buffer size exceeded; is there a recursive macro call?")}return l+k}});d.Augment({Stack:e,Parse:a,Definitions:g,Startup:j,config:{MAXMACROS:10000,MAXBUFFER:5*1024},Translate:function(k){var l,n=k.innerHTML.replace(/^\s+/,"").replace(/\s+$/,"");if(MathJax.Hub.Browser.isKonqueror){n=n.replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&")}var o=(k.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);n=d.prefilterMath(n,o,k);try{l=d.Parse(n).mml()}catch(m){if(!m.texError){throw m}l=this.formatError(m,n,o,k)}if(l.inferred){l=i.apply(MathJax.ElementJax,l.data)}else{l=i(l)}if(o){l.root.display="block"}return this.postfilterMath(l,o,k)},prefilterMath:function(l,m,k){return l.replace(/([_^]\s*\d)([0-9.,])/g,"$1 $2")},postfilterMath:function(l,m,k){this.combineRelations(l.root);return l},formatError:function(m,l,n,k){return i.merror(m.message.replace(/\n.*/,""))},Error:function(k){throw MathJax.Hub.Insert(Error(k),{texError:c})},Macro:function(k,l,m){g.macros[k]=["Macro"].concat([].slice.call(arguments,1))},combineRelations:function(l){for(var n=0,k=l.data.length;n0){align+="rl";spacing.push("0em 0em");j--}spacing=spacing.join(" ");if(g){return this.AMSarray(i,h,g,align,spacing)}return this.Array(i,null,null,align,spacing,".5em","D")},MultiIntegral:function(g,k){var j=this.GetNext();if(j==="\\"){var h=this.i;j=this.GetArgument(g);this.i=h;if(j==="\\limits"){if(g==="\\idotsint"){k="\\!\\!\\mathop{\\,\\,"+k+"}"}else{k="\\!\\!\\!\\mathop{\\,\\,\\,"+k+"}"}}}this.string=k+" "+this.string.slice(this.i);this.i=0},xArrow:function(i,m,k,g){var j={width:"+"+(k+g)+"mu",lspace:k+"mu"};var n=this.GetBrackets(i),o=this.ParseArg(i);var p=a.mo(a.chars(String.fromCharCode(m))).With({stretchy:true,texClass:a.TEXCLASS.REL});var h=a.munderover(p);h.SetData(h.over,a.mpadded(o).With(j).With({voffset:".15em"}));if(n){n=f.Parse(n,this.stack.env).mml();h.SetData(h.under,a.mpadded(n).With(j).With({voffset:"-.24em"}))}this.Push(h)},GetDelimiterArg:function(g){var h=this.trimSpaces(this.GetArgument(g));if(h==""){return null}if(!c.delimiter[h]){f.Error("Missing or unrecognized delimiter for "+g)}return this.convertDelimiter(h)}});d.multline=d.array.Subclass({type:"multline",EndEntry:function(){var g=a.mtd.apply(a,this.data);if(this.data.shove){g.columnalign=this.data.shove}this.row.push(g);this.data=[]},EndRow:function(){if(this.row.length!=1){f.Error("multline rows must have exactly one column")}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var h=this.table.length-1,j;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=a.ALIGN.LEFT}if(!this.table[h][0].columnalign){this.table[h][0].columnalign=a.ALIGN.RIGHT}var g=a.mtr;if(this.global.tag){this.table[0]=[this.global.tag].concat(this.table[0]);delete this.global.tag;g=a.mlabeledtr}this.table[0]=g.apply(a,this.table[0]);for(j=1,h=this.table.length;j]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}f=f.replace(/^\s*(?:\/\/)?\s*$/,"$2");f=f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity);g=b.ParseXML(f);if(g==null){b.Error("Error parsing MathML")}}var e=g.getElementsByTagName("parsererror")[0];if(e){b.Error("Error parsing MathML: "+e.textContent.replace(/This page.*?errors:|XML Parsing Error: |Below is a rendering of the page.*/g,""))}if(g.childNodes.length!==1){b.Error("MathML must be formed by a single element")}if(g.firstChild.nodeName.toLowerCase()==="html"){var d=g.getElementsByTagName("h1")[0];if(d&&d.textContent==="XML parsing error"&&d.nextSibling){b.Error("Error parsing MathML: "+String(d.nextSibling.nodeValue).replace(/fatal parsing error: /,""))}}if(g.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")!=="math"){b.Error("MathML must be formed by a element, not <"+g.firstChild.nodeName+">")}this.mml=this.MakeMML(g.firstChild)},MakeMML:function(h){var l=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");if(!(a[l]&&a[l].isa&&a[l].isa(a.mbase))){return a.merror("Unknown node type: "+l)}var d=a[l](),k,j,e,n;for(k=0,j=h.attributes.length;k").replace(/&/g,"&")}}g=this.prefilterMath(g,d)}try{e=b.Parse(g).mml}catch(f){if(!f.mathmlError){throw f}e=this.formatError(f,g,d)}return a(e)},prefilterMath:function(e,d){return e},prefilterMathML:function(d){return d},formatError:function(f,e,d){return a.merror(f.message.replace(/\n.*/,""))},Error:function(d){throw MathJax.Hub.Insert(Error(d),{mathmlError:true})},parseDOM:function(d){return this.parser.parseFromString(d,"text/xml")},parseMS:function(d){return(this.parser.loadXML(d)?this.parser:null)},parseDIV:function(d){this.div.innerHTML=d.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(d){return null},createParser:function(){if(window.DOMParser){this.parser=new DOMParser();return(this.parseDOM)}else{if(window.ActiveXObject){var e=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var f=0,d=e.length;f=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax.id==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;gj){x.style.width=j}}if(x.offsetHeight>p){x.style.Height=p+"px"}if(s.nextSibling){s.parentNode.insertBefore(k,s.nextSibling)}else{v.appendChild(k)}}else{if(this.operaPositionBug){x.style.width=Math.min(j,u.offsetWidth)+"px"}}this.Position(x,w,(o==="MathML"&&v.nodeName.toLowerCase()==="div"));x.style.visibility="";if(this.settings.zoom==="Hover"){n.onmouseover=this.Remove}if(window.addEventListener){addEventListener("resize",this.Resize,false)}else{if(window.attachEvent){attachEvent("onresize",this.Resize)}else{this.onresize=window.onresize;window.onresize=this.Resize}}return d(l)},ZoomHTMLCSS:function(o,q,p){q.className="MathJax";b.idPostfix="-zoom";b.getScales(q,q);o.toHTML(q,q);var r=o.HTMLspanElement().bbox;b.idPostfix="";if(r.width&&r.width!=="100%"){var j=Math.floor(0.85*document.body.clientWidth);q.style.width=j+"px";q.style.display="inline-block";var k=(o.id||"MathJax-Span-"+o.spanID)+"-zoom";var l=document.getElementById(k).firstChild;while(l&&l.style.width!==r.width){l=l.nextSibling}if(l){l.style.width="100%"}}q.appendChild(this.topImg);var n=this.topImg.offsetTop;q.removeChild(this.topImg);var m=(this.msieWidthBug?b.getW(p)*b.em:p.offsetWidth);return{w:r.w*b.em,Y:-n,W:m}},ZoomMathML:function(k,l,m){k.toNativeMML(l,l);var n;l.appendChild(this.topImg);n=this.topImg.offsetTop;l.removeChild(this.topImg);var j=(this.ffMMLwidthBug?m.parentNode:m).offsetWidth;return{w:l.offsetWidth,Y:-n,W:j}},Position:function(p,n,r){var k=this.Resize(),m=k.x,l=k.y,j=n.W;if(this.msiePositionBug){j=-j}if(r&&this.ffMMLcenterBug){j=0}var q=-Math.floor((p.offsetWidth-j)/2),o=n.Y;p.style.left=Math.max(q,20-m)+"px";p.style.top=Math.max(o,20-l)+"px"},Resize:function(l){if(f.onresize){f.onresize(l)}var j=0,o=0,n=document.getElementById("MathJax_ZoomFrame"),k=document.getElementById("MathJax_ZoomOverlay");var m=(f.msieZIndexBug?document.getElementById("MathJax_ZoomTracker"):n);if(f.operaPositionBug){n.style.border="1px solid"}if(m.offsetParent){do{j+=m.offsetLeft;o+=m.offsetTop}while(m=m.offsetParent)}if(f.operaPositionBug){n.style.border=""}if(f.msieZIndexBug){n.style.left=j+"px";n.style.top=o+"px"}k.style.left=(-j)+"px";k.style.top=(-o)+"px";if(f.msiePositionBug){setTimeout(f.SetWH,0)}else{f.SetWH()}return{x:j,y:o}},SetWH:function(){var j=document.getElementById("MathJax_ZoomOverlay");j.style.width=j.style.height="1px";j.style.width=document.body.scrollWidth+"px";j.style.height=document.body.scrollHeight+"px"},Remove:function(k){var l=document.getElementById("MathJax_ZoomFrame");if(l){l.parentNode.removeChild(l);l=document.getElementById("MathJax_ZoomTracker");if(l){l.parentNode.removeChild(l)}if(f.operaRefreshBug){var j=c.addElement(document.body,"div",{style:{position:"fixed",left:0,top:0,width:"100%",height:"100%",backgroundColor:"white",opacity:0},id:"MathJax_OperaDiv"});document.body.removeChild(j)}if(window.removeEventListener){removeEventListener("resize",f.Resize,false)}else{if(window.detachEvent){detachEvent("onresize",f.Resize)}else{window.onresize=f.onresize;delete f.onresize}}}return d(k)}};a.Register.StartupHook("HTML-CSS Jax Ready",function(){b=MathJax.OutputJax["HTML-CSS"];b.Augment({HandleEvent:f.HandleEvent})});a.Register.StartupHook("NativeMML Jax Ready",function(){h=MathJax.OutputJax.NativeMML;h.Augment({HandleEvent:f.HandleEvent,MSIEmouseup:function(l,k,j){if(this.trapUp){delete this.trapUp;return true}if(this.MSIEzoomKeys(l)){return true}return false},MSIEclick:function(l,k,j){if(this.trapClick){delete this.trapClick;return true}if(!this.MSIEzoomKeys(l)){return false}if(!this.settings.zoom.match(/Click/)){return false}return(f.Click(l,k)===false)},MSIEdblclick:function(l,k,j){if(!this.MSIEzoomKeys(l)){return false}return(f.DblClick(l,k)===false)},MSIEmouseover:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEmouseout:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.ClearTimer();return true},MSIEmousemove:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEzoomKeys:function(j){if(this.settings.CTRL&&!j.ctrlKey){return false}if(this.settings.CMD&&!j.metaKey){return false}if(this.settings.ALT&&!j.altKey){return false}if(this.settings.Shift&&!j.shiftKey){return false}return true}})});a.Browser.Select({MSIE:function(j){var k=(document.compatMode==="BackCompat");var l=j.versionAtLeast("8.0")&&document.documentMode>7;f.msiePositionBug=true;f.msieWidthBug=!k;f.msieIE8Bug=l;f.msieZIndexBug=!l;f.msieInlineBlockAlignBug=(!l||k);if(document.documentMode>=9){delete g.styles["#MathJax_Zoom"].filter}},Opera:function(j){f.operaPositionBug=true;f.operaRefreshBug=true},Firefox:function(j){f.ffMMLwidthBug=true;f.ffMMLcenterBug=true}});f.topImg=(f.msieInlineBlockAlignBug?c.Element("img",{style:{width:0,height:0},src:"about:blank"}):c.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(f.operaPositionBug){f.topImg.style.border="1px solid"}MathJax.Callback.Queue(["Styles",e,g.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",e,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); + +(function(b,c,f){var k="1.1.4";MathJax.Extension.MathMenu={version:k};var i=b.Browser.isPC,g=b.Browser.isMSIE;var e=(i?null:"5px");var j=b.CombineConfig("MathMenu",{delay:150,helpURL:"http://www.mathjax.org/help/user/",showRenderer:true,showFontMenu:false,showContext:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:100,height:50},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(i?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":e,"-webkit-border-radius":e,"-moz-border-radius":e,"-khtml-border-radius":e,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(i?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuTitle":{"background-color":"#CCCCCC",margin:(i?"-1px -1px 1px -1px":"-5px 0 0 0"),"text-align":"center","font-style":"italic","font-size":"80%",color:"#444444",padding:"2px 0",overflow:"hidden"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(i?"1em":".7em")},".MathJax_MenuLabel":{padding:(i?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(i?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(i?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(i?"Highlight":"#606872"),color:(i?"HighlightText":"white")}}});var d=function(l){if(!l){l=window.event}if(l){if(l.preventDefault){l.preventDefault()}if(l.stopPropagation){l.stopPropagation()}l.cancelBubble=true;l.returnValue=false}return false};var a=MathJax.Menu=MathJax.Object.Subclass({version:k,items:[],posted:false,title:null,margin:5,Init:function(l){this.items=[].slice.call(arguments,0)},With:function(l){if(l){b.Insert(this,l)}return this},Post:function(n,v){if(!n){n=window.event}var t=(!this.title?null:[["div",{className:"MathJax_MenuTitle"},[this.title]]]);var l=document.getElementById("MathJax_MenuFrame");if(!l){l=a.Background(this)}var o=c.addElement(l,"div",{onmouseup:a.Mouseup,ondblclick:this.False,ondragstart:this.False,onselectstart:this.False,oncontextmenu:this.False,menuItem:this,className:"MathJax_Menu"},t);for(var q=0,p=this.items.length;qdocument.body.offsetWidth-this.margin){u=document.body.offsetWidth-o.offsetWidth-this.margin}a.skipUp=true}else{var r="left",w=v.offsetWidth;u=v.offsetWidth-2;s=0;while(v&&v!==l){u+=v.offsetLeft;s+=v.offsetTop;v=v.parentNode}if(u+o.offsetWidth>document.body.offsetWidth-this.margin){r="right";u=Math.max(this.margin,u-w-o.offsetWidth+6)}if(!i){o.style["borderRadiusTop"+r]=0;o.style["WebkitBorderRadiusTop"+r]=0;o.style["MozBorderRadiusTop"+r]=0;o.style["KhtmlBorderRadiusTop"+r]=0}}o.style.left=u+"px";o.style.top=s+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return this.False(n)},Remove:function(l,m){var n=document.getElementById("MathJax_MenuFrame");if(n){n.parentNode.removeChild(n);if(this.msieBackgroundBug){detachEvent("onresize",a.Resize)}}},Mouseup:function(l,m){if(a.skipUp){delete a.skipUp}else{this.Remove(l,m)}},False:d},{config:j,div:null,Remove:function(l){a.Event(l,this,"Remove")},Mouseover:function(l){a.Event(l,this,"Mouseover")},Mouseout:function(l){a.Event(l,this,"Mouseout")},Mousedown:function(l){a.Event(l,this,"Mousedown")},Mouseup:function(l){a.Event(l,this,"Mouseup")},Mousemove:function(l){a.Event(l,this,"Mousemove")},Event:function(n,o,l){if(!n){n=window.event}var m=o.menuItem;if(m&&m[l]){return m[l](n,o)}return null},BGSTYLE:{position:"absolute",left:0,top:0,"z-index":200,width:"100%",height:"100%",border:0,padding:0,margin:0},Background:function(m){var n=c.addElement(document.body,"div",{style:this.BGSTYLE,id:"MathJax_MenuFrame"},[["div",{style:this.BGSTYLE,menuItem:m,onmousedown:this.Remove}]]);var l=n.firstChild;if(m.msieBackgroundBug){l.style.backgroundColor="white";l.style.filter="alpha(opacity=0)";n.width=n.height=0;this.Resize();attachEvent("onresize",this.Resize)}else{l.style.position="fixed"}return n},Resize:function(){setTimeout(a.SetWH,0)},SetWH:function(){var l=document.getElementById("MathJax_MenuFrame");if(l){l=l.firstChild;l.style.width=l.style.height="1px";l.style.width=document.body.scrollWidth+"px";l.style.height=document.body.scrollHeight+"px"}},saveCookie:function(){c.Cookie.Set("menu",this.cookie)},getCookie:function(){this.cookie=c.Cookie.Get("menu")}});var h=a.ITEM=MathJax.Object.Subclass({name:"",Create:function(m){if(!this.hidden){var l={onmouseover:a.Mouseover,onmouseout:a.Mouseout,onmouseup:a.Mouseup,onmousedown:this.False,ondragstart:this.False,onselectstart:this.False,onselectend:this.False,className:"MathJax_MenuItem",menuItem:this};if(this.disabled){l.className+=" MathJax_MenuDisabled"}c.addElement(m,"div",l,this.Label(l,m))}},Mouseover:function(q,s){if(!this.disabled){this.Activate(s)}if(!this.menu||!this.menu.posted){var r=document.getElementById("MathJax_MenuFrame").childNodes,n=s.parentNode.childNodes;for(var o=0,l=n.length;o=0&&s.parentNode.menuItem!==r[l].menuItem){r[l].menuItem.posted=false;r[l].parentNode.removeChild(r[l]);l--}if(this.Timer){this.Timer(q,s)}}},Mouseout:function(l,m){if(!this.menu||!this.menu.posted){this.Deactivate(m)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(l,m){return this.Remove(l,m)},Remove:function(l,m){m=m.parentNode.menuItem;return m.Remove(l,m)},Activate:function(l){this.Deactivate(l);l.className+=" MathJax_MenuActive"},Deactivate:function(l){l.className=l.className.replace(/ MathJax_MenuActive/,"")},With:function(l){if(l){b.Insert(this,l)}return this},False:d});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(l,n,m){this.name=l;this.action=n;this.With(m)},Label:function(l,m){return[this.name]},Mouseup:function(l,m){if(!this.disabled){this.Remove(l,m);this.action.call(this,l)}return this.False(l)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(i&&!b.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(l,n){this.name=l;var m=1;if(!(n instanceof a.ITEM)){this.With(n),m++}this.menu=a.apply(a,[].slice.call(arguments,m))},Label:function(l,m){l.onmousemove=a.Mousemove;this.menu.posted=false;return[this.name+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(l,m){if(this.timer){clearTimeout(this.timer)}l={clientX:l.clientX,clientY:l.clientY};this.timer=setTimeout(MathJax.Callback(["Mouseup",this,l,m]),j.delay)},Mouseup:function(n,p){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(n,p)}else{var o=document.getElementById("MathJax_MenuFrame").childNodes,l=o.length-1;while(l>=0){var q=o[l];q.menuItem.posted=false;q.parentNode.removeChild(q);if(q.menuItem===this.menu){break}l--}}}return this.False(n)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(i?"\u25CF":"\u2713"),Init:function(m,l,n){this.name=m;this.variable=l;this.With(n);if(this.value==null){this.value=this.name}},Label:function(m,n){var l={className:"MathJax_MenuRadioCheck"};if(j.settings[this.variable]!==this.value){l={style:{display:"none"}}}return[["span",l,[this.marker]]," "+this.name]},Mouseup:function(p,q){if(!this.disabled){var r=q.parentNode.childNodes;for(var n=0,l=r.length;n/g,">");n.document.open();n.document.write("MathJax Equation Source");n.document.write("
"+r+"
");n.document.write("");n.document.close();var p=n.document.body.firstChild;var o=(n.outerHeight-n.innerHeight)||30,m=(n.outerWidth-n.innerWidth)||30;m=Math.min(Math.floor(0.5*screen.width),p.offsetWidth+m+25);o=Math.min(Math.floor(0.5*screen.height),p.offsetHeight+o+25);n.resizeTo(m,o);if(q&&q.screenX!=null){var l=Math.max(0,Math.min(q.screenX-Math.floor(m/2),screen.width-m-20)),s=Math.max(0,Math.min(q.screenY-Math.floor(o/2),screen.height-o-20));n.moveTo(l,s)}delete a.ShowSource.w};a.Scale=function(){var m=MathJax.OutputJax["HTML-CSS"],l=MathJax.OutputJax.NativeMML;var o=(m?m.config.scale:l.config.scale);var n=prompt("Scale all mathematics (compared to surrounding text) by",o+"%");if(n){if(n.match(/^\s*\d+\s*%?\s*$/)){n=parseInt(n);if(n){if(n!==o){if(m){m.config.scale=n}if(l){l.config.scale=n}a.cookie.scale=n;a.saveCookie();b.Reprocess()}}else{alert("The scale should not be zero")}}else{alert("The scale should be a perentage (e.g., 120%)")}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){f.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var l=b.config.outputJax["jax/mml"];if(l[0]!==j.settings.renderer){MathJax.Callback.Queue(["Require",f,"[MathJax]/jax/output/"+j.settings.renderer+"/config.js"],["Post",b.Startup.signal,j.settings.renderer+" output selected"],[function(){var p=MathJax.OutputJax[j.settings.renderer];for(var o=0,n=l.length;o7;a.Augment({margin:20,msieBackgroundBug:(m||!n),msieAboutBug:m});if(document.documentMode>=9){delete j.styles["#MathJax_About"].filter;delete j.styles[".MathJax_Menu"].filter}}});b.Register.StartupHook("End Config",function(){j.settings=b.config.menuSettings;if(!j.settings.format){j.settings.format=(MathJax.InputJax.TeX?"Original":"MathML")}if(typeof(j.settings.showRenderer)!=="undefined"){j.showRenderer=j.settings.showRenderer}if(typeof(j.settings.showFontMenu)!=="undefined"){j.showFontMenu=j.settings.showFontMenu}if(typeof(j.settings.showContext)!=="undefined"){j.showContext=j.settings.showContext}a.getCookie();a.menu=a(h.COMMAND("Show Source",a.ShowSource),h.SUBMENU("Format",h.RADIO("MathML","format"),h.RADIO("Original","format",{value:"Original"})),h.RULE(),h.SUBMENU("Settings",h.SUBMENU("Zoom Trigger",h.RADIO("Hover","zoom",{action:a.Zoom}),h.RADIO("Click","zoom",{action:a.Zoom}),h.RADIO("Double-Click","zoom",{action:a.Zoom}),h.RADIO("No Zoom","zoom",{value:"None"}),h.RULE(),h.LABEL("Trigger Requires:"),h.CHECKBOX((b.Browser.isMac?"Option":"Alt"),"ALT"),h.CHECKBOX("Command","CMD",{hidden:!b.Browser.isMac}),h.CHECKBOX("Control","CTRL",{hidden:b.Browser.isMac}),h.CHECKBOX("Shift","Shift")),h.SUBMENU("Zoom Factor",h.RADIO("125%","zscale"),h.RADIO("133%","zscale"),h.RADIO("150%","zscale"),h.RADIO("175%","zscale"),h.RADIO("200%","zscale"),h.RADIO("250%","zscale"),h.RADIO("300%","zscale"),h.RADIO("400%","zscale")),h.RULE(),h.SUBMENU("Math Renderer",{hidden:!j.showRenderer},h.RADIO("HTML-CSS","renderer",{action:a.Renderer}),h.RADIO("MathML","renderer",{action:a.Renderer,value:"NativeMML"})),h.SUBMENU("Font Preference",{hidden:!j.showFontMenu},h.LABEL("For HTML-CSS:"),h.RADIO("Auto","font",{action:a.Font}),h.RULE(),h.RADIO("TeX (local)","font",{action:a.Font}),h.RADIO("TeX (web)","font",{action:a.Font}),h.RADIO("TeX (image)","font",{action:a.Font}),h.RULE(),h.RADIO("STIX (local)","font",{action:a.Font})),h.SUBMENU("Contextual Menu",{hidden:!j.showContext},h.RADIO("MathJax","context"),h.RADIO("Browser","context")),h.COMMAND("Scale All Math ...",a.Scale)),h.RULE(),h.COMMAND("About MathJax",a.About),h.COMMAND("MathJax Help",a.Help))});a.showRenderer=function(l){a.cookie.showRenderer=j.showRenderer=l;a.saveCookie();a.menu.items[3].menu.item[3].hidden=!l};a.showFontMenu=function(l){a.cookie.showFontMenu=j.showFontMenu=l;a.saveCookie();a.menu.items[3].menu.items[4].hidden=!l};a.showContext=function(l){a.cookie.showContext=j.showContext=l;a.saveCookie();a.menu.items[3].menu.items[5].hidden=!l};MathJax.Callback.Queue(["Styles",f,j.styles],["Post",b.Startup.signal,"MathMenu Ready"],["loadComplete",f,"[MathJax]/extensions/MathMenu.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax); + +MathJax.ElementJax.mml=MathJax.ElementJax({mimeType:"jax/mml"},{id:"mml",version:"1.1.1",directory:MathJax.ElementJax.directory+"/mml",extensionDir:MathJax.ElementJax.extensionDir+"/mml",optableDir:MathJax.ElementJax.directory+"/mml/optable"});MathJax.ElementJax.mml.Augment({Init:function(){if(arguments.length===1&&arguments[0].type==="math"){this.root=arguments[0]}else{this.root=MathJax.ElementJax.mml.math.apply(this,arguments)}if(this.root.mode){if(!this.root.display&&this.root.mode==="display"){this.root.display="block"}delete this.root.mode}}},{INHERIT:"_inherit_",AUTO:"_auto_",SIZE:{INFINITY:"infinity",SMALL:"small",NORMAL:"normal",BIG:"big"},COLOR:{TRANSPARENT:"transparent"},VARIANT:{NORMAL:"normal",BOLD:"bold",ITALIC:"italic",BOLDITALIC:"bold-italic",DOUBLESTRUCK:"double-struck",FRAKTUR:"fraktur",BOLDFRAKTUR:"bold-fraktur",SCRIPT:"script",BOLDSCRIPT:"bold-script",SANSSERIF:"sans-serif",BOLDSANSSERIF:"bold-sans-serif",SANSSERIFITALIC:"sans-serif-italic",SANSSERIFBOLDITALIC:"sans-serif-bold-italic",MONOSPACE:"monospace",INITIAL:"inital",TAILED:"tailed",LOOPED:"looped",STRETCHED:"stretched",CALIGRAPHIC:"-tex-caligraphic",OLDSTYLE:"-tex-oldstyle"},FORM:{PREFIX:"prefix",INFIX:"infix",POSTFIX:"postfix"},LINEBREAK:{AUTO:"auto",NEWLINE:"newline",NOBREAK:"nobreak",GOODBREAK:"goodbreak",BADBREAK:"badbreak"},LINEBREAKSTYLE:{BEFORE:"before",AFTER:"after",DUPLICATE:"duplicate",INFIXLINBREAKSTYLE:"infixlinebreakstyle"},INDENTALIGN:{LEFT:"left",CENTER:"center",RIGHT:"right",AUTO:"auto",ID:"id",INDENTALIGN:"indentalign"},INDENTSHIFT:{INDENTSHIFT:"indentshift"},LINETHICKNESS:{THIN:"thin",MEDIUM:"medium",THICK:"thick"},NOTATION:{LONGDIV:"longdiv",ACTUARIAL:"actuarial",RADICAL:"radical",BOX:"box",ROUNDEDBOX:"roundedbox",CIRCLE:"circle",LEFT:"left",RIGHT:"right",TOP:"top",BOTTOM:"bottom",UPDIAGONALSTRIKE:"updiagonalstrike",DOWNDIAGONALSTRIKE:"downdiagonalstrike",VERTICALSTRIKE:"verticalstrike",HORIZONTALSTRIKE:"horizontalstrike",MADRUWB:"madruwb"},ALIGN:{TOP:"top",BOTTOM:"bottom",CENTER:"center",BASELINE:"baseline",AXIS:"axis",LEFT:"left",RIGHT:"right"},LINES:{NONE:"none",SOLID:"solid",DASHED:"dashed"},SIDE:{LEFT:"left",RIGHT:"right",LEFTOVERLAP:"leftoverlap",RIGHTOVERLAP:"rightoverlap"},WIDTH:{AUTO:"auto",FIT:"fit"},ACTIONTYPE:{TOGGLE:"toggle",STATUSLINE:"statusline",TOOLTIP:"tooltip",INPUT:"input"},LENGTH:{VERYVERYTHINMATHSPACE:"veryverythinmathspace",VERYTHINMATHSPACE:"verythinmathspace",THINMATHSPACE:"thinmathspace",MEDIUMMATHSPACE:"mediummathspace",THICKMATHSPACE:"thickmathspace",VERYTHICKMATHSPACE:"verythickmathspace",VERYVERYTHICKMATHSPACE:"veryverythickmathspace",NEGATIVEVERYVERYTHINMATHSPACE:"negativeveryverythinmathspace",NEGATIVEVERYTHINMATHSPACE:"negativeverythinmathspace",NEGATIVETHINMATHSPACE:"negativethinmathspace",NEGATIVEMEDIUMMATHSPACE:"negativemediummathspace",NEGATIVETHICKMATHSPACE:"negativethickmathspace",NEGATIVEVERYTHICKMATHSPACE:"negativeverythickmathspace",NEGATIVEVERYVERYTHICKMATHSPACE:"negativeveryverythickmathspace"},OVERFLOW:{LINBREAK:"linebreak",SCROLL:"scroll",ELIDE:"elide",TRUNCATE:"truncate",SCALE:"scale"},UNIT:{EM:"em",EX:"ex",PX:"px",IN:"in",CM:"cm",MM:"mm",PT:"pt",PC:"pc"},TEXCLASS:{ORD:0,OP:1,BIN:2,REL:3,OPEN:4,CLOSE:5,PUNCT:6,INNER:7,VCENTER:8,NONE:-1},PLANE1:String.fromCharCode(55349)});(function(a){var d=false;var b=true;a.mbase=MathJax.Object.Subclass({type:"base",isToken:d,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT},noInherit:{},Init:function(){this.data=[];if(this.inferRow&&!(arguments.length===1&&arguments[0].inferred)){this.Append(a.mrow().With({inferred:b}))}this.Append.apply(this,arguments)},With:function(f){for(var g in f){if(f.hasOwnProperty(g)){this[g]=f[g]}}return this},Append:function(){if(this.inferRow&&this.data.length){this.data[0].Append.apply(this.data[0],arguments)}else{for(var g=0,f=arguments.length;g0&&this.Get("scriptlevel")>0&&h>=0){return""}return this.TEXSPACELENGTH[Math.abs(h)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(f){return""},isSpacelike:function(){return d},isEmbellished:function(){return d},Core:function(){return this},CoreMO:function(){return this},lineBreak:function(){if(this.isEmbellished()){return this.CoreMO().lineBreak()}else{return"none"}},array:function(){if(this.inferred){return this.data}else{return[this]}},toString:function(){return this.type+"("+this.data.join(",")+")"}},{childrenSpacelike:function(){for(var f=0;f=0;f--){if(this.data[0]&&!this.data[f].isSpacelike()){return this.data[f]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(h){for(var g=0,f=this.data.length;g0){f++}return f},adjustChild_texprimestyle:function(f){if(f==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:b,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(f){return b}});a.mroot=a.mbase.Subclass({type:"mroot",texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(f){if(f===1){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g===1){f+=2}return f},adjustChild_texprimestyle:function(f){if(f===0){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:b,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(h){var g=this.scriptlevel;if(g==null){g=this.Get("scriptlevel")}else{if(String(g).match(/^ *[-+]/)){delete this.scriptlevel;var f=this.Get("scriptlevel");this.scriptlevel=g;g=f+parseInt(g)}}return g},inheritFromMe:b,noInherit:{mpadded:{width:b,height:b,depth:b,lspace:b,voffset:b},mtable:{width:b,height:b,depth:b,align:b}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:b,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(j){this.getPrevClass(j);var g=this.getValues("open","close","separators");g.open=g.open.replace(/[ \t\n\r]/g,"");g.close=g.close.replace(/[ \t\n\r]/g,"");g.separators=g.separators.replace(/[ \t\n\r]/g,"");if(g.open!==""){this.SetData("open",a.mo(g.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));j=this.data.open.setTeXclass(j)}if(g.separators!==""){while(g.separators.length0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g>0){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.sub){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(f){if(f%2===1){return b}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(f){if(f==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(f):a.TEXCLASS.ORD)}if(f==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(f==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return d},adjustChild_displaystyle:function(f){if(f>0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g==this.under&&!this.Get("accentunder")){f++}if(g==this.over&&!this.Get("accent")){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.base&&this.data[this.over]){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:b,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:d,equalcolumns:d,displaystyle:d,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:b,noInherit:{mtable:{align:b,rowalign:b,columnalign:b,groupalign:b,alignmentscope:b,columnwidth:b,width:b,rowspacing:b,columnspacing:b,rowlines:b,columnlines:b,frame:b,framespacing:b,equalrows:b,equalcolumns:b,side:b,minlabelspacing:b,texClass:b,useHeight:1}},Append:function(){for(var g=0,f=arguments.length;g":e.REL,"?":[1,1,c.CLOSE],"\\":e.ORD,_:e.ORD11,"|":[2,2,c.ORD,{fence:true,stretchy:true,symmetric:true}],"#":e.ORD,"$":e.ORD,"\u002E":[0,3,c.PUNCT,{separator:true}],"\u02B9":e.ORD,"\u02C9":e.ACCENT,"\u02CA":e.ACCENT,"\u02CB":e.ACCENT,"\u0300":e.ACCENT,"\u0301":e.ACCENT,"\u0303":e.WIDEACCENT,"\u0304":e.ACCENT,"\u0306":e.ACCENT,"\u0307":e.ACCENT,"\u0308":e.ACCENT,"\u030C":e.ACCENT,"\u0332":e.WIDEACCENT,"\u0338":e.REL4,"\u2015":[0,0,c.ORD,{stretchy:true}],"\u2017":[0,0,c.ORD,{stretchy:true}],"\u2020":e.BIN3,"\u2021":e.BIN3,"\u20D7":e.ACCENT,"\u2118":e.ORD,"\u2205":e.ORD,"\u221E":e.ORD,"\u2305":e.BIN3,"\u2306":e.BIN3,"\u2322":e.REL4,"\u2323":e.REL4,"\u2329":e.OPEN,"\u232A":e.CLOSE,"\u23AA":e.ORD,"\u23AF":[0,0,c.ORD,{stretchy:true}],"\u23B0":e.OPEN,"\u23B1":e.CLOSE,"\u25EF":e.BIN3,"\u2660":e.ORD,"\u2661":e.ORD,"\u2662":e.ORD,"\u2663":e.ORD,"\u27EE":e.OPEN,"\u27EF":e.CLOSE,"\u27FC":e.REL4,"\u3008":e.OPEN,"\u3009":e.CLOSE,"\uFE37":e.WIDEACCENT,"\uFE38":e.WIDEACCENT}}},{OPTYPES:e})})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); + +MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="1.1.1";var a=MathJax.ElementJax.mml;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.MathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},MathMLattributes:function(){var j=[],g=this.defaults;var c=this.copyAttributes,l=this.skipAttributes;if(this.type==="math"){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.quoteHTML(k)+'"')}this[d]=k}}}for(var h=0,f=c.length;h126){e[f]="&#x"+h.toString(16).toUpperCase()+";"}else{var g={"&":"&","<":"<",">":">",'"':"""}[e[f]];if(g){e[f]=g}}}return e.join("")}});a.msubsup.Augment({toMathML:function(h){var e=this.type;if(this.data[this.sup]==null){e="msub"}if(this.data[this.sub]==null){e="msup"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(c){return c+"\n"+this.data[0].toMathML(c+" ")+"\n"+c+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.quoteHTML(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); + +(function(){var c="1.1";var a=MathJax.Hub.CombineConfig("TeX.noErrors",{multiLine:true,inlineDelimiters:["",""],style:{"font-family":"serif","font-size":"80%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var b="\u00A0";MathJax.Extension["TeX/noErrors"]={version:c,config:a};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){MathJax.InputJax.TeX.Augment({formatError:function(f,e,g,d){var i=a.inlineDelimiters;var h=(g||a.multiLine);if(!g){e=i[0]+e+i[1]}if(h){e=e.replace(/ /g,b)}else{e=e.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(e).With({isError:true,multiLine:h})}})});MathJax.Hub.Register.StartupHook("HTML-CSS Jax Config",function(){MathJax.Hub.Config({"HTML-CSS":{styles:{".MathJax .merror":MathJax.Hub.Insert({"font-style":null,"background-color":null,"vertical-align":(MathJax.Hub.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})})})();MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var a=MathJax.ElementJax.mml;var b=MathJax.OutputJax["HTML-CSS"];var c=a.math.prototype.toHTML;a.math.Augment({toHTML:function(d,e){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toHTML(d)}return c.call(this,d,e)}});a.merror.Augment({toHTML:function(j){if(!this.isError){return a.mbase.prototype.toHTML.call(this,j)}j=this.HTMLcreateSpan(j);if(this.multiLine){j.style.display="inline-block"}var l=this.data[0].data[0].data.join("").split(/\n/);for(var g=0,e=l.length;g1){var k=(n.h+n.d)/2,h=b.TeX.x_height/2;var f=b.config.styles[".MathJax .merror"]["font-size"];if(f&&f.match(/%/)){h*=parseInt(f)/100}j.parentNode.style.verticalAlign=b.Em(n.d+(h-k));n.h=h+k;n.d=k-h}j.bbox={h:n.h,d:n.d,w:d,lw:0,rw:d};return j}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Hub.Register.StartupHook("NativeMML Jax Ready",function(){var b=MathJax.ElementJax.mml;var a=MathJax.Extension["TeX/noErrors"].config;var c=b.math.prototype.toNativeMML;b.math.Augment({toNativeMML:function(d){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toNativeMML(d)}return c.call(this,d)}});b.merror.Augment({toNativeMML:function(g){if(!this.isError){return b.mbase.prototype.toNativeMML.call(this,g)}g=g.appendChild(document.createElement("span"));var h=this.data[0].data[0].data.join("").split(/\n/);for(var f=0,e=h.length;f1){g.style.verticalAlign="middle"}}for(var j in a.style){if(a.style.hasOwnProperty(j)){var d=j.replace(/-./g,function(i){return i.charAt(1).toUpperCase()});g.style[d]=a.style[j]}}return g}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); + +MathJax.Extension["TeX/noUndefined"]={version:"1.1",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(c){this.Push(a.mtext(c).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); + +(function(d){var c=true,f=false,i,h=String.fromCharCode(160);var e=MathJax.Object.Subclass({Init:function(k){this.global={};this.data=[b.start().With({global:this.global})];if(k){this.data[0].env=k}this.env=this.data[0].env},Push:function(){var l,k,n,o;for(l=0,k=arguments.length;l":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:i.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:i.TEXCLASS.ORD}],"\\|":["2225",{texClass:i.TEXCLASS.ORD}],"\\vert":["|",{texClass:i.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",c,0],textstyle:["SetStyle","T",f,0],scriptstyle:["SetStyle","S",f,1],scriptscriptstyle:["SetStyle","SS",f,2],rm:["SetFont",i.VARIANT.NORMAL],mit:["SetFont",i.VARIANT.ITALIC],oldstyle:["SetFont",i.VARIANT.OLDSTYLE],cal:["SetFont",i.VARIANT.CALIGRAPHIC],it:["SetFont",i.VARIANT.ITALIC],bf:["SetFont",i.VARIANT.BOLD],bbFont:["SetFont",i.VARIANT.DOUBLESTRUCK],scr:["SetFont",i.VARIANT.SCRIPT],frak:["SetFont",i.VARIANT.FRAKTUR],sf:["SetFont",i.VARIANT.SANSSERIF],tt:["SetFont",i.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedOp",0],arccos:["NamedOp",0],arctan:["NamedOp",0],arg:["NamedOp",0],cos:["NamedOp",0],cosh:["NamedOp",0],cot:["NamedOp",0],coth:["NamedOp",0],csc:["NamedOp",0],deg:["NamedOp",0],det:"NamedOp",dim:["NamedOp",0],exp:["NamedOp",0],gcd:"NamedOp",hom:["NamedOp",0],inf:"NamedOp",ker:["NamedOp",0],lg:["NamedOp",0],lim:"NamedOp",liminf:["NamedOp",null,"lim inf"],limsup:["NamedOp",null,"lim sup"],ln:["NamedOp",0],log:["NamedOp",0],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedOp",0],sin:["NamedOp",0],sinh:["NamedOp",0],sup:"NamedOp",tan:["NamedOp",0],tanh:["NamedOp",0],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","203E"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",i.LENGTH.THINMATHSPACE],":":["Spacer",i.LENGTH.THINMATHSPACE],">":["Spacer",i.LENGTH.MEDIUMMATHSPACE],";":["Spacer",i.LENGTH.THICKMATHSPACE],"!":["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",i.LENGTH.THINMATHSPACE],negthinspace:["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",i.TEXCLASS.ORD,0.85],Big:["MakeBig",i.TEXCLASS.ORD,1.15],bigg:["MakeBig",i.TEXCLASS.ORD,1.45],Bigg:["MakeBig",i.TEXCLASS.ORD,1.75],bigl:["MakeBig",i.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",i.TEXCLASS.OPEN,1.15],biggl:["MakeBig",i.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",i.TEXCLASS.OPEN,1.75],bigr:["MakeBig",i.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",i.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",i.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",i.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",i.TEXCLASS.REL,0.85],Bigm:["MakeBig",i.TEXCLASS.REL,1.15],biggm:["MakeBig",i.TEXCLASS.REL,1.45],Biggm:["MakeBig",i.TEXCLASS.REL,1.75],mathord:["TeXAtom",i.TEXCLASS.ORD],mathop:["TeXAtom",i.TEXCLASS.OP],mathopen:["TeXAtom",i.TEXCLASS.OPEN],mathclose:["TeXAtom",i.TEXCLASS.CLOSE],mathbin:["TeXAtom",i.TEXCLASS.BIN],mathrel:["TeXAtom",i.TEXCLASS.REL],mathpunct:["TeXAtom",i.TEXCLASS.PUNCT],mathinner:["TeXAtom",i.TEXCLASS.INNER],vcenter:["TeXAtom",i.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","02CA"],grave:["Accent","02CB"],ddot:["Accent","00A8"],tilde:["Accent","02DC"],bar:["Accent","02C9"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","02C6"],vec:["Accent","20D7"],dot:["Accent","02D9"],widetilde:["Accent","02DC",1],widehat:["Accent","02C6",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em"],eqalign:["Matrix",null,null,"right left",i.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"Cr",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\rm mod}"],pmod:["Macro","\\pod{{\\rm mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}{\\rm mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"],not:["Macro","\\mathrel{\\rlap{\\kern.5em\\notChar}}"]," ":["Macro","\\text{ }"],space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],def:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Macro","",1],nonumber:["Macro",""],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],require:"Require"},environment:{array:["Array"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],eqnarray:["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],"eqnarray*":["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],equation:[null,"Equation"],"equation*":[null,"Equation"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var k=this.config.Macros;for(var l in k){if(k.hasOwnProperty(l)){if(typeof(k[l])==="string"){g.macros[l]=["Macro",k[l]]}else{g.macros[l]=["Macro"].concat(k[l])}}}}};var a=MathJax.Object.Subclass({Init:function(l,m){this.string=l;this.i=0;this.macroCount=0;var k;if(m){k={};for(var n in m){if(m.hasOwnProperty(n)){k[n]=m[n]}}}this.stack=d.Stack(k);this.Parse();this.Push(b.stop())},Parse:function(){var k;while(this.id.config.MAXMACROS){d.Error("MathJax maximum macro substitution count exceeded; is there a recursive macro call?")}},Matrix:function(l,n,s,p,q,m,k){var r=this.GetNext();if(r===""){d.Error("Missing argument for "+l)}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var o=b.array().With({requireClose:c,arraydef:{rowspacing:(m||"4pt"),columnspacing:(q||"1em")}});if(n||s){o.open=n;o.close=s}if(k==="D"){o.arraydef.displaystyle=c}if(p!=null){o.arraydef.columnalign=p}this.Push(o)},Entry:function(k){this.Push(b.cell().With({isEntry:c,name:k}))},Cr:function(k){this.Push(b.cell().With({isCR:c,name:k}))},HLine:function(l,m){if(m==null){m="solid"}var n=this.stack.Top();if(n.type!=="array"||n.data.length){d.Error("Misplaced "+l)}if(n.table.length==0){n.arraydef.frame=m}else{var k=(n.arraydef.rowlines?n.arraydef.rowlines.split(/ /):[]);while(k.lengthd.config.MAXMACROS){d.Error("MathJax maximum substitution count exceeded; is there a recursive latex environment?")}var n=g.environment[m];if(!(n instanceof Array)){n=[n]}var k=b.begin().With({name:m,end:n[1],parse:this});if(n[0]&&this[n[0]]){k=this[n[0]].apply(this,[k].concat(n.slice(2)))}this.Push(k)},End:function(k){this.Push(b.end().With({name:this.GetArgument(k)}))},Equation:function(k,l){return l},ExtensionEnv:function(l,k){this.Extension(l.name,k,"environment")},Array:function(m,o,t,r,s,n,k,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){var l=(u.charAt(0)+u.charAt(u.length-1)).replace(/[^|:]/g,"");if(l!==""){q.arraydef.frame={"|":"solid",":":"dashed"}[l.charAt(0)];q.arraydef.framespacing=".5em .5ex"}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(k==="D"){q.arraydef.displaystyle=c}if(k==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=f}this.Push(m);return q},convertDelimiter:function(k){if(k){k=g.delimiter[k]}if(k==null){return null}if(k instanceof Array){k=k[0]}if(k.length===4){k=String.fromCharCode(parseInt(k,16))}return k},trimSpaces:function(k){if(typeof(k)!="string"){return k}return k.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var k=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(k){this.i+=k[1].length;return k[1]}else{this.i++;return" "}},GetArgument:function(l,m){switch(this.GetNext()){case"":if(!m){d.Error("Missing argument for "+l)}return null;case"}":if(!m){d.Error("Extra close brace or missing open brace")}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var k=++this.i,n=1;while(this.il.length){d.Error("Illegal macro parameter reference")}n=this.AddArgs(this.AddArgs(n,o),l[p-1]);o=""}}else{o+=p}}}return this.AddArgs(n,o)},AddArgs:function(l,k){if(k.match(/^[a-z]/i)&&l.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){l+=" "}if(l.length+k.length>d.config.MAXBUFFER){d.Error("MathJax internal buffer size exceeded; is there a recursive macro call?")}return l+k}});d.Augment({Stack:e,Parse:a,Definitions:g,Startup:j,config:{MAXMACROS:10000,MAXBUFFER:5*1024},Translate:function(k){var l,n=k.innerHTML.replace(/^\s+/,"").replace(/\s+$/,"");if(MathJax.Hub.Browser.isKonqueror){n=n.replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&")}var o=(k.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);n=d.prefilterMath(n,o,k);try{l=d.Parse(n).mml()}catch(m){if(!m.texError){throw m}l=this.formatError(m,n,o,k)}if(l.inferred){l=i.apply(MathJax.ElementJax,l.data)}else{l=i(l)}if(o){l.root.display="block"}return this.postfilterMath(l,o,k)},prefilterMath:function(l,m,k){return l.replace(/([_^]\s*\d)([0-9.,])/g,"$1 $2")},postfilterMath:function(l,m,k){this.combineRelations(l.root);return l},formatError:function(m,l,n,k){return i.merror(m.message.replace(/\n.*/,""))},Error:function(k){throw MathJax.Hub.Insert(Error(k),{texError:c})},Macro:function(k,l,m){g.macros[k]=["Macro"].concat([].slice.call(arguments,1))},combineRelations:function(l){for(var n=0,k=l.data.length;n0){align+="rl";spacing.push("0em 0em");j--}spacing=spacing.join(" ");if(g){return this.AMSarray(i,h,g,align,spacing)}return this.Array(i,null,null,align,spacing,".5em","D")},MultiIntegral:function(g,k){var j=this.GetNext();if(j==="\\"){var h=this.i;j=this.GetArgument(g);this.i=h;if(j==="\\limits"){if(g==="\\idotsint"){k="\\!\\!\\mathop{\\,\\,"+k+"}"}else{k="\\!\\!\\!\\mathop{\\,\\,\\,"+k+"}"}}}this.string=k+" "+this.string.slice(this.i);this.i=0},xArrow:function(i,m,k,g){var j={width:"+"+(k+g)+"mu",lspace:k+"mu"};var n=this.GetBrackets(i),o=this.ParseArg(i);var p=a.mo(a.chars(String.fromCharCode(m))).With({stretchy:true,texClass:a.TEXCLASS.REL});var h=a.munderover(p);h.SetData(h.over,a.mpadded(o).With(j).With({voffset:".15em"}));if(n){n=f.Parse(n,this.stack.env).mml();h.SetData(h.under,a.mpadded(n).With(j).With({voffset:"-.24em"}))}this.Push(h)},GetDelimiterArg:function(g){var h=this.trimSpaces(this.GetArgument(g));if(h==""){return null}if(!c.delimiter[h]){f.Error("Missing or unrecognized delimiter for "+g)}return this.convertDelimiter(h)}});d.multline=d.array.Subclass({type:"multline",EndEntry:function(){var g=a.mtd.apply(a,this.data);if(this.data.shove){g.columnalign=this.data.shove}this.row.push(g);this.data=[]},EndRow:function(){if(this.row.length!=1){f.Error("multline rows must have exactly one column")}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var h=this.table.length-1,j;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=a.ALIGN.LEFT}if(!this.table[h][0].columnalign){this.table[h][0].columnalign=a.ALIGN.RIGHT}var g=a.mtr;if(this.global.tag){this.table[0]=[this.global.tag].concat(this.table[0]);delete this.global.tag;g=a.mlabeledtr}this.table[0]=g.apply(a,this.table[0]);for(j=1,h=this.table.length;j=0){if(this.negativeSkipBug){var f=i.style.position;i.style.position="absolute";j=this.startMarker;if(i.firstChild){i.insertBefore(j,i.firstChild)}else{i.appendChild(j)}j=this.startMarker}i.appendChild(this.endMarker);g=this.endMarker.offsetLeft-j.offsetLeft;i.removeChild(this.endMarker);if(this.negativeSkipBug){i.removeChild(j);i.style.position=f}}return g/this.em},Measured:function(h,g){if(h.bbox.width==null&&h.bbox.w&&!h.bbox.isMultiline){var f=this.getW(h);h.bbox.rw+=f-h.bbox.w;h.bbox.w=f}if(!g){g=h.parentNode}if(!g.bbox){g.bbox=h.bbox}return h},Remeasured:function(g,f){f.bbox=this.Measured(g,f).bbox},Em:function(f){if(Math.abs(f)<0.0006){return"0em"}return f.toFixed(3).replace(/\.?0+$/,"")+"em"},Percent:function(f){return(100*f).toFixed(1).replace(/\.?0+$/,"")+"%"},length2percent:function(f){return this.Percent(this.length2em(f))},length2em:function(k,i){if(typeof(k)!=="string"){k=k.toString()}if(k===""){return""}if(k===a.SIZE.NORMAL){return 1}if(k===a.SIZE.BIG){return 2}if(k===a.SIZE.SMALL){return 0.71}if(k==="infinity"){return e.BIGDIMEN}var h=this.FONTDATA.TeX_factor;if(k.match(/mathspace$/)){return e.MATHSPACE[k]*h}var g=k.match(/^\s*([-+]?(?:\.\d+|\d+(?:\.\d*)?))?(pt|em|ex|mu|px|pc|in|mm|cm|%)?/);var f=parseFloat(g[1]||"1"),j=g[2];if(i==null){i=1}if(j==="em"){return f*h}if(j==="ex"){return f*e.TeX.x_height*h}if(j==="%"){return f/100*i}if(j==="px"){return f/e.em}if(j==="pt"){return f/10*h}if(j==="pc"){return f*1.2*h}if(j==="in"){return f*this.pxPerInch/e.em}if(j==="cm"){return f*this.pxPerInch/e.em/2.54}if(j==="mm"){return f*this.pxPerInch/e.em/25.4}if(j==="mu"){return f/18*h}return f*h*i},thickness2em:function(f){var g=e.TeX.rule_thickness;if(f===a.LINETHICKNESS.MEDIUM){return g}if(f===a.LINETHICKNESS.THIN){return 0.67*g}if(f===a.LINETHICKNESS.THICK){return 1.67*g}return this.length2em(f,g)},createStrut:function(i,g,j){var f=this.Element("span",{style:{display:"inline-block",overflow:"hidden",height:g+"px",width:"1px",marginRight:"-1px"}});if(j){i.insertBefore(f,i.firstChild)}else{i.appendChild(f)}return f},createBlank:function(g,f,h){var i=this.Element("span",{style:{display:"inline-block",overflow:"hidden",height:"1px",width:this.Em(f)}});if(h){g.insertBefore(i,g.firstChild)}else{g.appendChild(i)}return i},createShift:function(g,f,i){var h=this.Element("span",{style:{marginLeft:this.Em(f)}});if(i){g.insertBefore(h,g.firstChild)}else{g.appendChild(h)}return h},createSpace:function(k,j,m,f,g){var i=this.Em(Math.max(0,j+m)),l=this.Em(-m);if(this.msieInlineBlockAlignBug){l=this.Em(e.getHD(k.parentNode).d-m)}if(k.isBox||k.className=="mspace"){k.bbox={h:j*k.scale,d:m*k.scale,w:f*k.scale,rw:f*k.scale,lw:0};k.style.height=i;k.style.verticalAlign=l}else{k=this.addElement(k,"span",{style:{height:i,verticalAlign:l}})}if(f>=0){k.style.width=this.Em(f);k.style.display="inline-block"}else{if(this.msieNegativeSpaceBug){k.style.height=""}k.style.marginLeft=this.Em(f);if(e.safariNegativeSpaceBug&&k.parentNode.firstChild==k){this.createBlank(k,0,true)}}if(g&&g!==a.COLOR.TRANSPARENT){k.style.backgroundColor=g}return k},createRule:function(o,k,m,p,i){var j=e.TeX.min_rule_thickness;if(p>0&&p*this.em0&&(k+m)*this.em0&&n.offsetWidth==0){n.style.width=this.Em(p)}if(o.isBox||o.className=="mspace"){o.bbox=n.bbox}return n},createFrame:function(o,m,n,p,r,g){var l=(this.msieBorderWidthBug?0:2*r);var q=this.Em(m+n-l),f=this.Em(-n-r),k=this.Em(p-l);var i=this.Em(r)+" "+g;var j=this.addElement(o,"span",{style:{border:i,display:"inline-block",overflow:"hidden",width:k,height:q},bbox:{h:m,d:n,w:p,rw:p,lw:0},noAdjust:true});if(f){j.style.verticalAlign=f}return j},createStack:function(h,j,g){if(this.msiePaddingWidthBug){this.createStrut(h,0)}var i=String(g).match(/%$/);var f=(!i&&g!=null?g:0);h=this.addElement(h,"span",{noAdjust:true,style:{display:"inline-block",position:"relative",width:(i?"100%":this.Em(f)),height:0}});if(!j){h.parentNode.bbox=h.bbox={h:-this.BIGDIMEN,d:-this.BIGDIMEN,w:f,lw:this.BIGDIMEN,rw:(!i&&g!=null?g:-this.BIGDIMEN)};if(i){h.bbox.width=g}}return h},createBox:function(g,f){var h=this.addElement(g,"span",{style:{position:"absolute"},isBox:true});if(f!=null){h.style.width=f}return h},addBox:function(f,g){g.style.position="absolute";g.isBox=true;return f.appendChild(g)},placeBox:function(n,m,k,i){var o=n.parentNode,v=n.bbox,q=o.bbox;if(this.msiePlaceBoxBug){this.addText(n,this.NBSP)}if(this.imgSpaceBug){this.addText(n,this.imgSpace)}var p=n.offsetHeight/this.em+1,z=0;if(n.noAdjust){p-=1}else{if(this.msieInlineBlockAlignBug){this.addElement(n,"img",{className:"MathJax_strut",border:0,src:"about:blank",style:{width:0,height:this.Em(p)}})}else{this.addElement(n,"span",{style:{display:"inline-block",width:0,height:this.Em(p)}})}}n.style.top=this.Em(-k-p);n.style.left=this.Em(m+z);if(v){if(this.negativeSkipBug){if(v.lw<0){z=v.lw;e.createBlank(n,-z,true);h=0}if(v.rw>v.w){e.createBlank(n,v.rw-v.w+0.1)}}if(!this.msieClipRectBug&&!v.noclip&&!i){var u=3/this.em;var s=(v.H==null?v.h:v.H),g=(v.D==null?v.d:v.D);var w=p-s-u,j=p+g+u,h=v.lw-3*u,f=1000;if(v.isFixed){f=v.width-h}n.style.clip="rect("+this.Em(w)+" "+this.Em(f)+" "+this.Em(j)+" "+this.Em(h)+")"}}if(v&&q){if(v.H!=null&&(q.H==null||v.H+k>q.H)){q.H=v.H+k}if(v.D!=null&&(q.D==null||v.D-k>q.D)){q.D=v.D-k}if(v.h+k>q.h){q.h=v.h+k}if(v.d-k>q.d){q.d=v.d-k}if(q.H!=null&&q.H<=q.h){delete q.H}if(q.D!=null&&q.D<=q.d){delete q.D}if(v.w+m>q.w){q.w=v.w+m;if(q.width==null){o.style.width=this.Em(q.w)}}if(v.rw+m>q.rw){q.rw=v.rw+m}if(v.lw+m=h-0.01||(o==k-1&&!g.stretch)){if(g.HW[o][2]){l*=g.HW[o][2]}if(g.HW[o][3]){f=g.HW[o][3]}var n=this.addElement(q,"span");this.createChar(n,[f,g.HW[o][1]],l,j);q.bbox=n.bbox;q.offset=0.65*q.bbox.w;q.scale=l;return}}if(g.stretch){this["extendDelimiter"+g.dir](q,p,g.stretch,l,j)}},extendDelimiterV:function(v,p,A,B,s){var i=this.createStack(v,true);var r=this.createBox(i),q=this.createBox(i);this.createChar(r,(A.top||A.ext),B,s);this.createChar(q,(A.bot||A.ext),B,s);var g={bbox:{w:0,lw:0,rw:0}},z=g,j;var w=r.bbox.h+r.bbox.d+q.bbox.h+q.bbox.d;var m=-r.bbox.h;this.placeBox(r,0,m,true);m-=r.bbox.d;if(A.mid){z=this.createBox(i);this.createChar(z,A.mid,B,s);w+=z.bbox.h+z.bbox.d}if(p>w){g=this.Element("span");this.createChar(g,A.ext,B,s);var x=g.bbox.h+g.bbox.d,f=x-0.05,t,l,u=(A.mid?2:1);l=t=Math.ceil((p-w)/(u*f));if(!A.fullExtenders){f=(p-w)/(u*t)}var o=(t/(t+1))*(x-f);f=x-o;m+=o+f-g.bbox.h;while(u-->0){while(t-->0){if(!this.msieCloneNodeBug){j=g.cloneNode(true)}else{j=this.Element("span");this.createChar(j,A.ext,B,s)}m-=f;this.placeBox(this.addBox(i,j),0,m,true)}m+=o-g.bbox.d;if(A.mid&&u){this.placeBox(z,0,m-z.bbox.h,true);t=l;m+=-(z.bbox.h+z.bbox.d)+o+f-g.bbox.h}}}else{m+=(w-p)/2;if(A.mid){this.placeBox(z,0,m-z.bbox.h,true);m+=-(z.bbox.h+z.bbox.d)}m+=(w-p)/2}this.placeBox(q,0,m-q.bbox.h,true);m-=q.bbox.h+q.bbox.d;v.bbox={w:Math.max(r.bbox.w,g.bbox.w,q.bbox.w,z.bbox.w),lw:Math.min(r.bbox.lw,g.bbox.lw,q.bbox.lw,z.bbox.lw),rw:Math.max(r.bbox.rw,g.bbox.rw,q.bbox.rw,z.bbox.rw),h:0,d:-m};v.scale=B;v.offset=0.55*v.bbox.w;v.isMultiChar=true;this.setStackWidth(i,v.bbox.w)},extendDelimiterH:function(u,h,z,B,r){var l=this.createStack(u,true);var i=this.createBox(l),v=this.createBox(l);this.createChar(i,(z.left||z.rep),B,r);this.createChar(v,(z.right||z.rep),B,r);var f=this.Element("span");this.createChar(f,z.rep,B,r);var y={bbox:{h:-this.BIGDIMEN,d:-this.BIGDIMEN}},g;this.placeBox(i,-i.bbox.lw,0,true);var p=(i.bbox.rw-i.bbox.lw)+(v.bbox.rw-v.bbox.lw)-0.05,o=i.bbox.rw-i.bbox.lw-0.025,q;if(z.mid){y=this.createBox(l);this.createChar(y,z.mid,B,r);p+=y.bbox.w}if(h>p){var A=f.bbox.rw-f.bbox.lw,j=A-0.05,s,m,t=(z.mid?2:1);m=s=Math.ceil((h-p)/(t*j));j=(h-p)/(t*s);q=(s/(s+1))*(A-j);j=A-q;o-=f.bbox.lw+q;while(t-->0){while(s-->0){if(!this.msieCloneNodeBug){g=f.cloneNode(true)}else{g=this.Element("span");this.createChar(g,z.rep,B,r)}this.placeBox(this.addBox(l,g),o,0,true);o+=j}if(z.mid&&t){this.placeBox(y,o,0,true);o+=y.bbox.w-q;s=m}}}else{q=Math.min(p-h,i.bbox.w/2);o-=q/2;if(z.mid){this.placeBox(y,o,0,true);o+=y.bbox.w}o-=q/2}this.placeBox(v,o,0,true);u.bbox={w:o+v.bbox.rw,lw:0,rw:o+v.bbox.rw,H:Math.max(i.bbox.h,f.bbox.h,v.bbox.h,y.bbox.h),D:Math.max(i.bbox.d,f.bbox.d,v.bbox.d,y.bbox.d),h:f.bbox.h,d:f.bbox.d};u.scale=B;u.isMultiChar=true;this.setStackWidth(l,u.bbox.w)},createChar:function(o,k,h,f){var n=o,p="",j={fonts:[k[1]],noRemap:true};if(f&&f===a.VARIANT.BOLD){j.fonts=[k[1]+"-bold",k[1]]}if(typeof(k[1])!=="string"){j=k[1]}if(k[0] instanceof Array){for(var l=0,g=k[0].length;l=r[q].low&&s<=r[q].high){if(r[q].remap&&r[q].remap[s]){s=k+r[q].remap[s]}else{s=s-r[q].low+k;if(r[q].add){s+=r[q].add}}if(j["variant"+r[q].offset]){j=this.FONTDATA.VARIANT[j["variant"+r[q].offset]]}break}}}if(j.remap&&j.remap[s]){if(j.remap[s] instanceof Array){var h=j.remap[s];s=h[0];j=this.FONTDATA.VARIANT[h[1]]}else{s=j.remap[s];if(j.remap.variant){j=this.FONTDATA.VARIANT[j.remap.variant]}}}if(this.FONTDATA.REMAP[s]&&!j.noRemap){s=this.FONTDATA.REMAP[s]}p=this.lookupChar(j,s);y=p[s];if(j!==x&&!y[5].img){if(u.length){this.addText(f,u);u=""}f=v;x=g;if(j!==x){if(x){f=this.addElement(v,"span")}else{g=j}}this.handleFont(f,p,f!==v);x=j}u=this.handleChar(f,p,y,s,u);if(y[0]/1000>v.bbox.h){v.bbox.h=y[0]/1000}if(y[1]/1000>v.bbox.d){v.bbox.d=y[1]/1000}if(v.bbox.w+y[3]/1000v.bbox.rw){v.bbox.rw=v.bbox.w+y[4]/1000}v.bbox.w+=y[2]/1000}if(u.length){this.addText(f,u)}if(v.scale&&v.scale!==1){v.bbox.h*=v.scale;v.bbox.d*=v.scale;v.bbox.w*=v.scale;v.bbox.lw*=v.scale;v.bbox.rw*=v.scale}if(o.length==1&&p.skew&&p.skew[s]){v.bbox.skew=p.skew[s]}},handleFont:function(h,f,j){h.style.fontFamily=f.family;if(!(e.FontFaceBug&&f.isWebFont)){var g=f.style||"normal",i=f.weight||"normal";if(g!=="normal"||j){h.style.fontStyle=g}if(i!=="normal"||j){h.style.fontWeight=i}}},handleChar:function(g,f,l,k,j){var i=l[5];if(i.img){return this.handleImg(g,f,l,k,j)}if(i.isUnknown&&this.FONTDATA.DELIMITERS[k]){if(j.length){this.addText(g,j)}var h=g.scale;e.createDelimiter(g,k,0,1,f);g.scale=h;l[0]=g.bbox.h*1000;l[1]=g.bbox.d*1000;l[2]=g.bbox.w*1000;l[3]=g.bbox.lw*1000;l[4]=g.bbox.rw*1000;return""}if(i.c==null){if(k<=65535){i.c=String.fromCharCode(k)}else{i.c=this.PLANE1+String.fromCharCode(k-119808+56320)}}if(l[2]||!this.msieAccentBug||j.length){return j+i.c}e.createShift(g,l[3]/1000);e.createShift(g,(l[4]-l[3])/1000);this.addText(g,i.c);e.createShift(g,-l[4]/1000);return""},handleImg:function(g,f,j,i,h){return h},lookupChar:function(j,p){var h,f;if(!j.FONTS){var o=this.FONTDATA.FONTS;var l=(j.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(l instanceof Array)){l=[l]}if(j.fonts!=l){j.fonts=l}j.FONTS=[];for(h=0,f=l.length;h=0;h--){if(g.Ranges[h][2]==k){g.Ranges.splice(h,1)}}this.loadFont(g.directory+"/"+k+".js")}}}},loadFont:function(g){var f=MathJax.Callback.Queue();f.Push(["Require",c,this.fontDir+"/"+g]);if(this.imgFonts){if(!MathJax.isPacked){g=g.replace(/\/([^\/]*)$/,e.imgPacked+"/$1")}f.Push(["Require",c,this.webfontDir+"/png/"+g])}d.RestartAfter(f.Push({}))},loadWebFont:function(f){f.available=f.isWebFont=true;if(e.FontFaceBug){f.family=f.name;if(e.msieFontCSSBug){f.family+="-Web"}}d.RestartAfter(this.Font.loadWebFont(f))},loadWebFontError:function(g,f){d.Startup.signal.Post("HTML-CSS Jax - disable web fonts");g.isWebFont=false;if(this.config.imageFont&&this.config.imageFont===this.fontInUse){this.imgFonts=true;d.Startup.signal.Post("HTML-CSS Jax - switch to image fonts");d.Startup.signal.Post("HTML-CSS Jax - using image fonts");MathJax.Message.Set("Web-Fonts not available -- using image fonts instead",null,3000);c.Require(this.directory+"/imageFonts.js",f)}else{this.allowWebFonts=false;f()}},Element:MathJax.HTML.Element,addElement:MathJax.HTML.addElement,TextNode:MathJax.HTML.TextNode,addText:MathJax.HTML.addText,ucMatch:MathJax.HTML.ucMatch,BIGDIMEN:10000000,ID:0,idPostfix:"",GetID:function(){this.ID++;return this.ID},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,scriptspace:0.1,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.1,min_rule_thickness:1.25},PLANE1:String.fromCharCode(55349),NBSP:String.fromCharCode(160),rfuzz:0});MathJax.Hub.Register.StartupHook("mml Jax Ready",function(){a=MathJax.ElementJax.mml;a.mbase.Augment({toHTML:function(l){var j=this.HTMLlineBreaks();if(j.length>2){return this.toHTMLmultiline(l,j)}l=this.HTMLcreateSpan(l);if(this.type!="mrow"){l=this.HTMLhandleSize(l)}for(var g=0,f=this.data.length;gg.d){g.d=h.d}if(h.h>g.h){g.h=h.h}if(h.D!=null&&h.D>g.D){g.D=h.D}if(h.H!=null&&h.H>g.H){g.H=h.H}if(i.style.paddingLeft){g.w+=parseFloat(i.style.paddingLeft)*(i.scale||1)}if(g.w+h.lwg.rw){g.rw=g.w+h.rw}g.w+=h.w;if(i.style.paddingRight){g.w+=parseFloat(i.style.paddingRight)*(i.scale||1)}if(h.width){g.width=h.width}},HTMLemptyBBox:function(f){f.h=f.d=f.H=f.D=f.rw=-e.BIGDIMEN;f.w=0;f.lw=e.BIGDIMEN;return f},HTMLcleanBBox:function(f){if(f.h===this.BIGDIMEN){f.h=f.d=f.H=f.D=f.w=f.rw=f.lw=0}if(f.D<=f.d){delete f.D}if(f.H<=f.h){delete f.H}},HTMLzeroBBox:function(){return{h:0,d:0,w:0,lw:0,rw:0}},HTMLcanStretch:function(f){if(this.isEmbellished()){return this.Core().HTMLcanStretch(f)}return false},HTMLstretchH:function(g,f){return this.HTMLspanElement()},HTMLstretchV:function(g,f,i){return this.HTMLspanElement()},HTMLnotEmpty:function(f){while(f){if((f.type!=="mrow"&&f.type!=="texatom")||f.data.length>1){return true}f=f.data[0]}return false},HTMLmeasureChild:function(g,f){if(this.data[g]!=null){e.Measured(this.data[g].toHTML(f),f)}else{f.bbox=this.HTMLzeroBBox()}},HTMLcreateSpan:function(f){if(this.spanID){var g=this.HTMLspanElement();if(g){while(g.firstChild){g.removeChild(g.firstChild)}g.bbox={w:0,h:0,d:0,lw:0,rw:0};g.scale=1;g.isMultChar=null;g.style.cssText="";return g}}if(this.href){f=e.addElement(f,"a",{href:this.href})}f=e.addElement(f,"span",{className:this.type});if(e.imgHeightBug){f.style.display="inline-block"}if(this["class"]!=null){f.className+=" "+this["class"]}if(this.style){f.style.cssText=this.style;if(f.style.fontSize){this.mathsize=f.style.fontSize;f.style.fontSize=""}}this.spanID=e.GetID();f.id=(this.id||"MathJax-Span-"+this.spanID)+e.idPostfix;f.bbox={w:0,h:0,d:0,lw:0,lr:0};if(this.href){f.parentNode.bbox=f.bbox}return f},HTMLspanElement:function(){if(!this.spanID){return null}return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+e.idPostfix)},HTMLhandleVariant:function(g,f,h){e.handleVariant(g,f,h)},HTMLhandleSize:function(f){if(!f.scale){f.scale=this.HTMLgetScale();if(f.scale!==1){f.style.fontSize=e.Percent(f.scale)}}return f},HTMLhandleColor:function(k){var m=this.getValues("mathcolor","color");if(this.mathbackground){m.mathbackground=this.mathbackground}if(this.background){m.background=this.background}if(this.style&&k.style.backgroundColor){m.mathbackground=k.style.backgroundColor;k.style.backgroundColor="transparent"}if(m.color&&!this.mathcolor){m.mathcolor=m.color}if(m.background&&!this.mathbackground){m.mathbackground=m.background}if(m.mathcolor){k.style.color=m.mathcolor}if(m.mathbackground&&m.mathbackground!==a.COLOR.TRANSPARENT){var n=1/e.em,j=0,i=0;if(this.isToken){j=k.bbox.lw;i=k.bbox.rw-k.bbox.w}if(k.style.paddingLeft!==""){j+=parseFloat(k.style.paddingLeft)*(k.scale||1)}if(k.style.paddingRight!==""){i-=parseFloat(k.style.paddingRight)*(k.scale||1)}var h=Math.max(0,e.getW(k)+(e.PaddingWidthBug?0:i-j));if(e.msieCharPaddingWidthBug&&k.style.paddingLeft!==""){h+=parseFloat(k.style.paddingLeft)*(k.scale||1)}var l=k.bbox.h+k.bbox.d,f=-k.bbox.d;if(h>0){h+=2*n;j-=n}if(l>0){l+=2*n;f-=n}i=-h-j;var g=e.Element("span",{id:"MathJax-Color-"+this.spanID+e.idPostfix,style:{display:"inline-block",backgroundColor:m.mathbackground,width:e.Em(h),height:e.Em(l),verticalAlign:e.Em(f),marginLeft:e.Em(j),marginRight:e.Em(i)}});if(e.msieInlineBlockAlignBug){g.style.position="relative";g.style.width=g.style.height=0;g.style.verticalAlign=g.style.marginLeft=g.style.marginRight="";e.placeBox(e.addElement(g,"span",{noAdjust:true,style:{display:"inline-block",position:"absolute",overflow:"hidden",width:e.Em(h),height:e.Em(l),background:m.mathbackground}}),j,k.bbox.h+n)}k.parentNode.insertBefore(g,k);if(e.msieColorPositionBug){k.style.position="relative"}return g}return null},HTMLremoveColor:function(){var f=document.getElementById("MathJax-Color-"+this.spanID+e.idPostfix);if(f){f.parentNode.removeChild(f)}},HTMLhandleSpace:function(i){if(this.useMMLspacing){if(this.type!=="mo"){return}var g=this.getValues("scriptlevel","lspace","rspace");if(g.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){g.lspace=Math.max(0,e.length2em(g.lspace));g.rspace=Math.max(0,e.length2em(g.rspace));var f=this,h=this.Parent();while(h&&h.isEmbellished()&&h.Core()===f){f=h;h=h.Parent();i=f.HTMLspanElement()}if(g.lspace){i.style.paddingLeft=e.Em(g.lspace)}if(g.rspace){i.style.paddingRight=e.Em(g.rspace)}}}else{var j=this.texSpacing();if(j!==""){j=e.length2em(j)/(i.scale||1);if(i.style.paddingLeft){j+=parseFloat(i.style.paddingLeft)}i.style.paddingLeft=e.Em(j)}}},HTMLgetScale:function(){var h=1,f=this.getValues("mathsize","scriptlevel","fontsize","scriptminsize");if(this.style){var g=this.HTMLspanElement();if(g.style.fontSize!=""){f.fontsize=g.style.fontSize}}if(f.fontsize&&!this.mathsize){f.mathsize=f.fontsize}if(f.scriptlevel!==0){if(f.scriptlevel>2){f.scriptlevel=2}h=Math.pow(this.Get("scriptsizemultiplier"),f.scriptlevel);f.scriptminsize=e.length2em(f.scriptminsize);if(hk.bbox.w){k.bbox.ic=k.bbox.rw-k.bbox.w;e.createBlank(k,k.bbox.ic);k.bbox.w=k.bbox.rw}}this.HTMLhandleSpace(k);this.HTMLhandleColor(k);return k},HTMLcanStretch:function(f){if(!this.Get("stretchy")){return false}var g=this.data.join("");if(g.length>1){return false}g=e.FONTDATA.DELIMITERS[g.charCodeAt(0)];return(g&&g.dir==f.substr(0,1))},HTMLstretchV:function(l,k,n){this.HTMLremoveColor();var f=this.getValues("symmetric","maxsize","minsize");var j=this.HTMLspanElement(),g;var i=e.TeX.axis_height,m=j.scale;if(f.symmetric){g=2*Math.max(k-i,n+i)}else{g=k+n}f.maxsize=e.length2em(f.maxsize,j.bbox.h+j.bbox.d);f.minsize=e.length2em(f.minsize,j.bbox.h+j.bbox.d);g=Math.max(f.minsize,Math.min(f.maxsize,g));j=this.HTMLcreateSpan(l);e.createDelimiter(j,this.data.join("").charCodeAt(0),g,m);if(f.symmetric){g=(j.bbox.h+j.bbox.d)/2+i}else{g=(j.bbox.h+j.bbox.d)*k/(k+n)}e.positionDelimiter(j,g);this.HTMLhandleSpace(j);this.HTMLhandleColor(j);return j},HTMLstretchH:function(i,f){this.HTMLremoveColor();var g=this.getValues("maxsize","minsize","mathvariant","fontweight");if(g.fontweight==="bold"&&!this.mathvariant){g.mathvariant=a.VARIANT.BOLD}var h=this.HTMLspanElement(),j=h.scale;g.maxsize=e.length2em(g.maxsize,h.bbox.w);g.minsize=e.length2em(g.minsize,h.bbox.w);f=Math.max(g.minsize,Math.min(g.maxsize,f));h=this.HTMLcreateSpan(i);e.createDelimiter(h,this.data.join("").charCodeAt(0),f,j,g.mathvariant);this.HTMLhandleSpace(h);this.HTMLhandleColor(h);return h}});a.mtext.Augment({toHTML:function(k){k=this.HTMLhandleSize(this.HTMLcreateSpan(k));k.bbox=null;if(this.Parent().type==="merror"){e.addText(k,this.data.join(""));var l=e.getHD(k),g=e.getW(k);k.bbox={h:l.h,d:l.d,w:g,lw:0,rw:g}}else{var j=this.HTMLgetVariant();for(var h=0,f=this.data.length;ho){f=((k.bbox.h+k.bbox.d)-(o-s))/2}var u=e.FONTDATA.DELIMITERS[e.FONTDATA.RULECHAR];if(!u||iF){F=q.bbox.w}if(!I[H]&&F>g){g=F}}}if(z==null&&B!=null){g=B}else{if(g==-e.BIGDIMEN){g=F}}for(H=F=0,C=this.data.length;HF){F=q.bbox.w}}}var w=e.TeX.rule_thickness,A=e.FONTDATA.TeX_factor;var h=l[this.base]||{bbox:this.HTMLzeroBBox()},J=(h.bbox.ic||0);var p,n,s,r,o,v,E;for(H=0,C=this.data.length;H0){m+=y;l-=y}}e.placeBox(f,i.bbox.w+o,Math.max(m,B.superscriptshift));e.placeBox(k,i.bbox.w+o-F,-Math.max(l,B.subscriptshift))}}this.HTMLhandleSpace(C);this.HTMLhandleColor(C);return C},HTMLstretchH:a.mbase.HTMLstretchH,HTMLstretchV:a.mbase.HTMLstretchV});a.mmultiscripts.Augment({toHTML:a.mbase.HTMLautoload});a.mtable.Augment({toHTML:a.mbase.HTMLautoload});a["annotation-xml"].Augment({toHTML:a.mbase.HTMLautoload});a.math.Augment({toHTML:function(n,g){var k=this.Get("alttext");if(k){g.setAttribute("aria-label",k)}var h=e.addElement(n,"nobr");n=this.HTMLcreateSpan(h);var l=e.createStack(n),i=e.createBox(l),m;l.style.fontSize=h.parentNode.style.fontSize;h.parentNode.style.fontSize="";if(this.data[0]!=null){if(e.msieColorBug){if(this.background){this.data[0].background=this.background;delete this.background}if(this.mathbackground){this.data[0].mathbackground=this.mathbackground;delete this.mathbackground}}a.mbase.prototype.displayAlign=d.config.displayAlign;a.mbase.prototype.displayIndent=d.config.displayIndent;m=e.Measured(this.data[0].toHTML(i),i)}e.placeBox(i,0,0);var j=e.em/e.outerEm;e.em/=j;n.bbox.h*=j;n.bbox.d*=j;n.bbox.w*=j;n.bbox.lw*=j;n.bbox.rw*=j;if(m&&m.bbox.width!=null){l.style.width=m.bbox.width;i.style.width="100%"}this.HTMLhandleColor(n);if(m){e.createRule(n,m.bbox.h*j,m.bbox.d*j,0)}if(!this.isMultiline&&this.Get("display")==="block"&&n.bbox.width==null){var o=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(o.indentalignfirst!==a.INDENTALIGN.INDENTALIGN){o.indentalign=o.indentalignfirst}if(o.indentalign===a.INDENTALIGN.AUTO){o.indentalign=this.displayAlign}g.style.textAlign=o.indentalign;if(o.indentshiftfirst!==a.INDENTSHIFT.INDENTSHIFT){o.indentshift=o.indentshiftfirst}if(o.indentshift==="auto"){o.indentshift=this.displayIndent}if(o.indentshift&&o.indentalign!==a.INDENTALIGN.CENTER){n.style[{left:"marginLeft",right:"marginRight"}[o.indentalign]]=e.Em(e.length2em(o.indentshift))}}return n}});a.TeXAtom.Augment({toHTML:function(g){g=this.HTMLcreateSpan(g);if(this.data[0]!=null){if(this.texClass===a.TEXCLASS.VCENTER){var f=e.createStack(g);var h=e.createBox(f);e.Measured(this.data[0].toHTML(h),h);e.placeBox(h,0,e.TeX.axis_height-(h.bbox.h+h.bbox.d)/2+h.bbox.d)}else{g.bbox=this.data[0].toHTML(g).bbox}}this.HTMLhandleSpace(g);this.HTMLhandleColor(g);return g}});MathJax.Hub.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",e,"jax.js"]),0)})});d.Register.StartupHook("End Config",function(){d.Browser.Select({MSIE:function(f){var i=f.versionAtLeast("7.0");var h=f.versionAtLeast("8.0")&&document.documentMode>7;var g=(document.compatMode==="BackCompat");e.config.styles[".MathJax .MathJax_HitBox"]["background-color"]="white";e.config.styles[".MathJax .MathJax_HitBox"].opacity=0;e.config.styles[".MathJax .MathJax_HitBox"].filter="alpha(opacity=0)";e.Augment({getMarginScale:e.getMSIEmarginScale,PaddingWidthBug:true,msieEventBug:f.isIE9,msieAccentBug:true,msieColorBug:true,msieColorPositionBug:true,msieRelativeWidthBug:g,msieMarginWidthBug:true,msiePaddingWidthBug:true,msieCharPaddingWidthBug:(h&&!g),msieBorderWidthBug:g,msieInlineBlockAlignBug:(!h||g),msieVerticalAlignBug:(h&&!g),msiePlaceBoxBug:(h&&!g),msieClipRectBug:!h,msieNegativeSpaceBug:g,msieCloneNodeBug:(h&&f.version==="8.0"),negativeSkipBug:true,msieIE6:!i,msieItalicWidthBug:true,zeroWidthBug:true,FontFaceBug:true,msieFontCSSBug:f.isIE9,allowWebFonts:"eot"})},Firefox:function(g){var h=false;if(g.versionAtLeast("3.5")){var f=String(document.location).replace(/[^\/]*$/,"");if(document.location.protocol!=="file:"||(d.config.root+"/").substr(0,f.length)===f){h="otf"}}e.Augment({useProcessingFrame:true,ffVerticalAlignBug:true,AccentBug:true,allowWebFonts:h})},Safari:function(j){var h=j.versionAtLeast("3.0");var g=j.versionAtLeast("3.1");j.isMobile=(navigator.appVersion.match(/Mobile/i)!=null);var f=(navigator.appVersion.match(/ Android (\d+)\.(\d+)/));var k=(g&&j.isMobile&&((navigator.platform.match(/iPad|iPod|iPhone/)&&!j.versionAtLeast("5.0"))||(f!=null&&(f[1]<2||(f[1]==2&&f[2]<2)))));e.Augment({config:{styles:{".MathJax img, .MathJax nobr, .MathJax a":{"max-width":"5000em","max-height":"5000em"}}},useProcessingFrame:true,rfuzz:0.05,AccentBug:true,AdjustSurd:true,safariContextMenuBug:true,safariNegativeSpaceBug:true,safariVerticalAlignBug:!g,safariTextNodeBug:!h,safariWebFontSerif:["serif"],allowWebFonts:(g&&!k?"otf":false)});if(k){var i=d.config["HTML-CSS"];if(i){i.availableFonts=[];i.preferredFont=null}else{d.config["HTML-CSS"]={availableFonts:[],preferredFont:null}}}},Chrome:function(f){e.Augment({useProcessingFrame:true,rfuzz:0.05,AccentBug:true,AdjustSurd:true,allowWebFonts:(f.versionAtLeast("4.0")?"otf":"svg"),safariNegativeSpaceBug:true,safariWebFontSerif:[""]})},Opera:function(f){f.isMini=(navigator.appVersion.match("Opera Mini")!=null);e.config.styles[".MathJax .merror"]["vertical-align"]=null;e.Augment({useProcessingFrame:true,operaHeightBug:true,operaVerticalAlignBug:true,operaFontSizeBug:f.versionAtLeast("10.61"),negativeSkipBug:true,zeroWidthBug:true,FontFaceBug:true,PaddingWidthBug:true,allowWebFonts:(f.versionAtLeast("10.0")&&!f.isMini?"otf":false),adjustAvailableFonts:function(j){for(var h=0,g=j.length;hv){v=aE}K[aE]=b.createStack(b.createBox(ag));l[aE]=-b.BIGDIMEN}O[aF][aE]=b.createBox(K[aE]);b.Measured(R.data[aE-ay].toHTML(O[aF][aE]),O[aF][aE]);if(R.data[aE-ay].isMultiline){O[aF][aE].style.width="100%"}if(O[aF][aE].bbox.h>w[aF]){w[aF]=O[aF][aE].bbox.h}if(O[aF][aE].bbox.d>I[aF]){I[aF]=O[aF][aE].bbox.d}if(O[aF][aE].bbox.w>l[aE]){l[aE]=O[aF][aE].bbox.w}}}if(w[0]+I[0]){w[0]=Math.max(w[0],Z)}if(w[O.length-1]+I[O.length-1]){I[O.length-1]=Math.max(I[O.length-1],af)}var al=aJ.columnspacing.split(/ /),S=aJ.rowspacing.split(/ /),ah=aJ.columnalign.split(/ /),L=aJ.rowalign.split(/ /),N=aJ.columnlines.split(/ /),k=aJ.rowlines.split(/ /),ap=aJ.columnwidth.split(/ /),au=[];for(aF=0,aC=al.length;aF0.98){ai=0.98/aw;aw=0.98}}else{if(aJ.width==="auto"){if(aw>0.98){ai=V/(U+V);aq=U+V}else{aq=U/(1-aw)}}else{aq=b.length2em(aJ.width);for(aF=0,aC=Math.min(v+1,al.length);aF0.01){if(aG&&aq>U){aq=(aq-U)/aG;for(aF=0,aC=B.length;aF=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax.id==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;gj){x.style.width=j}}if(x.offsetHeight>p){x.style.Height=p+"px"}if(s.nextSibling){s.parentNode.insertBefore(k,s.nextSibling)}else{v.appendChild(k)}}else{if(this.operaPositionBug){x.style.width=Math.min(j,u.offsetWidth)+"px"}}this.Position(x,w,(o==="MathML"&&v.nodeName.toLowerCase()==="div"));x.style.visibility="";if(this.settings.zoom==="Hover"){n.onmouseover=this.Remove}if(window.addEventListener){addEventListener("resize",this.Resize,false)}else{if(window.attachEvent){attachEvent("onresize",this.Resize)}else{this.onresize=window.onresize;window.onresize=this.Resize}}return d(l)},ZoomHTMLCSS:function(o,q,p){q.className="MathJax";b.idPostfix="-zoom";b.getScales(q,q);o.toHTML(q,q);var r=o.HTMLspanElement().bbox;b.idPostfix="";if(r.width&&r.width!=="100%"){var j=Math.floor(0.85*document.body.clientWidth);q.style.width=j+"px";q.style.display="inline-block";var k=(o.id||"MathJax-Span-"+o.spanID)+"-zoom";var l=document.getElementById(k).firstChild;while(l&&l.style.width!==r.width){l=l.nextSibling}if(l){l.style.width="100%"}}q.appendChild(this.topImg);var n=this.topImg.offsetTop;q.removeChild(this.topImg);var m=(this.msieWidthBug?b.getW(p)*b.em:p.offsetWidth);return{w:r.w*b.em,Y:-n,W:m}},ZoomMathML:function(k,l,m){k.toNativeMML(l,l);var n;l.appendChild(this.topImg);n=this.topImg.offsetTop;l.removeChild(this.topImg);var j=(this.ffMMLwidthBug?m.parentNode:m).offsetWidth;return{w:l.offsetWidth,Y:-n,W:j}},Position:function(p,n,r){var k=this.Resize(),m=k.x,l=k.y,j=n.W;if(this.msiePositionBug){j=-j}if(r&&this.ffMMLcenterBug){j=0}var q=-Math.floor((p.offsetWidth-j)/2),o=n.Y;p.style.left=Math.max(q,20-m)+"px";p.style.top=Math.max(o,20-l)+"px"},Resize:function(l){if(f.onresize){f.onresize(l)}var j=0,o=0,n=document.getElementById("MathJax_ZoomFrame"),k=document.getElementById("MathJax_ZoomOverlay");var m=(f.msieZIndexBug?document.getElementById("MathJax_ZoomTracker"):n);if(f.operaPositionBug){n.style.border="1px solid"}if(m.offsetParent){do{j+=m.offsetLeft;o+=m.offsetTop}while(m=m.offsetParent)}if(f.operaPositionBug){n.style.border=""}if(f.msieZIndexBug){n.style.left=j+"px";n.style.top=o+"px"}k.style.left=(-j)+"px";k.style.top=(-o)+"px";if(f.msiePositionBug){setTimeout(f.SetWH,0)}else{f.SetWH()}return{x:j,y:o}},SetWH:function(){var j=document.getElementById("MathJax_ZoomOverlay");j.style.width=j.style.height="1px";j.style.width=document.body.scrollWidth+"px";j.style.height=document.body.scrollHeight+"px"},Remove:function(k){var l=document.getElementById("MathJax_ZoomFrame");if(l){l.parentNode.removeChild(l);l=document.getElementById("MathJax_ZoomTracker");if(l){l.parentNode.removeChild(l)}if(f.operaRefreshBug){var j=c.addElement(document.body,"div",{style:{position:"fixed",left:0,top:0,width:"100%",height:"100%",backgroundColor:"white",opacity:0},id:"MathJax_OperaDiv"});document.body.removeChild(j)}if(window.removeEventListener){removeEventListener("resize",f.Resize,false)}else{if(window.detachEvent){detachEvent("onresize",f.Resize)}else{window.onresize=f.onresize;delete f.onresize}}}return d(k)}};a.Register.StartupHook("HTML-CSS Jax Ready",function(){b=MathJax.OutputJax["HTML-CSS"];b.Augment({HandleEvent:f.HandleEvent})});a.Register.StartupHook("NativeMML Jax Ready",function(){h=MathJax.OutputJax.NativeMML;h.Augment({HandleEvent:f.HandleEvent,MSIEmouseup:function(l,k,j){if(this.trapUp){delete this.trapUp;return true}if(this.MSIEzoomKeys(l)){return true}return false},MSIEclick:function(l,k,j){if(this.trapClick){delete this.trapClick;return true}if(!this.MSIEzoomKeys(l)){return false}if(!this.settings.zoom.match(/Click/)){return false}return(f.Click(l,k)===false)},MSIEdblclick:function(l,k,j){if(!this.MSIEzoomKeys(l)){return false}return(f.DblClick(l,k)===false)},MSIEmouseover:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEmouseout:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.ClearTimer();return true},MSIEmousemove:function(l,k,j){if(this.settings.zoom!=="Hover"){return false}f.Timer(l,k);return true},MSIEzoomKeys:function(j){if(this.settings.CTRL&&!j.ctrlKey){return false}if(this.settings.CMD&&!j.metaKey){return false}if(this.settings.ALT&&!j.altKey){return false}if(this.settings.Shift&&!j.shiftKey){return false}return true}})});a.Browser.Select({MSIE:function(j){var k=(document.compatMode==="BackCompat");var l=j.versionAtLeast("8.0")&&document.documentMode>7;f.msiePositionBug=true;f.msieWidthBug=!k;f.msieIE8Bug=l;f.msieZIndexBug=!l;f.msieInlineBlockAlignBug=(!l||k);if(document.documentMode>=9){delete g.styles["#MathJax_Zoom"].filter}},Opera:function(j){f.operaPositionBug=true;f.operaRefreshBug=true},Firefox:function(j){f.ffMMLwidthBug=true;f.ffMMLcenterBug=true}});f.topImg=(f.msieInlineBlockAlignBug?c.Element("img",{style:{width:0,height:0},src:"about:blank"}):c.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(f.operaPositionBug){f.topImg.style.border="1px solid"}MathJax.Callback.Queue(["Styles",e,g.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",e,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); + +(function(b,c,f){var k="1.1.4";MathJax.Extension.MathMenu={version:k};var i=b.Browser.isPC,g=b.Browser.isMSIE;var e=(i?null:"5px");var j=b.CombineConfig("MathMenu",{delay:150,helpURL:"http://www.mathjax.org/help/user/",showRenderer:true,showFontMenu:false,showContext:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:100,height:50},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(i?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":e,"-webkit-border-radius":e,"-moz-border-radius":e,"-khtml-border-radius":e,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(i?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuTitle":{"background-color":"#CCCCCC",margin:(i?"-1px -1px 1px -1px":"-5px 0 0 0"),"text-align":"center","font-style":"italic","font-size":"80%",color:"#444444",padding:"2px 0",overflow:"hidden"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(g?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(i?"1em":".7em")},".MathJax_MenuLabel":{padding:(i?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(i?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(i?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(i?"Highlight":"#606872"),color:(i?"HighlightText":"white")}}});var d=function(l){if(!l){l=window.event}if(l){if(l.preventDefault){l.preventDefault()}if(l.stopPropagation){l.stopPropagation()}l.cancelBubble=true;l.returnValue=false}return false};var a=MathJax.Menu=MathJax.Object.Subclass({version:k,items:[],posted:false,title:null,margin:5,Init:function(l){this.items=[].slice.call(arguments,0)},With:function(l){if(l){b.Insert(this,l)}return this},Post:function(n,v){if(!n){n=window.event}var t=(!this.title?null:[["div",{className:"MathJax_MenuTitle"},[this.title]]]);var l=document.getElementById("MathJax_MenuFrame");if(!l){l=a.Background(this)}var o=c.addElement(l,"div",{onmouseup:a.Mouseup,ondblclick:this.False,ondragstart:this.False,onselectstart:this.False,oncontextmenu:this.False,menuItem:this,className:"MathJax_Menu"},t);for(var q=0,p=this.items.length;qdocument.body.offsetWidth-this.margin){u=document.body.offsetWidth-o.offsetWidth-this.margin}a.skipUp=true}else{var r="left",w=v.offsetWidth;u=v.offsetWidth-2;s=0;while(v&&v!==l){u+=v.offsetLeft;s+=v.offsetTop;v=v.parentNode}if(u+o.offsetWidth>document.body.offsetWidth-this.margin){r="right";u=Math.max(this.margin,u-w-o.offsetWidth+6)}if(!i){o.style["borderRadiusTop"+r]=0;o.style["WebkitBorderRadiusTop"+r]=0;o.style["MozBorderRadiusTop"+r]=0;o.style["KhtmlBorderRadiusTop"+r]=0}}o.style.left=u+"px";o.style.top=s+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return this.False(n)},Remove:function(l,m){var n=document.getElementById("MathJax_MenuFrame");if(n){n.parentNode.removeChild(n);if(this.msieBackgroundBug){detachEvent("onresize",a.Resize)}}},Mouseup:function(l,m){if(a.skipUp){delete a.skipUp}else{this.Remove(l,m)}},False:d},{config:j,div:null,Remove:function(l){a.Event(l,this,"Remove")},Mouseover:function(l){a.Event(l,this,"Mouseover")},Mouseout:function(l){a.Event(l,this,"Mouseout")},Mousedown:function(l){a.Event(l,this,"Mousedown")},Mouseup:function(l){a.Event(l,this,"Mouseup")},Mousemove:function(l){a.Event(l,this,"Mousemove")},Event:function(n,o,l){if(!n){n=window.event}var m=o.menuItem;if(m&&m[l]){return m[l](n,o)}return null},BGSTYLE:{position:"absolute",left:0,top:0,"z-index":200,width:"100%",height:"100%",border:0,padding:0,margin:0},Background:function(m){var n=c.addElement(document.body,"div",{style:this.BGSTYLE,id:"MathJax_MenuFrame"},[["div",{style:this.BGSTYLE,menuItem:m,onmousedown:this.Remove}]]);var l=n.firstChild;if(m.msieBackgroundBug){l.style.backgroundColor="white";l.style.filter="alpha(opacity=0)";n.width=n.height=0;this.Resize();attachEvent("onresize",this.Resize)}else{l.style.position="fixed"}return n},Resize:function(){setTimeout(a.SetWH,0)},SetWH:function(){var l=document.getElementById("MathJax_MenuFrame");if(l){l=l.firstChild;l.style.width=l.style.height="1px";l.style.width=document.body.scrollWidth+"px";l.style.height=document.body.scrollHeight+"px"}},saveCookie:function(){c.Cookie.Set("menu",this.cookie)},getCookie:function(){this.cookie=c.Cookie.Get("menu")}});var h=a.ITEM=MathJax.Object.Subclass({name:"",Create:function(m){if(!this.hidden){var l={onmouseover:a.Mouseover,onmouseout:a.Mouseout,onmouseup:a.Mouseup,onmousedown:this.False,ondragstart:this.False,onselectstart:this.False,onselectend:this.False,className:"MathJax_MenuItem",menuItem:this};if(this.disabled){l.className+=" MathJax_MenuDisabled"}c.addElement(m,"div",l,this.Label(l,m))}},Mouseover:function(q,s){if(!this.disabled){this.Activate(s)}if(!this.menu||!this.menu.posted){var r=document.getElementById("MathJax_MenuFrame").childNodes,n=s.parentNode.childNodes;for(var o=0,l=n.length;o=0&&s.parentNode.menuItem!==r[l].menuItem){r[l].menuItem.posted=false;r[l].parentNode.removeChild(r[l]);l--}if(this.Timer){this.Timer(q,s)}}},Mouseout:function(l,m){if(!this.menu||!this.menu.posted){this.Deactivate(m)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(l,m){return this.Remove(l,m)},Remove:function(l,m){m=m.parentNode.menuItem;return m.Remove(l,m)},Activate:function(l){this.Deactivate(l);l.className+=" MathJax_MenuActive"},Deactivate:function(l){l.className=l.className.replace(/ MathJax_MenuActive/,"")},With:function(l){if(l){b.Insert(this,l)}return this},False:d});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(l,n,m){this.name=l;this.action=n;this.With(m)},Label:function(l,m){return[this.name]},Mouseup:function(l,m){if(!this.disabled){this.Remove(l,m);this.action.call(this,l)}return this.False(l)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(i&&!b.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(l,n){this.name=l;var m=1;if(!(n instanceof a.ITEM)){this.With(n),m++}this.menu=a.apply(a,[].slice.call(arguments,m))},Label:function(l,m){l.onmousemove=a.Mousemove;this.menu.posted=false;return[this.name+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(l,m){if(this.timer){clearTimeout(this.timer)}l={clientX:l.clientX,clientY:l.clientY};this.timer=setTimeout(MathJax.Callback(["Mouseup",this,l,m]),j.delay)},Mouseup:function(n,p){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(n,p)}else{var o=document.getElementById("MathJax_MenuFrame").childNodes,l=o.length-1;while(l>=0){var q=o[l];q.menuItem.posted=false;q.parentNode.removeChild(q);if(q.menuItem===this.menu){break}l--}}}return this.False(n)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(i?"\u25CF":"\u2713"),Init:function(m,l,n){this.name=m;this.variable=l;this.With(n);if(this.value==null){this.value=this.name}},Label:function(m,n){var l={className:"MathJax_MenuRadioCheck"};if(j.settings[this.variable]!==this.value){l={style:{display:"none"}}}return[["span",l,[this.marker]]," "+this.name]},Mouseup:function(p,q){if(!this.disabled){var r=q.parentNode.childNodes;for(var n=0,l=r.length;n/g,">");n.document.open();n.document.write("MathJax Equation Source");n.document.write("
"+r+"
");n.document.write("");n.document.close();var p=n.document.body.firstChild;var o=(n.outerHeight-n.innerHeight)||30,m=(n.outerWidth-n.innerWidth)||30;m=Math.min(Math.floor(0.5*screen.width),p.offsetWidth+m+25);o=Math.min(Math.floor(0.5*screen.height),p.offsetHeight+o+25);n.resizeTo(m,o);if(q&&q.screenX!=null){var l=Math.max(0,Math.min(q.screenX-Math.floor(m/2),screen.width-m-20)),s=Math.max(0,Math.min(q.screenY-Math.floor(o/2),screen.height-o-20));n.moveTo(l,s)}delete a.ShowSource.w};a.Scale=function(){var m=MathJax.OutputJax["HTML-CSS"],l=MathJax.OutputJax.NativeMML;var o=(m?m.config.scale:l.config.scale);var n=prompt("Scale all mathematics (compared to surrounding text) by",o+"%");if(n){if(n.match(/^\s*\d+\s*%?\s*$/)){n=parseInt(n);if(n){if(n!==o){if(m){m.config.scale=n}if(l){l.config.scale=n}a.cookie.scale=n;a.saveCookie();b.Reprocess()}}else{alert("The scale should not be zero")}}else{alert("The scale should be a perentage (e.g., 120%)")}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){f.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var l=b.config.outputJax["jax/mml"];if(l[0]!==j.settings.renderer){MathJax.Callback.Queue(["Require",f,"[MathJax]/jax/output/"+j.settings.renderer+"/config.js"],["Post",b.Startup.signal,j.settings.renderer+" output selected"],[function(){var p=MathJax.OutputJax[j.settings.renderer];for(var o=0,n=l.length;o7;a.Augment({margin:20,msieBackgroundBug:(m||!n),msieAboutBug:m});if(document.documentMode>=9){delete j.styles["#MathJax_About"].filter;delete j.styles[".MathJax_Menu"].filter}}});b.Register.StartupHook("End Config",function(){j.settings=b.config.menuSettings;if(!j.settings.format){j.settings.format=(MathJax.InputJax.TeX?"Original":"MathML")}if(typeof(j.settings.showRenderer)!=="undefined"){j.showRenderer=j.settings.showRenderer}if(typeof(j.settings.showFontMenu)!=="undefined"){j.showFontMenu=j.settings.showFontMenu}if(typeof(j.settings.showContext)!=="undefined"){j.showContext=j.settings.showContext}a.getCookie();a.menu=a(h.COMMAND("Show Source",a.ShowSource),h.SUBMENU("Format",h.RADIO("MathML","format"),h.RADIO("Original","format",{value:"Original"})),h.RULE(),h.SUBMENU("Settings",h.SUBMENU("Zoom Trigger",h.RADIO("Hover","zoom",{action:a.Zoom}),h.RADIO("Click","zoom",{action:a.Zoom}),h.RADIO("Double-Click","zoom",{action:a.Zoom}),h.RADIO("No Zoom","zoom",{value:"None"}),h.RULE(),h.LABEL("Trigger Requires:"),h.CHECKBOX((b.Browser.isMac?"Option":"Alt"),"ALT"),h.CHECKBOX("Command","CMD",{hidden:!b.Browser.isMac}),h.CHECKBOX("Control","CTRL",{hidden:b.Browser.isMac}),h.CHECKBOX("Shift","Shift")),h.SUBMENU("Zoom Factor",h.RADIO("125%","zscale"),h.RADIO("133%","zscale"),h.RADIO("150%","zscale"),h.RADIO("175%","zscale"),h.RADIO("200%","zscale"),h.RADIO("250%","zscale"),h.RADIO("300%","zscale"),h.RADIO("400%","zscale")),h.RULE(),h.SUBMENU("Math Renderer",{hidden:!j.showRenderer},h.RADIO("HTML-CSS","renderer",{action:a.Renderer}),h.RADIO("MathML","renderer",{action:a.Renderer,value:"NativeMML"})),h.SUBMENU("Font Preference",{hidden:!j.showFontMenu},h.LABEL("For HTML-CSS:"),h.RADIO("Auto","font",{action:a.Font}),h.RULE(),h.RADIO("TeX (local)","font",{action:a.Font}),h.RADIO("TeX (web)","font",{action:a.Font}),h.RADIO("TeX (image)","font",{action:a.Font}),h.RULE(),h.RADIO("STIX (local)","font",{action:a.Font})),h.SUBMENU("Contextual Menu",{hidden:!j.showContext},h.RADIO("MathJax","context"),h.RADIO("Browser","context")),h.COMMAND("Scale All Math ...",a.Scale)),h.RULE(),h.COMMAND("About MathJax",a.About),h.COMMAND("MathJax Help",a.Help))});a.showRenderer=function(l){a.cookie.showRenderer=j.showRenderer=l;a.saveCookie();a.menu.items[3].menu.item[3].hidden=!l};a.showFontMenu=function(l){a.cookie.showFontMenu=j.showFontMenu=l;a.saveCookie();a.menu.items[3].menu.items[4].hidden=!l};a.showContext=function(l){a.cookie.showContext=j.showContext=l;a.saveCookie();a.menu.items[3].menu.items[5].hidden=!l};MathJax.Callback.Queue(["Styles",f,j.styles],["Post",b.Startup.signal,"MathMenu Ready"],["loadComplete",f,"[MathJax]/extensions/MathMenu.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax); + +MathJax.ElementJax.mml=MathJax.ElementJax({mimeType:"jax/mml"},{id:"mml",version:"1.1.1",directory:MathJax.ElementJax.directory+"/mml",extensionDir:MathJax.ElementJax.extensionDir+"/mml",optableDir:MathJax.ElementJax.directory+"/mml/optable"});MathJax.ElementJax.mml.Augment({Init:function(){if(arguments.length===1&&arguments[0].type==="math"){this.root=arguments[0]}else{this.root=MathJax.ElementJax.mml.math.apply(this,arguments)}if(this.root.mode){if(!this.root.display&&this.root.mode==="display"){this.root.display="block"}delete this.root.mode}}},{INHERIT:"_inherit_",AUTO:"_auto_",SIZE:{INFINITY:"infinity",SMALL:"small",NORMAL:"normal",BIG:"big"},COLOR:{TRANSPARENT:"transparent"},VARIANT:{NORMAL:"normal",BOLD:"bold",ITALIC:"italic",BOLDITALIC:"bold-italic",DOUBLESTRUCK:"double-struck",FRAKTUR:"fraktur",BOLDFRAKTUR:"bold-fraktur",SCRIPT:"script",BOLDSCRIPT:"bold-script",SANSSERIF:"sans-serif",BOLDSANSSERIF:"bold-sans-serif",SANSSERIFITALIC:"sans-serif-italic",SANSSERIFBOLDITALIC:"sans-serif-bold-italic",MONOSPACE:"monospace",INITIAL:"inital",TAILED:"tailed",LOOPED:"looped",STRETCHED:"stretched",CALIGRAPHIC:"-tex-caligraphic",OLDSTYLE:"-tex-oldstyle"},FORM:{PREFIX:"prefix",INFIX:"infix",POSTFIX:"postfix"},LINEBREAK:{AUTO:"auto",NEWLINE:"newline",NOBREAK:"nobreak",GOODBREAK:"goodbreak",BADBREAK:"badbreak"},LINEBREAKSTYLE:{BEFORE:"before",AFTER:"after",DUPLICATE:"duplicate",INFIXLINBREAKSTYLE:"infixlinebreakstyle"},INDENTALIGN:{LEFT:"left",CENTER:"center",RIGHT:"right",AUTO:"auto",ID:"id",INDENTALIGN:"indentalign"},INDENTSHIFT:{INDENTSHIFT:"indentshift"},LINETHICKNESS:{THIN:"thin",MEDIUM:"medium",THICK:"thick"},NOTATION:{LONGDIV:"longdiv",ACTUARIAL:"actuarial",RADICAL:"radical",BOX:"box",ROUNDEDBOX:"roundedbox",CIRCLE:"circle",LEFT:"left",RIGHT:"right",TOP:"top",BOTTOM:"bottom",UPDIAGONALSTRIKE:"updiagonalstrike",DOWNDIAGONALSTRIKE:"downdiagonalstrike",VERTICALSTRIKE:"verticalstrike",HORIZONTALSTRIKE:"horizontalstrike",MADRUWB:"madruwb"},ALIGN:{TOP:"top",BOTTOM:"bottom",CENTER:"center",BASELINE:"baseline",AXIS:"axis",LEFT:"left",RIGHT:"right"},LINES:{NONE:"none",SOLID:"solid",DASHED:"dashed"},SIDE:{LEFT:"left",RIGHT:"right",LEFTOVERLAP:"leftoverlap",RIGHTOVERLAP:"rightoverlap"},WIDTH:{AUTO:"auto",FIT:"fit"},ACTIONTYPE:{TOGGLE:"toggle",STATUSLINE:"statusline",TOOLTIP:"tooltip",INPUT:"input"},LENGTH:{VERYVERYTHINMATHSPACE:"veryverythinmathspace",VERYTHINMATHSPACE:"verythinmathspace",THINMATHSPACE:"thinmathspace",MEDIUMMATHSPACE:"mediummathspace",THICKMATHSPACE:"thickmathspace",VERYTHICKMATHSPACE:"verythickmathspace",VERYVERYTHICKMATHSPACE:"veryverythickmathspace",NEGATIVEVERYVERYTHINMATHSPACE:"negativeveryverythinmathspace",NEGATIVEVERYTHINMATHSPACE:"negativeverythinmathspace",NEGATIVETHINMATHSPACE:"negativethinmathspace",NEGATIVEMEDIUMMATHSPACE:"negativemediummathspace",NEGATIVETHICKMATHSPACE:"negativethickmathspace",NEGATIVEVERYTHICKMATHSPACE:"negativeverythickmathspace",NEGATIVEVERYVERYTHICKMATHSPACE:"negativeveryverythickmathspace"},OVERFLOW:{LINBREAK:"linebreak",SCROLL:"scroll",ELIDE:"elide",TRUNCATE:"truncate",SCALE:"scale"},UNIT:{EM:"em",EX:"ex",PX:"px",IN:"in",CM:"cm",MM:"mm",PT:"pt",PC:"pc"},TEXCLASS:{ORD:0,OP:1,BIN:2,REL:3,OPEN:4,CLOSE:5,PUNCT:6,INNER:7,VCENTER:8,NONE:-1},PLANE1:String.fromCharCode(55349)});(function(a){var d=false;var b=true;a.mbase=MathJax.Object.Subclass({type:"base",isToken:d,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT},noInherit:{},Init:function(){this.data=[];if(this.inferRow&&!(arguments.length===1&&arguments[0].inferred)){this.Append(a.mrow().With({inferred:b}))}this.Append.apply(this,arguments)},With:function(f){for(var g in f){if(f.hasOwnProperty(g)){this[g]=f[g]}}return this},Append:function(){if(this.inferRow&&this.data.length){this.data[0].Append.apply(this.data[0],arguments)}else{for(var g=0,f=arguments.length;g0&&this.Get("scriptlevel")>0&&h>=0){return""}return this.TEXSPACELENGTH[Math.abs(h)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(f){return""},isSpacelike:function(){return d},isEmbellished:function(){return d},Core:function(){return this},CoreMO:function(){return this},lineBreak:function(){if(this.isEmbellished()){return this.CoreMO().lineBreak()}else{return"none"}},array:function(){if(this.inferred){return this.data}else{return[this]}},toString:function(){return this.type+"("+this.data.join(",")+")"}},{childrenSpacelike:function(){for(var f=0;f=0;f--){if(this.data[0]&&!this.data[f].isSpacelike()){return this.data[f]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(h){for(var g=0,f=this.data.length;g0){f++}return f},adjustChild_texprimestyle:function(f){if(f==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:b,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(f){return b}});a.mroot=a.mbase.Subclass({type:"mroot",texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(f){if(f===1){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g===1){f+=2}return f},adjustChild_texprimestyle:function(f){if(f===0){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:b,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(h){var g=this.scriptlevel;if(g==null){g=this.Get("scriptlevel")}else{if(String(g).match(/^ *[-+]/)){delete this.scriptlevel;var f=this.Get("scriptlevel");this.scriptlevel=g;g=f+parseInt(g)}}return g},inheritFromMe:b,noInherit:{mpadded:{width:b,height:b,depth:b,lspace:b,voffset:b},mtable:{width:b,height:b,depth:b,align:b}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:b,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:b,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(j){this.getPrevClass(j);var g=this.getValues("open","close","separators");g.open=g.open.replace(/[ \t\n\r]/g,"");g.close=g.close.replace(/[ \t\n\r]/g,"");g.separators=g.separators.replace(/[ \t\n\r]/g,"");if(g.open!==""){this.SetData("open",a.mo(g.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));j=this.data.open.setTeXclass(j)}if(g.separators!==""){while(g.separators.length0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g>0){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.sub){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(f){if(f%2===1){return b}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(f){if(f==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(f):a.TEXCLASS.ORD)}if(f==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(f==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return d},adjustChild_displaystyle:function(f){if(f>0){return d}return this.Get("displaystyle")},adjustChild_scriptlevel:function(g){var f=this.Get("scriptlevel");if(g==this.under&&!this.Get("accentunder")){f++}if(g==this.over&&!this.Get("accent")){f++}return f},adjustChild_texprimestyle:function(f){if(f===this.base&&this.data[this.over]){return b}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:b,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:d,equalcolumns:d,displaystyle:d,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:b,noInherit:{mtable:{align:b,rowalign:b,columnalign:b,groupalign:b,alignmentscope:b,columnwidth:b,width:b,rowspacing:b,columnspacing:b,rowlines:b,columnlines:b,frame:b,framespacing:b,equalrows:b,equalcolumns:b,side:b,minlabelspacing:b,texClass:b,useHeight:1}},Append:function(){for(var g=0,f=arguments.length;g":e.REL,"?":[1,1,c.CLOSE],"\\":e.ORD,_:e.ORD11,"|":[2,2,c.ORD,{fence:true,stretchy:true,symmetric:true}],"#":e.ORD,"$":e.ORD,"\u002E":[0,3,c.PUNCT,{separator:true}],"\u02B9":e.ORD,"\u02C9":e.ACCENT,"\u02CA":e.ACCENT,"\u02CB":e.ACCENT,"\u0300":e.ACCENT,"\u0301":e.ACCENT,"\u0303":e.WIDEACCENT,"\u0304":e.ACCENT,"\u0306":e.ACCENT,"\u0307":e.ACCENT,"\u0308":e.ACCENT,"\u030C":e.ACCENT,"\u0332":e.WIDEACCENT,"\u0338":e.REL4,"\u2015":[0,0,c.ORD,{stretchy:true}],"\u2017":[0,0,c.ORD,{stretchy:true}],"\u2020":e.BIN3,"\u2021":e.BIN3,"\u20D7":e.ACCENT,"\u2118":e.ORD,"\u2205":e.ORD,"\u221E":e.ORD,"\u2305":e.BIN3,"\u2306":e.BIN3,"\u2322":e.REL4,"\u2323":e.REL4,"\u2329":e.OPEN,"\u232A":e.CLOSE,"\u23AA":e.ORD,"\u23AF":[0,0,c.ORD,{stretchy:true}],"\u23B0":e.OPEN,"\u23B1":e.CLOSE,"\u25EF":e.BIN3,"\u2660":e.ORD,"\u2661":e.ORD,"\u2662":e.ORD,"\u2663":e.ORD,"\u27EE":e.OPEN,"\u27EF":e.CLOSE,"\u27FC":e.REL4,"\u3008":e.OPEN,"\u3009":e.CLOSE,"\uFE37":e.WIDEACCENT,"\uFE38":e.WIDEACCENT}}},{OPTYPES:e})})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); + +MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="1.1.1";var a=MathJax.ElementJax.mml;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.MathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},MathMLattributes:function(){var j=[],g=this.defaults;var c=this.copyAttributes,l=this.skipAttributes;if(this.type==="math"){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.quoteHTML(k)+'"')}this[d]=k}}}for(var h=0,f=c.length;h126){e[f]="&#x"+h.toString(16).toUpperCase()+";"}else{var g={"&":"&","<":"<",">":">",'"':"""}[e[f]];if(g){e[f]=g}}}return e.join("")}});a.msubsup.Augment({toMathML:function(h){var e=this.type;if(this.data[this.sup]==null){e="msub"}if(this.data[this.sub]==null){e="msup"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.MathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(c){return c+"\n"+this.data[0].toMathML(c+" ")+"\n"+c+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.quoteHTML(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); + +(function(){var c="1.1";var a=MathJax.Hub.CombineConfig("TeX.noErrors",{multiLine:true,inlineDelimiters:["",""],style:{"font-family":"serif","font-size":"80%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var b="\u00A0";MathJax.Extension["TeX/noErrors"]={version:c,config:a};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){MathJax.InputJax.TeX.Augment({formatError:function(f,e,g,d){var i=a.inlineDelimiters;var h=(g||a.multiLine);if(!g){e=i[0]+e+i[1]}if(h){e=e.replace(/ /g,b)}else{e=e.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(e).With({isError:true,multiLine:h})}})});MathJax.Hub.Register.StartupHook("HTML-CSS Jax Config",function(){MathJax.Hub.Config({"HTML-CSS":{styles:{".MathJax .merror":MathJax.Hub.Insert({"font-style":null,"background-color":null,"vertical-align":(MathJax.Hub.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})})})();MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var a=MathJax.ElementJax.mml;var b=MathJax.OutputJax["HTML-CSS"];var c=a.math.prototype.toHTML;a.math.Augment({toHTML:function(d,e){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toHTML(d)}return c.call(this,d,e)}});a.merror.Augment({toHTML:function(j){if(!this.isError){return a.mbase.prototype.toHTML.call(this,j)}j=this.HTMLcreateSpan(j);if(this.multiLine){j.style.display="inline-block"}var l=this.data[0].data[0].data.join("").split(/\n/);for(var g=0,e=l.length;g1){var k=(n.h+n.d)/2,h=b.TeX.x_height/2;var f=b.config.styles[".MathJax .merror"]["font-size"];if(f&&f.match(/%/)){h*=parseInt(f)/100}j.parentNode.style.verticalAlign=b.Em(n.d+(h-k));n.h=h+k;n.d=k-h}j.bbox={h:n.h,d:n.d,w:d,lw:0,rw:d};return j}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Hub.Register.StartupHook("NativeMML Jax Ready",function(){var b=MathJax.ElementJax.mml;var a=MathJax.Extension["TeX/noErrors"].config;var c=b.math.prototype.toNativeMML;b.math.Augment({toNativeMML:function(d){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].toNativeMML(d)}return c.call(this,d)}});b.merror.Augment({toNativeMML:function(g){if(!this.isError){return b.mbase.prototype.toNativeMML.call(this,g)}g=g.appendChild(document.createElement("span"));var h=this.data[0].data[0].data.join("").split(/\n/);for(var f=0,e=h.length;f1){g.style.verticalAlign="middle"}}for(var j in a.style){if(a.style.hasOwnProperty(j)){var d=j.replace(/-./g,function(i){return i.charAt(1).toUpperCase()});g.style[d]=a.style[j]}}return g}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); + +MathJax.Extension["TeX/noUndefined"]={version:"1.1",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(c){this.Push(a.mtext(c).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); + +(function(d){var c=true,f=false,i,h=String.fromCharCode(160);var e=MathJax.Object.Subclass({Init:function(k){this.global={};this.data=[b.start().With({global:this.global})];if(k){this.data[0].env=k}this.env=this.data[0].env},Push:function(){var l,k,n,o;for(l=0,k=arguments.length;l":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:i.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:i.TEXCLASS.ORD}],"\\|":["2225",{texClass:i.TEXCLASS.ORD}],"\\vert":["|",{texClass:i.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",c,0],textstyle:["SetStyle","T",f,0],scriptstyle:["SetStyle","S",f,1],scriptscriptstyle:["SetStyle","SS",f,2],rm:["SetFont",i.VARIANT.NORMAL],mit:["SetFont",i.VARIANT.ITALIC],oldstyle:["SetFont",i.VARIANT.OLDSTYLE],cal:["SetFont",i.VARIANT.CALIGRAPHIC],it:["SetFont",i.VARIANT.ITALIC],bf:["SetFont",i.VARIANT.BOLD],bbFont:["SetFont",i.VARIANT.DOUBLESTRUCK],scr:["SetFont",i.VARIANT.SCRIPT],frak:["SetFont",i.VARIANT.FRAKTUR],sf:["SetFont",i.VARIANT.SANSSERIF],tt:["SetFont",i.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedOp",0],arccos:["NamedOp",0],arctan:["NamedOp",0],arg:["NamedOp",0],cos:["NamedOp",0],cosh:["NamedOp",0],cot:["NamedOp",0],coth:["NamedOp",0],csc:["NamedOp",0],deg:["NamedOp",0],det:"NamedOp",dim:["NamedOp",0],exp:["NamedOp",0],gcd:"NamedOp",hom:["NamedOp",0],inf:"NamedOp",ker:["NamedOp",0],lg:["NamedOp",0],lim:"NamedOp",liminf:["NamedOp",null,"lim inf"],limsup:["NamedOp",null,"lim sup"],ln:["NamedOp",0],log:["NamedOp",0],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedOp",0],sin:["NamedOp",0],sinh:["NamedOp",0],sup:"NamedOp",tan:["NamedOp",0],tanh:["NamedOp",0],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","203E"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",i.LENGTH.THINMATHSPACE],":":["Spacer",i.LENGTH.THINMATHSPACE],">":["Spacer",i.LENGTH.MEDIUMMATHSPACE],";":["Spacer",i.LENGTH.THICKMATHSPACE],"!":["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",i.LENGTH.THINMATHSPACE],negthinspace:["Spacer",i.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",i.TEXCLASS.ORD,0.85],Big:["MakeBig",i.TEXCLASS.ORD,1.15],bigg:["MakeBig",i.TEXCLASS.ORD,1.45],Bigg:["MakeBig",i.TEXCLASS.ORD,1.75],bigl:["MakeBig",i.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",i.TEXCLASS.OPEN,1.15],biggl:["MakeBig",i.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",i.TEXCLASS.OPEN,1.75],bigr:["MakeBig",i.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",i.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",i.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",i.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",i.TEXCLASS.REL,0.85],Bigm:["MakeBig",i.TEXCLASS.REL,1.15],biggm:["MakeBig",i.TEXCLASS.REL,1.45],Biggm:["MakeBig",i.TEXCLASS.REL,1.75],mathord:["TeXAtom",i.TEXCLASS.ORD],mathop:["TeXAtom",i.TEXCLASS.OP],mathopen:["TeXAtom",i.TEXCLASS.OPEN],mathclose:["TeXAtom",i.TEXCLASS.CLOSE],mathbin:["TeXAtom",i.TEXCLASS.BIN],mathrel:["TeXAtom",i.TEXCLASS.REL],mathpunct:["TeXAtom",i.TEXCLASS.PUNCT],mathinner:["TeXAtom",i.TEXCLASS.INNER],vcenter:["TeXAtom",i.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","02CA"],grave:["Accent","02CB"],ddot:["Accent","00A8"],tilde:["Accent","02DC"],bar:["Accent","02C9"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","02C6"],vec:["Accent","20D7"],dot:["Accent","02D9"],widetilde:["Accent","02DC",1],widehat:["Accent","02C6",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em"],eqalign:["Matrix",null,null,"right left",i.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"Cr",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",i.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\rm mod}"],pmod:["Macro","\\pod{{\\rm mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}{\\rm mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"],not:["Macro","\\mathrel{\\rlap{\\kern.5em\\notChar}}"]," ":["Macro","\\text{ }"],space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],def:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Macro","",1],nonumber:["Macro",""],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],require:"Require"},environment:{array:["Array"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],eqnarray:["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],"eqnarray*":["Array",null,null,null,"rcl",i.LENGTH.THICKMATHSPACE,".5em","D"],equation:[null,"Equation"],"equation*":[null,"Equation"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var k=this.config.Macros;for(var l in k){if(k.hasOwnProperty(l)){if(typeof(k[l])==="string"){g.macros[l]=["Macro",k[l]]}else{g.macros[l]=["Macro"].concat(k[l])}}}}};var a=MathJax.Object.Subclass({Init:function(l,m){this.string=l;this.i=0;this.macroCount=0;var k;if(m){k={};for(var n in m){if(m.hasOwnProperty(n)){k[n]=m[n]}}}this.stack=d.Stack(k);this.Parse();this.Push(b.stop())},Parse:function(){var k;while(this.id.config.MAXMACROS){d.Error("MathJax maximum macro substitution count exceeded; is there a recursive macro call?")}},Matrix:function(l,n,s,p,q,m,k){var r=this.GetNext();if(r===""){d.Error("Missing argument for "+l)}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var o=b.array().With({requireClose:c,arraydef:{rowspacing:(m||"4pt"),columnspacing:(q||"1em")}});if(n||s){o.open=n;o.close=s}if(k==="D"){o.arraydef.displaystyle=c}if(p!=null){o.arraydef.columnalign=p}this.Push(o)},Entry:function(k){this.Push(b.cell().With({isEntry:c,name:k}))},Cr:function(k){this.Push(b.cell().With({isCR:c,name:k}))},HLine:function(l,m){if(m==null){m="solid"}var n=this.stack.Top();if(n.type!=="array"||n.data.length){d.Error("Misplaced "+l)}if(n.table.length==0){n.arraydef.frame=m}else{var k=(n.arraydef.rowlines?n.arraydef.rowlines.split(/ /):[]);while(k.lengthd.config.MAXMACROS){d.Error("MathJax maximum substitution count exceeded; is there a recursive latex environment?")}var n=g.environment[m];if(!(n instanceof Array)){n=[n]}var k=b.begin().With({name:m,end:n[1],parse:this});if(n[0]&&this[n[0]]){k=this[n[0]].apply(this,[k].concat(n.slice(2)))}this.Push(k)},End:function(k){this.Push(b.end().With({name:this.GetArgument(k)}))},Equation:function(k,l){return l},ExtensionEnv:function(l,k){this.Extension(l.name,k,"environment")},Array:function(m,o,t,r,s,n,k,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){var l=(u.charAt(0)+u.charAt(u.length-1)).replace(/[^|:]/g,"");if(l!==""){q.arraydef.frame={"|":"solid",":":"dashed"}[l.charAt(0)];q.arraydef.framespacing=".5em .5ex"}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(k==="D"){q.arraydef.displaystyle=c}if(k==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=f}this.Push(m);return q},convertDelimiter:function(k){if(k){k=g.delimiter[k]}if(k==null){return null}if(k instanceof Array){k=k[0]}if(k.length===4){k=String.fromCharCode(parseInt(k,16))}return k},trimSpaces:function(k){if(typeof(k)!="string"){return k}return k.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var k=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(k){this.i+=k[1].length;return k[1]}else{this.i++;return" "}},GetArgument:function(l,m){switch(this.GetNext()){case"":if(!m){d.Error("Missing argument for "+l)}return null;case"}":if(!m){d.Error("Extra close brace or missing open brace")}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var k=++this.i,n=1;while(this.il.length){d.Error("Illegal macro parameter reference")}n=this.AddArgs(this.AddArgs(n,o),l[p-1]);o=""}}else{o+=p}}}return this.AddArgs(n,o)},AddArgs:function(l,k){if(k.match(/^[a-z]/i)&&l.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){l+=" "}if(l.length+k.length>d.config.MAXBUFFER){d.Error("MathJax internal buffer size exceeded; is there a recursive macro call?")}return l+k}});d.Augment({Stack:e,Parse:a,Definitions:g,Startup:j,config:{MAXMACROS:10000,MAXBUFFER:5*1024},Translate:function(k){var l,n=k.innerHTML.replace(/^\s+/,"").replace(/\s+$/,"");if(MathJax.Hub.Browser.isKonqueror){n=n.replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&")}var o=(k.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);n=d.prefilterMath(n,o,k);try{l=d.Parse(n).mml()}catch(m){if(!m.texError){throw m}l=this.formatError(m,n,o,k)}if(l.inferred){l=i.apply(MathJax.ElementJax,l.data)}else{l=i(l)}if(o){l.root.display="block"}return this.postfilterMath(l,o,k)},prefilterMath:function(l,m,k){return l.replace(/([_^]\s*\d)([0-9.,])/g,"$1 $2")},postfilterMath:function(l,m,k){this.combineRelations(l.root);return l},formatError:function(m,l,n,k){return i.merror(m.message.replace(/\n.*/,""))},Error:function(k){throw MathJax.Hub.Insert(Error(k),{texError:c})},Macro:function(k,l,m){g.macros[k]=["Macro"].concat([].slice.call(arguments,1))},combineRelations:function(l){for(var n=0,k=l.data.length;n0){align+="rl";spacing.push("0em 0em");j--}spacing=spacing.join(" ");if(g){return this.AMSarray(i,h,g,align,spacing)}return this.Array(i,null,null,align,spacing,".5em","D")},MultiIntegral:function(g,k){var j=this.GetNext();if(j==="\\"){var h=this.i;j=this.GetArgument(g);this.i=h;if(j==="\\limits"){if(g==="\\idotsint"){k="\\!\\!\\mathop{\\,\\,"+k+"}"}else{k="\\!\\!\\!\\mathop{\\,\\,\\,"+k+"}"}}}this.string=k+" "+this.string.slice(this.i);this.i=0},xArrow:function(i,m,k,g){var j={width:"+"+(k+g)+"mu",lspace:k+"mu"};var n=this.GetBrackets(i),o=this.ParseArg(i);var p=a.mo(a.chars(String.fromCharCode(m))).With({stretchy:true,texClass:a.TEXCLASS.REL});var h=a.munderover(p);h.SetData(h.over,a.mpadded(o).With(j).With({voffset:".15em"}));if(n){n=f.Parse(n,this.stack.env).mml();h.SetData(h.under,a.mpadded(n).With(j).With({voffset:"-.24em"}))}this.Push(h)},GetDelimiterArg:function(g){var h=this.trimSpaces(this.GetArgument(g));if(h==""){return null}if(!c.delimiter[h]){f.Error("Missing or unrecognized delimiter for "+g)}return this.convertDelimiter(h)}});d.multline=d.array.Subclass({type:"multline",EndEntry:function(){var g=a.mtd.apply(a,this.data);if(this.data.shove){g.columnalign=this.data.shove}this.row.push(g);this.data=[]},EndRow:function(){if(this.row.length!=1){f.Error("multline rows must have exactly one column")}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var h=this.table.length-1,j;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=a.ALIGN.LEFT}if(!this.table[h][0].columnalign){this.table[h][0].columnalign=a.ALIGN.RIGHT}var g=a.mtr;if(this.global.tag){this.table[0]=[this.global.tag].concat(this.table[0]);delete this.global.tag;g=a.mlabeledtr}this.table[0]=g.apply(a,this.table[0]);for(j=1,h=this.table.length;j + * + * Use it to customize the MathJax settings. See comments below. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2011 Design Science, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +/* + * This file lists most, but not all, of the options that can be set for + * MathJax and its various components. Some additional options are + * available, however, and are listed in the various links at: + * + * http://www.mathjax.org/resources/docs/?configuration.html#configuration-options-by-component + * + * You can add these to the configuration object below if you + * want to change them from their default values. + */ + +MathJax.Hub.Config({ + + // + // A comma-separated list of configuration files to load + // when MathJax starts up. E.g., to define local macros, etc. + // The default directory is the MathJax/config directory. + // + // Example: config: ["local/local.js"], + // Example: config: ["local/local.js","MMLtoHTML.js"], + // + config: [], + + // + // A comma-separated list of CSS stylesheet files to be loaded + // when MathJax starts up. The default directory is the + // MathJax/config directory. + // + // Example: styleSheets: ["MathJax.css"], + // + styleSheets: [], + + // + // Styles to be defined dynamically at startup time. + // + // Example: + // styles: { + // ".MathJax .merror": { + // color: "blue", + // "background-color": "green" + // } + // }, + // + styles: {}, + + // + // A comma-separated list of input and output jax to initialize at startup. + // Their main code is loaded only when they are actually used, so it is not + // inefficient to include jax that may not actually be used on the page. These + // are found in the MathJax/jax directory. + // + jax: ["input/TeX","output/HTML-CSS"], + + // + // A comma-separated list of extensions to load at startup. The default + // directory is MathJax/extensions. + // + // Example: extensions: ["tex2jax.js","TeX/AMSmath.js","TeX/AMSsymbols.js"], + // + extensions: ["tex2jax.js"], + + // + // Patterns to remove from before and after math script tags. If you are not + // using one of the preprocessors (e.g., tex2jax), you need to insert something + // extra into your HTML file in order to avoid a bug in Internet Explorer. IE + // removes spaces from the DOM that it thinks are redundent, and since a SCRIPT + // tag usually doesn't add content to the page, if there is a space before and after + // a MathJax SCRIPT tag, IE will remove the first space. When MathJax inserts + // the typeset mathematics, this means there will be no space before it and the + // preceeding text. In order to avoid this, you should include some "guard characters" + // before or after the math SCRIPT tag; define the patterns you want to use below. + // Note that these are used as regular expressions, so you will need to quote + // special characters. Furthermore, since they are javascript strings, you must + // quote javascript special characters as well. So to obtain a backslash, you must + // use \\ (doubled for javascript). For example, "\\[" is the pattern \[ in the + // regular expression. That means that if you want an actual backslash in your + // guard characters, you need to use "\\\\" in order to get \\ in the regular + // expression, and \ in the actual text. If both preJax and postJax are defined, + // both must be present in order to be removed. + // + // See also the preRemoveClass comments below. + // + // Example: + // preJax: "\\\\\\\\", // makes a double backslash the preJax text + // or + // preJax: "\\[\\[", // jax scripts must be enclosed in double brackets + // postJax: "\\]\\]", + // + preJax: null, + postJax: null, + + // + // The CSS class for a math preview to be removed preceeding a MathJax + // SCRIPT tag. If the tag just before the MathJax SCRIPT tag is of this + // class, its contents are removed when MathJax processes the SCRIPT + // tag. This allows you to include a math preview in a form that will + // be displayed prior to MathJax performing its typesetting. It also + // avoids the Internet Explorer space-removal bug, and can be used in + // place of preJax and postJax if that is more convenient. + // + // For example + // + // [math] + // + // would display "[math]" in place of the math until MathJax is able to typeset it. + // + preRemoveClass: "MathJax_Preview", + + // + // This value controls whether the "Processing Math: nn%" message are displayed + // in the lower left-hand corner. Set to "false" to prevent those messages (though + // file loading and other messages will still be shown). + // + showProcessingMessages: true, + + // + // This value controls the verbosity of the messages in the lower left-hand corner. + // Set it to "none" to eliminate all messages, or set it to "simple" to show + // "Loading..." and "Processing..." rather than showing the full file name and the + // percentage of the mathematics processed. + // + messageStyle: "normal", + + // + // These two parameters control the alignment and shifting of displayed equations. + // The first can be "left", "center", or "right", and determines the alignment of + // displayed equations. When the alignment is not "center", the second determines + // an indentation from the left or right side for the displayed equations. + // + displayAlign: "center", + displayIndent: "0em", + + // + // Normally MathJax will perform its starup commands (loading of + // configuration, styles, jax, and so on) as soon as it can. If you + // expect to be doing additional configuration on the page, however, you + // may want to have it wait until the page's onload hander is called. If so, + // set this to "onload". + // + delayStartupUntil: "none", + + // + // Normally MathJax will typeset the mathematics on the page as soon as + // the page is loaded. If you want to delay that process, in which case + // you will need to call MathJax.Hub.Typeset() yourself by hand, set + // this value to true. + // + skipStartupTypeset: false, + + // + // A list of element ID's that are the ones to process for mathematics + // when any of the Hub typesetting calls (Typeset, Process, Update, etc) + // are called with no element specified. This lets you restrict the + // processing to particular containers rather than scanning the entire + // document for mathematics. If none are supplied, the entire document + // is processed. + // + elements: [], + + //============================================================================ + // + // These parameters control the tex2jax preprocessor (when you have included + // "tex2jax.js" in the extensions list above). + // + tex2jax: { + + // + // The delimiters that surround in-line math expressions. The first in each + // pair is the initial delimiter and the second is the terminal delimiter. + // Comment out any that you don't want, but be sure there is no extra + // comma at the end of the last item in the list -- some browsers won't + // be able to handle that. + // + inlineMath: [ +// ['$','$'], // uncomment this for standard TeX math delimiters + ['\\(','\\)'] + ], + + // + // The delimiters that surround displayed math expressions. The first in each + // pair is the initial delimiter and the second is the terminal delimiter. + // Comment out any that you don't want, but be sure there is no extra + // comma at the end of the last item in the list -- some browsers won't + // be able to handle that. + // + displayMath: [ + ['$$','$$'], + ['\\[','\\]'] + ], + + // + // This array lists the names of the tags whose contents should not be + // processed by tex2jax (other than to look for ignore/process classes + // as listed below). You can add to (or remove from) this list to prevent + // MathJax from processing mathematics in specific contexts. + // + skipTags: ["script","noscript","style","textarea","pre","code"], + + // + // This is the class name used to mark elements whose contents should + // not be processed by tex2jax (other than to look for the + // processClass pattern below). Note that this is a regular + // expression, and so you need to be sure to quote any regexp special + // characters. The pattern is automatically preceeded by '(^| )(' and + // followed by ')( |$)', so your pattern will have to match full words + // in the class name. Assigning an element this class name will + // prevent `tex2jax` from processing its contents. + // + ignoreClass: "tex2jax_ignore", + + // + // This is the class name used to mark elements whose contents SHOULD + // be processed by tex2jax. This is used to turn on processing within + // tags that have been marked as ignored or skipped above. Note that + // this is a regular expression, and so you need to be sure to quote + // any regexp special characters. The pattern is automatically + // preceeded by '(^| )(' and followed by ')( |$)', so your pattern + // will have to match full words in the class name. Use this to + // restart processing within an element that has been marked as + // ignored above. + // + processClass: "tex2jax_process", + + // + // Set to "true" to allow \$ to produce a dollar without starting in-line + // math mode. If you uncomment the ['$','$'] line above, you should change + // this to true so that you can insert plain dollar signs into your documents + // + processEscapes: false, + + // + // Controls whether tex2jax processes LaTeX environments outside of math + // mode. Set to "false" to prevent processing of environments except within + // math mode. + // + processEnvironments: true, + + // + // Controls whether tex2jax inserts MathJax_Preview spans to make a + // preview available, and what preview to use, when it locates in-line + // and display mathetics on the page. The default is "TeX", which + // means use the TeX code as the preview (until it is processed by + // MathJax). Set to "none" to prevent the previews from being + // inserted (the math will simply disappear until it is typeset). Set + // to an array containing the description of an HTML snippet in order + // to use the same preview for all equations on the page (e.g., you + // could have it say "[math]" or load an image). + // + // E.g., preview: ["[math]"], + // or preview: [["img",{src: "http://myserver.com/images/mypic.jpg"}]] + // + preview: "TeX" + + }, + + //============================================================================ + // + // These parameters control the mml2jax preprocessor (when you have included + // "mml2jax.js" in the extensions list above). + // + mml2jax: { + + // + // Controls whether mml2jax inserts MathJax_Preview spans to make a + // preview available, and what preview to use, whrn it locates + // mathematics on the page. The default is "alttext", which means use + // the tag's alttext attribute as the preview (until it is + // processed by MathJax), if the tag has one. Set to "none" to + // prevent the previews from being inserted (the math will simply + // disappear until it is typeset). Set to an array containing the + // description of an HTML snippet in order to use the same preview for + // all equations on the page (e.g., you could have it say "[math]" or + // load an image). + // + // E.g., preview: ["[math]"], + // or preview: [["img",{src: "http://myserver.com/images/mypic.jpg"}]] + // + preview: "alttext" + + }, + + //============================================================================ + // + // These parameters control the jsMath2jax preprocessor (when you have included + // "jsMath2jax.js" in the extensions list above). + // + jsMath2jax: { + + // + // Controls whether jsMath2jax inserts MathJax_Preview spans to make a + // preview available, and what preview to use, when it locates + // mathematics on the page. The default is "TeX", which means use the + // TeX code as the preview (until it is processed by MathJax). Set to + // "none" to prevent the previews from being inserted (the math will + // simply disappear until it is typeset). Set to an array containing + // the description of an HTML snippet in order to use the same preview + // for all equations on the page (e.g., you could have it say "[math]" + // or load an image). + // + // E.g., preview: ["[math]"], + // or preview: [["img",{src: "http://myserver.com/images/mypic.jpg"}]] + // + preview: "TeX" + + }, + + //============================================================================ + // + // These parameters control the TeX input jax. + // + TeX: { + + // + // This specifies the side on which \tag{} macros will place the tags. + // Set to "left" to place on the left-hand side. + // + TagSide: "right", + + // + // This is the amound of indentation (from right or left) for the tags. + // + TagIndent: ".8em", + + // + // This is the width to use for the multline environment + // + MultLineWidth: "85%", + + // + // List of macros to define. These are of the form + // name: value + // where 'value' is the replacement text for the macro \name. + // The 'value' can also be [value,n] where 'value' is the replacement + // text and 'n' is the number of parameters for the macro. + // Note that backslashes must be doubled in the replacement string. + // + // E.g., + // + // Macros: { + // RR: '{\\bf R}', + // bold: ['{\\bf #1}', 1] + // } + // + Macros: {} + + }, + + //============================================================================ + // + // These parameters control the MathML inupt jax. + // + MathML: { + // + // This specifies whether to use TeX spacing or MathML spacing when the + // HTML-CSS output jax is used. + // + useMathMLspacing: false + }, + + //============================================================================ + // + // These parameters control the HTML-CSS output jax. + // + "HTML-CSS": { + + // + // This controls the global scaling of mathematics as compared to the + // surrounding text. Values between 100 and 133 are usually good choices. + // + scale: 100, + + // + // This is a list of the fonts to look for on a user's computer in + // preference to using MathJax's web-based fonts. These must + // correspond to directories available in the jax/output/HTML-CSS/fonts + // directory, where MathJax stores data about the characters available + // in the fonts. Set this to ["TeX"], for example, to prevent the + // use of the STIX fonts, or set it to an empty list, [], if + // you want to force MathJax to use web-based or image fonts. + // + availableFonts: ["STIX","TeX"], + + // + // This is the preferred font to use when more than one of those + // listed above is available. + // + preferredFont: "TeX", + + // + // This is the web-based font to use when none of the fonts listed + // above are available on the user's computer. Note that currently + // only the TeX font is available in a web-based form. Set this to + // + // webFont: null, + // + // if you want to prevent the use of web-based fonts. + // + webFont: "TeX", + + // + // This is the font to use for image fallback mode (when none of the + // fonts listed above are available and the browser doesn't support + // web-fonts via the @font-face CSS directive). Note that currently + // only the TeX font is available as an image font. Set this to + // + // imageFont: null, + // + // if you want to prevent the use of image fonts (e.g., you have not + // installed the image fonts on your server). In this case, only + // browsers that support web-based fonts will be able to view your pages + // without having the fonts installed on the client computer. The browsers + // that support web-based fonts include: IE6 and later, Chrome, Safari3.1 + // and above, Firefox3.5 and later, and Opera10 and later. Note that + // Firefox3.0 is NOT on this list, so without image fonts, FF3.0 users + // will be required to to download and install either the STIX fonts or the + // MathJax TeX fonts. + // + imageFont: "TeX", + + // + // This is the font-family CSS value used for characters that are not + // in the selected font (e.g., for web-based fonts, this is where to + // look for characters not included in the MathJax_* fonts). IE will + // stop looking after the first font that exists on the system (even + // if it doesn't contain the needed character), so order these carefully. + // + undefinedFamily: "STIXGeneral,'Arial Unicode MS',serif", + + // + // This controls whether the MathJax contextual menu will be available + // on the mathematics in the page. If true, then right-clicking (on + // the PC) or control-clicking (on the Mac) will produce a MathJax + // menu that allows you to get the source of the mathematics in + // various formats, change the size of the mathematics relative to the + // surrounding text, and get information about MathJax. + // + // Set this to false to disable the menu. When true, the MathMenu + // items below configure the actions of the menu. + // + showMathMenu: true, + + // + // This allows you to define or modify the styles used to display + // various math elements created by MathJax. + // + // Example: + // styles: { + // ".MathJax_Preview": { + // "font-size": "80%", // preview uses a smaller font + // color: "red" // and is in red + // } + // } + // + styles: {}, + + // + // Configuration for tooltips + // (see also the #MathJax_Tooltip CSS in MathJax/jax/output/HTML-CSS/config.js, + // which can be overriden using the styles values above). + // + tooltip: { + delayPost: 600, // milliseconds delay before tooltip is posted after mouseover + delayClear: 600, // milliseconds delay before tooltip is cleared after mouseout + offsetX: 10, offsetY: 5 // pixels to offset tooltip from mouse position + } + }, + + //============================================================================ + // + // These parameters control the NativeMML output jax. + // + NativeMML: { + + // + // This controls the global scaling of mathematics as compared to the + // surrounding text. Values between 100 and 133 are usually good choices. + // + scale: 100, + + // + // This controls whether the MathJax contextual menu will be available + // on the mathematics in the page. If true, then right-clicking (on + // the PC) or control-clicking (on the Mac) will produce a MathJax + // menu that allows you to get the source of the mathematics in + // various formats, change the size of the mathematics relative to the + // surrounding text, and get information about MathJax. + // + // Set this to false to disable the menu. When true, the MathMenu + // items below configure the actions of the menu. + // + // There is a separate setting for MSIE, since the code to handle that + // is a bit delicate; if it turns out to have unexpected consequences, + // you can turn it off without turing off other browser support. + // + showMathMenu: true, + showMathMenuMSIE: true, + + // + // This allows you to define or modify the styles used to display + // various math elements created by MathJax. + // + // Example: + // styles: { + // ".MathJax_MathML": { + // color: "red" // MathML is in red + // } + // } + // + styles: {} + }, + + //============================================================================ + // + // These parameters control the contextual menus that are available on the + // mathematics within the page (provided the showMathMenu value is true above). + // + MathMenu: { + // + // This is the hover delay for the display of submenus in the + // contextual menu. When the mouse is still over a submenu label for + // this long, the menu will appear. (The menu also will appear if you + // click on the label.) It is in milliseconds. + // + delay: 400, + + // + // This is the URL for the MathJax Help menu item. + // + helpURL: "http://www.mathjax.org/help/user/", + + // + // These control whether the "Math Renderer", "Font Preferences", + // and "Contextual Menu" submenus will be displayed or not. + // + showRenderer: true, + showFontMenu: false, + showContext: false, + + // + // These are the settings for the Show Source window. The initial + // width and height will be reset after the source is shown in an + // attempt to make the window fit the output better. + // + windowSettings: { + status: "no", toolbar: "no", locationbar: "no", menubar: "no", + directories: "no", personalbar: "no", resizable: "yes", scrollbars: "yes", + width: 100, height: 50 + }, + + // + // This allows you to change the CSS that controls the menu + // appearance. See the extensions/MathMenu.js file for details + // of the default settings. + // + styles: {} + + }, + + //============================================================================ + // + // These parameters control the MMLorHTML configuration file. + // NOTE: if you add MMLorHTML.js to the config array above, + // you must REMOVE the output jax from the jax array. + // + MMLorHTML: { + // + // The output jax that is to be preferred when both are possible + // (set to "MML" for native MathML, "HTML" for MathJax's HTML-CSS output jax). + // + prefer: { + MSIE: "MML", + Firefox: "MML", + Opera: "HTML", + other: "HTML" + } + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/config/default.js"); diff --git a/sagenb/data/mathjax/config/local/local.js b/sagenb/data/mathjax/config/local/local.js new file mode 100644 index 000000000..7bf733cb1 --- /dev/null +++ b/sagenb/data/mathjax/config/local/local.js @@ -0,0 +1,37 @@ +/************************************************************* + * + * MathJax/config/local/local.js + * + * Include changes and configuration local to your installation + * in this file. For example, common macros can be defined here + * (see below). To use this file, add "local/local.js" to the + * config array in MathJax.js or your MathJax.Hub.Config() call. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009 Design Science, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + var TEX = MathJax.InputJax.TeX; + + // place macros here. E.g.: + // TEX.Macro("R","{\\bf R}"); + // TEX.Macro("op","\\mathop{\\rm #1}",1); // a macro with 1 parameter + +}); + +MathJax.Ajax.loadComplete("[MathJax]/config/local/local.js"); diff --git a/sagenb/data/mathjax/docs/.gitignore b/sagenb/data/mathjax/docs/.gitignore new file mode 100644 index 000000000..85490c904 --- /dev/null +++ b/sagenb/data/mathjax/docs/.gitignore @@ -0,0 +1,10 @@ +.doctrees +html-mathjax-site +dirhtml +singlehtml +epub +latex +text +man +html/objects.inv +html/.buildinfo diff --git a/sagenb/data/mathjax/docs/Makefile b/sagenb/data/mathjax/docs/Makefile new file mode 100644 index 000000000..1335a14e0 --- /dev/null +++ b/sagenb/data/mathjax/docs/Makefile @@ -0,0 +1,137 @@ +# Makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = +SPHINXBUILD = sphinx-build +PAPER = +BUILDDIR = . + +# Internal variables. +PAPEROPT_a4 = -D latex_paper_size=a4 +PAPEROPT_letter = -D latex_paper_size=letter +ALLSPHINXOPTS = -d $(BUILDDIR)/.doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source + +.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest + +help: + @echo "Please use \`make ' where is one of" + @echo " html to make standalone HTML files" + @echo " dirhtml to make HTML files named index.html in directories" + @echo " singlehtml to make a single large HTML file" +# @echo " pickle to make pickle files" +# @echo " json to make JSON files" +# @echo " htmlhelp to make HTML files and a HTML help project" +# @echo " qthelp to make HTML files and a qthelp project" +# @echo " devhelp to make HTML files and a Devhelp project" + @echo " epub to make an epub" + @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" + @echo " latexpdf to make LaTeX files and run them through pdflatex" + @echo " text to make text files" + @echo " man to make manual pages" + @echo " changes to make an overview of all changed/added/deprecated items" + @echo " linkcheck to check all external links for integrity" + @echo " doctest to run all doctests embedded in the documentation (if enabled)" + @echo "or" + @echo " html-mathjax-site to make the documentation for www.mathjax.org" + +clean: + -rm -rf $(BUILDDIR)/* + +html: + $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." + +html-mathjax-site: + $(SPHINXBUILD) -b html -A for_site=True $(ALLSPHINXOPTS) $(BUILDDIR)/html-mathjax-site + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/html-mathjax-site." + +dirhtml: + $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." + +singlehtml: + $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml + @echo + @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." + +pickle: + $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle + @echo + @echo "Build finished; now you can process the pickle files." + +json: + $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json + @echo + @echo "Build finished; now you can process the JSON files." + +htmlhelp: + $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp + @echo + @echo "Build finished; now you can run HTML Help Workshop with the" \ + ".hhp project file in $(BUILDDIR)/htmlhelp." + +qthelp: + $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp + @echo + @echo "Build finished; now you can run "qcollectiongenerator" with the" \ + ".qhcp project file in $(BUILDDIR)/qthelp, like this:" + @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/UCBerkeleyAstronomy10Spring2011.qhcp" + @echo "To view the help file:" + @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/UCBerkeleyAstronomy10Spring2011.qhc" + +devhelp: + $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp + @echo + @echo "Build finished." + @echo "To view the help file:" + @echo "# mkdir -p $$HOME/.local/share/devhelp/UCBerkeleyAstronomy10Spring2011" + @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/UCBerkeleyAstronomy10Spring2011" + @echo "# devhelp" + +epub: + $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub + @echo + @echo "Build finished. The epub file is in $(BUILDDIR)/epub." + +latex: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo + @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." + @echo "Run \`make' in that directory to run these through (pdf)latex" \ + "(use \`make latexpdf' here to do that automatically)." + +latexpdf: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through pdflatex..." + make -C $(BUILDDIR)/latex all-pdf + @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." + +text: + $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text + @echo + @echo "Build finished. The text files are in $(BUILDDIR)/text." + +man: + $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man + @echo + @echo "Build finished. The manual pages are in $(BUILDDIR)/man." + +changes: + $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes + @echo + @echo "The overview file is in $(BUILDDIR)/changes." + +linkcheck: + $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck + @echo + @echo "Link check complete; look for any errors in the above output " \ + "or in $(BUILDDIR)/linkcheck/output.txt." + +doctest: + $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest + @echo "Testing of doctests in the sources finished, look at the " \ + "results in $(BUILDDIR)/doctest/output.txt." diff --git a/sagenb/data/mathjax/docs/html/CSS-styles.html b/sagenb/data/mathjax/docs/html/CSS-styles.html new file mode 100644 index 000000000..616f24db2 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/CSS-styles.html @@ -0,0 +1,171 @@ + + + + + + + + CSS Style Objects — MathJax v1.1 documentation + + + + + + + + + + + + + + + +
+
+
+
+ +
+

CSS Style Objects

+

Many MathJax components allow you to specify CSS styles that control +the look of the elements they create. These are described using CSS +style objects, which are JavaScript objects that represent standard +CSS declarations. The main CSS style object is a collection of +name:value pairs where the name is the CSS selector that is being +defined, and the value is an object that gives the style for that +selector. Most often, the selector will need to be enclosed in +quotation marks, as it will contain special characters, so you would +need to use "#myID" rather than just #myID and "ul li" +rather than just ul li.

+

The value used to define the CSS style can either be a string +containing the CSS definition, or a javascript object that is itself a +collection of name:value pairs, where the name is the attribute +being defined and value is the value that attribute should be given. +Note that, since this is a JavaScript object, the pairs are separated +by commas (not semi-colons) and the values are enclosed in quotation +marks. If the name contains dashes, it should be enclosed in +quotation marks as well.

+

For example, jax/output/HTML-CSS/config.js includes the following +declaration:

+
styles: {
+
+  ".MathJax .merror": {
+    "background-color": "#FFFF88",
+    color:   "#CC0000",
+    border:  "1px solid #CC0000",
+    padding: "1px 3px",
+    "font-family": "serif",
+    "font-style": "normal",
+    "font-size":  "90%"
+  },
+
+  ".MathJax_Preview": {color: "#888888"},
+
+}
+
+
+

This defines two CSS styles, one for the selector .MathJax +.merror, which specifies a background color, foreground color, +border, and so on, and a second for .MathJax_Preview that sets its +color.

+

You can add as many such definitions to a styles object as you +wish. Note, however, that since this is a JavaScript object, the +selectors must be unique (e.g., you can’t use two definitions for +"img", for example, as only the last one would be saved). If you +need to use more than one entry for a single selector, you can add +comments like /* 1 */ and /* 2 */ to the selector to make them +unique.

+

It is possible to include selectors like "@media print", in which +case the value is a CSS style object. For example:

+
styles: {
+  "@media print": {
+    ".MathJax .merror": {
+       "background-color": "white",
+       border: 0
+    }
+  }
+}
+
+
+

The various extensions and output processors include more examples of +CSS style objects, so see the code for those files for additional +samples. In particular, the extensions/MathMenu.js, +extensions/MathZoom.js, extensions/FontWarnsing.js, and +jax/output/HTML-CSS/jax.js files include such definitions.

+
+ + +
+
+
+
+
+

Previous topic

+

Describing HTML snippets

+

Next topic

+

Glossary

+ + +
+
+
+
+ + + + + \ No newline at end of file diff --git a/sagenb/data/mathjax/docs/html/HTML-snippets.html b/sagenb/data/mathjax/docs/html/HTML-snippets.html new file mode 100644 index 000000000..ad4167220 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/HTML-snippets.html @@ -0,0 +1,168 @@ + + + + + + + + Describing HTML snippets — MathJax v1.1 documentation + + + + + + + + + + + + + + + +
+
+
+
+ +
+

Describing HTML snippets

+

A number of MathJax configuration options allow you to specify an HTML +snippet using a JavaScript object. This lets you include HTML in your +configuration files even though they are not HTML files themselves. +The format is fairly simple, but flexible enough to let you represent +complicated HTML trees.

+

An HTML snippet is an array consisting of a series of elements that format +the HTML tree. Those elements are one of two things: either a string, +which represents text to be included in the snippet, or an array, +which represents an HTML tag to be included. In the latter case, the +array consists of three items: a string that is the tag name (e.g., +“img”), an optional object that gives attributes for the tag (as +described below), and an optional HTML snippet array that gives the +contents of the tag.

+

When attributes are provided, they are given as name:value pairs, +with the name giving the attribute name, and value giving its +value. For example

+
[["img",{src:"/images/mypic.jpg"}]]
+
+
+

represents an HTML snippet that includes one element: an <img> tag +with src set to /images/mypic.jpg. That is, this is +equivalent to

+
<img src="/images/mypic.jpg">
+
+
+

Note that the snippet has two sets of square brackets. The outermost +one is for the array that holds the snippet, and the innermost set is +because the first (and only) element in the snippet is a tag, not +text. Note that the code ["img",{src:"/images/mypic.jpg"}] +is invalid as an HTML snippet. It would represent a snippet that +starts with “img” as text in the snippet (not a tag), but the second +item is neither a string nor an array, and so is illegal. This is a +common mistake that should be avoided.

+

A more complex example is the following:

+
[
+  "Please read the ",
+  ["a",{href:"instructions.html"},["instructions"]],
+  " carefully before proceeding"
+]
+
+
+

which is equivalent to

+
please read the <a href="instructions.html">instructions</a> carefully
+before proceeding.
+
+
+

A final example shows how to set style attributes on an object:

+
[["span",
+  {
+    id:"mySpan",
+    style: {color:"red", "font-weight":"bold"}
+  },
+  [" This is bold text shown in red "]
+]]
+
+
+

which is equivalent to

+
<span id="mySpan" style="color: red; font-weight: bold;">
+This is bold text shown in red
+</span>
+
+
+
+ + +
+
+
+
+
+

Previous topic

+

The MathJax Object-Oriented Programming Model

+

Next topic

+

CSS Style Objects

+ + +
+
+
+
+ + + + + \ No newline at end of file diff --git a/sagenb/data/mathjax/docs/html/_images/mt_head.png b/sagenb/data/mathjax/docs/html/_images/mt_head.png new file mode 100644 index 0000000000000000000000000000000000000000..eb81080e667a3cb68229f6e53c78d761bd1818ec GIT binary patch literal 29053 zcmeFYWmJ?=7e9)KAR-_l(jnd5H6Y#6&4_d>-H0gN-9vXs3k;!jcb7vJkG zM?rb_R6$x&%hTkrEg+IyCV9ulc1=-@#h$en-EN6DBH&r?r?jRhbQ0Y|smGq8jeTb^ zjrNy{k$N>+N!yp4+Dq{^1rBgq*|RT&*=5h$U`D;Gl2P>~tc(24DFLs23>?b_$Juz5 zmb9N)kUr;RGt2OL^|`IwH1RmIKXSMqoJJgX?Xdzaa@BTox)VMP!;fQ7lQysSTGgdk zN4@t1<^`A%Y5yg%F=?D2E z@Eh7|>F2V+X#e)aNu7KD-}_IPouRCek1-`s(EePnrC(zFxk3JTg#R8-pNRPB-`Ar& z>200i(N#i%oR2O$Ex?DB89 z#`VqMhgru5kQJOmRqPRG+OZlS_`iCI!DffPVIIHf<>^QR*;l`+2El!-|H(}sZIF{%VCo$C)~qJ~ zaIY72XyEg(6j-e?hxz&yI3b%zHNh*ku>{P$uce;$>67$7!c67+^{|!73KipTkt1a< z5%rL_J2bH&rd*d4gt!|T-XBPpClCnT2#A>#pnxa=K$)y%p{lbw^yWYqYoP)tQAB?y z72M%FJ1W(;0P(mGpJN;bx;*yhFw)oGux^w&L5$wlP;_l}@vzd;)1mz{IcpNsOFruR zK{EVf-BmPx_R?ZX)qL2=&mhjkRHJczQ<=66z6G&B@G&1b7`DKRzR&$o2+>_`8tRagXqa28{dW1I>7gY%2{)$bG2KwN6M#l5i zTMRf5c$KIN5B=G`E}#IIe6CwTe`cFSIo`GI1Rk&&3&`t4FN!{<2qW(F5U&y8jAhu< zNXJWK4zVYj4Bjli0BTe&2(AL#w|xK!Tes->$${2T=j11+cg$wf^(weu|0q58!$ec* z4^`JPg+K2+ld%cBLFrOFONd>w&;GHyTv3kxYF13eb=0@L>lyE!`I(w* zie{eEr7RDPR;Ud@B?oqah5zf|dnt4nr16Ltr%*LAgheSCCLRUcZY@Z}Xj3LTEtbVx ztF>2Z^p7a`s9y!+?cIcf=I_pKUA-2oC2wmBWD4!BIALLk_AL6=)nX;v2`V2F0SnL9 zm%Om0){vhWzX}dRnYX6$1Yw61^dCE8O^<3p z6qgj*5uR+d5SwHkQNM*JfAmOgMNrFRR{p_n{TN?F+qakAt~j^z9<6PhxQcgkIW$Yq zm4Dp7S#@$!crYQG^`^m^OSXqOX8wP}=PZ6WJrD|>svT8JmD5}unL+iKbmo&=rbU0d zs&#prayNJB$~u-wrh6CQ4elz;hIqEyT*|gCkG@JiPKZgzz*$1unjoJqlO28rr z>g)*J^7kiD<>8Kg{GA5T6ENX1kmQNy>0lSva4XFHSfrMpT90I9WQNS&ZF%dBf85|rw4e6IjF`G+82nlLwKF<{kFCJ|6Q?c z`Hhm79dEr-)?c5HfTSsE`D3C$$HK>>{G!0GH6a6L(6Yr%4>$(N>~YOw)nLrE1RL;2 zuyFNIjr?kj;$f!_!{Eo`o$1z6FO?tJHzI;lEXq#OZb9av4b`pB?z}*=@iS`PKSzLsh@44LaJX36( z-E>I66A`99<)T@F*{goC{4baF44-nrymxnylz|z{w95}3+Jue~Azdljy=#7HLv1!h z&HT(i{=6npDQD!o{cKPr($$SNr+7qD^{zDk8RMhhGDbmr7AWjPE%`_2NT-rRfbahtM80Bf5&SOh!WYaV=Xg%?{C|_GK#EuR$#v1U*Br|0O@WGa|zTj{SCJqu{>dV=>6YT2?f>VKNM}lnAmI{mfJFwSBPu}ARc`TCf zJ@~7YWq2jSpz&m87j0&eg}+d((}<4qHcEa!r&1(|AWf{0T-n0o zXnC;4YALDFeYzH%*C>G)=(M=SAv*%TSnPY7#r#}yl;0u{{68tb5JikQ?m@x}ZqNZ1W9yQb=390V?8diOwf zr#H9zSc-I}sI*JF^fC7zD{4)L%4RA(84jRXBTnNltSqkem;_a(s;Km}E;MM*@jNvY z5f-CL+S+$i{>g2X&!hMhXje8ht_Of|TH3h?E$;p#%ds&dF9TVI2FLeq*?)VeFZmnO z+P=(DM8XT=p#bACS$;WNx5^yAQ2HcJaV;Wp-$^QYZ0pB&7jX_QD*TKvor|b=r|(hf z9j15`B0uqu$Wn_o;rRr992&2ECLtc!z|ER2f1x)L(N{f03PP))9V3{8e<5NjTA8^t zKgE7{B-5cab1R(Q9HNDK%%t`e_ow1oRMo-Ib5lXFHq+{3Ke9uYYCCJsqhZck0efus zp%fr#0orfHvlc_u=BDN`>BIMtiSc(+i=rx0wGr@UZZ%?`;?13vtSzn)>*^{m&grAK z7A7oRO-*QQJfm*&Sycl=t5~~S?mK+qsg+fXu>YS3USB;eiN{-bjG|Fge~HzryEgN_ z^d~x3Sk@*Dx^?<#YGP%Au;oH_KKg`A&7a+LFYq}xb(qd_gMqfv@#HKA(eXmMINkD{ zLFd%MlnsZuK){lc>0$SK)`d5fZMjqH>HU-5F%#15B6SdT$(O(PT42jlYbKib3#eFw z>Z@v&pScTGQjMA+i|>uQziikX?A%51iO~?tT87zH=5!uKJ2i&&L==G!%F-Ag|276W zrI_`}cmv`>4gOB{ss8U+1zB3H>^4j7_KP?_MMSpd?r5wYFsfhHyWOnHwMBDxS&s^e z_)2~L{;mQMvc~`?yEPs3VYb4SfB1)0y`n*7vy^@+LX$+G03(GFI*!ej{={xYpT?Tr zYKuM`ApA%=HJe4(S_Wx&8J1wlj^l38{yvlc=cA(LEjQ_~gtr>SeRc(5{m*}o@wE<~ zwGa(==A_QZD_7LtiWeqLr$qhq=2o4aEuE zQS`@A`LZ^mI6t_I+Rr)I4!Tc7(v{|I7~dj`D=QpIOQJJ=P)=&*OQfD{%yvlMLOre6LsFdnm(+9bct4W zLz0faJHPkDnhI%Eu|LM-{n>dEuN$8tt*W6Rj`JT=^vn!i|R6@wB+yo z9U#>>D-yKuD=A6f{GD*B46>nh4M|nJT zjMzzGpTNWTs~QqHpD+c9oi@Tg-nJUVv51Qq-HQ(R9HOlJo=r9Co4@`M<>7S3Z+x*8co!ZeZ}fL24x+PB_6H0eK@^Rjaxv|@)uo)`P?4tX!(g8xgqT1jI6L7Wmf*}uSV0{`G2K86zb z`~`A<$&fsq`3L-ZBR7t|+9D&?uNiDJ2445hO(vfzxzt~|G%Z?R&pO@)lg8<;iYj9S z_@}D2pUc=Ks7@dKpi(y^RX?r~(mtFXq&T44e?y_&u?k}`fC~gj3<1RyxMK$p0~zya zxO-*i=^l-Z=HxWbaf%fekx zm31!gRB-2cwwbqP`<^>;PT)kEtz~L|dHkI&;KEM(*snaa(dnF6)Wr__lZvH-4MfW6ThLmR_#eKC){gyv zXLO*;xl|@s{n1H-XzeXmuZVv?SD!AiRk%q~{~WA)s6LA#-|y=Ud&_5=+PS?Kkhqbn znsMz8+G?7wT?uwD;|qpk_*VR?_H#pUFiG6`vHwSR(G$Lm$g8*R2W~Zn)qb7~UaKaH zZ%@U97u>^f+_UlpHl0XGKlJ$z1q317qJ^`e#y>g;lL$T<6SXRC2xlVNO$|y+v;Cn7 zK^B=TqbAktSMuSy8ser`gs`>SzEFOW_1vAwr|bd@15TVLp8IzgLRseoiMdma@3IG! zQu5o%+NfFjl)MdkmKfhD$K*#R+!+s!pLTJgn+>i5IO_}jTb?FGKJL3M@iToDL<-22 zUXUP!J6@^M2_z zpgjO6&MmC6xo>!lUtD5H^r==xZDTz_z{lQ?os8dc7I3e1k0biE6-g^+67L-14nJEi?2q%?0U=xzvD2kurU+~X|iXhbo06RhBc3p8X1#=_%Aa2XR-RV})-v%J8wIy|g=D6ScB z+;(=bX0bhnYH4ym%Q;oGSb#Gtl-qAXM6%jzNA~7AuBpw`d+9b70rP#mjEJhn%Gy|c zK$Gx|4Q6YuT0vrkMorUBjIX?B%yRIR0heOPJii^L`o_ z_ijkMoJLCB;Pn=Ma9-bOyS3G^*Q8T2xlkMt?vKlX%C+e*YtbJ@1%RXrDQy9EIb5=T>j;BrR=tXvT~_e!lGzwQNJy1xeHs?bQ$5aVT~eAsMrW_$CCn>H)1 z9{Q1mshf#;Lf2felb5v&r=Ec7q0P0-;_9W20?aNYufVoond)r3M;1U+&(84e1OnjM z+`~}fHbDtj!M7gF)uw}T59(4ZQV*uqD0*y;ch(?HoS7ZzQ{z6(6}BeaTOH{`)2j<# zcS6zKA#`87Y-cC3j~`?=d|Jz;>D8>&R`o{}ZQ0%W(sWcsIn^!`@+Ld@a4C<$NzB4= zM8xx(sP`e;BJ5?oqnt`1Fe6+gASDa1$8fRPLe<3Ju8mQ3Tr}`ip5iK#%$Pt$LGhWU z_?zDQxGLlC^fj69DlW@&{Jw;C?JS^e7CwPK^^5DH=X)LsKQjoP=f*sGNOPC5SIT=U zmkYN#pbUJqwGAYMH8#Xtq%ky2s837~;!G4V+*gZF_;4UEWFlV(kVI@Eur4VF;IouB z*=)@^4v)lMf9j^0kklW<8(2?<(~@_+OR}sDIo|Qj% zB;|AuFRcv7IOmU%HwH2bqt3sr|1_w+ap znaDwRmwv*&Q=71~4B1gIi87)L!;>PYQA}1-V82ZS&`w`Fzu295TFD%qHs#-V$I>34 zt%k6y#49Dfj)Df8lX8SITPm%}D(L{7_4;n;{Hh$Z8qm4ttzAx)pcO7$Zq~SrKKy+> z3Hm_?E1&PWTLy9}z$fs&4OG~hRBOB4^kG7G7E*__)}rQB5uxURyLsHCd~WxwIgu<2 z*nIDgx81GMKLdH&VtZT^6u#a!T+6eZQVu1(NehQGSX;v15^O>STep?)qi98ppJ0;ib>vw0G3FP%AULj@L9Y4Jb_KH2{ zW?D=q)EfQc%|3W?7-w@0Yt%t?9TAN0*JeAg%#)rr_`)<-i=>{}D|@ExzFK6T5`_(2 zzigQ)?}b**(WTpAW}zufIhoyk-g;-2UgXHv`}B(Jig0;aw-&B3XjIUKUInY>ZeLOB zw6rZAQc^2@nK{EbrhHuZTG`-T}CT&)q`lw{Ltk9SZsc2p7&bHk&|n z0ZXtUdJ}@nYL!{3#X+A9U8}upr)8%I9YG_LW1i$p5tGm1?xKSx)EnsnV_&-%GVDCt z-6~w(g9!zu2CkGY(l#f~L+Z^Aw1vN%GP4osN!jf-*)Bq(;~H$seDV&S^%Un4PLYhA z$cC@?+rU^T_<1}>L8!WOqAmF$yFs~($D&lVCnhSm5uu{ktaZ)~fpI^n2xE@*Ln4gNmO&)cig46tv#4Od1_Cd|eb*X4zFrZsBguL2y^keH4OX#F)hn%W)xg^p zx|=j$E$35ll*wD}@10VmNwX!bxL>@l)DlE{sd>$ZQ>}v-+NV66*s)8){uD~C51{uw4r>x6Uf8oIQL0wY-6xXy-207m^~TuqOzV z8+Gt^1n}U@=Ud)Fo5$${6I{?2pom*oUY~k1;rmo#G$h3t4CA9@U#~0fXh;I!j*s9M z?=JUkH6@9L)i+$$3Tq#y?>>qasxV2eV_*;mCE$W{XPVCROR+=}mstqeL1Jej@-4^j z#e>IRI8QLvy$6BS>eFF#VI_HYSZC+h#Q9Kff$EZM92{J%=qNnctM!}6P z-LDz5{EZdAZfSHfoTiw6z|@)obe8DdFqZ#->~qcreR{y03iIHH@72(6vfl+y!`@P? zbwTQa)mS5{)OMqu<@4x7vmsE4*w323>|nSP7dImh$s42B(^yezhD)&ds8d8gC(W)@ z#_-;etW3Rg@tTRH!PPfi4DpEHIV{BXjlNXy`mirt{7gT~qY~tOu`s6*A6@)I{_Z;O zEa)?qnXZjd2m`48n<(r;#t1qYxP|#y!1HM$Vhg`DcPK9S>v2u7jL@ixztw$-XdJD* z$S2eh`>sRd5n zcLZ<^4xi_2wU*Mf99BXJc7w@mnkUA&+>TsJXalng_hV!N*dV%c2vo_SMkA5tDD2){ z>)vZequl=+j7M~At_Gg*MSMk6GtT>y@`i~L13W&r5V3PfQD-uU zWj&bJm#f%EX!iIFa#|af$i>c2Pycb$7Pxdnbbe<5UeVte3m0$7H>c@(M=>%d=i(w} zxeALvn)f!;%U`;N%3DwIseXntf_%X=!_xc4i`Smod$)*EwvLlW@bkr|R@t7|#M)>+!+l zd^GChn8wMc>!R`c1>zRc`2|4=Boyvz!;%%oBs~I?4eh=x2C-j~G?QSpjuR)QFnq@2 z7wa?_wRED2W>^z};G2-;bZs^Ts*W9C(zqC@mbahF?a+Ab3O-%i%p2TTTdu}mty+ok zmYNglx!h?RX$76Bl7@v`t^GJmf8_say~#79k3E%;emPZIsF_ha7zz^q(Kiz? zLu7gt1BUN(uJQZNUoZ$|GtSETWu1)?1LGkq*#oC9#!Ke~pGJ#8HXu1&q5hbFY zD4|g_roFmtF3*-}W?;Nt9Em4$H>)HaG0FV|%Ml6JI%9QPPSv^HsoQ~Nb=@eOlV=ii zAtmbGbSsY}E0j^~gLwn-Ag4}XU6Z@C>qV`W+;sXjMjXR|g+ZF|a_pB})IL>Z_AhBP zSQ_`ywi#B{oum2_Me76i^IVF)rYxo{bP`CZKbD4t5yvf3J)_~~4jTQyg=mUYvN_v#6ZGZX@QwdY!UYa7x`*wg=HeMWzDnD6)hp>Z55445&^O- zC(o{Fz-H2M9-7cQ@3Y7LHo&gV>4nhs(mu^{|98|}&oratBj7hdO{cGD00qmDwP)2@ zh&xjIAM}|$ljA}2QZeo8q`fllXt=B68Ul$g1D~2vD+Sm?QH9u{;a0sW8^?o{(YdJ<~ zbHWu&rbIk>?A2oDaLVEm80Lhc+aQs%=AIEMPgrdD&~Gb3Nglr8WBAp z--2Cr_JBU=3D%NLVMPr0Y!Cz?Hx<>~P|Dk;%+vlhlwXXvQcmRZN%i`-E!oaIfMc3@ zUzrwSnnZNASS8`w%F#gZoSCC0wshkc@yzpCqR1~L6>ZR;V?lC<7j_%A#=vcn&-+h$ zQa)(SBbbj68hdURguj?%+T_mO&y|SmqN7juBAK^3`pDKAPpAE}_z7%a9OS@*Ciq$Y z>g#mx9t{JA>(02I3u3i*#m2QRhrNV_WUkFT>~dXu(%x0Ri9+y(2>}UFH3%);9|UecPmc^uo`UXg?ocrbK=@ zu!iMXvCJpwnLcEpb+S zg4>&Mv;MW{I+cdzZA)I_?cy4>!owW|e(0V8)5kY0%eH%JI`Em!IoL-h`7*xd7V@sh zwY(J$qSky|t_(gIfnbYWIX&4LzPM4h#=SM;4C^iZ0L_T@(MWNn<+~ad-gFDt+6zO( z#lcenbcf692*Z|bo4h(%$S8~>LjDsB(62LaDO`Q&>-QmhFMPHyJWzk(hSsiD)73Gq z#+tLb#^Lawf-x%c=7F&_?iGH2`@Pk|sW{#zL2VBP-;)^|SeTN#n`hk8$$H^2R+Zsf zC+yi9Ryp16v#y*+-8xK!e;QMs7?`8qtCKFP2I%d_W&Vel3{I}9nPuJIZ2OX?+6X*5 zKU!ZgGpw%t04#iP-_9BvrqdSxJsK|n??ifzsiiXmE6}r41Q+`hhyxh2Nt(aQ zXqr)D*)!P$(E^hg=G6F2`nNI9Nie~2US~p|2BP*p?e^9{b*?Td7fF}G7_s_1fIKev zW5Y2vOveRDy4C#+exy#GRQ%sRWGwH8_>*tPCBg9;a@UtG6kondO0m!WuJjyqz#V#& ze+b6>o;1*OclJSW@a9kcCE=5VsE%sy$VRnx>1u2AnhPWNf5-(; z?GR7ps#S6D=8zngbwX$he#<`m=b#vReVSx{!d%YuWak}s+=h^zZ^)K zX+{;KtSmT9VerNrrTKF@H$EE@7HIS&q}&lPX|Ymww{j|Yv0o6lH}MU3R{L4qR-J7o zo<2%t0-in+S()f?&AT;*r?P+dMrwBYF>0H&c%8{5Q68 z?@0**GAeml5LNq^kL1YwN=k|gmgf7X?f)2;30zQ=F!@?%0bXSo7}haBhADrbZ4!tu zU`(ln-z#5`dfnJ)))gi1_H%s<_ZBpzsqOI2CNb!Y-VeU%RvY7e-c|Q8o-m2h9xK|v ztZdUUZ2+rq=>`oSlIX@AC7k<7?ZWf2z?6rbYY&X#Q972DPXoz@pqqvm3QpJB_DG2gDCj%u}W!JDXkP8_< zIM^Yj3vU06H?HFQM)@uLL|k0GWLLWpzH(`%eblb)9Ip&dJBqPqKNfu>6n~m#7%|I8 z(eV?ity7_B90k|cgkbFhNuCPDm4>cZY^$H%*xBV@dDXw)VBP%^w!O9m5@@5kDM$9t zsp?Cek!d&r;`8;^cO3}hdcG6N7LegfCO$zxcK_#-rXzK-eO)_<@i~YXtPH|t&0jje z90-hw5d06<>FnLeXEEL!jxo!Q**m10^Ld?JtP#>SK`M&P9AoJo!gW3vVWlID&Uq-q z3$pE!REciD5{(+v>^?Q-Sj$236<6&2u6Woob=Rr5Es%)g>va(tr8tZGP$1|AZ?m5r z?swggQX+D(O_W_gwS3Y2F&jH8q>|f|qUA2fp2oPyS6G!b=HpkpAppm+PJmReXgfdJ zg`*M1FsVr)G+#8<*`6AdLF7$+pS(O7p4w9D?o3MRI8hUSypo!8=piRJ5mr+aoj<*- zzqZM0W#Ji|-Iar#1xX2LbjxO7zi{m!@jPc+RpzM{t+pz`WxpJnRKxJkO>tdL1RUO- zl3}ZOx|pplDsJvjZ-67Y7%duUs{{7L^ZLfv#e&hz%E>TWCy30XIKW(2`|I3f`Nn;w zA*Ujm;`e>b1xNECy%Wnk$NmZ)_HAsDOruYP2Io2)^POr35yGM-xv)t-%!XMEtP z;fORYJbm5Bv5krSZKSr#$9&Fb|BERBzx65*-#OR|ZO6q$*stffsTZ=s6zpOPvp-Xk z6xzx#9lR}X^GAlyhF2K4s+$XEjQ4&14w z)ey*t%Bp*@-=&!H;-C5xqXfT#-V+x=2KZ%m~K5Ubn{ zS3Mw>?MCuP+Sbyh=BXP@Fvi^15Z-uF0hLD5zQskQ27%j$4LAjjE``vpmZh{jP5yf#{v8s$U!L(S_09r}pt|D4zA&Y$ zl(_84Q_bG_*I(G!!tcj#*c#kboX+w4FKxB%XVDOjbQ+ zw!Q;!W~k}VT2&#TaQ>~C!q2!SrK48MJFG0~);Mu>IX|ZvNSTkl0{NMF{Tzpyza2!; zq|OgXDd`fKQq-utlVPW(xaWJ#Bs$|wTzQSEMVhDB;*D>C0cRIOtMI2mPU=zo)HE9x zSyO;>6UgPU;^Tq(GG!NB3$s)aujor_8(K}FsYqp;kEt33?vM5!+K^9I-ZMv2;zQZm zrpPdlq$f)VGFhZ5f;`OM?E93)(bhgNG(r!PwQmjU`=%K=IGmyN7XM<14^YGv%K@DH z{=|%yH{1cT^et$+VP;JoOCw*Qbsysq!3z~#<{8jqnpzFmX;hJ+A_cVui|uEes3#B= zz~@jrug#B&2FsztPJxP1{izd)(D7%xjz89iv^lshhl)TrcaxFr@#6TL0+jSp3!3K0 zGy}FXI~da;B3hW>;X(qDRDzjR72beX_ctD>K^fkjp#RdQ%Ot)7?U^5=O?T>^AI)Zi zQAoI^mn>~Y+%qh-Wk64;@*wG|OO$Zwt=-LOl&W!xXDTJfm}z1Ku;?!NtjqVC=Uy;4 zD#oe5kod=4>&)v}T)cEOZc0PXiCNVMzz;rGVUay{;92K=*YhNnSz__9&v{OXAs8|4 zI8En8@i!M0n&{e*u5x2Qkf24vuH6n$CDixv!=8=p)djY``ugdYT|9| zNM~$uxeGs&@}I6kR~?F*w_6SF24ebW{$y>yQ?;(*bmkvVS|p{g=OO!$1@88YowH`&KsuJn%ie$=B;6IBm>(| zxoD?6m^x%yft<6gU@;wFD;;6hCUCxMEBAW>Zd937 z?d4xQ!M`0fg+~RDttyNj92Pz_M7Shzv?c?`Ke?N!EcX_~^)dxDc>N+Twstez-#QA$ zr2K2!xoVtV-zW9!O4*|^;klU@-R#9nMx0t_9- zs39au-NmEgF>me75?J<2PXVZ~FvU}NS*M-N==s`lyJfF;2sL7VhsPu-LrPGrVc&XiqL8#B1XwCJuJ0f;`~|A*trgvRPif*!Dslstq#r8E;L#wsN2&`0fm2XQGlpK5X)duxG_^&UJD%HT z@s@{vc+a?Sd&sPU_Jbs7FuO%lnO4_j2WMF=hFCuHlW58e=;v9+)#-1=&Q0wu2*q(t zMbO((+HudUR+t+oRiUd{wSN7`Fd2pa=1-l+dx(>&D^?LHQ|@wMn{o zo1d)0s5#C>=bw{_X+Q9auzbN$kc|I)Q*(BJfBz$~IM?P(0# zbh%wU8^u2)GFG}ify_p==$s5WZ5hq)1#;8reTmy|@rdM2ntr2chJ3#ba{puG_U{4=5Jym<|o;ihFLX*lsP_l$S0= z@F0S!OuDMpn2^*yd*?5ARp+6g1&W7pLvsK}t~o*W`F0!a6iqezF-g)Jw7d#Ji=D!1 zq(~aHO<+M+m}_h-hhMGAhcIQ=2V{{+1=!UuZ>{k*BiGOGw?>-bZ&{2uoG9xo%F3_3 zMa34Nt_FLhiW}7?Qy6L7!xB1+6)_i~blg8pbNE^+G5h#jG)eepl!*|o7Dz2!kZ_vu z>u~wz-S}e#bCfv~>GM(mnCbJqNdixjB!-BMR+Dzgm1L-bYN>QE4d}dl>>GBJbXP(* zgOUBjDv3~fv{QU*bz8R;s@%K8ISC-9lj>P8Gl%Hx>R7+#Ga^ZL2*%dtfYVmbS$gCM zsdM2Wk~jHI-w;tQ5qMJv@mJ{FmOvj=%&Iz?b?x-6LpJ}*ovN|$LQM-DJ0@Zh-5NIaD(anO$!dfPXXp}iTsu(6-v=K;;-e_sVM)7F10Y(=~y8^kz%NNq5 z7RfW>TxnC_SW;^afc_Dg<4#R(`9-7?i?1|F;5OCxD;nqREFNB2-0_xH^3mQ=-tPHV zwv-W9&OIK<(7zR54_JqrLDf+8G;0L1Ob{dM(|oGlJ}JP;Dhr058H4$h#0 zIE^s)nSOu1C>B>|3!Rm)9gMqexj9=poiBI(j@|P7 zXYLB(gu=k{;4nZ|N~Lpw?Dsnnj7jGHjy`(Hd`xvsS_Pqzy#z07@o$Wfcc$A)uD^2s zo;&H^cnykVJ#n)R*mE*X{KY}d_MA@LRp_`=y$6>>-MJEs9pPJexSE(v*?PA{^)iKr zUHc0QX_XyYjbmFia@wt%HA;3Nu^sgz@EsWAGWt+-<|~9^yCtdiH$Yknv(iDG~ zZkVnHZX8GKK%^g3K6W(`5E?to5J_s;39UFFo93H5bWJYwDqzgY-JydzNOMeEMz@S~ z<)o0|#w$$qVvraAyvUmq+R)_d1@Xc#FAGBb3-&w)=Qj^tj(Tp-)1O+?nBZROEy+(l zYc5Wrd-OC=0{bEFG=B4DU}gP=;ny8CPnFHXBNGK!0n60AsMS+> z_SJSO$ikD(h#By*gGewPi`hz7WWp*_4KGKavB4Z z*qdX5TYg+-wXBO98(ubQ94vdXmF*E!zIowo>|~iNP-Mf5M^qK2MR6)AY!)X6K3~i* z`B+^rwR+_&R;Vql?WOY^Ry}&7*_@gt6q=$w+n2tP0R+^}PgzB5l4 zb63v;)VhxnQc?Z3ockL>S-n*(X>#WtD@r1sB;H^)pAmB*x0S(G6B41WnwYuaL#5Rd zrP+FwaXNCj%JM0@{hMIF1Ab&W*ald&6y$+P*uj0qk*z+X$=l*r@RHj&z3u3TZINxN zq}SD%(uteNec^^sAKxq9-#awMu5a3g^(; z7m=Nv6bKWTw+ENCb0D*$4xoE`nUoan&XSt3kY74ies8ow)HI)qUoP z_~!TqwsG`DolI)c6~S>fdvw`2O-W8zDSUFR)oC^6FtZ;D#*h1?pxflQx~nPUZ#T1A zz#=!u;J|eBikL^(>8XP^-3#e2q?(BAgbo!r`0avg=YAf0PbQ+#;i9ANQRzxWQlpx| zk~(fRN9?yUzp$FKZ*{IF$Kw2FDegCW-!vzxbjWpooH))YA#t<=qe=6Kl<3KC9qc6G-hQMd#}W27MF(lQ};#?@z0Jh?a) zdwt(>I0Sc_rigScWx88$1lv;A^%GYXNWJckk;nV$AI@u(`{iff{sK6QjL3qFMrC9* zkxQaPOWc$~PKEa02kI&H_qSsHI)VQn`~D%ax?&42 z)GJ;C{CR6DTR`1Tq4_Q;lt|Gf2%Wwy?@m&`QhjNN@a2hd=FM+JaElxeibl{hb&r# zJmj4X%}mQn005LRy2hM#6$yw(PO!Rg8?!V(2|+;1?K^cRe@~s4UJEy08(nyF)gnvs zezNNiVAXAXe1tsJuZ;&I1x{iK% zI_gBa3Vo)=64rqVn{Amhytpaj=FO>*EqFM*V-d1r6>tz^tw5YKuCV#>ePiS5$$T}$ z4|fvBiLH{dA8@*T)#j^+1Cr3Z*#8G{mNNTJGppbxGJXAZQqS_=lX?%&t(Vtkrx%cs zV&~EBRSzmb^crP6yQ~Uo2=gX`TLL~{e|&7HOYajjN%u2oP^N=+l_mpFxq#Jce375L zW#@k!b(~uo0^N=KAYr`8k!oS%+P*OJEwrgIfZ$@P5aIA0zo=G~c325`dSh>w3Wk=O zi5_bfzuG(hdOdTODwok&xW2VtyenJlpOSqS*a9MG9%Nf%&HvBLpRceiu`{B^l3Pa! zP)9t>B$yKoNE}N{pt)yUg~T*CKKUszB9Fmo7%ro|{J+lJ2kGv|UQws3RpzRH#h(5J z6#L?S1I0a($W~RFuG99L=H9U4g_i>1--o}i%$ejlZrI%Hc|?(*z5B+1^Dz zd^XEdn#6~Jh4PWb20lfB{u zc<>W$a4f+f$3pR7@$FV%gDI}MoxHrCXP1%(WZS5g9zFyJ?Nve#x#2CGTJLT`)tfy|y!PcjobQ#Z z`>(>}6dSGrFxqS2eK1p{@TM=Uu-Ttqj??%*?tLzqhCjjeGZZ1D{U^t#3<0?jSY_dW z4~snUhp+lD6p}sXJSX|T`Z~{`rt-H9uZprNh>A*ybOh-|q)Aahx`ZlCKzb(vp$bH0 zkq**3K?I_-NRduZdT*h(NC^;%KnNuvByVtc|Ldps3p32*%$x)!^Ly^+zOJ*zebDY5 za1J@;p}@v?s7(_X&%`0{JeaMprim^j$!S*@9Q%r)cGGrNF5Sk8Yf*C<=&&OI*_-;%88F4&UZr>CoX~}eyTQo*vP^X_U2dSfc~(4twQZK1l?9MC9yU%?V%h! zn)+=R^rP6OpMrfK@<2yL#zmAK%t{%f##}4_K;iAimzu7zlpv zxY-|v^zXb?%RVPd6L~54Cj<9}gJiEFunQt};lu^8#x| z?$SG{>01^GEtDz+fo^SN#oOu@3Fnx*jdi(0u%g$(ISlviI{A#x1w~yMMgU?7#d+wG z&=Tcf2K*6Y_ZN8S^bIzEmPqf1)HUMNu~HmJdWPMmCvj%&6K?kxlAsu~Z{E|3>M#nO zs3psE>)7W9;DERKT~j|62ea(f#DY>tHcz*`x>=yT%0`}`qxs${c`mqf64aO6UGnxE zw7?~&Fj=J;lM@(yfH{7ij5GU57Zhmu-X+unC4nv*B{`N{OLu((4~ju3+*`^wr2qy~ zez+r^nSo3V=Bmm&?{Tp??XI&ykJx0?e=j20?;8+liWB+}(KOt)CsA8jWwRtNMrD(oSx=Rq-8L95#@mxuPY%xX<%8-m+ZDBVRdenamqZ52i-|Yq_ZN9+0w!j=cb0QQ~^D1h!MZ=5iEiCM{ z1D83vYRPU~>+UK2!1J4N|D@5~zKA~oPAl2IYpwXb%lA!DpFnEWyKldDOeX9(lFD8= zQJWE$WL$VI8}f%YCL3K${kl<~)so=ku7w;eoe2~vcuuq(6Uk|5nV>Qsk)r!5tO5UQ zs=DD)H#B2Hy3pnW%#B^cn)(cs^yK z+7>LUcPB<5B^Z`(pYPfoz@s;#KuMq7@$trzhzeF2Q!ds*vn2G*muQnFzcRuU&jyEE zJA#5=g9oL4);tjqcuv#32R*OOP?Eo)FyBa=8{>cDTDE|n7dz+=a2A;3#i`89 z;2x>FM>)l0_zcileuGoX&Tj*1eWObXK-WQE{!NXyR#J?J&lxjS549B4q{urrV(9Rp zn3sU}7Ltr_xvdO56pJyNKN8yE75J9Z*qB?xG#~=j>V}?aLG$Dmrj2>CxmiBJ^(>po zJ>fv=c`A`4oAeScHZ1o$d5GQiukUTXZbgg|6pRHXZb)PB$9Bh28DCx3r6POcVcT3T zDV>W+J#66y)q#=$u?yDH?$L{d)#g`unRx2OzSA))y}RB$`d3||1Q2rjPG58ioQ=dT z)6_M=6ojdc-^MRUo>YV$-{INU+=%;YYT1a%c0Ei9FOEKLseHpbkP7=mIzZ0%Wv?c8 z54PBL*9^UXHP#Ep{QOu%r#VBb17G*$QMIZTP@XtI`+}< zMk4VzZn|&jCAk;TjGjB@H*|*RrM)E z-{?^eq#tgw59L#eC6@rSA|EjYvHqgATP5>pW8B^m@^1h+SA}wf8r6%=i2a?)dQ#5N ze+B%`E>kpYlm<*_!IR%yW`DdXJay~vWt@5Z-%G!3a#D`TK3^H~f3uzZzppFhIOBgf zNgJPkO#(QT68%;m@q#JHQ z-_~8iUN-ZWsZnT^mNTj!FDN4IR$Gwa7NC8^T(;nT1 zadAMcLq5Nn?S6?k{zG_Qk7LMqmC)%)mRhbysVuN3QJSxlFBZK9GNFyy)iEv}?1} z(^srkF>_dE$UB+jMZuP<^X}E4gWf#B)!%07)vkPbXZH<%6=57*1-1(7u}8O{%Qqw0 z^bNI`Cy14UcUQ2ZGT+B!kqv3Y{qU2n72rMKlk#L}@5F}_H@uWYV=fV)Yt885N(H8e z9$n9hYls5|@(0wdgVYg$ec4G3ps^raU!v#ci)vEJ3~3G+s4+NeTBWjkWH$k?ur^#T zaM9*dfw9)ZH)oysn~O>1bKhX(BK^m3yDLSu30!<`#xZD>6XfNwBO|N$rIC+4;rtysgyn zHuaYs2J%zK?3I5+X(V?8d;MuI03T?)y9=s6V$EJg2}hfw@6~WIWkJDjVL+Md9$bo{ zJ?Xtz%-AivtHRBgd+q4E+&ANBftcs~TI5^#aoLLQ%O8+Veu&341;Giz`&};^a%yc!WonfX-g0DmTqpq`5@n{x0b8Z$`5`~ z#fSBxg^VtqwlGMu zA*Vw@f$l#;!L$KTrQ;=Z>T<8Y-~&%ie%K2FQq?_T%rZy{s~;#qXC9eUH$%DQ#OR83 zk$n^UY7-5>%HG!+2rGD4N*|&cpofd|eh!u%)g;Z+ga5n~2=oapn+jCd|niE?#holdp0bH37Ses`9Ik<5{Y|a^3C_ zLLDqj5b(4=fM}AFs_c5Vsk+J_R+4-+O*G3ZO^-Uf=A^jIDCn7L% z#)+gqTcYU9iDqYaqhbIB2p|MQJwXQswX?1Cl8-9345n+{7F5g8Y_@H*9AUA#8h7?K zGsA(raft;NbecAylp`J+nGi0{YDp>11fJVpLixdOlb%MDXN;o?O+qHAfT0ZS6B_K1 z??u=0-_VALR{|@C9hvi-cCpc25+O)pX`zbk&~S@(5~E{6NF=NA=tFwOr1cBgN1uMY zZmxQSO)MNT3A{(W@Pp?AP3|PGMs?=p$&u4$_F-b?!zAC4y9cxz zekU5p%!R_NtQsdBhcnuV53WfKhHKrEj$)G0_U-Lcljo~vh|2QWqv6CY%k3BxH6w<> zQ6~#ZwqnyVw!F=lgL|yPk$`x7pul}jn=NRbCgQ^_NG;#U;;#?5J4`lSpxcO?Lb&R* z1(i|Bwju|7O%>IcTAy<1RlFw^Y}2X39!<-$3pM#eL}{xVNeq!tB!r9W z^C%OiRox++-J>kA-B9;ye3zs$HrU;M;lT%s%IV7{?HQ6WnL%7KF)slJw$cgfHe?AO zSu?rv%g=`E8&>faQ+NT)Mq{bHXNSVXX_saU8#6Z?TNdgTH`O^D7j=f0JsnQhVCGIA|4Lp>F^M46;|8-@ezlocP(7B= ztfa!!&Vy{^Fr$LJ4*#|=Y3qyNn?<_qUUsiFA9c%O5~fHa{ZM3r#&a=f6riOKH`dr_ zi)A#?g6`h%oxY*TzK*c8aQRe3eeos8c>(6=x*`zHwH=S8I#R~MSrBa%W$NkOo4EsdZ zT9$V2r?Fi@DQj8_(Eb2b7Ufb=0$$&*ztbUDz1BdRJ4-=$4)j(w+nmzOUQj&xM ziBP-FbP+WClS?te5OX>XrFsV~BzI0+5L0|UF5f=BrU9P%jP@(QfZ%oRlVZ?D$BH^- znr@tVPv7==n;KOkF;IW_go?glsfPPa?jIa4I12I z+5>`H+0!6+vmAIII^Mt@b{=cmz^}s2K4573{_R*iua~2#6f*vijGk)-+j(xs)rI3p zbMBkzlWL>!vkw8AZaNp1*G3j;?aO?%rsR_xP|KyE1{qG9+kc)fesh969h~k%{$r!< ze-&*&BVmu$;fl4%tVC0}V*kCfKs$?zBaB-o65}!tEru8?KH<)SG!=*l2>TtyH{t@sz0kgr+mbC}c+uU!r5TdrzPS zp)%rwIq#8RCH|+@mp~;Y-GB~;nTxz0wtKPu1u0fHCAi))#)es3I?HAgBKp%Q={%OQ zB5*p9)|`5sWCZ&~7Z~T>g^tmk$WFUuB{nmDIH{U&a}Zyxq)aPVcgv~1YD$#T#NCWgQm<(JL#-pC=ho69g-AHtK)GkvN0f`UMwYw>v2#w>ot?P*WY&5?vpdMD(kPJ$v+;z(z_ zfdq8Yni}h}CxQIGf=&*s8NZ*ZV7~z^GDUY;MoG!QZuHsAdjALJJ*#}6^8oe7N4^!;?n_Kr{kq>H3$Ah{RM+l) zuKjXrAh#{tb)jBTe{3az6#1PuQ3H**1WTXpH@qdrx#2;k^mEJ$N(|-19z#D~VK`Uy zjFSrA5?*rc$E5zlRV?=T+|3>yxY49zt#cpj+oXPeNzm=mFJDqLb9M~!{nAX!dQ?KK zSqEgE9X@lPsMD*d%WW0|&fNyIdXSxSa%P9_$M=VPAS8gJnE?SkCIY(WVZ zWyBrcd158XuIW@mDR`O?xgf}B;z=At9p?*K?M!U0II0S5_9b^ha2rDVWQNArTF0Q` z+~%&cR6TdtT?|{F3PhmKqgSR}G1i%;E0c_|$3}aOT+v-CPM6h2w5Zw$DVou|bvsRr zarVxdU4LsRb?DEg4U}DcX8RjlQTp_coUU7hLE$M~`inj|RW>l1z#9Q$Nt<(^EghpN1_~ty|m2SPT zJ~qvm5?GRIcL2Z*YEF}pP}>vfvwKs+3|YNL-R#*!T}9{%TMLg1^dWBG1z$eHqZ+QN zr5O?c2ACtooQqEQr@NF}O~vf0OnT=YjEg(URU&8juhPUI&)EUu7d>Qyt-WnsBR*hf zO2tAJdz#v#yCS|@)Ypm3`BmPJ5r1)4+%XW}p$4d^eu?^XJ#UbWsUUX7wV)sIazShW z6gAcXiV(|kRMdON+a8TcIJma7*Joa(9o;p1pr`_ptBhATMw-|M4kGN|wf(&U6Vk~2 zpkkYVS;o}rer_$zQQP_|E^lI;R1t3-aMFTpIm!liZg(6xDjmE$kr}SV63@?<82}kW zFTCJx07ZY2(*k~Q>dWVg6OvO)bWnEwXpkq|CHgKQXW&&hT_@@Ajc!KC$L}H%eq=Yg zpdGqtF4J||82@u*Z(gC??7$M6cT!>nL0Vi130eu1LtCLevzxN88e{(Y2kzpNn1dbk zcK$2GOvbx_s93X4w|=eF9@1ZR%()+bPan5Hgoj$F8%bJI-6jr;&XLSTGA_|xA0#hr z)1O4QLal7D^jw`Y1jjjFYKmv&eH(J-LDCsMR^hmDGRD8&^UadRZBp=H^R3p1B`UVn z&pR%GjF`oPP3OrLmOuK)OS*R^2#V;XOL}EPNTx1feas4OyA5)=mT7^S8c!5NaD%!J zLm)eKN9ZirMH{!zj81GP3*avM{>Ac1oR z2&m20KVEW3s{M}OGSu7%#Y- z`)b8lVGT#Ax++^%k6sv#ru7v_~pBsABQ=X z+@~huhH=dgdwZl3T+iX=1j$z2`NpnN{qh@6i7AE~`*)T@QK>$)Q4R*9?Fsb_w4ded zC@X}Mt%JTygw}ZhI@=fAn@4-Bgv~_Rtr5i6khLvK+l@#eIj#c6K{2J;=WdN#!lvxV z-gl{EtZ~*!C1|57&${`On6;PyOuE@^Td) zJIh-9wE)ppdZ#&KuBWNxbt-Q)B#qMm8q40Ihpf-w$ZPOP<^Z|skZIJltfun6?%LQq z&DHLn7~-}ROJd47xRk{XRHQR^*8}ZYhS&&Lf&>#{_ye*(XxKDTj$Vs=LG7`2OEK5) zhue$~PQLtzZzOK^i(vq+5{j-x>4{uy{D1o|b;RBjigLPreJRfA zCGIg*;F5S|p)&Q4X~;n}3pe#IC9I>x>6faj1@Zm=q^N&T+4H_xF{YP!F!jj!zcqPU zx%I|=0%}U>N)vmXlVo`^Hum9M>lKlYkCQ_CGd?Y-EGJ9h zpP&@!6hOhQH*1-=0!Lp(YF`PSiq5T6-y*X|Rq|v>hq90=pIDUpAo#Q_r*}mV6~SOf=gsxwJQZ(qQtNH_F-a z`nkyjvbQf>hsHsI+8(?N;O{&9g@k1C3x%Br*B4UD$}3!J2Y5uz-HsOqBesH!-`stU zUMb!FQiCrQIoX6JgFoPfH>Tg-RS76axj^w2zADp4s11N?k^rA?mkj>YH~ zEyWxrVIXw+_(QPN(t5yh{zP88t@JnK) zV1wqx>`kMRK_zjv{*!vR88NaS+uirgqoA=~T;Kjj1U0l5kPmZ8>@IcRAJmZy!xqrN zVntF8jJ|snk}!d#OT4_jtf*5rTaZR3&$h_EBX87Yu>aPwB*je0hUB`lX#0x8Vf)DR zb=;D%nU6#!gIo9-jM247Y0CLFTkQ-9p4BEt9DAct1x8g^0^kwxv zsCLhj_-b%$r=g9l&|~{;`b5_ZF*8248LC+;n}}YcIgQK2jd`sfEU1w0LuSxYW7z#pxa>hZuZ8>;vd6S@o`P}TQ||0pg1|1 ztrOw{a^c%-xp-_9II_O|xOV3On0ud3Oerw9{vUte@~|02wVLOmKRm76y+_&18Z0)R zN*nNeTXn^Et1gZA2xb*NYK^KtHf`MewV-yOR`Ne=Qg}27E{)=pDM;n@fId20wyD~V z*rvh&M|L+9b2T$R5>v`#+JTE_KuSrJ`7}cq1NJ?sz4~!$CYtxviu}$H6^pM$n9-x- zN}>QE{8{CIlgM!gM_&B!$ibFvHk#vGv+?TTg_FGcNw9yqA+jMZ z?TTj2Kti~puUxqr4ZxU7=yr++O>)v zefchtlQtk6TcQ@}F9D7DqGAz*;thy}9WOHn#;zR)a@~i=3gVAc8tReF7#>B>xbeRe zG>It0-M=Uh8upoFg5OR!C@{2zI8c5m4 zh{QXxoPnek=D~tOOwHXfb{f1TWXZgr{H_{b#sn`(rLfiV7CHAd6_Py2bB6DejeSidbV} zgFCL9(Cye?aQ~RSrNJryUWjIGo8#zD5$uKE`L_tkSSP z>%?)k;RI!EinO|NRp^)9FM74QQ5QAGlW8WrgL47zf~y_0L||=oHnwh}=0X?HlsZ73 zt(mm0!8_NH^o7iMYNdEz!@`baF}tPE35%d)Smyr-3UgWRfP2rlu{sQ@&4VWfqVn@mQ>pm1ju6!qhk9cA~iVgL`D-`s1~9 zUjLr#zDA8>QC$`C=Ufsed`eO8*iMCf5(PNewJV!IP5dc8kQ6&tjz|^{UWo(Aq8>t8 zn6jc-i@mk&;b(1-h2+XtfkIudgf{~T)!$X}&H5?p{F;(=X3f($2^?c*9{RpzGJJE< z+qKZ+6X**ruUW?gqG!5f z9B;&9zNJ67PhjABPTsA=&%nx;l*$i!qiDG*0t9Vj+8cAT8{hEG4(We9t6z~kk=bQW z6_jp~mKLTvu2AS|{0W-hZ>-mn=peTs`LSv&h3_Cqp>y4WHsyyAZDg0t!S%G6C0Oa4 zsdJ#?ra` z_*F+x;RgTyd#)%&yAc}Capu3y?dylFF0Aw)me&Y!9jtXg+Mslh5L4&qbT-_%Bn=&e}90C zX~=0`9xsK`V$;?R<#w3&4^tqzzI&lk{m%2lt^bWerJ9tOg*#{~&XMA^pghBZA`==~ zKVNzoaQ`=Y?HR|Atq6deHjth3ftoF*u=YHz(SOf0RBHXVCj60u6)q=-|bMI{bCcNrV1A2 zWO>BF{NLrH5fAmBI!t^XxO?G0A>+f`$CSxVfGT|Xf7i2%GMr9!QKhl6zfE?br$FAH kSG#|k?1Zl$kuL5AO`3umAu6 literal 0 HcmV?d00001 diff --git a/sagenb/data/mathjax/docs/html/_images/mt_menu.png b/sagenb/data/mathjax/docs/html/_images/mt_menu.png new file mode 100644 index 0000000000000000000000000000000000000000..e64f2ae9a7beea5c2ec0221a047402dc3c3fcfb4 GIT binary patch literal 15145 zcmbt*Q+Op&x9v`L%#LmE*mlP@Ivrab+w6{Q+jcs(ZJQl-tdlm~+fEYmQ%v@)C$}xNraf08vWvtMccz3;+O=gn|0}*Bxon^|=9aRF)6{R88Wa zeC|M)3Cjrs0JYKZuLh8x`>=MBT8;n!Qs2KH*wBv>V*r4sQ|ha*s+;Z~Z||5yjnpHc z9DZLKjsR|gQ&5(v5s&qHgA6Jq1EGoC55GbUvFl4191x5ux0v>F0aFYxzv}dEKTlY!Nm%Yv(4;{^y z9d9}<-doYPS+^NSualR2M`!M42*}6?fxbFG=PLhHXNK(XBV1xcE=2+u#9T0FOHuTA z_!A*#1hyb3{1QYZS%w1O0`v42+!W^6ol==(sO^PKU9N}KANqE7IV3EnB8#C=rr%v~ z8W`ND8tApa>rET?G0T_~^)3aGy*rAx%P4#i9FLk0<%fYBp-@N!kFZWUFS;oxb%DUE z$Fb~vYcBk$pCloD{D`hvfYa@6z~4*{oFpf@V8M)AiB@!#k`p2r*)Zbo_m^8o#1n;^ zhY0A)kp?*L2z#{|p};nIJqX$jET*x@=1p9`9=mn>yT<7k2V?|@>BA>M!w4 z<7tUhw#ah@xH+Y=;3h1kBQ3_pl=$Hqp`m8je%JW^@6}x&zIF$@_uUm8tqrO$C2wZF zd$MUVl@kO%0cikbE>#48e>IfB-y1;_y&|2Im09q&Bi*sW3K1cK7AG2w0>Y9Jc0XbS z@#5~OG&cds6?IYK@H+Wrb(8YD%4P;(U0Dop%lPuG`eYTLNE{Pie?Jd7ald0*jwwKx z#jEd*q&2Eb)DVU|M06#Apu|LNA57fbFU`(WTp-4jf0{B=Dm0r{b+yBgkV2h;n96)I z*AUtgiNZam0xAU`$OxiN77z7gtZ!RvfG-nh~qab1#%4Ziphcu|+A!)qx9Es_vIkPC*8}chqzvRQOlDHzaZ^kp6kY4l85hmcs4Xu%m4A08|FXAz1k9 zNEh8T1+_h~dY7olz&S&xZ(h&Lax${U`a-je3%otTTPBsG_2H3Y`OXdeK7I{#(Itcd zu0bkTfk$ODITV>Fb>rIBM^btcuRLZL6)K_BKJnki*M8tOh$p`P>wIOV9VPvuQ%?~x7*-D zw;@?jq%SK2*>Thb5Z};|^nI2z^v5c}M&3(Pp~j^XbzjF*Ss@Do|MC(G5#Zwo_1Hx` zBr2^S{OnV652`{{l(C+VMDD{~MuL`4`sq|#4biP3QXYVEIbjnBnSW@=U9naJ9(6e_ zpT5@R4%e=1up5E?km1yVu7&2${iRbBMiGogSHliB@>EhtKDP{Fes&&93{cd3*wE7} zJFStcm+t!8H5Yj@GBK9hwfk*V>zgOWxhE(Mf&2ENhq46h59WK>|y$1zT){f!nE zhlb6{tY^D^b^tc7@-KQ`Vec0sv<1KW-O@J=^@A0V;R1>A0tqF?9q+MrYOb|fFYyPVMI9-!KAJL5(Fc_haZwZ#Si`C z_cd?JZkTKL-I6P0(LtdPb`)muu{#%^oA*bR5IAyg(cwYlei#$r^^7$6YBwo0-6Id%iXfu^J-L zY$7pP`_+Fkr78=wn2U@UJ$o;i3+nKJpn0Fovp^VI18X^|?t+Y%A2gT`vsflei-3wz z+Pb@lf?>9tK?z!K$bTC-d-|n~wy0*9iK3wp{8D{)&&HE4FP`~s&CX67{?xLQtOYWW zCLlO?M@7Ck3lli|N)rPg@wj9^rzfZ8xgJ03$M%Ba7BsqCaQ3@11^joNbSKZbUd_^_ zP^RiHxv5Z_M-?2D)Hwk4ce<>$x*b|1lxuB$n8bv0q0B7Jbe*bT0@iNPwfR8_#O$W# zFl6KNgbIJdy%MDP5sZ}vFYR%8aidvBB6sm}bvI^duAlWv*3FntT#Di5V|`&z1%Y4p z@@ne~TuSH#a@Y9SOdQ_=6e$m0&7E_29^tI~QdNe;WTNYvXvC`A3a(Wk&3$4F(SwJS z;EzU$><|-XgdF8^J?xi)p(xMDBUwoZ%9*yeZhHk^{CvMBSfjx)<4{?ghQjrPUGKlO zM5bw|5KgiQUBx{;|IO1~vO*Bm<;IYJSeDXm^94m)5|p?%>>IG))}$68I3XsjyN01D zA*iR@MxH5!M<{VC5(Eu=dgBVe_y%zLt|?gzMhf3v?77SWZtPQSV4WezX3IvO2+zYc zPJL;B(+rig}X2#J6Sq$pMQ^*0ZkAaV-c+AVWc6qyngsSsoJ#Uk+s=q`?U`|?ow&}Z( zK7DqlOB=0FujLT)PRSNvh1}Ti)K-=OAVm|1QJ2J1DD+LQULx}4zg}#=JkKyoU@$^*@hTABp+A7WFbOjk+}G+6xi5r@ox$Z zbrOTg*0be_@eLs7B5C}mFcm$|oqo+Sa;(!wYj=&K%x2q=;7}s{hhtCqzO=Re2JndcOE!v)=FZj9nRC`IA}v=?@<##Dat~+*6hqS_#Te z_VaCvHSnBTh%NCABbL+I)s;}n3RLWNaq5LdT}?c<^OogcKFy`)2}OFkmqX$Ct=aD9xXbvn2GD(jOfDk%}XdiM&$jMKKmp*6r~PhtxxD zqrtpV<>k9}27_~cyi$%{pYfcv-xl9r2P(a4D@r%M?$43F=5pl6T##4d$TZ^I2A!XL z&ZpKmomQa^lc&OOm)TcGN-UDE^Zu(T&Q7m z;05`_%rp$H9hF6-qBMii>OeGnQRCVaZShHVWrQs`l?D6{H|&c`!%&oW3mrt+e=l>T zq|o!ie&|@QZw?Eu*-z)D0&3owoH3>7U-S?m^^_QQl4oh84XdJ0C4G&Rci_mYbvkj0 z!1wkDoF;meth7R&jbG~gW2b&IDL<=<@~gg~m3F6X8?5k-!L6;yQaL$o zO=@*OulpK4Jl7fNl*P~HpDPE;%ntrx7vbWfus)Q{Be;f|(M8by)9qVdD# z_D<06)SN)pC!O=addD^Wo|I9SA#?WLot6<ovrWVeg4z>Kae^gCiqlDg`~^tG z!m0Un`PmqD;C7vlLjKtB|IjW&bo?jXu9RG0R}u?SH`uG<>WFN*_nmCR$ffx> z`3f{+Ju}|0;vAXr+x&{uc9_TNxfQ|oSL0Thxi56TtWHo&WR2McTlol>W>DIcFue=RM0$ zXmJbS3V#Bl5=DB%q`>F5%U{;?rwEJq3(VE}+;l-}pJ|h3K^wqu7ipt3d~pX`x)#v> zAmJ0{hYt6@6V3k(Kn|(``*hLvi5@`RME3biCm(mW# zIGs_G`gbYmusd_wvVVP)oIQ-y{-M4+&60l??%#aW6jKS+*x9>PN=`eeY_kVt7VP8H z2WV8+G2aSLU($QM)uP1}Xcy=Rqtn^D9slxqTgrQxtmGxFjew~pTd3J2g z25phA<7j4~2I=AW=?;s{Yrv~A(K5uxH$H>HvJ3Ednkin zQ}4>Q5&MhIl@Ufp1wA=3sO6jUD_5Czz#R2Wk$s%Y`#yK`a?&}zxSXlHv7iL7!{G#Yi=VcNrU z{-m@Rw|l%>-PL|8*x`D=PIWZjioF57gWhzc8Kb$aMSFIW#3rGkiJATBhvC@17H(Wu z@inujn*#$gr6+a@e2i*+*m{hfJ?G$r3vgoLi)i zNYFy>J!_j#-!IQtwvnKnP~{IsI+Jg~8h1NvgMXX^ zM?0Ti9`_ILiRfoD>Z8KB|&je*&Ko|1NxN+Y3bfcRCB(lIAO zW`$uw>E^pG4Fy-BBb3K_W|{;5+LDmoJtg9E5^2CZW;VZbDJ#Wbtj`r+Q>GR>kKB>b zW>fDA*yBidT_<%R^Ju$L;XWmyhLF9?4|(cd_rn9U+1Fc3S}5jsq+cY8fZ|S%GNm4t zLWfVfqEYLj%2N5fC;H+%zGYRb?zTt!9w)=>vO7!hlGO@B))L;FXY*%!iQ|0Np-atn zg<|cagIQN9YcjTZHu>2}qBm5&l$Hx&PCmQYJ7L#-#Uyz6jU@)PwRUW2RFuJodTM->sLTo$@w$3bMW%P#5PnUK=`6SyyDze8y{#Ibngi=fo6yCAu?q{Z&KQqY@0!6j*TeHSt zdw%!SS!9K@k;~Tk#QcfMB4VbBYuw`W0B2;-lv7b$q_@=E zq-WtWdQBxQOI6_!M^l=p^XA_p#W?5@%WgUuyx&JNs!+s{dLuA?2$0*OJ{uXN9dECT zG{t{}oY66t{37U2?BbEwXF931-hT8c)isB4YLWPvaD;bf5LF?~?+&p2$yWR#zG|F! z_1fig1;eR!jZE0TLT$47TIQ5}!`t%xa$tt_~DdvDW6)qPPo;9Sx}aLSGCjfbn{QIGA-u zc67eH5{i7hv57e-Gjg}qGgr;%8{*Dq)B($KN}C=c_388UAopey%!Se~3%r~Cz4z79 zV77bSo$jSwGiPU2zhT8Fv8tkEdL zrG>bhhgzrMt|!>~EOoBl35rN#v8m%AuEtL^oBvH?wytdI4X9ydy)%zn7ghK1!aIkH zq9g48GnTU0a=ni+*oQGIG@Ck$G`rImy3?93v15KCH+Aj9BbEc0Ous+}V+SzX%e0<^ z%+(lOqQtvs`ULnCwv=e-(;GQ_!VwYca$%C#14yz2Q%)uf3TZ=UJPBShvt( zaMs}Z!g$Se=X`GtBlAq<_1t)t~Y2Y3S|EsbFmb5wSqcY^oq28UE%1fWlcS?yW zS|>HtlqU%tuF3u=Nq~*esT3$7$hYJVfZ(dipB1AK<9NW(-RUx12z4;2^t{}t5nYei z1MY9?5Ilt3o_iZBp5vcTIZF}Z-`Re7h*>_{nt?8luh|=lmr+Gl6#}-{J&#hzn4syo zT{8%bZF(IegI^yzPW9mZctxse*(I=hyZhclK*4y|XV;*jHr2P2s?r6ex1*N>;4>Ha z$CzFoH;Q+8U^efGN}nv)kq|MK`;StifNk-f4gA+`*JTB*BQKyUi64^_eoC}Rj)M9l%(B*PDY;jumf1SaYd^MKO97(?D zifTN)`doTB?$7H2>m2kRj!#5S2cZEJQ1E{__Iuvl8V7(dtjA&zuRDmo*m!B|h zKz7JX?`G#;P1>3(g)ptYX>8`bTGpvz<+3V(8z=ei*x>*GR|DzhbP9Hw^Emi(zb_Gu5kGK|7AqN?*t=!g{-eC3_3#-USwU@9 zI0-y-p&U4fAc{wgS+mWqOaMygw5Gat{L4weS*wP+iY7L_vkT)9vgzIL4W>=!PlH<1 zD79;+DhDnN>vKa@Ll=e-<@kgMNq`m6h>1t9>k`A=W(0d?2q?%DpN$2++R>n zAa53=`=L`vemX0gUiB4uBoDQ+rB=x-GliD0a#$Hj`u3%IE?*oBM&Uzn;`tNk%Il z3=3z{3M%Nh*eE#x76UQTXd7&jKOgm3M948l{6?STNa)hV$d2j#OykBBaa75p>BGR9 zf@pwYra=!$<0&L|${dZBlx^ilPm|>JnaBXT~#nTdQVhS=gQ6=;M5$yoV z!7ojjZvoiKbc}{_1`2Fa6@?0qi_2dkflt*#KyT~rpQuG#PF1B@HLDz1rCKxQDi_O334Yreq{bC6?O$_ z$>en?gysmdO1g5Idulc1Ihc*d!WZR)>?bKerRYL}Te`GpH8~}^=;dgPG*Gya!ovoh zjk1e!p5I!b$3VlE{BrH1XnZ7Zcwb-H#69;lWYHj^`oq(!!uwUYE> z;6+EgVtZZ~6R50vYB?n-g{xVyZxl~K0PBNXQAB3(Gp{j~1INf-J57Xv?%Pj^XYGKQ zf&s-vqTshkXG!ZQDkC#I$UNIPPf8BmIeFz?C)DUhuB0Z?@3f3qK<6)s-i>i4yZUdM zx_wI4!378n84X`36v_-~MeDd%28|V2cyC&j%hy%Z6R+Tmz^&A968#i$ptWja>h)z; zqD}*9eyPG!@Pbv<1p0r~3@j5f<{RMGTMW^ljTxXLju*p}-WZ*t8I!3W!6&A}IzwpY zaQOZW#R~2`ijN?TY@F1L6+C7jnXe=)&P@&sjwv5_uWi`Pj>3()nqWr%U4%>Oc9_0s z8pJOSJ160J7shUNP9_c+1Z!T%T1W;qzcadZqp&~WP5OILx4clPv@8cE>@gxhB}_de zS(AptC^jKdvljN76p!*38b{VBh(q-3hV7)^enQ^@XPH(-zMjLrgn1=6rTHfEg6oE^ zu$)s)72Z(a8hY^!;;v{q_gRCQA-YrIn#d#e%rR4KF*M0RLj-%$`^g~6n513hO=JEw zL5~Ou*29cagwYm+4H_VIAlGU+!c~wz**?yji9m4rdmU1p?h}}`c01;xX(w`zFr*$F zu74s*5=a-r903C<%l+rB7xh=;3&da(76faq!ywI8f6;l2Jbz9&<6t>}T-8|p=y+;y zk2Xz1D&jS3xU`9sP&S2FX$&bZD>Wli6C8s>vAzb*FB*&v(rSN2P>Pxd92KgRl|BYJ zq7??|qV*p+yA^X`NsKz(4z}0DctdJ!i4hnz3D~$7s5OT#2QR_?WhOX(YEhxJ=<9PR zAWqj`A@I39$i1@t1l#Y2t`63KnvFC?BEkf4M%3Sy!|beGOKeanVY-@MDFz;rt;mhw zAjCqqWweC0dw*~npT<7t5CFlFz(V>I^Rv|{LHTZSTHyfkHx82q&75a1;})1+1X06x zHYD#1eSi08+0TUOS&Z8L>=K6|kG5KahZJp03}A_(a#Ov&FieVS%&CYaj1YybH|vBN zUAHfKB@0`eNA7FGY-(6R`S~~c9O+ys6sfGe?G|+%x3gxu_w}c%H_?`}&gft}!H{hJ zJ`u#O8_~z{Kh1rif?mAqJ}<>Pq17;70vzN&>{MFr4cCS+Za(~s3HEzIP~CABZ0tKy7&Oq zRMyu)gUsPoi+F{J*8X^;bQ2+4p`E`p@-HlwPq;|}TQU>Gm3*bJJ&EEIKiP;-6)5F? z&4CPL^)Lz(nHFNZV-eKwvfz&SJpOXKy+0l8EY}|GJQ)r3YDD$1^Z77X=gRZyq~@+K%-E4l9m;b${%A zI@iIiM>oF*J?j9X`;ZjI_J}&il{Jx;Ig1tr(IeP4VEq?-`s83TzhsXs;78^%{&s)9 zFV-#=Wn!<0Qf0i691$?-0!4&W@H(}oh9fv>gKiJB94yg_Epi#W&I%GuuOc^-%rT(ocs4PqO+vTx=((2iX!ANx`vw#$If8|c+1jU_( z4Ht0gsu^{S)wTbVlo@Ayaso^lK^eOQPJ({AgpK~I6t@MB{!F`pMa!$3Zib+_7&Z(WWbW-5)}(M_D)hMH6EVryp;aul$=YsA)*P@V={As(v{mb0ks8bWsO( zG5|JT!feYN1R*(uy4i&CdNqd8%eRX zzEUEwN(V~gQm7fwrkp0X=j@Y|p{O_`L2EZlMEau z){dke6-Pv??ocPhZ%8nT(9qCa8v zoGkpqw11^UkZ!&b9QIHtbirXupZ~7NL7)OoPwlt8=$lv&W&@|6jqsQM%CyRRWDxE(Uz?X4zcU7~;D;|;9C37)`WOl%%2J5|Q)cQSEP z#7y?R8jtJ?$+=<-l{6bK5L1e+`ksVl6v>%^j1D-aJf{KcFVVUBow2XRnNQ&rxCi+y zaitXzE)d5Yam1X?4MNrF>mUsl46!E?87VlGS!GaNDg{pel0k7&5~ew9=1Gr#cV5rs zypX<18|J9qkldb~r5uk+o{~{)!+q&0n=H20^ZN%J{xfsS!CUfn*+O%ucst(vHIWaj z*;Gcbp3kj{Kf560NBavZ!pG~`)eJlBj>^`)=cOA~;~Ep%A7#;vnt|*2o=!#6sqU$F zW}1G8%oEl^0tgeyvk2^POWlN6h^`=3uyk;3641D)GPaRK6MIGx-H>r2V)c1tk(7rm zKz3Qck={f<>Kkn~bE_^WF|YyuV4?!-i`Fcc6AY;7ZO0y`gJ?l2EuvUNvw;N|3QlgV zcJyq-$a=UsI+9jA-SVRyOW=7XdiJ5~{n6+uGG8wU?}MFf3H~DBGUV`0Big#a6Yt{? z!t1=cljwXprwlomq{QyBf9tAat?LSTzV?~%5^Dhdhc2A`YjbxK{?L>`(Q-*Ci`X5? zrgCY878P6sr7#_}SWG}REi779PkQvg&MZMzJCGokBrcFPN?laj$5#f3`c+ajM)17i0}t{i0E4F63-bhm=gIr ziiTbh4h9%Uk?vggJfag(9$^;ioUMUZw20M9;1Kw0-;#8X=o;`6IRmGimGI3#6&!zw$T=8N3Mp8<9l_Nlc+HkR0XwyCAsjlCOEt%KrZZ%uI6LBq*e2!W|0zsI(j_C8M2|1)#MM@Afn$>jvMtH0*IdyrH{LoYAoIGXLEhO zm+=j`1500Vn~aG9j1Z1CNLstAA~xo4B73AkC2>ljJ-fzgH+IhKVt}LQj*?W@i8sz_ zwJs(ec_;mo3|5+Eu8gJ)jx5*cMQL)>5xC{GuHZpLm%U|dw3-gj=mD|Jo)Sjw?tIlA zjj9a2iz&k!=47S-usY-t=Q%5o(+-A~4_ks6Emf5xjCa+yLSL=HZ=zRv6t}y32)r(W z54F0<9G|p~6l+>qZ)c6Vp^3-p^#4LwUJ7R6KP@x;291A>-E@K#Bh6O^uXBbk`IXbh|`!VFNy;P!C-&TipnZ{SG-+JVfVDi z0%UY*Fs{xs0)hb(Feb5V);8~o?F?1oaYjl4vIR4#t_7TYgFmNx*I|JT4L8osW_pt} za;^bX24fm%<=>ynxgw#FXi)b(G0vW3AxT2* z8%C&p!U$<6sc0~n1v9oR&6!0K>6I*@G^v4WwrojSShH@eSBgBG(z@-Lu zL(HG_@#epSRthI%02LDgjTaEIP42BkIp;LcB6&QvVHRh$3w*?xUlb#MHL#IW&{vn> zmri^&C>)z1M;|0X=$WAiR>tj8bJ$}$;9!7L%7b7njbXQ*6-!&!^f7fZcL&L7(V96( zp$1q;$-}K^LSKrvCw>F}rJNFm6~c6EL>fU=sXD{I`*!AX7TH z7#wjN0&DP!Xc>rx&XB6HxiY8!J&u{DagSx}Kp6stm4%r609~&CP#d;o*4Wz2TmIG% zLj-JK3OkT`nvDjpc6yX5=SxgV$!zoVXvq`m&e!C;p#G>xnHNnY^+sHvMOG>Xw{M0X zfz?k+DL8?ocvv+9x@(p4yzL?va&=j7q7Nyp1%|=$R3z0lZRzxP@{qa~dIZ%8zXgxU z(%NqYU!=al3DgDkYR=2&1M46d2T`NqF3QnSk^|L|=-Ft5OjJ!!fIhNQa7skXcC$D6p2=wcHd+{SjrcA`H)2wV<((HPqZ+HaSj4H(7kNgK#hZayr~Tg! zjQ)P9@(;i*35#!7Y@&c1xZ1AruVtU!axLQlzE?Rdb*q}^)I{=Nh{y5)66olLQu`vfm@L-+4NAzbC?rg0rEjl*#Au~jUU4AycJPQg0 zKkwim(9T}>XVHwCjd^de+h@GrxARtO*<#3_QRc!|BwJ?obgi|Od{bcgsqs=sVaj!z zb+jzMkl;~sZnuF}?&Sb|_u{Qrc?mqe zeivPDID6Yz+g4DZoPwS1>hx{wZ-*3Ucp!cSU)6s*y6}&R^4$LRZAo-Z(?YPFpmVKL zOw$*h?rHM=s>1hF3CIp%$;g_qT#bBz_+latALv{Wf?r&+w`sH9IqgU z{-k)>o_??S{!kW|wNgo&3Y*Q3jqRK;g>4aU6D|Uy-@Kky;}wj4KBFrBZ|dfG%?*97 zoCatezpVQvI1k3ZO7Q;mv57dc)y6qjw&+9_(Vr(g7E^5g4k^>X8Z3lQ@u%tT8<>p= zfxPF{KL6E27K8nVCaep80U)V`g3#)0PD$xrN(!mTM!Y>Mqg zg4ujzq6YPUta+6FuunMNAGUZux<`XZ zA;Zpx!t^|JdM@Zdd{bl3hujhSN%fgjh&c(i1 z)WuLBB-NB9xXPh+Fng)<6&~cnW`-|GhzOouV7g)1fMp^AO~9Gp2f)kVyZ)Y|2QAxy zLPp@iL-1MlWzajYHyP%t_}h*E0#WDL&M&~WdyT^eNV7#BV?C7atvtKu9WuM%Mep&I zD)+8?N|Nw{t?KhmR9kR)k~0I}m-Irh+OdR=JOdmy=U^*07@^wP*rvvKz!*_L8!Quyd<$@X>-j5zpk^1lb>MloNyW zRVTFW7=Ca}g4kJaZ##vp(;$xHS3C6cc>qfr_sSHDiHzxjr$!O_gkKld%HPiJI`HL& zK+cu@x2ILB93CMt-n$dvbaW===p0{5(JlTtf*kis@rao~NMjL>9I*8lWq&KywipXz z{8@hzwBN+!j0EiPq1c)lpk1KG{(O5ucO+|fpIs3nCodE32t1o|kb1QgKygoF@Cdy6 zr3ThNp8#!V#PqC#=<4MFcJ2#N?FuxXi{7q3i;koBfL=v}u)dJ(8TA}-S(u!kWV*Tf zrM#H=`+_e7*D^;q>50Vg0$kITk!#cPXA~~^0>s#>NVOi1te*F=((#4P5pgA$-6{Jo zD1&(qwd^r=Ekri3e0g=qcQ00p9G=Wl)7hA#LWX~q5N>EkGHTK7uPra?)Aj#-Z>gH{wSw zrq1PO5{YyYt%YH?J)a>pT_zTk)bcMl5SzV2EeQHbJ@V8DON196ymZpuY9?C0-5*3R zSMgoq9_w6zUq1N0i5-WiUG+G5o@%zsefGGURvcp1fGlC|GT2h7QMrWo%*!I&fgoi% zpIGX>#?sq;`)ER8nprge@3a4Rd}ECwIf0AIDcisG=Rt4pW4%$cpNZuU&ScvVT%+dF zOQuRf>{IT;GHWqmCjPuEIgtyjs#R*wOM9YuG&>#sv>;FP`&ZCo@6dpN*qReoH`VZ- z6yOcb-{v~-9Aq$kjmwjjqkyWxPrGV@_Z{fooTmy|@&rHNntZsV<`^;#KR?R(=6)wd z34SrAchD|#duojvnrh?dyHi!9CpWx-C z=t%y*>DDQS2MSjNh%_HUO^G%8pH8YSRYb|h{HU8boTO)!HP7)&A`f$QUezS3dm@V> zK=-3(TKIW#vzE!f5;Y8+K+tzHZFodCT*O>|9!O9p=^se0sOnf*Op!iw_yX8v=GR`e z?4ZdDDt%wKMNGr!wi?`}mXL$Mo3has^LCO^n^o9Utdhn?rK!xoMdw$aS(BSiRS);e zpRVcB?iP<%Py$?b#J@X3w+5mAwv94p-F`2VgS}q`U)Z$4)#YvlY$fA5@ocus(R;xp z6B;Q!GAtB9>}#f$(JKzc<*m2Nh4US?tEQuNt02$gUvdzr-FC_}(tv4oMer=P%Z*|5 zVNXpwJme(J>4{HjHws01!Aq@=nd`pyG-m^z6fl{x~{;rM_?BDkJk#e`? z!BgeUI1ZzQkEHi{py0rPA7$46rEf&m&eAh@znqvbF&;H1J1?W#diZNZ*{ zrVc}C{D2E!nwmg}X#_k_G%6ir4QkNL*hhjljhh!`GyrLyPy2>R3z1lUW?WSh*EU!^ z(uN(Pj#{Fp3G}TJQrpK&bx7YH5k{)_>I>RljNg~3lYlfZh>)&JC3&{#ad8u?=-qC$qRz7UCr zEuaAKP`;>;K+-7Lbw&f(v$Oa+CJXrqqV}lFi^1Z-mw>!&`Ek z86gDGmm#-k3tJhy+wY$;3CFyt7e|aGKzep>$$I!Ml8RyTjoNFUsEYj+C=JRTviubt z#Ih45pqUAV8Q@CQVEYKS&Ic`K#6(0!qtOcmm#!-_fc(JO(Bl({w&x3KflO&9xWBV& zITI<=T&kKPzaIY%yVPT0-XS;3--<}M?x+ZE+2*cxu%ig%3T|^dVQ2eI-a(p1&+qjJ zGoHq7B};*bfY5z|mlXP9ATAAv0Dg2(>1O27%yV->eIcMTm_Den%@1I+9@}cinB2Uw zGhXYE2skDg4{6sY0pnzz%Y(03!SY|3$( zynPam!nDC3ZlLu-+Q!sn#jmq;Yb}7cc+-fg?s|R8RE&tJdkl1maDZs@jPv|+ra!T+ zic_4cx1X|ghq3HHyJ+_z`xR(fD9z||IGzeVEBs9GB?k!!saKzC@P)@}z|>E>^+~xJ zT#;huUd}Y%cIBUPN3v%X{>8=I3|`I;CdbP#8s*fGC?j(X3SPV;G9uE!yseZkUfOw; zAK$E?<*1;qa5xQS-2aL|#1BsLx-DSNeBQMBrnLIzliq6@q!2T67YI5AO|6p$Cl{0Y z>4vH9v2$6@d8DyV6QtU#ssp?gr#2D6~L}6C=i2J4386dE;Xby zM<^(CRGDtDvjgpx;XGxb>9|I~M0Btag&kE`H1u>MlFMTM&>)7#o;QNd_7QJ6F4$SZ7PE! zBew*oX&nuGY0I19QG&Y#7q`UVQ9+yR5?rRnjWHDjk5;6i&5LvQCP0*Ie_P#G@UHGs zYWU+IuL|UNEsgj&ZUIOb%qp%j=J0!dx=xU4njXSwjA`Rz!pmG`4y#u-PG5a2*_pdn zzxJ=O8B`rER{4*@?<eVY`DM?YKSFd33fR`}h8=ypF zWHAzWgK<=n`1Go5lyDC?fj1MD6@K-qGWy+v!E4|g$xc$k@zpDou9p`~pKX!xt51GXVTpy-DjrriKm7iR}496TtIlp+j1h6)`m?u5VAN$pZ|dRlc) zuDx$ZvT5`xQ&08rp5NB_+MeTMy7?;_>JIp1Us-r1tNo;A6IdBvBuRL6VrzHnv7nUV-#u*DZaKSYWh}D*ETbl6cL4nqooaFuxPQ%ktFoogZHN z`=WZ|>cL#x9v$B!60b7!I1A4!#lW%DinRzl#*sh9f~JkQ)d7~Qe&a8_5IDYF6t`NE zaodB(47YER>G0U7?T^->i~Qw*K!Yl>!PP_$M zM`wNO0lO-f?3xB%JP-9Lt3oV-sj#9hxUniMEJVDA>G13_AR~{p2aKG^eM|Lh|IkW0 zEjMlX{%^xa?G`VB3m5Xy$~)Dif{QOBZXup<)L@u!a_A=u3w*W-Q5QN&ov+lb1?l_W zPSM^7mbf7lY7X^Y`(9Hkt%fG?2blF2H8P(&OO}M< zRK2$!W{L&5BC9k;+K8lEkr7?&(&i1EeNV}H`-)z*^}{{UEl@Tls`o0)$i+%5svmhFFs zs9cuST++M56_R-vjV)7xV|p=(lj#=WxEtQ`{0Ko&J4%c!ThXC%@2gcSG5l4d*heOn zTA_0GYWkMpzU0ta)h8-CuUXqb)DdE9$l}w#No8XkHSH17^2|-iyV^qFMjZ^@ACT(M zjh(NKe|Y^FtJ+R_Y-N{mON&LCM?D`WGOet0`u9Cuf~}mrh>q*`(-58?6roD`_z{)Y zE($G0B`lvC_da}2)6`oH{5a5jhcQV>@Dzgj{q1E;YbEB^ifev9G4Ajj@i5=)D{blD zs$@MTqI{+Zq1I&Qj~{z^M`exdZL{~WeqI!J$W^W^R7-CcvE?*6wYdHwZ^LHNrf?h{ zlIZhwyrG@RD?sCxlObh;@erdvziGoS!^{g)W7?X)0_Pd(oQBT_VyfcpI>;;UPvnr< zso2UGz$T1`;|=BfI{4%*!NH`=*k|-Krb>%AotE70nzL~G6~8C~z5p}W#sOofZwit& zi&>ejYNV;Sv2H3Q0^E-QX2kbzJdzk~*D@=fINfj!{P;OyL ze+u5KhtWZj)L_7}F@6m5OxJ35wHQe$3$>Tyyh{Wa0tR3Rf|l+}NUmS2wkC!M zRcv*Ty%shbATyu~6?k?*ed|Bm@4S_}(ot6Qfe)YCZr@{;ghj~>p812yv9L3PmFs{# z9^JAN#~XN%stMt`YwD#4QJbZDXfp4oC>S~j0fG@pi``MyG^rYFrA0Zr@COw7I!+G}c$GD0*xkrt3 zj4WTr{6QGCu;O%XM{KiJ=iS)D`Rb|6rK>5GroF4R{AXUwG1a924K3mxto_0rC+G*S z5OrDn+HBog&ITo=Kktp1Yi09=$}z_jk8o(dOsc6b!ZE@6XmLP)UcBop_TxhIn4+|j zx$aHxR;;yc3@o0_%c8gQm``Akzhg;1o&DBZZ!C#Dj~CBaDG=Cq~#F}B&a(16}= zE;ORl)Pi?5WO$~}KGFz!E(9zbq9VRTD_@K32>{i950Vs;7q6yNO#BpNHiQMNAa?0O zuwfC<2#CcOETKvE6~6&g1de zQY#+j+BZHaxqEVjITRCu8Oc(u>y#+gkyRR)>6YX9FMFkrnL2v)GU)j17HKC3yA=l5(R#*(^2=HR2wYu!x zp>rzfIInyYRv<9qOM1i3xqtidCWD5Nw^)W>(7VNH7`Zy)X(9Y7b<1Uxy}m|!L8V%1 zLUp|}~`*dJnJ*}HWf{uq{fk=eN)brmn_ zHep^%6QDOmEA)z5h!9JauQ))rTNNGJu4*fwt3|heW?k!7{I}e8P&<7uE=?R5dAALx z#93#D#`Vry0wTS}kNSC3B(Lt1knSlmh1%c7s;3@BAJE{#NRv;Nm@u2S8HVOD#nGR)IEsu$9U_LITo#ZezDm4_j(wqpT6Af|3nf*UtLuvB_cG9I{GQ zJ3`K1iDr+h_u~e={F>bG^|ii)pOVW#DH$Ig>z5*d-zg-rX_AE(yiU={DC2>)C53+$-7sJrHS6 zs1kkt>ego#zXw*b5o>?YpFD}&_{MQ#c;V`h4S6UP2#s4YsgIzgpP%^j0VJ-r4X#n;h>@a29#az0D%m2XDR{L`rfZGJWvCNAA3&UKQ~X zhbdYDw)pu{Px+Z%vn$msJ$Qxj{>S%1EN`BB5K1Orh_t5Ox7DNvVi0p`$itzw&TNWx znfUWN&W&}JrT!wMV2on7qGtm{s;zZtcB=lqTNSP89;*Q?Uv@(l&AuceLz){d~N zDi0zLzUcG_%^_qy?yWYp*PK@DCc{=P*abg~qsW>Q|f* z7CdgB-wJ-0@6DO+PHw5N$@G~F3&RDE36~^{Rc?Y(p26I+xm{1tuXLjst8VYzP;y&O z8+1OQSNuif%{E=2?G19bTBYqh{UP&15s{0UZ9};&J=r(W_eO}iut2_pHP-x&)-4DS zO?V1@y3--a7sQ5*MXcx-CGXw>iq**hs74|Io5ISFV!&XhNCq^#@U=9+<_zo5-WRn6 zYJft~lGtIW^+N&Nrt(}$2GsP0-pSE799~2gT|c%mAesQEfdWFV!apwHpB4ALX<#_SVVhnpi7BBm(+jvMFKTKM16hasWGxi zx6(MRdgW=N$Qh^WV|6f>?c(7n?6$4os?zF(t}~Z0hR=IBW~=%M1;r8nUp}E|Q=2QzK1@za(`-ds>Lj6J5)Rd{*9D#jAwV98&$+T&W`7$x1W=)v- zs#PHKbN%}y9dD|45gK-~d2MK^wOb{2x8EP(OpW^<^{+1vyUi;p+4QU#MWpQ88_;pF z=JqBFPxs8E?V!l*;oM!$C2bw$cRE-X-i;z2NDpVxJ~ezDj$`~Zmz6ftJ5I>(VG%ml z{u#5?CbZ%_6;fd5lpYx&Tr?%a9D6Tw#A zVS3<@4pYQqKlpA`BdKc(|J_KoI4iPo=iHE)K_RZrT=CPgqjSmA`;_I?i!{87co0hL zS+w0^Tq55z+3H#8{QNv9_wZ=#i^Ac(pb=X76N`xEM~f#c4`-Wdl$QP%eNiuVy7BmV ze`cK3z@v=k?Pi)F%ncukWsvu54IaTpX_<2@Sr327$dC95JN!axLW%Ra=?T zzN&1WPrF@dx}a`;4b}(cX!e{e-*bxuA3jtB)F-TWx;}7%@TE{QxM}kiCjuM#;spLT zDh3{4_fl5zD=TfKHqS(D=_`g_APR}1*Bz5EYQ5CfoTU}jYvKu$po*rrTMX6cqA|SO z52eK*j_8d?G9Oc~lBk@V1z%Fk@0$5QJ30BQj>w@tf-0?1s%7_fj#=+KuSJ8UZk+8o zEKmk!k5CW#+)qN2X4MW(Xz~RoL6Ny{X2g0|!;5eReP(b9xg802GFFigqS0DX+t;Tr z195X9-0d#>VW?DR=)Xm|zq)DtZ9NmHv2Z5oUGhR;LY$T$r1PP%>RS!;_N>9wlIFRU z11~Ri(YS~dZ&oGcEOxIeIKL^W&oR#C62Ji?qC;BXRl_Xx!i1Zsl0V3Ft+vS)D~GXO zBz}-))5OMVja>Y>X(Bv*p~d>u3X7V-Gn4PyFPx{vA-i*s2 z_Hm0Nr(fBp-+Tm3twQRX62%JIp5B*ob7-U*w60dZalg*ZmAHbAXS*d|4{s&Q-7c5= ziAb~yw{FI92GFkhD;LU1ulyNkGU5XLL>1)42RWhd4PJe4Q25}tXv1)xqEt&%()Ydx zc_Nm8#c9~0I5XjHC5T}9GQ5bU1*OLbR}}m(^SS3h(E}u%8Q5W0JW4v8+Y_TA#t{C| z%Q;;kDyZ>11cvSxKUEAP^Cv02{F5AvzZqc3E8|{R$3Rj}>RsAi0jFIw9e)R#>7T0o zze>$aai8yn17OBaL2i5J{7SVBh?&nrXngD?f{90YMjP%-ZLqgAC_k=5!A?voffN!C z$8;7+{R695aCe$I{)zL+?LiH%8|E1;jt4#qs&Yh^c1eZ)bd@yd80qR z6IsMBzd8>hQ}`8*#7HGt_)2n+=Ej*aQCV#9EM(uB%O2~k0SKxZtCklc8}dCJG$YC( z&aY!>vC`({F)q+;Z_UpRce{!@l7_RUzhyB+J8Slbl>5u=fg$O1zV_H9js52jg2ILX zh{}ui@d+8{aixeGqqGOts)BzMc@d3rj){~IIi3w<@^d*rI0W2o9a@xy`&8wrl^VIw zv-i8>`$JrPS|aP4i*>`l$(+M`4yEQ_+~tTucOjjhFNxI>l^h5ucSnA?i`6htm`TVH z@n$dX*Kcj5N`8v?#4p8W5k2u8vmHH%)=-&;IwaU+JIX4cN%IWN$98!iIaqooWcJB< zIC;-UFx|$7x6FyLw=bk$p(zvNJo zU5syvx0FwJgE|i0uKb^mQ$nu(=2ul~fQ`CiqHg+{a}LQKaxdR6Y110AIjn(=-L9C& ze{N&7R660I1RjczJa9M~bhp_^EYY?J?v#@{IWl3gVwi;bPdME0(pD+N^eHSLgTlL& ziX_AQ;eSE;weWM9bP{2WelWG#bS(W`Jgu8bJSQDz`AaE z1lR6gClDPt0Z)sv=_Nz5e=?^WRUqL5gI->5HBatL^@RMz#*}bb1kK(y-6?k`V{6yv zkZhIzY_M7qPbrGvV$;L0f9tvT?VdM!-%gJF7e4-e7WVr!XGSkq^T%G)KXtNYZDy`a znpv)8+jDeN#0#OC&Kkvxf{mzxg!#6%g|*`07rwc{-W@6WTUUCYUp4og$$Xlvt zYJD3kat>{pT-^xvU)@N!;Z=8gBqPN33MvK3XUbrjeM{r|M4DWPv6qb314 z(@Mh$waYkh=Xd_~+oSz!wBA?KcQ-p_M!?ERK#7`miax(5>ZbzZwR{ zBu=X*+>x=N0*)q=QZ`3oiW#gd|DrkF&}xU3dtDsBe;|PFWI8r}0{oXu0}x^+Uj2(v z3lA8tpo)eM0I+QX25qugFC*Z>vIql62hUJ82tc13fOOj__U{1blR?vuWrYbZVFSQ1 z697jy)1`0!-ZWZ#Io89&#n{~Q2$&19_Ucj2-0-=o$t~ces-GPYu@A4O;(JQN#%n1^ zLh~d&7UsUYs6M<4)M2VB@ihPeQAYgwUU9LJt-%<8gRFI6-jznu>vF-YqjKu#9Q1y$%6_eKy~L*g#B#}L9J z479alktpF|Bod|R1(+o&TB@u#1_x&iM(!e!VCZ=$)Qs+YVQ^XW->)p;=%6lzAyKly zNQjER8nm93OL}*HFhfYq>lI+BTU83Ssh27`FCwGg9pC?CP_u1Wxu$JcFyTQkk zzhQmQ3x}zyJ%}(dazO-h?gK_j;$B#8XE-AY#glhD?ZL5#D=C2V5uule}71}E6%B8OX} zjoN)ObAI@NJIwd#*+(apXspS6OBV%)8d4hjSpoXV>b)Us({S{?0r@IV5TC6eRG?#? z$g}Hb8k=LPqdf;OmU(tAqFrPdY6$YIs90(*?vjWI+$R&~g1w*pkcrs60iidc((dj} zlq^;K4Xp~~mpEnGdeok{^YLVGUYv>Lza8uw46$wY<_TIoR=#Oqou5uWuh9JbaP-FL zFr(D|@SC2HXS+5-vp2IYiMhWg1{HTN`JL(k4taeK>jzsuJxSybbVa2{@^$&y>kM)> zS>danjg*Ob!acELm14;UqcXnj+h!E!Kgm5r1ch+kXTePuxTo(s)>Gz?Fl$Hf^AN8e zj*kwJB201ywb?{u868ugt7~B6QN+>l;Z-tNBqjz;O{vg@Z^hr0tBZ3dPH3Mi=*su* zsJ3v*5L6fU?Zun%!5!Z(w41JQD?0BDQyHUr z57Whoum^P_cyM{|#;)fRp`~rd{Yn`2oN=qrCduiBW@7RxtEk^xa8lCplAflmNo_t#$w4J}F7mnk9 z;84}2hQv=XNeT{2@;77bC2Ak9PukZLP;FZmgrKQ~+(mo6>8V#r zbmnf@;6ZJHpVGQ~NM9wC%gvPERF@wqf8u;cF@&X5(m`*7xwcg^D=OWQm~HZV*k2>P z%fB$Gn2{O9nO5mg#lO!^L{UoG;@wuC77wFk@Ggew(z#sXu@1P^-m7JmW}W=i5)mm!N3?Gux&HPpCxL)*Xie+{=SHA!#C;Qlh^6a=Qv`Fks_S@ zvi0JJsecn3-}lB5rLD;q{~P@yrtK`nkf6- zck6_SLzRV(8CZJ^MSR7mISCtafa6cVTDUIl4=h*zm&B$Pi9tKpJ#zulD)r( zb)`*mWt`C<&KqSy8(X*BiY@AqBo-Z`#+Hshs372YbipMjf?&R7b zv1OwTs-F>J2ftg~v3|@H5xW1{ee%i_brxa?Lo8S1z$0)e@~g)iLnptrptP0qVmWab zo)A5ycj=wSEKXX5i-P=nl~ITF3MpM?nubCV@Ooxu8;|^Tr!=a052MYk^b;dMs--PMz~`s;foVh*L&22}Sunag~;jyo9C=^6ZrDYLLzFBOp}HzrWjd zRy+EpOn#J3Yawo^bxghzW}F=BEbUe72c_!%B=K3Z!-$#~Id=dOHRF|rCe@ehef%F~ zVWUDKsyz(ud)Q(5(A&4Vj|`E}hc=nfHr+g1Nw8J{02QQWM}qoWl^h)?(i?X6hH4+{ ze3BBr_-e(;E?AZ(^KwVTm)|w($w&NkC)Z**o>22OZ|gW6sPD!gPo$F^PfV0^yz6mz z|J>%FfcYhWJjv33%VK;P);ZNt?Q_0HR=bXErzm;77w5sDawQ9^2 zrCJN=PjI3W_x2`UsI&G@WYk<+IMd70dG7=X)(#q0`Lo3Fy(>%jqdIQJO<-!CmoF9s$9ny0J zsHmly6p4lEm}urALHnj==ph4CzcaXA9AL%5#JG)5;_mDX%X@ZaALE~F5)<*eQg-xv zH_Yr>WJdKOUlS8w@qFpEgFg-f6bcGY2uevv!2C!NEfx~iCz}E<9uiS=MnF_ekEQ(w zl=PKn^>Ld$o1bV}3v%JClX0&`PbB(5?dM+KI7A8Ns5Dfs-@ZSp;zH$6n_CBZiA>+) z-X6a;#dpYay=3e8kN$Jkeo|l?@ZhGIj67sOtzzSMV(<@;fN&5mem#70V4p!f^gBpE zf9rkiJ3EAQym#2wHO=qooOu|i_Vf$O|8#4k_wY1!xwIw|QvYr$etsPcTn*zTR!Rx* z8OtiKQ*`4!>&BoB+5PpklTfqlXoIw}U_J7(=W6aC0UEMe8`jv^Yg3ulH?Q|Y8gbUa zVg?HcwK9STbiH{OA0r}iPt*nF|712qjL#L9*yQ;LqOkJ$FR4zF0}}~RUYsF3H9wz> zgF|)D@HX#>K2fn!`Yw6+?3Mf`LJJqq16yY*;}a|^9IDz;ABwWP^}{x4OHPlwJY3E4 zuP-vy2shCn)69F6ahFzZ+EHZiq~xPkZg**X@PEoobyM{S;t>AW(gvRnL;au3EQF8? z&05M3p%}@Q@mY)Zr=zY&kU?f6&P3*1Y@G5%h%rJE4bO{&WW+}KBUswqoT5KK{?bMf z2}XfxYl})tM69ie+&*%K4eytqzFqhs*2YwMN_AwL6KgGmxyBsT-s`oNQ$P-kdYMh?g1bN$4 zY>yZc4QFQv+lly*E_Pk{B^UAVq9q`oNz-s(*4u>v@v3s38zFT}9uNt~{q4S}N%2(% z4%5j;pe%lrz*eOAJethH5%_cBFW*3@eNW@g3jxoHfy-|kE; z0qwkmq8*tLa4~L()G@;^ZQdSUET#Cu0f&UX!y+tx#?(NY!)94Kqc2s-p|6aIzadew z18o`$-1E6ouf2l#7aSDYt=-Zz+F8l;D`UwJ4|V)tk^}fqQK-p&vX1YNnxU@ zGk@2s<1V<=)Pgu<#2ZrGir46t&x5^VZA|!_vZE7SRU6MDFs4Dtr)h|0Cu6KaNJqzH zE@%a|)}XH|!}0;=j;tCceqkiH*LcPE2rE~1xn&K#GP>J5^=+w))`l z`@rAwsAV6^r43@ zh-KP#5H5Q-px%HVS6oa%t~`;Cd;7OBxz2j=he0xqs zA)TcJ4CHdLN4$LeuTBM7i;PqUhat$ynMY*Gm=himPunP zrfSd|%#9ck`A~9xopY_X{O}AE(NYJDf%O#qTpNxo@;f(~R%f{e0(tJzFp?{}(cBHv_P+`vc(?FoFO5|OI@qoc~L$M|)L;X}Rf(fQMR2o=-jviAxM%AG!%X6p*A6 zY$Az)YwJytR9F>!8B) zu{XfCNBkc~kzXaIRoLz73{I8ZQ5X65`4rf zr*T3Koje9#mgn!A?tgf+ydRixr~X-ZUVtW*Wqn=pE%TRJ(Q4o`ogh}uGbVTnWN3G^LJUjN(#=st%gXb zlLY7A9qf#DeEq6dKE==)F^dH|39Zh&`FvS{4d7Q-%@7wx>^`voYDBO1)>uvp$8j1D zV$yi#5<52i%KU?+!YfT|l*NeEqP{`m-uIr-I+fW2tt@`YFE}uv8he&ESzv?LPiikE zFP{XMKVa+gZS@@2r^3X^5qCB4NzClB82I$O{NwLf|5fd52!Eq>UYgePorj8>5rz1H zP0xj+AD(g`7cJd2`9p!^YSIjoq><&2zv4nPk*=0x#P(|F0ipi@U=H*Hkrv+iK!{1~ z+y&2nz_G|I^5x;m3We&W*hH>PMOAaL--o!%r{6Y@ZW5&p&HF-;x?h4U@vvqEIb~6C z#E5>TB46r0 zXfI~`pEsrXJn6|op6LG#;3C4>%kYB#q46oCkb``UM-K^651ay<*Q|FY&~tlvEPP{8 z#ViiuHTugRN~5i((~8GmBkvFJ*Y|9gK*_C}MDe%=r!HCYuSZAnd`&*DuIG{3of3o=y~@q%2O$N*Icj3xDr6vD+C}2R zh&R{;jwqP{?AheM=5wT8Lj)vAg5`o#hScpvl1>_TQrKZ6UL@&T3W5RbfHWXUZe#po z=}26k07*h0=0gNY>cS=p(o9~kwd)0c)=dPO>45)+rY|4F{F0dXzicE2cBSM0+phGA zOZ2Po>Sx2$Q!nVVeiJenxK8SgG{?kdBp%JlcmMxeevWPb*X~QJmJP$l_X-w z0=PE$t&zknI%h!v_2}cK=%&oxZ;#EjoT!|}by<_!W zU&f`4g1^YD=}Tzulg(wtvXzXemY)0J#^`KQz@$2RMRuKkw()CpF%~rFPYL^fQYMrt za`gGh$sJX`7c{Fu91;dU)pRx_T(w@ge|lFgk!_q(H?oW?XoV)8m}rrxs&(pJ+#W-# zJZLFGP-fjR;+f-!^T5R?XaXbmkIpwzEebwGg0J%>gJ<2TdQOd$`hPf7axeIu8KI6H%3rRmtenq~D8Jush=)!R$!~94&k&cbV!r$arKLcJRC2aY z`l2q4+7s=cJTaKIE;~vyz-y1@LuaJ!>p^@V_FXUW@NX46ARFckUiRg{FGbop$R`@~_&(zFJtOSS#@a*Ly zRvs|B@WhCv_TEGg=J(os)21Nz-6x6G5c@6Kxkk1TsushV#2j&`sNRNu?Hz6HopE?) zs4Ob~hTO%(cqI{e6D9R6@MkEu>X0)?$;p{Qx`(?;u zc?4!W5?ICc!CV`K(d46i(r?wI4T>=JfS)ugx2}6o*5hDb6U*;~(wM6$6pUG(Ly6bC zxTmzgFov3mOcS!>l`*p}*QU7OyP?hi0pt2nQ?Yr5y=+wzgpKMp-mqP;LI?Op z4zQZ+!#+lL!N(;4)DxEp$>jWRgp&HV=q|J2J}G&-kOe^daLIr;5&g4vFaT#ofZ~Zp zMiIP_O8^j({y!G~%ZTE%`dg&8Gz7`NvDJ>82rxJ$24z?3bGh}l-4nXQ=d~u_xV&XR9uDV<% z6Kf3*G|ybw7am4ZR07CQpAo1-`I<;HbE)p4zvv2jGT+sy{F-a~d;+7A2o3iiRqxMb z@hcDqY_3>N`+qmA!n3AcKbi~XF%NpJ$ZXAG(eBZR4y-tRy&S@4mTsT=lY~_M!H!Pl z)~{DOt^KXwoF&usDE#}EHM9Faai~P*-z^&Ts~3K#JzPYk`Uw^p%3wyl>e}kLieeHq zeu`qkJ-V!E((m&$aT6D*-}NXz^rK55WcAFZ!#P@|;`KT@!V&WbwL6gw{4Ybc`ni1k zrrU=Nrh?V!a0P88eS&L1 z&VGsB<0q)sO-@iYvVssl|5u8V7g_xk%DgSU>%`sowgh`^`AA1$X+V3iV?o^N94F^B zCc;l)*~o=7e9tfND)i~W#l$^Hnm<{oO12$5sL@1T_yyB7JG~$z0u47-hbifAIa*eO zG>&!<{b%2qN2XwtNY;;yq@P5kbIB&wHj3wz^owj8DG|!PJHa4DWV1G4fb24X9}gXs z>=SlZ6Y#u2^yYKN?297l3tiBhnwie7tBc}G<-)|{!O5_>LtR?DhD8|tj2-~}+cUwz zl}B`BhxMVyLF!!P@7{RSTUmWI-4%2H={pC6f)2nz0Zdf%lsKlI{=%`I8tcV3j9N7v zjq~%EX=mfg)L=eha8(r>=oJ2SXf?cNTklPcsJ^R{{p)Q@!7dSLaw+ZplBVm#FHP!` zRU)NM^36QUPVZiqtX>FYoHK)MkYX4GG_?kV*(T*`-N!MLBNx5Lg#>eEVbe|#%=~11tf#);n`7t!^b57 zI&q%qk;x6Rdzs%9$!=)WF)c6l(Dl;AaEdR*i#^mi?9bx2Nu_`5$i~lnkk;}SvJL2j zC}l^cjHsx#9}r~F1J!9tw*WfP|7~CddV>Cb`w03waoD|kv34+YWmfMR?awA+EHDg#L z;f~m?iLkLDbcS*Ut;ni#XZ33DT=t5qvJPMAtlx*NWI^F7W!9zzW$e{Z#bhDvmo=n& z_huEw7}>2+9ed`yi8(#K?*kur}tuNktoUai%h4qFw@H_=pbQ&8{1R9<> z6wHGiUvo{*aNC4RjoPd*xg3bwerod`Q{o$geWLs%gumV=q}Ds=Q1c<7m;SA`g(|~T zBJ*ztSr0EQ)~JG3i=hp%&(C*ttm~Z_EPh<1fOQdKZ4vkb7$FC_0)lxBVq+8cUG<^sIi}WWcxOm5@WF3T2nsVuUy1GBcTw zBKmC>HW@jKdAENN1;*yTb7D=guSxOJUjR&;!@hpS*<6<0wH(4^Zdv8bS-5(amFN$) zYg`ERSJ!T`aOL}O2{tos>i_Uoo>NloLf(MjJ=OnguxmxnS&>eFp-1Yeb+ zq_*8=8uD<{#%1b;7HXHjn*4b5m}nF$zT-eWj*0l+v3o-FfBNv5PCJ|n-04gDvN-j{ z2yYfM{Oz%I@v4*p-5f;;hT;yYY@OA+*InCmp8v?ICM!4Te50=*Pu0)BN98qfy^6_1 zk_iV2kpZNXZciz~^G;g^*uXYkCH5{oEkm{v50&4jT+|SIs-tQZyt*J~xNJof)fkC3G0)C6GOVFhkfQP;Ya%c>o zD@@O~$_f~tr=K678#wmzZ{#sBT2hGaEOF6of)6T2o){RU!~Ye`G51;<42rIV02$m!w`wpSX~FGs;_pvnRGVg8ACq%si%k zM@QbUDe#P3>RDQhLwV#_Jn#v#N+|P_A$lyfP(YlN$6?b!@j>2&*VTm=XyK*ap0G`I z{lm>+z5ByWeb2+^06jguC300}ZG6CDQ-p+K78Yi5D02z3LJ^Dh%zkqq3TbQF=ST7N z@uAmbt-c9Lr=z3eFk32LBqFDKWQs$amJ;iGbK&^4F)=CWDUKH({vQp`ElYzGze;h6 z3}hS|IRFRK3^}J=uffjFUV1p0_mY#3&u1GsMHBl3=xzfnRhOwsQLe0*Suyiv=yX{N z&&;F}bNUWRBdBulE(Pr0Kx#CLc7)>mBz=zL0sU#%RI9;;0FLWG%?Fq zNJAzs)aKWEr|Sf-#Wpmk-{z*C4eN~hjc8~nABu~cyFc3ihV>R$&LADID19;Cs{VU4 ziA48BD*(q7u%A8ybIHMpLr}}t$x+M}eVD}(qEP21*uf?2g}K9!;{tJ@=ivhStfi7i z#%5)yAo5g-Sq2|mT`bIAa&mYZkr9gl4W_(|Su7au|2o1#IiA-WG>ztqIDhyxgljek zd~E~#u%u^j2C}%nxm>^}A2vx^f1B&q=C&nq4zI7R z{VA`Y&&>gknoe2cLsGc6TZMSVY;hZW27eP^p>rg|GQOKb&r4#JUcJ7Eu%x~ZUIC%{ z$JV<-%f#3--EzLr3aaitNKr%48(cW5T&Yx}^PWc{VypsLtP%@ZA%f z{|ID|?%j4X{KXWq9xWIW^7Qd??<9I6Ht`>;+@Qtcm579UB zCLnO#LAlvg&>(6&!mb0U#1wwwyj6meOqR4y>{SHMszviyKp+qjS|XWS3f4y-S&NA@ zf=`o`cjl<8p~ri?is(z>i{C)|%Q#T+z!+1=Bu$rMD?a9Wy=wO9w>Zjd18seM>dofB z`^%LT?LQfXNrq=jF~M0$pK9E6$C8R7iyg)2ooqBTh(}YHQpjYk2eMfPQ=d?z#&O_+ zWq|QZaR7$QnHuV>&JW`pkj|r^KGctpz=J@OnZ3W(K6Os?)zC|UXcB)q))=1!SJuE7 zVmvZNV#4=M3)LjMlX=4{^a${rr_HiSyF=LTv6S-_Z*3VPgZ^8#7)W6RJ{hu$S6iHm z|Eq5_R+U3uoD2vA>OIUx%=^ZWGVENr_h0IN&YlxWq7zZDvI6dhh~NL)a9{lzB3rvP zH#euEqVi#-uBwJF74PMBU|;p_X?@(ql|!;u*XAB8E|*b_2(*X7yig?B;=-2-d)lJ> zE;I4k1{_;i$<|=jo9(M`zB|?bJ?H_oX9$IeD_N+Y2`pO$1E6(qv-qYkP}Ugw%5A_?z*pm z3GpdAgOkKAYY*(A4O^4^YGR#-2|>7HXBXQg;HwkI6Xyjj-2J>Cj1#gGicV@%RrD4N zJ-(;YAfXsCrrjuWEYmWC!~u0r`YdY>GcuTs}BG=zl^vtIqkg+nmUYsOUw=xc^j;haPjkO*h2=$VKi1G>5Dvt1(4I4`y-w{7@a=!o)+hWQX;=`bvvSGzkS2`wH7wFlWZ zG7>&VwMK;y*^covQx*RbpdMtYspOEMA;kiiSzgKh6?{9;pCzQXoCMFV-U-Lt+ z%Wnft`>zB({FH+pD=){`P?Xs?D-PpfTES)dZ4c{eiie2!`vwl5y|g2~VyfdY(gI>H zsea2DRyruY6Xm;d{#M1mbccA43 zRD-zxu2oh8<>*tNvz@MJC$i83KLl#r-kIr|e?q;59lhYzZM@&Md!Wr=3dVc=nEA(7 z*zbHwY)i6goGe4q1SM_6t>)f$hG)T5W+a&Ajy{>pZ^tf9C|mGI=)T!!g9~S5ZWC_< zFL(l1n=MP@FveY0J~LRv=LuTlEnYC2VZEr}i16yZ`VrV&I8`8KJre)alt%60qTNZQ z>fb_od|DoFH%DYbT3;m-s!6`_yv{Z1Az;ew?wqo-qgZ@Y=^dr0ZvS--!S%aslSJyX zf|Q1z?T!lqA9uh_mqOj4KkiGP0$4F^Ok*KPvaRpc<1Ejdgh-^#-xb&~$$lg?@qI48 z#58IVL%&svDdF3P$@|%z&g&LXt0j9+l_GOf`{y%#|E)YXxe}H`UKC9EbL3Lo-M3Pn z5)XEB{p35rR=)2E;mZ3!Q05(*F>853F%~C3B7?9ksYoWMC(y6j)dH$|3SA2rZh3x* zpXNSOES)WuvWyV{WNH+Tqk;lvg{ad`b1Z^e`qJ9D-lKktu)btS12s3k@s7%wd?op3 z#j5R~idvHDsnB6`Lpa2ej&?VaDH9D>C1r{xk}w_^2uAY}zF@XjQ3M1M;DpP+ho!Q7 z8X-wbVH81=lRyN9bnAt(%l8(JQDo={oYmu=NY!a&BWjjx$n%Mp!peJ!=3GczuK4-K%)j-rLTQmGOr}cP0Jy)$#)pC-Z zykMHJsT2fikpmVnQNr!V4b5ulxWbC0As#!Y10H;01pZIPLEo(*g<6fese(p8p+3LG1Pgw<1L2>Pk2B?ysGj$;yKM&S_6{VIVa zom74e$z_76CvZ;%{;0ZSbSka4XgcUKWN2~czXA7%hsh1@J4mBe^)D+Gs~C$o`K)*L z;*bA+enq$fm0mZfNjw8ozu>a1bE6Qk7pz^5Yb%C8>I33HqFoJzxHx+673UmP4;MJa zsbdNhXOq4A_qA0;Q?)2^2Ia=L&BMkk3`=J}#zAbW48v?L_TcBV#^X*s*01zia!D0; zsC8*68vrs_-C}+sOWt(nG_5LMDsWY5Jkmut>JRINH-M7uWDND4m+;p-H`}D+^W6=m zZ@Gy6rZxP6miG@F$8ibvCB_mx(*be*4z@LY(dx>Nhw87PzNAiQNOM$i&5DM^Z}_pL z;l7C5@6fjTL;}ZN9~mo)B3sI? zcJ+Dia!4v7R#VmE!hM@v`QuH@CV*~w>8IeRv2C@wQMO&-ctl`;j=SWO*$QS zja|QgPNa;n(;Ux%0aHRh41ut`IcH(+hkwTKgd8#>1uV&^Ncjso6H$MY7H}&@E`O{& z$lgh@^ChoEqZ}(&3s#swGem!Y*(Q<>OZ3evg~mLE5^b4+UV zm8_b;v6|6#y=ZiOA34C1?*?8kan0eL`F-a-s%TTXieyB3)izzcZ6fqZ4}6dsN5AeP<|o zt6!vd?T^{w znyn4|8%h=O5h3*G!X=XGl52vO!7liv*m-$J(~W_OO;oRj(?%St2VURM0M^l=_)lEZ zyZ5D0Hlbm!`l;%E5K}>XbGz?Xc_tprV?RvAo|+Qp+6Sk`cBwW-=kDLH$nQ@C8}m60 zC(sg^pPxU4tO*;BSPrcSu(fAa_6~9LxlOx2vOS0=w>VzmKO4W7-zJE0f7&>AC}UM( zHS`gs+1F?Dob_xacgR-5GGvbYR_H|7RTJAGALc}WC3@skmr^^LL{X)1IH9*E&u4O9 zJL+J{I&7<3R8!WCSzZ8c3mM<8|E4Hf7=ZX{ia_4}Q7-%Vn=@+R&$!m-26cRdZ}w02 zNSs(X-czSC(kpYTv>X$7RW>&bTJ66#y)u(wS^cVa*OuUy*@p~_EPdOOSTQ-HrXt~I zgA?6ostpTb0 z&!;UY_rB%*>PmuFkd_&&acL3?Rg`TDr9+z9mX3g7o79K{#rf?W7qNwYCnnVOAn(0k zNk5593KP;^*=jGSooB!=cr&Xgj+9fkI587_V%wj&IV=opC_(Rz*2P zjit-9&c;`|`FUy6)7}$XJK_%7dCHd>qS=FoHX5x?#V=R)8%S5yT*GRlM!Mb1h3*bm ziloKnY6_8%SJob;Ab*Kt4e>zO*g$a*4~g|VBYfm*V^Qv8sU>misZ*45FpRmVL$DXm za=%ZsR9$ zElw)^ZkihD&vcR#+ky>`z^IxQ^&HK|qnuxAU;<@%VGv(QdkQ2mD73{CJx2Ta2yy(g zdV0GN#I@V`R%vvBr&Uvi;-$c!7Hnv$ysW4i+t;ka263A1`~AU}+!HMk9!`*K8>h~g zJbMq1Ev-dwzcT%E3r;<$0nf#>;tI3A<< z$UBjuWYv&L*|#1s=nhD68PRPYH<&)Ktt-sJd*9{r(zsk%EqY*Vb=!*s*#hYe^l&s~U%?E0G zBH+{+{~&5nI&@0EF_36t35QG{wl&Wgrt-V=%=?p2z&*`NqLN0@D6x<=?HtQoa(=_( zBK+AFx%TuYCD%R0$#EOCeS&WX`E|Wi;GfK%POHGX;)IdHICfa>8ri{eCo898J5#b~ zUk|10I)qKff@8#v2gfdf8Ti$3Y3DQbo}$0b&o?)nHt=3Cs7x~Iy~#XH)}IV5IDil{ zfw$x>O=~z*fBKTa@RjYfzQK=0%sj&%{L7bNJmU>mu(a&rz(0slrWtvCIS)wl&ZSOj zS`&Nqjp*-PG-z`FD48C(>w3WlP9JY%@7vJO@gOn`tjZMs^YKNe0zLkXJnR^2}IE_DmWZDVOz(U@3>;$>f# z$EQ7pnm#AQB<##_{NLRlpS4@vf-WwT?9+E*D~j_87a`8h-f<@3p2-};hrdirJ*gj8;u@iuYTRF`jv$+0wO7ZV; zGE%A05&tv?yV6E%q+_k4Z)T4B5_C}G zEw2wD%X%O-MIhGeXks1LPCnH4@0(gftQ2B%c0}Z{DF)kQcCnB~ldeuVTo&LHidSCy z17#JD99kz~kw*bM0fw4TR^{Z< z%5QD`9$P)$xoCkWehjW_RvMUfS=o<7+pP?Stu_RP-w1_-gtU!};z;O4-|x?sIiTHS zL+lrHHOZmNk;6hr*Y$P+8-!8{BMH#i(eVZJdWT594`5$)+_uI4^)8*#eKJ>2MN?DB z(vk)A<29LdWIW+a0S4!GBJImb-?8x`Kls$hmk6^assftdd@sh^z}dKe!1=MILC}(r z2U?RZHw1M`?7!o#ZL6t#kwQP=#dO8ZFCSTB{S*}y(T@`$Iyxfj;ej$wX^#^jL7NXOG?zqW9W?O($&f{^PE zkc&CxSDw4X)tW`|`}+>QZRh9bThNlPV>|)R*f%r2H*O)#VlG@yVH~$@B&^!CpW16|FYS`aRy5Myda0UCwh$;(SJh(r+*f+i>emqHOlun>NR( zJS8F|oNcvLx3RO^+3fa&__@tjst(kiT3AFPT%Jvjjd@@FFi`XJlMfj+ zYheq5Jk0Z8;6(mfwpQ@I@}T`sV4f2Cd(2UiAkUzW4}qFeC?FBq9}a<5Up?HOdLFJ; zD3dLy;TbfGJPbz9NQ<{VO&U28WJrCl&p9>fxQbxA!+g{?R%{buZ7+00QnbL*lb#7; zwa34~kqUW`DskX3ZU?C6@F6NIE}>!A`0D_7;`CLeHE9<=MBO#{IayZR8@BAik&N^b z{p)m8Svm*(3GP8Asb6+~-KQd2g8?PsLbmnA-y%R7k{a|91^f7j!m#Fd1RGIv`9FRR zMxemMy5)H<3YcMW9E8Q*ukzD&cNm~;CDFDkA2ceTwdw;c#&o3u%VQB|o)%A}UU_1q zKU8FT(=>w*&oM4|^%sZXeus9SIxH<4DTaj}1NYu7SL1l8?ZH46!`&KfaN9KO9Z6MYEODv>xuTMUx=N z=;ElTDg%UvST*xJ+ivQl`}sG(g{8z(pbYmn6Xb57Gnco)ywS@tGNVaffI911e&8Rk z9+rPtC@qc#e@AYeMkWP-6Ahn~klL3x4@`WYQ08S0w;bqygcz!dn&8h0@5BEeI9Dk@ literal 0 HcmV?d00001 diff --git a/sagenb/data/mathjax/docs/html/_images/wp_templates.png b/sagenb/data/mathjax/docs/html/_images/wp_templates.png new file mode 100644 index 0000000000000000000000000000000000000000..35c9105d35f8b6d56ce2fa230f5d62ac169ea136 GIT binary patch literal 7053 zcmc(ERa6vS^e&CGbeEJg1JX4hNQd+cB^^V_Fm#HDl!MYzBcakYFd*F^Ej@HgNq7DE z-TQQ3?z(UH;heqpI{U<4YwxwcZ=V=_T{RLy20{!B3=$1>6@y1v_BcwP;62U+Cjy&~ z0uySWri@WO%(VTe;5aGiC}Ch!!HI5daR0OMQU^gXFi1Q98<@SGKkYFv7@ujVC>i-% z?OTSp8BM1=h=Y=iQ;aXM>C)B9Yhui(5))|o!wNp8!(qf-g}f9999+%S2 zK6~Z5kOv>TpGK@Ub^+WdC7hT>ch7CT&S{ur!g8*& zd;e`rxO)jt$?srzonQIB;W?8nAn&SjXF%u)JFfXfk~poQi1?WTbF#*E6-4OB(A=p( zR)e*FV79-FF|^Tt3!`N$4K34#ZJXvv5eAYpy4cgsj+-%90+AXEe&- z{lf+?5hfx2LQIx1Ne1ZT0!(VA8V1*@zx0sUx_4oD$VDED$h{vqZE#X#`$tK$nsS2w zW==+h!2OHAAgOb6I`cgf`n;z)m5KNoPwz_>4mjYXQYXdXZsx&S3E}Rj&%(!NGd~v@ zG)?fDXoEpSE|~?1#aGjgh~OC2mB;xNCl068T9gxsbFDXcmZG$0`J*@dWgjD|yb#~L z8+$Z&T`F}0U){*BYV*ienu?6tEDTurH@Yr8@Y>DUyZ8M726DH`a7la2L-U5azy8#+ zE?IbjFZKnT#~J&$E$?Z@XR`6y^aO`E6-Cq41ZHxBLVQ8qV%s~+tZBg*_oU8egjD!u zOno+|)BcY)^tb~-0qZK4=dX#l-k{JQ*;_rkZr|nwJ||J127=7M+XlSvs;0uR+)L9W zb2@lOd!Uwff+_!>RO4G9WV7EOMsPKDJ`q7p!PU6_BgK2Z5eF@i)U0Y8PVu+Y$nXP> z;6Sh~XX0p56Zw{H9o6jY8_hyGanCDPHcsbAqA%If=GuQ89jKQ453>Xt>mC2@(JY9D zPHi>%f{Ip$e2zZtH8=>PE^SPvw3%NKy!00Wu!BCJ1ZHntW44onD3}CS0%{PDvIAK;2o_uf>I#nrhc*3)<8aY#S&ZtUe~2=CVpy5e ziLA#A<3tzei^Ky=dN8WJSiuAS9wQ@#)r=n^Z4VcZm1Kiycmfzy*h5A-y1^}G(a7u? z)ZT=FDPcf)>cLd?Q?QGi;!DTt;*D2m`lNFi4zS9|jfe<%vb)~;YsufxVu@gH*1w5@~wsI}!1ATyb1e$u0x)%au=;Z&5CXU)-=x0ze*_D*QFeuye} ziX-%<-;GAQayAbi)1Evw@?&`-UpuEm26K#x03^>iQ#&Hh3-R3VH*O_zL#TRHc!xnB zk#J3@t9;L~$)epsZSc&=1qcG;#`d`YBP6`FzSEf?jOjjR;ZZqrpzLF9aKTX#|1V2I zZPWFg&My1ijS>qct7mnpKjVs9JW1Z1<*=9fAIbXr1{y_uBwO+p+*fk~L}SGL$Z4;Y z*o6hp(#ZrJbg4l!zkG28<`p(aT0a~=SP+NJV}~nhMfY)V2;O{4Il_6A~sB zX+7n7IM{31V{G^Sxt2zn_+rvP4H9+#?m~@kY>&VUaUp`~`zqTd#ya;cJxO%89ny|2 z>nMHd-iWI_NA6uNFnEcqdgGe9Nf>`GMUzP~2SeCo^-kW&9Vz2s0@i!-^=4tI>ip(# z4}FzBpj56Xf2s4z)FNm&O;{BSqsjw-Y5PVU zW5lR5y~KQH+fdqU@1XZ^R?w~*5fXjGFJoH+d-QkqaC@mEHp3VE%z7Cbx37!!X~i&! z7V853Y!8JGY8Bl!v>5$GxQ|atk7jt;n&9QB9RSS`A)ar@uubn*v6SU&@QKks${! z%=4}gf~>P!_V=79(PnN3b~b}ijK+-g$N83u9g^sbo>*7j`C7>g7q z)sW!SvIbo+Gv!LY#~YVN^vdktMmhlBAaY$Bu$W4z{j=Pk=>#@Y?HInb=pWcr*R|~{ zq1!8#PR7G%NHuXWazQ+K3~a%7UnZ%%#SuV$)7)4v`6GHT$KfjBU3UdWn3O9}*FO6% z>6umag2cYg1&M%hFl`mPoypLdb7M(0qH8FYKT5Lb8dlyHd9{TsG4&jLo)lcF!nAn5#)5rP z^HZ4jUDV9^+yR+XWq_dfwe4;+bLrxc#*g-bqtibU^d#zRDbF)cXKqpht9Na#ce03m zB=bu~-jvYjWHSO4x5Qlpowc8(h{_`BiYOV8q`o=gJuhZ6SOoH>wsf@$Puy~Oa9Bgv zqNFoQ(_D$~Pdap5@ZoT{USFW)%*AcjrwK0_`SYt2Sp&+>4h!1z{mlBdB{IDNU;UdF zqD`sAC4a@NuQNwYz>AKSn5~+{U1Y~;VT1e0=*`LmX`EhmYTvX}?%Z;w|5k{vcEJZ+ zX2+18b;=(5ojIEv{ou<4+AX_VqQKPJf8F0XX64!PMa4RkxU{^G!WkQ)M(!d4U`3(t zMa>bJ!l6}apz4F4l~?MvO0~L@03wZRr?A|fj}5O0W~P_5(j{NFQq*oUcHsRProEhB zwNN4^J>i9cEF0&xG>n9Sq9NpW@3iwmtFI0jEA$30_24R@kpkq%d^+~SA@BJRuFo+J zH`fkG9!CnP*tdnBUGvq|YL0f4t)2B94>NxDa&IaS`pk8Dgde9UE**92hp<4^aon-Q zl3eD!h=(pgKjP2F$lvJ#gf?Y;^Ty9zF`@9228uI5njw=9%XcfvCRe|64=#h>3wM~s zASUZ|%tu`Iv8(0yA^my#s9tycUyZfdZg~tuPxgw|rdoW%m7i{-QvxD;4a2f36ntQD zH!gJzf367gf<4AWJ&e%r1HdLM+>j6M;5mz~&iml?3p&L>?CtfzzUXHULVakQeM4iz zxbplvx-wLBQ?Z18R-$jY`w$hGm{8sLl)jDv>m57~ADN2o_FGAXGy2?D-VwJ92GB>K zxqa}sjiT^kg^)1uBy*cX%Se0L{%0S5KOYz3OGU&>LX??dv z7aJ6i7N`6IOf0jSWq{9Dlc}6}y|0u3e0j64WcrId^LW7~HAdyjLZs+t%_?#T zi8=~dHI+(HF7RJY(hMNdpX6iWqD9aKAp^>fu->7HI5tM)F@s6+1t(GehY`43Fb!(7 z*E`=M+%_L3@buME;cn)|7~)tO!Y!-?sErp53>*5`@9HD6w;1bDB4uYfl=Y$I%Gqj202S0iB{k7V}~r>fwNLH=i>v; z;?t)SIv|4jg+0>fc9G_tZ~A(JHI^j-qrh4w{~=3`^MRe`;j!piE1K_)LYk_}9ULB8 z=xT=}*+;L2pUY(PmZ;r3O%i)VW>Z70f4o`K3YpTj>f=Ya2)B9wq^DC4((sjf)7n8b ztM&LB(MAy*uyVn{F5tdYL6yj;~?->E|bJ{x6tUAATkvE-0+{#)AIolOphi1v+ z2?T&KC8iy+Yuu>4_ChQMQo;wM8pg04U!(2_41FKS!-P$)y)JKeC;X0DJ*~%PzeWeW z2b@bxbuSJpTTP*P%G-OXWf;D$O0_9wR zgJQ0h*sL5cKIlsmPf)G6@3jEdBy8TXoDqZ&OWWHYPnED`ndDw$l#Yg=o4`cLJ^qqu zoKNqF?=1=kmy?b@|LYVV$306-8bAH7_MN`O)tq0yu*8Wb#l;W|qB1uzs44K(>J!W+ znR$43)N0YbYh&PZI7t%+6a`^_2Dm4|3bi99+j zVS1OdjMR0}atXw^&#WdIJGKCK$>I8T`**8DEa6*ctaJ=SJMG}|sT(Z@QpwQ|Ln7iP zlW1nf@Y4GZ9>Gf3Myr&2t2UtAsJo%6_#}(~YZx|f&lB^~dQfu0691%PrRIE%O!%N} za)&uJF7fEn32y08Ybh*z{Vk&wFHw9@!y;0-W$k6971pRwyZoTq9bB@{meBN?s>Svn zCaU0kcQ-DKVm^*5{n)*_KutFzTXar-J6eCZY%Fo*s|q$t$<@>7C5jL!M-VJGMR@Nn zU3NsY5LIysN|ksW+0egRAK3kMdhy@OB^?Qt-4M($k@IHI-N#;3-|F-Ww8Z;%;|;() zO^Q1gzkry%*%wyg%7m$A#L&!jEX{`F<;f*C(y)sdi3a2_sH_j_e3B1@}rkE6cKJ<$)O<;&yb$A@pl#fwD@QI>%L{1 z-i27Z+Q{^g1Vm*t?A=tW1rUmfcD!~N@qLPykZ4?9jmtc8v(RRz+$UVkUcnY97?SHM zV7u}Ybz0%2HKM;RRquQJq%t^)K0lQUNDvGLmD1)6BMWuR-f_(EcY%l$Axw^=&p4xb z7n=fIawe;oC)kJNKSma(5RZ+9S0l&Fc)AM_n7Clv=>IGIL)-!fehb&`xEyE|4tpgv zDc_OKPOXr`6R!Y-I1X!lDK$Qz9DY3ppuj1kxE5(^m12dqQ}Ay+2_|rpO8N(1yWBX*Kdz7) zI}Mw~aC{vEP>;S|ENUFd(0~&rhr-4j4FN5F_&rh!4KI32q+XtwA6#X95+#C7h;I5> z!|$s1r@W+WAQ+*YDHF;!rz(&03-rGamFG!^)cB@czu9MEE1-|Z0->mPyO z4Dnv9QLl0}$4QlwQqxy*hrZ3P7)s#hT``%C%`epMHeb^Y6%3uR4RY;tD>+)BhJH3| z8lDWn_*retYX%lHTG}7cnAg&a zgz%l6@lPge48-A;s7ZX_vAjC1Ff{>P(A6#Ob?;cWL=T-N2TTri1n#tlv7D=b0j8)$ z3$ly@)#e$8a&v8u@jklJtrS_Y#ohKE+?86d%{mMOZu&c*qSl<8eoQYj>srsI_EPd* zLwre8(pctk8G!iDs^WS8kgw+F68Z6X?_tq)<5INK^q0Z)Mo-J#u%usN>ymmcn%<4G zP!L@CWJd_11SGPujk&UzBsF$SAMwL8gSaXG6<$hD{`)LWe9q4`T6q!~QGM$QK1FR8 z8K|~g%wb2AW}GC4o?MFVEJkvPdWiTEsTPX}8Ar ziJV-~Kp%~a<>NCb+HLk}!UG*r98ZBKjr3)dWopko6Vy)IqIfC-cCh+v4)Ww%NSO1B zhvWawTwj%|t+>`l(P*%;39qN{UzN#R|uMeOv7e1flz@{{X%i zg3xq=oA%_Y5x&)>KJn{Dh=eg)U7FW~7~rxGuFxQOYJRM7nTLm(ULVqI6Kh>oAva|( z=pV7=dS@I1#1$yxtQK_65%mgLHvy3@rZ{unc2jD;%_1Q;>%rMEml;dewh0^dbI0it z5RLnyBpbfQi+GzvI`fRkuzcKD`~_Cg+UZLzSpR7FeBv}v@+*9}y0mnK1!>v!&ZN4I z%{1b!6%b=oJhI;UACdiwBJ2?#U5FPd$xzVE`bCALVU}uDNRbqr8OaBk9M! zFcV9|V>rU{0J?p0$~1?WWZinyK?ukZo}Af8t_n~3{J}^|)~krDA9u2j0drPUhXa<6 zmz|xBE-9i3v0V60y&A5a6l8-$Nl@5}VI*)vgCTYdmLDE0YB496i|)QE%8%}2nk5xv zvogvr_GT{qubQu7EY7*bMB4pwk>agv5K*!PKs6_VZ{B>jI zXUl@Dhp*xIcWxLYju{-1favlu*joEOs3Aim6)HB zfCMIvV*>gFXWx@BGQ5yfA{IZYhlsg#x-+?i>rIyr0#vpDIXi*{Nn#%EaqPrJ86+?bY2?hIaEo&oIbN*7yM@nG1kic2u&yo3pDJqm?s((GO z##}GrKga&V%U8{m10=7MEWTNr<*u!Jb+{3-T}TGm5-M5w=gCk?t-7vwBEZOC^rxwBe$J55cOr(dN77R$U>R-oG;r64|p6<1Y zhMDBDLz&&rDMv$to(i1OI7r70G}>Pv>IX|^xqsjln4|lPUU9(ykIf=;ZTFIf0_Vpb sQ7i-XXWPeSQC&LP1gbIC_JEBKJlVDXW+e9bg@&P_s;g42{N~;N0Hc7^`` tag +with ``src`` set to ``/images/mypic.jpg``. That is, this is +equivalent to + +.. code-block:: html + + + +Note that the snippet has two sets of square brackets. The outermost +one is for the array that holds the snippet, and the innermost set is +because the first (and only) element in the snippet is a tag, not +text. Note that the code ``["img",{src:"/images/mypic.jpg"}]`` +is invalid as an HTML snippet. It would represent a snippet that +starts with "img" as text in the snippet (not a tag), but the second +item is neither a string nor an array, and so is illegal. This is a +common mistake that should be avoided. + +A more complex example is the following: + +.. code-block:: javascript + + [ + "Please read the ", + ["a",{href:"instructions.html"},["instructions"]], + " carefully before proceeding" + ] + +which is equivalent to + +.. code-block:: html + + please read the instructions carefully + before proceeding. + +A final example shows how to set style attributes on an object: + +.. code-block:: javascript + + [["span", + { + id:"mySpan", + style: {color:"red", "font-weight":"bold"} + }, + [" This is bold text shown in red "] + ]] + +which is equivalent to + +.. code-block:: html + + + This is bold text shown in red + + diff --git a/sagenb/data/mathjax/docs/html/_sources/api/ajax.txt b/sagenb/data/mathjax/docs/html/_sources/api/ajax.txt new file mode 100644 index 000000000..4a4caefb5 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/api/ajax.txt @@ -0,0 +1,214 @@ +.. _api-ajax: + +*********************** +The MathJax.Ajax Object +*********************** + +The `MathJax.Ajax` structure holds the data and functions for handling +loading of external modules. Modules are loaded only once, even if +called for in several places. The loading of files is asynchronous, +and so the code that requests an external module will continue to run +even when that module has not completed loading, so it is important to +be aware of the timing issues this may cause. Similarly, creating or +loading stylesheets is an asynchronous action. In particular, all +actions that rely on the file or stylesheet having been loaded must be +delayed until after the file has been downloaded completely. This is +the reason for the large number of routines that take callback +functions. + +Any operation that could cause the loading of a file or stylesheet +must be synchronized with the rest of the code via such callbacks. +Since processing any mathematics might cause files to be loaded (e.g., +little-used markup might be implemented in an extension that is loaded +only when that markup is used), any code that dynamically typesets +mathematics will need to be structured to use callbacks to guarantee +that the mathematics has been completely processed before the code +tries to use it. See the :ref:`Synchronizing with MathJax ` +documentation for details on how to do this properly. + + +Properties +========== + +.. describe:: timeout + + Number of milliseconds to wait for a file to load before + it is considered to have failed to load. + + *Default:* 15 seconds + +.. describe:: STATUS.OK + + The value used to indicate that a file load has occurred + successfully. + +.. describe:: STATUS.ERROR + + The value used to indicate that a file load has caused an error or + a timeout to occur. + +.. describe:: loaded + + An object containing the names of the files that have been loaded (or + requested) so far. ``MathJax.Ajax.loaded["file"]`` will be + non-``null`` when the file has been loaded, with the value being + the ``MathJax.Ajax.STATUS`` value of the load attempt. + +.. describe:: loading + + An object containing the files that are currently loading, the + callbacks that are to be run when they load or timeout, and + additional internal data. + +.. describe:: loadHooks + + An object containing the load hooks for the various files, set up by + the :meth:`loadHook()` method, or by the + :meth:`MathJax.Hub.Register.LoadHook()` method. + + +Methods +======= + +.. method:: Require(file[,callback]) + + Loads the given file if it hasn't been already. The file must be a + JavaScript file or a CSS stylesheet; i.e., it must end in ``.js`` + or ``.css``. Alternatively, it can be an object with a single + `key:value` pair where the `key` is one of ``js`` or ``css`` and + the `value` is the file of that type to be loaded (this makes it + possible to have the file be created by a CGI script, for example, + or to use a ``data::`` URL). The file must be relative to the + MathJax home directory and can not contain ``../`` file path + components. + + When the file is completely loaded and run, the `callback`, if + provided, will be executed passing it the status of the file load. + If there was an error while loading the file, or if the file fails + to load within the time limit given by ``MathJax.Ajax.timout``, + the status will be ``MathJax.Ajax.STATUS.ERROR`` otherwise it + will be ``MathJax.Ajax.STATUS.OK``. If the file is already + loaded, the callback will be called immediately and the file will + not be loaded again. + + :Parameters: + - **file** --- name of the file to be loaded + - **callback** --- the callback specification + :Returns: the callback object + +.. method:: Load(file[,callback]) + + Used internally to load a given file without checking if it + already has been loaded, or where it is to be found. + + :Parameters: + - **file** --- name of the file to be loaded + - **callback** --- the callback specification + :Returns: the callback object + +.. method:: loadComplete(file) + + Called from within the loaded files to inform MathJax that the + file has been completely loaded and initialized. The `file` + parameter is the name of the file that has been loaded. This + routine will cause any callback functions registered for the file + or included in the :meth:`MathJax.Ajax.Require()` calls to be + executed, passing them the status of the load + (``MathJax.Ajax.STATUS.OK`` or ``MathJax.Ajax.STATUS.ERROR``) as + their last parameter. + + :Parameters: + - **file** --- name of the file that has been loaded + :Returns: ``null`` + +.. method:: loadTimeout(file) + + Called when the timeout period is over and the file hasn't loaded. + This indicates an error condition, and the + :meth:`MathJax.Ajax.loadError()` method will be executed, then the + file's callback will be run with ``MathJax.Ajax.STATUS.ERROR`` as + its parameter. + + :Parameters: + - **file** --- name of the file that timed out + :Returns: ``null`` + +.. method:: loadError(file) + + The default error handler called when a file fails to load. It + puts a warning message into the MathJax message box on screen. + + :Parameters: + - **file** --- the name of the file that failed to load + :Returns: ``null`` + +.. method:: loadHook(file,callback) + + Registers a callback to be executed when the given file is + loaded. The file load operation needs to be started when this + method is called, so it can be used to register a hook for a file + that may be loaded in the future. + + :Parameters: + - **file** --- the name of the file to wait for + - **callback** --- the callback specification + :Returns: the callback object + +.. method:: Preloading(file1[,file2...]) + + Used with combined configuration files to indicate what files are + in the configuration file. Marks the files as loading (since there + will never be an explicit :meth:`Load()` or :meth:`Require()` call for + them), so that load-hooks and other load-related events can be + properly processed when the :meth:`loadComplete()` occurs. + + :Parameters: + - **file1, file2, ...** --- the names of the files in the combined file + :Returns: ``null`` + +.. method:: Styles(styles[,callback]) + + Creates a stylesheet from the given style data. `styles` can + either be a string containing a stylesheet definition, or an + object containing a :ref:`CSS Style Object `. + For example: + + .. code-block:: javascript + + MathJax.Ajax.Styles("body {font-family: serif; font-style: italic}"); + + and + + .. code-block:: javascript + + MathJax.Ajax.Styles({ + body: { + "font-family": "serif", + "font-style": "italic" + } + }); + + both set the body font family and style. + + The callback routine is called when the stylesheet has been + created and is available for use. + + :Parameters: + - **styles** --- CSS style object for the styles to set + - **callback** --- the callback specification + :Returns: the callback object + + .. note:: + + Internet Explorer has a limit of 32 dynamically created + stylesheets, so it is best to combine your styles into one + large group rather than making several smaller calls. + +.. method:: fileURL(file) + + Returns a complete URL to a file (replacing ``[MathJax]`` with the + actual root URL location). + + :Parameters: + - **file** --- the file name possibly including ``[MathJax]`` + :Returns: the full URL for the file diff --git a/sagenb/data/mathjax/docs/html/_sources/api/callback.txt b/sagenb/data/mathjax/docs/html/_sources/api/callback.txt new file mode 100644 index 000000000..b8f42613e --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/api/callback.txt @@ -0,0 +1,259 @@ +.. _api-callback: + +************************** +The MathJax.Callback Class +************************** + +The ``MathJax.Callback`` object is one of the key mechanisms used by +MathJax to synchronize its actions with those that occur +asynchronously, like loading files and stylesheets. A `Callback` +object is used to tie the execution of a function to the completion of +an asynchronous action. See :ref:`Synchronizing with MathJax +` for more details, and :ref:`Using Callbacks +` in particular for examples of how to specify and +use MathJax `Callback` objects. + + +Specifying a callback +--------------------- + +When a method includes a callback as one of its arguments, that +callback can be specified in a number of different ways, depending on +the functionality that is required of the callback. The easiest case +is to simply provide a function to be called, but it is also possible +to include data to pass to the function when it is executed, and even +the object that will be used as the javascript `this` object when the +function is called. + +Most functions that take callbacks as arguments accept a `callback +specification` rather than an actual callback object, though you can +use the :meth:`MathJax.Callback` function to convert a callback +specification into a Callback object if needed. + +A callback specification is any one of the following: + + .. describe:: fn + + A function that is to be called when the callback is executed. + No additional data is passed to it (other than what it is + called with at the time the callback is executed), and `this` + will be the window object. + + .. describe:: [fn] + + An array containing a function to be called when the callback + is executed (as above). + + .. describe:: [fn, data...] + + An array containing a function together with data to be passed + to that function when the callback is executed; `this` is still + the window object. For example, + + .. code-block:: javascript + + [function (x,y) {return x+y}, 2, 3] + + would specify a callback that would pass ``2`` and ``3`` to + the given function, and it would return their sum, ``5``, when + the callback is executed. + + .. describe:: [object, fn] + + An array containing an object to use as `this` and a function to + call for the callback. For example, + + .. code-block:: javascript + + [{x:'foo', y:'bar'}, function () {this.x}] + + would produce a callback that returns the string ``"foo"`` + when it is called. + + .. describe:: [object, fn, data...] + + Similar to the previous case, but with data that is passed to + the function as well. + + ..describe:: ["method", object] + + Here, `object` is an object that has a method called `method`, and + the callback will execute that method (with the object as + `this`) when it is called. For example, + + .. code-block:: javascript + + ["length",[1,2,3,4]] + + would call the `length` method on the array ``[1,2,3,4]`` when + the callback is called, returning ``4``. + + .. describe:: ["method", object, data...] + + Similar to the previous case, but with data that is passed to + the method. E.g., + + .. code-block:: javascript + + ["slice",[1,2,3,4],1,3] + + would perform the equivalent of ``[1,2,3,4].slice(1,3)``, + which returns the array ``[2,3]`` as a result. + + .. describe:: {hook: fn, data: [...], object: this} + + Here the data for the callback are given in an associative + array of `key:value` pairs. The value of `hook` is the + function to call, the value of `data` is an array of the + arguments to pass to the function, and the value of `object` + is the object to use as `this` in the function call. The + specification need not include all three `key:value` pairs; any + that are missing get default values (a function that does + nothing, an empty array, and the window object, respectively). + + .. describe:: "string" + + This specifies a callback where the string is executed via an + ``eval()`` statement. The code is run in the global context, + so any variables or functions created by the string become + part of the global namespace. The return value is the value of + the last statement executed in the string. + + +Executing a Callback Object +=========================== + +The `Callback` object is itself a function, and calling that function +executes the callback. You can pass the callback additional +parameters, just as you can any function, and these will be added to +the callback function's argument list following any data that was +supplied at the time the callback was created. For example + +.. code-block:: javascript + + var f = function (x,y) {return x + " and " +y} + var cb = MathJax.Callback([f, "foo"]); + var result = cb("bar"); // sets result to "foo and bar" + +Usually, the callback is not executed by the code that creates it (as +it is in the example above), but by some other code that runs at a +later time at the completion of some other activity (say the loading +of a file), or in response to a user action. For example: + +.. code-block:: javascript + + function f(x) {alert("x contains "+x)}; + function DelayedX(time) { + var x = "hi"; + setTimeout(MathJax.Callback([f, x], time)); + } + +The ``DelayedX`` function arranges for the function ``f`` to be called at +a later time, passing it the value of a local variable, ``x``. Normally, +this would require the use of a closure, but that is not needed when a +`MathJax.Callback` object is used. + + +Callback Object Properties +-------------------------- + +.. describe:: hook + + The function to be called when the callback is executed. + +.. describe:: data + + An array containing the arguments to pass to the callback + function when it is executed. + +.. describe:: object + + The object to use as `this` during the call to the callback + function. + +.. describe:: called + + Set to ``true`` after the callback has been called, and undefined + otherwise. A callback will not be executed a second time unless + the callback's :meth:`reset()` method is called first, or its + ``autoReset`` property is set to ``true``. + +.. describe:: autoReset + + Set this to ``true`` if you want to be able to call the callback + more than once. (This is the case for signal listeners, for example). + +.. describe:: isCallback + + Always set to ``true`` (used to detect if an object is a callback + or not). + + +Callback Object Methods +----------------------- + +.. method:: reset() + + Clears the callback's `called` property. + + +MathJax.Callback Methods +------------------------ + +.. method:: Delay(time[, callback]) + + Waits for the specified time (given in milliseconds) and then + performs the callback. It returns the Callback object (or a blank + one if none was supplied). The returned callback structure has a + `timeout` property set to the result of the ``setTimeout()`` call + that was used to perform the wait so that you can cancel the wait, + if needed. Thus :meth:`MathJax.Callback.Delay()` can be used to + start a timeout delay that executes the callback if an action + doesn't occur within the given time (and if the action does occur, + the timeout can be canceled). Since + :meth:`MathJax.Callback.Delay()` returns a callback structure, it + can be used in a callback queue to insert a delay between queued + commands. + + :Parameters: + - **time** --- the amount of time to wait + - **callback** --- the callback specification + :Returns: the callback object + +.. method:: executeHooks(hooks[, data[,reset]]) + + Calls each callback in the `hooks` array (or the single hook if it + is not an array), passing it the arguments stored in the data + array. If `reset` is ``true``, then the callback's + :meth:`reset()` method will be called before each hook is + executed. If any of the hooks returns a `Callback` object, then + it collects those callbacks and returns a new callback that will + execute when all the ones returned by the hooks have been + completed. Otherwise, :meth:`MathJax.Callback.executeHooks()` + returns ``null``. + + :Parameters: + - **hooks** --- array of hooks to be called, or a hook + - **data** --- array of arguments to pass to each hook in turn + - **reset** --- ``true`` if the :meth:`reset()` method should be called + :Returns: callback that waits for all the hooks to complete, or ``null`` + +.. method:: Queue([callback,...]) + + Creates a `MathJax.CallBack.Queue` object and pushes the given + callbacks into the queue. See :ref:`Using Queues ` + for more details about MathJax queues. + + :Parameters: + - **callback** --- one or more callback specifications + :Returns: the `Queue` object + +.. method:: Signal(name) + + Looks for a named signal, creates it if it doesn't already exist, + and returns the signal object. See + :ref:`Using Signals ` for more details. + + :Parameters: + - **name** --- name of the signal to get or create + :Returns: the `Signal` object diff --git a/sagenb/data/mathjax/docs/html/_sources/api/elementjax.txt b/sagenb/data/mathjax/docs/html/_sources/api/elementjax.txt new file mode 100644 index 000000000..f7af083e7 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/api/elementjax.txt @@ -0,0 +1,125 @@ +.. _api-element-jax: + +**************************** +The MathJax.ElementJax Class +**************************** + +The element jax is the bridge between the input and output jax, and +contains the data produced by the input jax needed by the output jax +to display the results. It is tied to the individual `` + +where ``path-to-MathJax`` is the URL to the MathJax directory on your +server or hard disk. + +The remaining files are combined configuration files that include not just +configuration parameters but also the files that MathJax would need to +load for those configurations. This means MathJax will have to load fewer +files, and since each file access requires establishing connections over +the network, it can be better to load one larger file than several smaller +ones. See :ref:`Loading and Configuring MathJax ` for more +details about how to load configurations, and how to modify the parameters +for a configuration file. + +The following sections describe the contents of the combined configuration +files. Each comes in two flavors: a standard version and a "full" version. +The standard version simply defines the output processor(s) that are part +of the configuration, but doesn't load the code that implements the output +processor; the full version loads the complete output processors, so +everything that MathJax needs for the page should be loaded up front, and +there will be no delay once the page is ready to be processed. To obtain +the "full" version, add ``-full`` to the end of the configuration file +name. + + +The ``TeX-AMS-MML_HTMLorMML`` configuration file +================================================ + +This configuration file is the most general of the pre-defined +configurations. It loads all the important MathJax components, including +the TeX and MathML preprocessors and input processors, the AMSmath, +AMSsymbols, noErrors, and noUndefined TeX extensions, both the native +MathML and HTML-with-CSS output processor definitions, and the MathMenu and +MathZoom extensions. It is equivalent to the following configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + config: ["MMLorHTML.js"], + jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML"], + extensions: ["tex2jax.js","mml2jax.js","MathMenu.js","MathZoom.js"], + TeX: { + extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"] + } + }); + +In addition, it loads the mml Element Jax, the TeX and MathML input jax +main code (not just the definition files), as well as the `toMathML` +extension, which is used by the Show Source option in the MathJax +contextual menu. The full version also loads both the HTML-CSS and +NativeMML output jax main code, plus the HTML-CSS `mtable` extension, which +is normally loaded on demand. + +See the :ref:`tex2jax configuration ` section for +other configuration options for the ``tex2jax`` preprocessor, and the +:ref:`TeX input jax configuration ` section for options +that control the TeX input processor. +See the :ref:`mml2jax configuration ` section for +other configuration options for the ``mml2jax`` preprocessor, and the +:ref:`MathML input jax configuration ` section for +options that control the MathML input processor. +See :ref:`MathJax Output Formats ` for more +information on the NativeMML and HTML-CSS output processors. See the +:ref:`MMLorHTML configuration ` section for +details on the options that control the ``MMLorHTML`` configuration. + + +The ``TeX-AMS_HTML`` configuration file +================================================ + +This configuration file is for sites that only use TeX format for their +mathematics, and that want the output to be as close to TeX output as +possible. This uses the HTML-CSS output jax (even when the user's browser +understands MathML). The user can still use the MathJax contextual menu +to select the NativeMML output jax if they desire. + +This file includes all the important MathJax components for TeX input and +output, including the `tex2jax` preprocessor and TeX input jax, the +AMSmath, AMSsymbols, noErrors, and noUndefined TeX extensions, the +HTML-with-CSS output processor definition, and the MathMenu and MathZoom +extensions. It is equivalent to the following configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + jax: ["input/TeX","output/HTML-CSS"], + extensions: ["tex2jax.js","MathMenu.js","MathZoom.js"], + TeX: { + extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"] + } + }); + +In addition, it loads the mml Element Jax and the TeX input jax main code +(not just the definition file), as well as the `toMathML` extension, which +is used by the Show Source option in the MathJax contextual menu. The full +version also loads the HTML-CSS output jax main code, plus the HTML-CSS +`mtable` extension, which is normally loaded on demand. + +See the :ref:`tex2jax configuration ` section for +other configuration options for the ``tex2jax`` preprocessor, and the +:ref:`TeX input jax configuration ` section for options +that control the TeX input processor. +See :ref:`MathJax Output Formats ` for more +information on the HTML-CSS output processor. + + +The ``MML_HTMLorMML`` configuration file +================================================ + +This configuration file is for sites that only use MathML format for their +mathematics. It will use MathML output in browsers where that is +supported, and HTML-CSS output otherwise. The user can still use the +MathJax contextual menu to select the other output format if they desire. + +This file includes all the important MathJax components for MathML input +and output, including the `mml2jax` preprocessor and MathML input jax, the +NativeMML and HTML-CSS output processor definition files, and the MathMenu +and MathZoom extensions. It is equivalent to the following configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + config: ["MMLorHTML.js"], + jax: ["input/MathML","output/HTML-CSS","output/NativeMML"], + extensions: ["mml2jax.js","MathMenu.js","MathZoom.js"] + }); + +In addition, it loads the mml Element Jax and the MathML input jax main +code (not just the definition file), as well as the `toMathML` extension, +which is used by the Show Source option in the MathJax contextual menu. +The full version also loads both the HTML-CSS and NativeMML output jax main +code files, plus the HTML-CSS `mtable` extension, which is normally loaded +on demand. + +See the :ref:`mml2jax configuration ` section for +other configuration options for the ``mml2jax`` preprocessor, and the +:ref:`MathML input jax configuration ` section for +options that control the MathML input processor. +See :ref:`MathJax Output Formats ` for more +information on the NativeMML and HTML-CSS output processors. See the +:ref:`MMLorHTML configuration ` section for +details on the options that control the ``MMLorHTML`` configuration. + + +The ``Accessible`` configuration file +================================================ + +This configuration file is essentially the same as +``TeX-AMS-MML_HTMLorMML`` except that it includes options that are +designed for assistive technology, particularly for those with visual +challenges. It is equivalent to the following configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + config: ["MMLorHTML.js"], + jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML"], + extensions: ["tex2jax.js","mml2jax.js","MathMenu.js","MathZoom.js"], + TeX: { + extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"] + }, + NativeMML: { showMathMenuMSIE: false }, + menuSettings: { zoom: "Double-Click" }, + errorSettings: { message: ["[Math Error]"] } + }); + +This turns off the MathJax contextual menu for Internet Explorer, since +it can interfere with some screen readers. It also sets the zoom trigger +to double-click, so that readers can see a larger version of the +mathematics but double-clicking on any equation. + +In addition, it loads the mml Element Jax, the TeX and MathML input jax +main code (not just the definition files), as well as the `toMathML` +extension, which is used by the Show Source option in the MathJax +contextual menu. The full version also loads both the HTML-CSS and +NativeMML output jax main code, plus the HTML-CSS `mtable` extension, which +is normally loaded on demand. + diff --git a/sagenb/data/mathjax/docs/html/_sources/configuration.txt b/sagenb/data/mathjax/docs/html/_sources/configuration.txt new file mode 100644 index 000000000..290fbf48c --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/configuration.txt @@ -0,0 +1,454 @@ +.. _loading: + +******************************* +Loading and Configuring MathJax +******************************* + +You load MathJax into a web page by including its main JavaScript file +into the page. That is done via a `` + +where ``path-to-MathJax`` is replaced by the URL of the copy of MathJax +that you are loading. For example, if you are using the MathJax +distributed network service, the tag might be + +.. code-block:: html + + + +If you have installed MathJax yourself, ``path-to-MathJax`` will be the +location of MathJax on your server, or (if you are using MathJax locally +rather than through a server) the location of that directory on your hard +disk. For example, if the MathJax directory is at the top level of your +web server's directory hierarchy, you might use + +.. code-block:: html + + + +to load MathJax. + +If you install MathJax on a server in a domain that is different from the +one containing the page that will load MathJax, then there are issues +involved in doing so that you need to take into consideration. See the +:ref:`Notes About Shared Servers ` for more details. + +When you load MathJax, it is common to request a specific +configuration file as discussed in the section on :ref:`Using a +Configuration File ` below, and in more detail in the +:ref:`Common Configurations ` section. A +typical invocation of MathJax would be + +.. code-block:: html + + + +which loads MathJax with a configuration file that includes everything you +need in order to enter mathematics in either TeX, LaTeX, or MathML +notation, and produces output using MathML if the browser supports that, +or HTML-with-CSS otherwise. If you **don't** load an explicit +configuration file, you will need to include an in-line configuration +block in order to tell MathJax how to read and display the mathematics on +your pages. See the section below on :ref:`Using In-line Configuration +Options ` for details. + +It is best to load MathJax in the document's ```` block, but it +is also possible to load MathJax into the ```` section, if +needed. If you do this, load it as early as possible, as +MathJax will begin to load its components as soon as it is included in +the page, and that will help speed up the processing of the +mathematics on your page. MathJax does expect there to be a +```` section to the document, however, so be sure there is one +if you are loading MathJax in the ````. + +It is also possible to load MathJax dynamically after the page has +been prepared, for example, via a `GreaseMonkey +`_ script, or using a specially prepared +`bookmarklet `_. This is an +advanced topic, however; see :ref:`Loading MathJax Dynamically +` for more details. + +.. _loading-CDN: + +Loading MathJax from the CDN +============================ + +MathJax is now available as a web service from ``cdn.mathjax.org``, so you +can obtain MathJax from there without needing to install it on your own +server. The CDN is part of a distributed "cloud" network, so it is +handled by servers around the world. That means that you should get access +to a server geographically near you, for a fast, reliable connection. + +The CDN hosts the most current version of MathJax, as well as older +versions, so you can either link to a version that stays up-to-date as +MathJax is improved, or you can stay with one of the release versions so +that your pages always use the same version of MathJax. + +The URL that you use to obtain MathJax determines the version that you +get. The CDN has the following directory structure: + +.. code-block:: sh + + mathjax/ # project-name + 1.0-latest/ + 1.1-beta/ # temporary + 1.1-latest/ # the 1.1 release with any ciritical patches + ... + latest/ # the most current version (1.1-latest in this case) + +Each directory corresponds to an official MathJax release; however, +hotfixes (urgent bug fixes) will be applied in each release branch as +necessary, even if new releases are not prepared. In other words, +``1.1-latest`` will initially point to v1.1, but over time may be updated +with patches that would correspond to releases that might be numbers 1.1a, +1.1b, etc., even if such releases are not actually prepared for +distribution (they likely won't be). + +We may occasionally introduce directories for betas, as indicated above, +but they will be temporary, and will be removed after the official +release. + +To load from a particular release, use the directory for that release. +For example, + +.. code-block:: html + + + +will load the stable v1.1 version, even if we release v1.2 or other later +versions, while + +.. code-block:: html + + + +will always be the most current stable release, so it will go from v1.1 to +v1.2 automatically when that is released. Note that all the versions +available on the CDN are stable versions; the development version is not +hosted on the CDN. (If you wish to use the development version of +MathJax, you will need to install your own copy; see :ref:`Installing +and Testing MathJax ` for information on how to do that.) + +The use of ``cdn.mathjax.org`` is governed by its `terms of service +`_, so be +sure to read that before linking to the MathJax CDN server. + +If you wish to use the MathJax CDN but use your own configuration file +rather than one of the pre-defined ones, see the information at the end +of the :ref:`Using a configuration file ` section below. + + +Configuring MathJax +=================== + +There are two ways to configure MathJax: via a configuration file, or by +including configuration commands within the web page itself. These can be +used independently, or in combination. For example, you can load a main +pre-defined configuration file, but include in-line commands to +adjust the configuration to your needs. + +Note that you must use at least one of these two forms of configuration. +Unlike earlier versions of MathJax, version 1.1 does not load a default +configuration file. If you have been using version 1.0's +``config/MathJax.js`` for your configuration, you will need to load that +configuration file explicitly via a ``config`` parameter, as described +below. + + +.. _config-files: + +Using a configuration file +========================== + +The first way to configure MathJax is to use a configuration file. +MathJax comes with a number of pre-defined configuration files, which are +stored in the ``MathJax/config`` directory. Among these are the following + +.. describe:: default.js + + A file that contains nearly all the configuration options with comments + describing them, which you can edit to suit your needs. + +.. describe:: TeX-AMS-MML_HTMLorMML.js + + Allows math to be specified in TeX, LaTeX, or MathML notation, with the + `AMSmath` and `AMSsymbols` packages included, producing output using + MathML if the browser supports it, and HTML-with-CSS otherwise. + +.. describe:: TeX-AMS_HTML.js + + Allows math to be specified in TeX or LaTeX notation, with the + `AMSmath` and `AMSsymbols` packages included, and produces output + using the HTML-CSS output processor. + +.. describe:: MML_HTMLorMML.js + + Allows math to be specified using MathML notation, and produces MathML + output if the browser supports it, or HTML-CSS output otherwise. + +.. describe:: Accessible.js + + Essentially the same as ``TeX-AMS-MML_HTMLorMML``, but with some + settings specified to make MathJax work better with assistive + technology (for the visually impaired). This includes setting the + zoom trigger to be a double-click, and removing the MathMenu in + Internet Explorer (which can interfere with some screen readers). + +The first of these is a file that you can edit to suit your needs. It +contains nearly all the configuration options that MathJax allows, and has +comments explaining them. The others are what are called `combined +configuration files`, which not only configure MathJax, but also pre-load the +various files that the configuration requires. (The contents of these +files are explained in more detail in the `Common Configurations +`_ section.) + +Usually, MathJax loads its components only when they are needed, but each +component will require a separate file to be loaded, and that can cause +delays before the mathematics is displayed. The combined configuration +files load the majority of the needed files all as one large file, reducing +the number of network requests that are needed. That means you will +probably be getting the components that MathJax needs faster than you would +without the combined file, but you may be loading components that are never +actually used; that is the trade off. + +Each of the combined configuration files comes in two flavors: the ones +listed above, which only configure the output processors but don't include +the main code, and a "full" version, that also includes the complete +output processors. For example, with ``TeX-AMS_HTML.js`` and +``TeX-AMS_HTML-full.js``, the latter includes the complete HTML-CSS output +processor. The "full" configuration files are substantially larger (on +the order of 70KB), so you need to decide whether it is worth loading the +full configuration for your pages. + +If most of your pages include mathematics, then it is to your advantage to +load the full version, but if you are including MathJax in a theme file for +a blog or wiki that only includes mathematics occasionally, then perhaps it +is better to use the standard configuration instead, in which case the +output processors are only loaded when they are actually needed, saving the +loading of 70KB for pages that don't. Of course, if your server is +configured to compress the files it sends, the difference between the two +is considerably reduced. Furthermore, most browsers will cache the +javascript they receive, so the download cost should only occur on the +first page a user views, so it may be best to use the "full" version after +all. Note, however, that mobile devices sometimes have limits on the size +of files that they cache, so they may be forced to download the +configuration on every page. You need to keep these issues in mind as you +decide on which configuration to use. + +To load a configuration file, use ``config=filename`` (where ``filename`` +is one of the names above without the ``.js``) as a parameter to the URL of +the ``MathJax.js`` file. For example + +.. code-block:: html + + + +loads the ``config/TeX-AMS-MML_HTMLorMML.js`` configuration file from the +MathJax distributed network service. + +You can include more than one configuration file by separating them with +commas. For example, if you have a locally defined configuration file +called ``MathJax/config/local/local.js`` that modifies the settings for the +``TeX-AMS_HML`` configuration, defines some new TeX macros, and so on, you +can use + +.. code-block:: html + + + +to first load the main configuration, then the local modifications. + +You can also load MathJax from the MathJax CDN server but use a configuration from +your own local server: + +.. code-block:: html + + + +Because the ``local.js`` file is not on the CDN server, you must give +the complete URL to the local configuration file. Note that you also +have to edit the :meth:`loadComplete()` call that is at the bottom of +the configuration file to change it from +``[MathJax]/config/local/local.js`` to the complete URL as you give it +in the ``config`` parameter: + +.. code-block:: javascript + + MathJax.Ajax.loadComplete("http://myserver.com/MathJax/config/local/local.js"); + +That is because the ``[MathJax]`` in the original URL refers to the +root directory where ``MathJax.js`` was loaded, which is on the CDN, +not your local server, and so you need to tell MathJax the actual +location of your configuration file. + + +.. _inline-config: + +Using in-line configuration options +=================================== + +The second way to configure MathJax is through `in-line configuration`, +that puts the configuration options within the web page itself. This +process has changed in version 1.1 to make it compatible with HTML5. +Earlier versions of MathJax had in-line configuration included within the +content of the `` + + + + +.. _delayStartupUntil: + +Configuring MathJax after it is loaded +====================================== + +Because MathJax begins its configuration process immediately after it is +loaded (so that it can start loading files as quickly as it can), the +configuration blocks for MathJax must come before ``MathJax.js`` is loaded, +so they will be available to MathJax when it starts up. There are +situations, however, when you might want to put off configuring MathJax +until later in the page. + +One such situation is when you have a site that loads MathJax as part of a +theme or template, but want to be able to modify the configuration on +specific pages of the site. To accomplish this, you need to ask MathJax +to delay its startup configuration until some later time. MathJax uses +the ``delayStartupUntil`` parameter to control the timing of the startup +sequence. By default, it is set to ``none``, meaning there is no delay +and MathJax starts configuration right away. + +You can set ``delayStartupUntil=onload`` in order to prevent MathJax from +continuing its startup process until the page's onLoad handler fires. This +allows MathJax to find the ``text/x-mathjax-config`` blocks that occur +anywhere on the page, not just the ones that appear above the `` + +in your theme's header file, and + +.. code-block:: html + + + +in its footer, so that MathJax will delay setting up until the footer is +reached, but will not have to wait until images and other files are +loaded. If you have ``text/x-mathjax-config`` script tags within the main +body of the document, MathJax will read and process those before +continuing its startup. In this way you can use a default configuration +that can be modified on a page-by-page basis. + + +Details of the MathJax configuration process +============================================ + +Since there are a number of different ways to configure MathJax, it is +important to know how they interact. The configuration process is the +following: + +1. Process any configuration file explicitly specified as a script parameter. +2. Process the in-line script body (deprecated), if present. +3. If delayed startup is requested, wait for the indicated signal. +4. Process ``text/x-mathjax-config`` config blocks. +5. Process any config files queued in the configuration's `config` array + by earlier config code. + +Note that ``text/x-mathjax-config`` script blocks must either precede the +``MathJax.js`` script element, or startup must be delayed. Otherwise, blocks +that follow the ``MathJax.js`` script element may or may not be available +when MathJax runs, and browser-dependent erratic behavior will result. + + diff --git a/sagenb/data/mathjax/docs/html/_sources/dynamic.txt b/sagenb/data/mathjax/docs/html/_sources/dynamic.txt new file mode 100644 index 000000000..24b565fe4 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/dynamic.txt @@ -0,0 +1,167 @@ +.. _ajax-mathjax: + +*************************** +Loading MathJax Dynamically +*************************** + +MathJax is designed to be included via a `` + + +would load the ``jsMath2jax`` preprocessor, along with a configuration +file that processes TeX input and produces HTML-with-CSS output. + +There are a few configuration options for ``jsMath2jax``, which you +can find in the ``config/default.js`` file, or in the :ref:`jsMath +configuration options ` section. + +If you are generating your jsMath documents programmatically, it would be +better to convert from generating the jsMath ```` and ``
`` tags +to producing the corresponding MathJax `` + +represents an in-line equation in TeX notation, and + +.. code-block:: html + + + +is a displayed TeX equation. + +Alternatively, using MathML notation, you could use + +.. code-block:: html + + + +for in-line math, or + +.. code-block:: html + + + +for displayed equations in MathML notation. +As other input jax are created, they will use other types to identify +the mathematics they can process. + +Page authors can use one of MathJax's preprocessors to convert from +math delimiters that are more natural for the author to type (e.g., +TeX math delimiters like ``$$...$$``) to MathJax's `` + + would display "[math]" in place of the math until MathJax is able + to typeset it. + + See also the ``preJax`` and ``postJax`` comments above. + +.. describe:: showProcessingMessages: true + + This value controls whether the `Processing Math: nn%` messages are + displayed in the lower left-hand corner. Set to ``false`` to + prevent those messages (though file loading and other messages + will still be shown). + +.. describe:: messageStyle: "normal" + + This value controls the verbosity of the messages in the lower + left-hand corner. Set it to ``"none"`` to eliminate all messages, + or set it to ``"simple"`` to show "Loading..." and "Processing..." + rather than showing the full file name or the percentage of the + mathematics processed. + +.. describe:: displayAlign: "center" and displayIndent: "0em" + + These two parameters control the alignment and shifting of + displayed equations. The first can be ``"left"``, ``"center"``, + or ``"right"``, and determines the alignment of displayed + equations. When the alignment is not ``"center"``, the second + determines an indentation from the left or right side for the + displayed equations. + + +.. describe:: delayStartupUntil: "none" + + Normally MathJax will perform its startup commands (loading of + configuration, styles, jax, and so on) as soon as it can. If you + expect to be doing additional configuration on the page, however, + you may want to have it wait until the page's onload handler is + called. If so, set this to ``"onload"``. You can also set this to + ``"configured"``, in which case, MathJax will delay its startup until + you explicitly call :meth:`MathJax.Hub.Configured()`. See + :ref:`Configuring MathJax after it is loaded ` for more + details. + +.. describe:: skipStartupTypeset: false + + Normally MathJax will typeset the mathematics on the page as soon + as the page is loaded. If you want to delay that process, in + which case you will need to call :meth:`MathJax.Hub.Typeset()` + yourself by hand, set this value to ``true``. + +.. describe:: elements: [] + + This is a list of DOM element ID's that are the ones to process for + mathematics when any of the Hub typesetting calls (Typeset, Process, + Update, etc.) are called with no element specified, and during + MathJax's initial typesetting run when it starts up. This lets you + restrict the processing to particular containers rather than scanning + the entire document for mathematics. If none are supplied, the complete + document is processed. + +.. describe:: menuSettings: { ... } + + This block contains settings for the mathematics contextual menu + that act as the defaults for the user's settings in that menu. + The possible values are: + + .. describe:: zoom: "none" + + This indicates when typeset mathematics should be zoomed. It + can be set to ``"None"``, ``"Hover"``, ``"Click"``, or + ``"Double-Click"`` to set the zoom trigger. + + .. describe:: CTRL: false, ALT: false, CMD: false, Shift: false + + These values indicate which keys must be pressed in order for + math zoom to be triggered. For example, if ``CTRL`` is set to + ``true`` and ``zoom`` is ``"Click"``, then math will be zoomed + only when the user control-clicks on mathematics (i.e., clicks + while holding down the `CTRL` key). If more than one is + ``true``, then all the indicated keys must be pressed for the + zoom to occur. + + .. describe:: zscale: "200%" + + This is the zoom scaling factor, and it can be set to any of + the values available in the `Zoom Factor` menu of the + `Settings` submenu of the contextual menu. + + .. describe:: context: "MathJax" + + This controls what contextual menu will be presented when a + right click (on a PC) or CTRL-click (on the Mac) occurs over a + typeset equation. When set to ``"MathJax"``, the MathJax + contextual menu will appear; when set to ``"Browser"``, the + browser's contextual menu will be used. For example, in + Internet Explorer with the MathPlayer plugin, if this is set + to ``"Browser"``, you will get the MathPlayer contextual menu + rather than the MathJax menu. + + There are also settings for ``format``, ``renderer``, and ``font``, + but these are maintained by MathJax and should not be set by the + page author. + +.. describe:: errorSettings: { ... } + + This block contains settings that control how MathJax responds to + unexpected errors while processing mathematical equations. Rather + than simply crash, MathJax can report an error and go on. The + options you can set include: + + .. describe:: message: ["[Math Processing Error]"] + + This is an HTML snippet that will be inserted at the location + of the mathematics for any formula that causes MathJax to + produce an internal error (i.e., an error in the MathJax code + itself). See the :ref:`description of HTML snippets + ` for details on how to represent HTML code in + this way. + + .. describe:: style: {color:"#CC0000", "font-style":"italic"} + + This is the CSS style description to use for the error + messages produced by internal MathJax errors. See the section + on :ref:`CSS style objects ` for details on + how these are specified in JavaScript. + +.. describe:: v1.0-compatible: true + + This controls whether MathJax issues the warning about not having an + explicit configuration in the event that the `jax` array is empty + after configuration is complete. If you really intend that array to + be empty, set this flag to ``false``. Note that setting this to false + does **not** cause a default configuration file to be loaded. diff --git a/sagenb/data/mathjax/docs/html/_sources/options/index.txt b/sagenb/data/mathjax/docs/html/_sources/options/index.txt new file mode 100644 index 000000000..9d68d1b55 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/options/index.txt @@ -0,0 +1,91 @@ +.. _configuration: + +********************* +Configuration Objects +********************* + +The various components of MathJax, including its input and output +processors, its preprocessors, its extensions, and the MathJax core, +all can be configured through the ``config/default.js`` file, or via a +:meth:`MathJax.Hub.Config()` call (indeed, if you look closely, you +will see that ``config/default.js`` is itself one big call to +:meth:`MathJax.Hub.Config()`). Anything that is in +``config/default.js`` can be included in-line to configure MathJax. + +The structure that you pass to :meth:`MathJax.Hub.Config()` is a +JavaScript object that includes name-value pairs giving the names of +parameters and their values, with pairs separated by commas. Be +careful not to include a comma after the last value, however, as some +browsers (namely Internet Explorer) will fail to process the +configuration if you do. + +The MathJax components, like the TeX input processor, have their own +sections in the configuration object, labeled by the component name, +and using a configuration object as its value. The object is itself +a configuration object made up of name-value pairs that give the +configuration options for the component. + +For example, + +.. code-block:: javascript + + MathJax.Hub.Config({ + showProcessingMessages: false, + jax: ["input/TeX", "output/HTML-CSS"], + TeX: { + TagSide: "left", + Macros: { + RR: '{\\bf R}', + bold: ['{\\bf #1}',1] + } + } + }); + +is a configuration that includes two settings for the MathJax Hub (one +for `showProcessingMessages` and one for the `jax` array), and a +configuration object for the TeX input processor. The latter includes +a setting for the TeX input processor's `TagSide` option (to set tags +on the left rather than the right) and a setting for `Macros`, which +defines new TeX macros (in this case, two macros, one called ``\RR`` +that produces a bold "R", and one called ``\bold`` that puts is +argument in bold face). + +The ``config/default.js`` file is another example that shows nearly +all the configuration options for all of MathJax's components. + + +Configuration Options by Component +================================== + +The individual options are explained in the following sections, which +are categorized by the component they affect. + +.. toctree:: + :maxdepth: 1 + + The core options + +.. toctree:: + :maxdepth: 1 + + The tex2jax preprocessor options + The mml2jax preprocessor options + The jsMath2jax preprocessor options + +.. toctree:: + :maxdepth: 1 + + The TeX input processor options + The MathML input processor options + The HTML-CSS output processor options + The NativeMML output processor options + The MMLorHTML configuration options + +.. toctree:: + :maxdepth: 1 + + The MathMenu options + The MathZoom options + The FontWarnings options + + diff --git a/sagenb/data/mathjax/docs/html/_sources/options/jsMath2jax.txt b/sagenb/data/mathjax/docs/html/_sources/options/jsMath2jax.txt new file mode 100644 index 000000000..daf04ce29 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/options/jsMath2jax.txt @@ -0,0 +1,47 @@ +.. _configure-jsMath2jax: + +*************************** +The jsMath2jax Preprocessor +*************************** + +The options below control the operation of the `jsMath2jax` +preprocessor that is run when you include ``"jsMath2jax.js"`` in the +`extensions` array of your configuration. They are listed with their +default values. To set any of these options, include a ``jsMath2jax`` +section in your :meth:`MathJax.Hub.Config()` call. For example + +.. code-block:: javascript + + MathJax.Hub.Config({ + jsMath2jax: { + preview: "none" + } + }); + +would set the ``preview`` parameter to ``"none"``. + +.. describe:: preview: "TeX" + + This controls whether `jsMath2jax` inserts ``MathJax_Preview`` spans + to make a preview available, and what preview to use, when it + locates in-line or display mathematics in the page. The default + is ``"TeX"``, which means use the TeX code as the preview (which + will be visible until it is processed by MathJax). Set to + ``"none"`` to prevent previews from being inserted (the math + will simply disappear until it is typeset). Set to an array + containing the description of an HTML snippet in order to use the + same preview for all equations on the page. + + Examples: + + .. code-block:: javascript + + preview: ["[math]"], // insert the text "[math]" as the preview + + .. code-block:: javascript + + preview: [["img",{src: "/images/mypic.jpg"}]], // insert an image as the preview + + See the :ref:`description of HTML snippets ` for + details on how to represent HTML code in this way. + diff --git a/sagenb/data/mathjax/docs/html/_sources/options/mml2jax.txt b/sagenb/data/mathjax/docs/html/_sources/options/mml2jax.txt new file mode 100644 index 000000000..eff414341 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/options/mml2jax.txt @@ -0,0 +1,48 @@ +.. _configure-mml2jax: + +************************ +The mml2jax Preprocessor +************************ + +The options below control the operation of the `mml2jax` preprocessor +that is run when you include ``"mml2jax.js"`` in the `extensions` array +of your configuration. They are listed with their default values. To +set any of these options, include a ``mml2jax`` section in your +:meth:`MathJax.Hub.Config()` call. For example + +.. code-block:: javascript + + MathJax.Hub.Config({ + mml2jax: { + preview: "none" + } + }); + +would set the ``preview`` parameter to ``"none"``. + +.. describe:: preview: "alttext" + + This controls whether `mml2jax` inserts ``MathJax_Preview`` spans + to make a preview available, and what preview to use, when it + locates mathematics on the page. The default is ``"alttext"``, + which means use the ```` tag's ``alttext`` attribute as the + preview (visible until it is processed by MathJax), if the tag has + one. Set it to ``"none"`` to prevent the previews from being + inserted (the math will simply disappear until it is typeset). + Set it to an array containing the description of an HTML snippet + in order to use the same preview for all equations on the page. + + Examples: + + .. code-block:: javascript + + preview: ["[math]"], // insert the text "[math]" as the preview + + .. code-block:: javascript + + preview: [["img",{src: "/images/mypic.jpg"}]], // insert an image as the preview + + See the :ref:`description of HTML snippets ` for + details on how to represent HTML code in this way. + + diff --git a/sagenb/data/mathjax/docs/html/_sources/options/tex2jax.txt b/sagenb/data/mathjax/docs/html/_sources/options/tex2jax.txt new file mode 100644 index 000000000..93031f243 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/options/tex2jax.txt @@ -0,0 +1,132 @@ +.. _configure-tex2jax: + +************************ +The tex2jax Preprocessor +************************ + +The options below control the operation of the `tex2jax` preprocessor +that is run when you include ``"tex2jax.js"`` in the `extensions` array +of your configuration. They are listed with their default values. To +set any of these options, include a ``tex2jax`` section in your +:meth:`MathJax.Hub.Config()` call. For example + +.. code-block:: javascript + + MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ['$','$'], ['\\(','\\)'] ] + } + }); + +would set the ``inlineMath`` delimiters for the `tex2jax` +preprocessor. + + +.. describe:: inlineMath: [['\\\(','\\\)']] + + Array of pairs of strings that are to be used as in-line math + delimiters. The first in each pair is the initial delimiter and + the second is the terminal delimiter. You can have as many pairs + as you want. For example, + + .. code-block:: javascript + + inlineMath: [ ['$','$'], ['\\(','\\)'] ] + + would cause `tex2jax` to look for ``$...$`` and ``\(...\)`` as + delimiters for inline mathematics. (Note that the single dollar + signs are not enabled by default because they are used too + frequently in normal text, so if you want to use them for math + delimiters, you must specify them explicitly.) + + Note that the delimiters can't look like HTML tags (i.e., can't + include the less-than sign), as these would be turned into tags by + the browser before MathJax has the chance to run. You can only + include text, not tags, as your math delimiters. + +.. describe:: displayMath: [ ['$$','$$'], ['\\\[','\\\]'] ] + + Array of pairs of strings that are to be used as delimiters for + displayed equations. The first in each pair is the initial + delimiter and the second is the terminal delimiter. You can have + as many pairs as you want. + + Note that the delimiters can't look like HTML tags (i.e., can't + include the less-than sign), as these would be turned into tags by + the browser before MathJax has the chance to run. You can only + include text, not tags, as your math delimiters. + +.. describe:: processEscapes: false + + When set to ``true``, you may use ``\$`` to represent a literal + dollar sign, rather than using it as a math delimiter. When + ``false``, ``\$`` will not be altered, and the dollar sign may be + considered part of a math delimiter. Typically this is set to + ``true`` if you enable the ``$ ... $`` in-line delimiters, so you + can type ``\$`` and `tex2jax` will convert it to a regular dollar + sign in the rendered document. + +.. describe:: processEnvironments: true + + When ``true``, `tex2jax` looks not only for the in-line and + display math delimiters, but also for LaTeX environments + (``\begin{something}...\end{something}``) and marks them for + processing by MathJax. When ``false``, LaTeX environments will + not be processed outside of math mode. + +.. describe:: preview: "TeX" + + This controls whether `tex2jax` inserts ``MathJax_Preview`` spans + to make a preview available, and what preview to use, when it + locates in-line or display mathematics in the page. The default + is ``"TeX"``, which means use the TeX code as the preview (which + will be visible until it is processed by MathJax). Set to + ``"none"`` to prevent previews from being inserted (the math + will simply disappear until it is typeset). Set to an array + containing the description of an HTML snippet in order to use the + same preview for all equations on the page. + + Examples: + + .. code-block:: javascript + + preview: ["[math]"], // insert the text "[math]" as the preview + + .. code-block:: javascript + + preview: [["img",{src: "/images/mypic.jpg"}]], // insert an image as the preview + + See the :ref:`description of HTML snippets ` for + details on how to represent HTML code in this way. + +.. describe:: skipTags: ["script","noscript","style","textarea","pre","code"] + + This array lists the names of the tags whose contents should not + be processed by `tex2jax` (other than to look for ignore/process + classes as listed below). You can add to (or remove from) this + list to prevent MathJax from processing mathematics in specific + contexts. + +.. describe:: ignoreClass: "tex2jax_ignore" + + This is the class name used to mark elements whose contents should + not be processed by tex2jax (other than to look for the + ``processClass`` pattern below). Note that this is a regular + expression, and so you need to be sure to quote any `regexp` + special characters. The pattern is automatically preceeded by + ``'(^| )('`` and followed by ``')( |$)'``, so your pattern will + have to match full words in the class name. Assigning an element + this class name will prevent `tex2jax` from processing its + contents. + +.. describe:: processClass: "tex2jax_process" + + This is the class name used to mark elements whose contents + *should* be processed by `tex2jax`. This is used to turn on + processing within tags that have been marked as ignored or skipped + above. Note that this is a regular expression, and so you need to + be sure to quote any `regexp` special characters. The pattern is + automatically preceeded by ``'(^| )('`` and followed by ``')( + |$)'``, so your pattern will have to match full words in the class + name. Use this to restart processing within an element that has + been marked as ignored above. diff --git a/sagenb/data/mathjax/docs/html/_sources/output.txt b/sagenb/data/mathjax/docs/html/_sources/output.txt new file mode 100644 index 000000000..2affa7edd --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/output.txt @@ -0,0 +1,159 @@ +.. _output-formats: + +********************** +MathJax Output Formats +********************** + +Currently, MathJax can render math in two ways: + +- Using HTML-with-CSS to lay out the mathematics, or +- Using a browser's native MathML support. + +These are implemented by the `HTML-CSS` and `NativeMML` output +processors. + +If you are using one of the combined configuration files, then this will +select one of these output processors for you. If the config file ends in +``_HTML``, then it is the HTML-CSS output processor, and if it ends in +``_HTMLorMML``, then the NativeMML output processor will be chosen if the +browser supports it, otherwise HTML-CSS output will be used. + +If you are performing your own in-line or file-based configuration, you +select which one you want to use by including either ``"output/HTML-CSS"`` +or ``"output/NativeMML"`` in the `jax` array of your MathJax configuration. +For example + +.. code-block:: javascript + + jax: ["input/TeX","output/HTML-CSS"] + +would specify TeX input and HTML-with-CSS output for the mathematics +in your document. + +The HTML-CSS output processor produces high-quality output in all +major browsers, with results that are consistent across browsers and +operating systems. This is MathJax's primary output mode. Its major +advantage is its quality and consistency; its drawback is that it is +slower than the NativeMML mode at rendering the mathematics. (The +HTML-CSS processor has not yet been optimized for speed, so you can +expect some improvement in the future. Note that IE8 in "IE8 +standards mode" is an order of magnitude slower than any other browser +when processing math through the HTML-CSS output processor; see +:ref:`HTML-CSS with IE8 ` below for some strategies +to deal with this.) + +The NativeMML output processor uses the browser's internal MathML support (if +any) to render the mathematics. Currently, Firefox has native support +for MathML, and IE has the `MathPlayer plugin +`_ for rendering +MathML. Opera has some built-in support for MathML that works well +with simple equations, but fails with more complex formulas, so we +don't recommend using the NativeMML output processor with Opera. Safari, +Chrome, Konqueror, and most other browsers don't support MathML +natively, but may in the future, since MathML is part of the HTML5 +specification. + +The advantage of the NativeMML output Processor is its speed, since native +MathML support is much faster than using complicated HTML and CSS to lay +out mathematics, as the HTML-CSS output processor does. The disadvantage +is that you are dependent on the browser's MathML implementation for your +rendering, and these vary in quality of output and completeness of +implementation. MathJax may rely on features that are not available in +some renderers (for example, Firefox's MathML support does not implement +some of the named widths, such as ``negativethinmathspace``). The results +using the NativeMML output processor may have spacing or other rendering +problems that are outside of MathJax's control. + +Automatic Selection of the Output Processor +=========================================== + +Since not all browsers support MathML natively, it would be unwise to +choose the NativeMML output processor unless you are sure of your +audience's browser capabilities. MathJax can help with that, however, +since a number of its combined configuration files will select NativeMML +output when the browser supports it, and HTML-CSS output otherwise. These +are the configuration files that end in ``_HTMLorMML``. + +If you are doing your own configuration, there is a special configuration +file that you can include that will choose between NativeMML and HTML-CSS +depending on the browser in use. To invoke it, add ``"MMLorHTML.js"`` to +your configuration's `config` array, and **do not** include an output +processor in your `jax` array; MathJax will fill that in for you based on +the abilities of your user's browser. + +.. code-block:: javascript + + config: ["MMLorHTML.js"], + jax: ["input/TeX"] + +You can customize which choice to make on a browser-by-browser basis +or a global basis. See the ``config/default.js`` file or the +:ref:`Configuring MMLorHTML ` section for further +details. As an example, this configuration tells MathJax to use HTML-CSS +output rather than native MathML support for Firefox: + +.. code-block:: html + + + + +With this configuration, MathML output will be used only for IE with the +MathPlayer plugin (Firefox is the only other browser to have native MathML +support that is sufficient for use with MathJax). Note, however, that a +user can employ the MathJax contextual menu to select the other renderer if +he or she wishes. + +MathJax produces MathML that models the underlying mathematics as best +it can, rather than using complicated hacks to improve output for a +particular MathML implementation. When you make the choice to use the +NativeMML output processor, you are making a trade-off: gaining speed +at the expense of quality and reliability, a decision that should not +be taken lightly. + + +.. _html-css-with-ie8: + +HTML-CSS with IE8 +================= + +Internet Explorer 8 has at least eight different rendering modes in which +it can operate, and that are triggered by the `DOCTYPE` of the document +being viewed. Its "quirks" mode is its fastest mode, and its "IE8 +standards" mode is its slowest. This is the mode triggered by strict HTML +document types, and since most modern content management systems now +include a `DOCTYPE` that activates "standards" mode, IE8 will operate in +its slowest manner. This is particularly apparent when MathJax is used, +since IE8 in standards mode runs 20 to 30 times slower than it does in its +IE7 emulation mode, and 60 times slower than in quirks mode, on the sample +equations page in ``test/sample.html``. + +Most users find this speed reduction unacceptable when there is much +mathematics on the page. To overcome this problem, you may wish to +tell IE8 to use its IE7 emulation mode rather than its IE8 standards +mode. You can accomplish this by including the line + +.. code-block:: html + + + +at the top of the ```` section of your HTML documents. This +lets you keep the strict `DOCTYPE` for validation purposes, while +still managing to get reasonable performance from Internet Explorer +8. Note that this line must come at the beginning of the ````, +before any stylesheets or other content are loaded. + +Alternatively, you can use the `MMLorHTML` configuration file +described above to select NativeMML output when possible, and request +that your users install the `MathPlayer plugin +`_, which will render +the mathematics much more quickly. + +It appears that IE9 in IE9 standards mode may perform better than IE8, but +since IE9 is still in beta testing as of this writing, we have yet to see +exactly what the performance of MathJax in IE9 will be like. diff --git a/sagenb/data/mathjax/docs/html/_sources/platforms/index.txt b/sagenb/data/mathjax/docs/html/_sources/platforms/index.txt new file mode 100644 index 000000000..4976868c8 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/platforms/index.txt @@ -0,0 +1,78 @@ +.. _platforms: + +====================================== +Using MathJax in popular web platforms +====================================== + +MathJax plugins are available for a growing number of wikis, blogs, and +other content-management systems. These include WordPress, Blogger, +Sphinx, TiddlyWiki, and MathEL-Wiki. A list of these is available in the +`web applications and integrations +`_ list of the +`MathJax web site `_. + +If the program you are using is not one of these, you may still be able to +use MathJax by modifying the theme or template for your wiki or blog. + + +Using MathJax in a Theme File +============================= + +Most web-based content-management systems include a theme or template +layer that determines how the pages look, and that loads information +common to all pages. Such theme files provide one popular way to +include MathJax in your web templates in the absence of +MathJax-specific plugins for the system you are using. To take +advantage of this approach, you will need access to your theme files, +which probably means you need to be an administrator for the site; if +you are not, you may need to have an administrator do these steps for +you. + +To enable MathJax in your web platform, add the line:: + + + +either just before the ```` tag in your theme file, or at the end of +the file if it contains no ````. + +The theme files for various popular platforms are: + + `WordPress `_ + ``wp-content/themes/[current_theme]/header.php`` + + `Movable Type `_ + ``[current_theme_templates]/html_head.mhtml`` + + `Drupal `_ + ``themes/[current_theme]/page.tpl.php`` + + `Joomla `_ + ``templates/[current_theme]/index.php`` + + `MediaWiki `_ + ``skins/[current_skin].php`` + + `TiddlyWiki `_ + ``*.php`` (Whatever you call your TiddlyWiki php file) + + `Moodle `_ + ``theme/[current_theme]/header.html`` + +Keep in mind that this will enable MathJax for your current +theme/template only. If you change themes or update your theme, you +will have to repeat these steps. + + +Instructions for Specific Platforms +=================================== + +Some programs, such as WordPress and Moveable Type, allow you to edit +template files from inside their administrator interfaces. Specific +instructions for these are given via the links below. + +.. toctree:: + :maxdepth: 1 + + Wordpress + Movable Type diff --git a/sagenb/data/mathjax/docs/html/_sources/platforms/movable-type.txt b/sagenb/data/mathjax/docs/html/_sources/platforms/movable-type.txt new file mode 100644 index 000000000..65182fc01 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/platforms/movable-type.txt @@ -0,0 +1,38 @@ +.. _platform-movable-type: + +============================= +Using MathJax in Movable Type +============================= + +1. Open Moveable Type Admin interface for the site on which you want to enable + MathJax. + +2. In the dashboard menu on the left, open up the Design menu. This + should show you the templates you are currently using on the site. + + .. image:: ../images/mt_menu.png + + +3. Scroll down to the Template Modules section in the template list + and open the `HTML Head` template. + + .. image:: ../images/mt_templates.png + +4. At the end of the file, insert + + .. code-block:: html + + + + to load MathJax from our distributed network service. + + .. image:: ../images/mt_head.png + +5. Save the file. This will enable MathJax with both TeX and MathML + input, so you should be able to start adding mathematical content to + your pages. If you need to adjust the configuration, see + :ref:`Configuring MathJax ` for more details. + + diff --git a/sagenb/data/mathjax/docs/html/_sources/platforms/wordpress.txt b/sagenb/data/mathjax/docs/html/_sources/platforms/wordpress.txt new file mode 100644 index 000000000..25b380f2e --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/platforms/wordpress.txt @@ -0,0 +1,42 @@ +.. _platform-wordpress: + +=============================== +Installing MathJax in WordPress +=============================== + +Note that there is a `WordPress plugin for MathJax +`_, so that may be a +better choice than editing the theme directly. + +1. Open the WordPress admin interface. + +2. In the administration menu on the left, open up the `Appearance` + menu and click on the `Editor` submenu option. + + .. image:: ../images/wp_menu.png + + When you click on the editor option, WordPress should open up the + first stylesheet in the current theme. + +3. In the template list on the right side of the page, click on the + header file (it should be ``header.php``). + + .. image:: ../images/wp_templates.png + + This part depends slightly on how your current theme is written. + In the ``header.php`` file, look for the end-of-head tag, + ````. If you find it, insert + + .. code-block:: html + + + + just before that. Otherwise, insert the same code at the very + bottom of the file. + +4. Save the file. This will enable MathJax with both TeX and MathML + input, so you should be able to start adding mathematical content to + your pages. If you need to adjust the configuration, see + :ref:`Configuring MathJax ` for more details. diff --git a/sagenb/data/mathjax/docs/html/_sources/queues.txt b/sagenb/data/mathjax/docs/html/_sources/queues.txt new file mode 100644 index 000000000..289118049 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/queues.txt @@ -0,0 +1,254 @@ +.. _using-queues: + +************ +Using Queues +************ + +The `callback queue` is one of MathJax's main tools for synchronizing +its actions, both internally, and with external programs, like +javascript code that you may write as part of dynamic web pages. +Because many actions in MathJax (like loading files) operate +asynchronously, MathJax needs a way to coordinate those actions so +that they occur in the right order. The +`MathJax.Callback.Queue` object provides that mechanism. + +A `callback queue` is a list of commands that will be performed one at +a time, in order. If the return value of one of the commands is a +`Callback` object, processing is suspended until that callback is +called, and then processing of the commands is resumed. In this way, +if a command starts an asynchronous operation like loading a file, it +can return the callback for that file-load operation and the queue +will wait until the file has loaded before continuing. Thus a queue +can be used to guarantee that commands don't get performed until other +ones are known to be finished, even if those commands usually operate +asynchronously. + + +Constructing Queues +=================== + +A queue is created via the :meth:`MathJax.Callback.Queue()` command, +which returns a `MathJax.Callback.Queue` object. The queue +itself consists of a series of commands given as callback +specifications (see :ref:`Using Callbacks ` for +details on callbacks), which allow you to provide functions (together +with their arguments) to be executed. You can provide the collection +of callback specifications when the queue is created by passing them +as arguments to :meth:`MathJax.Callback.Queue()`, or you can create an +empty queue to which commands are added later. Once a +`MathJax.Callback.Queue` object is created, you can push +additional callbacks on the end of the queue; if the queue is empty, +the command will be performed immediately, while if the queue is +waiting for another command to complete, the new command will be +queued for later processing. + +For example, + +.. code-block:: javascript + + function f(x) {alert(x)} + var queue = MathJax.Callback.Queue([f, 15], [f, 10], [f, 5]); + queue.Push([f, 0]); + +would create a queue containing three commands, each calling the +function ``f`` with a different input, that are performed in order. A +fourth command is then added to the queue, to be performed after the +other three. In this case, the result will be four alerts, the first +with the number 15, the second with 10, the third with 5 and the +fourth with 0. Of course ``f`` is not a function that operates +asynchronously, so it would have been easier to just call ``f`` four +times directly. The power of the queue comes from calling commands +that could operate asynchronously. For example: + +.. code-block:: javascript + + function f(x) {alert(x)} + MathJax.Callback.Queue( + [f, 1], + ["Require", MathJax.Ajax, "[MathJax]/extensions/AMSmath.js"], + [f, 2] + ); + +Here, the command ``MathJax.Ajax.Require("[MathJax]/extensions/AMSmath.js")`` +is queued between two calls to ``f``. The first call to ``f(1)`` will +be made immediately, then the :meth:`MathJax.Ajax.Require` statement +will be performed. Since the ``Require`` method loads a file, it +operates asynchronously, and its return value is a `MathJax.Callback` +object that will be called when the file is loaded. The call to +``f(2)`` will not be made until that callback is performed, +effectively synchronizing the second call to ``f`` with the completion +of the file loading. This is equivalent to + +.. code-block:: javascript + + f(1); + MathJax.Ajax.Require("[MathJax]/extensions/AMSmath.js", [f, 2]); + +since the ``Require()`` command allows you to specify a (single) +callback to be performed on the completion of the file load. Note, +however, that the queue could be used to synchronize several file +loads along with multiple function calls, so is more flexible. + +For example, + +.. code-block:: javascript + + MathJax.Callback.Queue( + ["Require", MathJax.Ajax, "[MathJax]/extensions/AMSmath.js"], + [f, 1], + ["Require", MathJax.Ajax, "[MathJax]/config/local/AMSmathAdditions.js"], + [f, 2] + ); + +would load the AMSmath extension, then call ``f(1)`` then load the +local AMSmath modifications, and then call ``f(2)``, with each action +waiting for the previous one to complete before being performed +itself. + + +Callbacks versus Callback Specifications +======================================== + +If one of the callback specifications is an actual callback object +itself, then the queue will wait for that action to be performed +before proceeding. For example, + +.. code-block:: javascript + + MathJax.Callback.Queue( + [f, 1], + MathJax.Ajax.Require("[MathJax]/extensions/AMSmath.js"), + [f, 2], + ); + +starts the loading of the AMSmath extension before the queue is +created, and then creates the queue containing the call to ``f``, the +callback for the file load, and the second call to ``f``. The queue +performs ``f(1)``, waits for the file load callback to be called, and +then calls ``f(2)``. The difference between this and the second +example above is that, in this example the file load is started before +the queue is even created, so the file is potentially loaded and +executed before the call to ``f(1)``, while in the example above, the +file load is guaranteed not to begin until after ``f(1)`` is executed. + +As a further example, consider + +.. code-block:: javascript + + MathJax.Callback.Queue( + MathJax.Ajax.Require("[MathJax]/extensions/AMSmath.js"), + [f, 1], + MathJax.Ajax.Require("[MathJax]/config/local/AMSmathAdditions.js"), + [f, 2] + ); + +in comparison to the example above that uses ``["Require", +MathJax.Ajax, "[MathJax]/extensions/AMSmath.js"]`` and ``["Require", +MathJax.Ajax, "[MathJax]/config/local/AMSmathAdditions.js"]`` instead. In that +example, ``AMSmath.js`` is loaded, then ``f(1)`` is called, then the +local additions are loaded, then ``f(2)`` is called. + +Here, however, both file loads are started before the queue is +created, and are operating in parallel (rather than sequentially as in +the earlier example). It is possible for the loading of the local +additions to complete before the AMSmath extension is loaded in this +case, which was guaranteed **not** to happen in the other example. +Note, however, that ``f(1)`` is guaranteed not to be performed until +after the AMSmath extensions load, and ``f(2)`` will not occur until +after both files are loaded. + +In this way, it is possible to start asynchronous loading of several +files simultaneously, and wait until all of them are loaded (in +whatever order) to perform some command. For instance, + +.. code-block:: javascript + + MathJax.Callback.Queue( + MathJax.Ajax.Require("file1.js"), + MathJax.Ajax.Require("file2.js"), + MathJax.Ajax.Require("file3.js"), + MathJax.Ajax.Require("file4.js"), + [f, "all done"] + ); + +starts four files loading all at once, and waits for all four to +complete before calling ``f("all done")``. The order in which they +complete is immaterial, and they all are being requested +simultaneously. + + +The MathJax Processing Queue +============================ + +MathJax uses a queue stored as ``MathJax.Hub.queue`` to regulate its +own actions so that they operate in the right order even when some +of them include asynchronous operations. You can take advantage of +that queue when you make calls to MathJax methods that need to be +synchronized with the other actions taken by MathJax. It may not +always be apparent, however, which methods fall into that category. + +The main source of asynchronous actions in MathJax is the loading of +external files, so any action that may cause a file to be loaded may +act asynchronously. Many important actions do so, including some that +you might not expect; e.g., typesetting mathematics can cause files to +be loaded. This is because some TeX commands, for example, are rare +enough that they are not included in the core TeX input processor, but +instead are defined in extensions that are loaded automatically when +needed. The typesetting of an expression containing one of these TeX +commands can cause the typesetting process to be suspended while the +file is loaded, and then restarted when the extension has become +available. + +As a result, any call to :meth:`MathJax.Hub.Typeset()` (or +:meth:`MathJax.Hub.Process()`, or :meth:`MathJax.Hub.Update()`, etc.) +could return long before the mathematics is actually typeset, and the +rest of your code may run before the mathematics is available. If you +have code that relies on the mathematics being visible on screen, you +will need to break that out into a separate operation that is +synchronized with the typesetting via the MathJax queue. + +Furthermore, your own typesetting calls may need to wait for file loading +to occur that is already underway, so even if you don't need to access +the mathematics after it is typeset, you may still need to queue the +typeset command in order to make sure it is properly synchronized with +*previous* typeset calls. For instance, if an earlier call +started loading an extension and you start another typeset call before +that extension is fully loaded, MathJax's internal state may be in +flux, and it may not be prepared to handle another typeset operation +yet. This is even more important if you are using other libraries +that may call MathJax, in which case your code may not be aware of the +state that MathJax is in. + +For these reasons, it is always best to perform typesetting operations +through the MathJax queue, and the same goes for any other action +that could cause files to load. A good rule of thumb is that, if a +MathJax function includes a callback argument, that function may operate +asynchronously; you should use the MathJax queue to perform it and +any actions that rely on its results. + +To place an action in the MathJax queue, use the +:meth:`MathJax.Hub.Queue()` command. For example + +.. code-block:: javascript + + MathJax.Hub.Queue(["Typeset",MathJax.Hub,"MathDiv"]); + +would queue the command ``MathJax.Hub.Typeset("MathDiv")``, causing +the contents of the DOM element with `id` equal to ``MathDiv`` to be +typeset. + +One of the uses of the MathJax queue is to allow you to synchronize an +action with the startup process for MathJax. If you want to have a +function performed after MathJax has become completely set up (and +performed its initial typesetting of the page), you can push it onto +the ``MathJax.Hub.queue`` so that it won't be performed until MathJax +finishes everything it has queued when it was loaded. For example, + +.. code-block:: html + + + diff --git a/sagenb/data/mathjax/docs/html/_sources/signals.txt b/sagenb/data/mathjax/docs/html/_sources/signals.txt new file mode 100644 index 000000000..7b385c884 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/signals.txt @@ -0,0 +1,161 @@ +.. _using-signals: + +************* +Using Signals +************* + +Because much of MathJax operates asynchronously, it is important for +MathJax to be able to indicate to other components operating on the +page that certain actions have been taken. For example, as MathJax is +starting up, it loads external files such as its configuration files +and the various input and output :term:`jax` that are used on the +page. This means that MathJax may not be ready to run until well +after the `` + +into the ```` block of your document. (It can also go in the +```` if necessary, but the head is to be preferred.) This will +load the latest version of MathJax from the distributed server, and +configure it to recognize mathematics in both TeX and MathML notation, +and ask it to generate its output using MathML if the browser supports +that, and otherwise use HTML-with-CSS to display the mathematics. +This is the most general configuration, and should suffice for most +people's needs. Other configurations are available, however, and you +can also provide additional configuration parameters to taylor one of +the configurations to your needs. More details can be found in the +:ref:`Loading and Configuring MathJax ` instructions. + +The use of ``cdn.mathjax.org`` is governed by its `terms of service +`_, so be +sure to read that before linking to the MathJax CDN server. + +To see how to enter mathematics in your web pages, see `Putting +mathematics in a web page`_ below. + + +Installing Your Own Copy of MathJax +=================================== + +We recommend using the CDN service if you can, but you can also install +MathJax on your own server, or locally on your own hard disk. To do +so you will need to do the following things: + +1. Obtain a copy of MathJax and make it available on your server. + +2. Configure MathJax to suit the needs of your site. + +3. Link MathJax into the web pages that are to include mathematics. + +4. Put mathematics into your web pages so that MathJax can display + it. + + +Obtaining and Installing MathJax +-------------------------------- + +The easiest way to set up MathJax is to obtain the v1.1 archive from +the `MathJax download page `_ (you +should obtain a file named something like +``mathjax-MathJax-v1.1-X-XXXXXXXX.zip``, where the X's are +random-looking letters and numbers). This archive includes both the +MathJax code and the MathJax webfonts, so it is the only file you +need. Note that this is different from earlier releases, which had +the fonts separate from the rest of the code. + +Unpack the archive and place the resulting MathJax folder onto your +web server at a convenient location where you can include it into your +web pages. For example, making ``MathJax`` a top-level directory on +your server would be one natural way to do this. That would let you +refer to the main MathJax file via the URL ``/MathJax/MathJax.js`` +from within any page on your server. + +Note: While this is the easiest way to set up MathJax initially, there +is a better way to do it if you want to be able to keep your copy of +MathJax up-to-date. That uses the `Git `_ version +control system, and is described in the :ref:`Installing MathJax +` document. If you prefer using `Subversion +`_, you can also use that to get a copy +of MathJax (see :ref:`Installing MathJax via SVN +`). + +Once you have MathJax set up on your server, you can test it using the +files in the ``MathJax/test`` directory. Load them in your browser +using its web address rather than opening them locally (i.e., use an +``http://`` URL rather than a ``file://`` URL). When you view the +``index.html`` file, after a few moments you should see a message +indicating that MathJax appears to be working. If not, check that the +files have been transferred to the server completely and that the +permissions allow the server to access the files and folders that are +part of the MathJax directory. (Be sure to verify the MathJax +folder's permissions as well.) Check the server log files for any +errors that pertain to the MathJax installation; this may help locate +problems in the permission or locations of files. + + +Configuring your copy of MathJax +-------------------------------- + +When you include MathJax into your web pages as described below, it +will load the file ``config/TeX-AMS-MML_HTMLorMML.js`` (i.e., the file +named ``TeX-AMS-MML_HTMLorMML.js`` in the ``config`` folder of the +main ``MathJax`` folder). This file preloads all the most commonly-used +components of MathJax, allowing it to process mathematics that is in +the TeX or LaTeX format, or in MathML notation. It will produce +output in MathML form if the user's browser supports that, and will use +HTML-with-CSS to render the mathematics otherwise. + +There are a number of other prebuilt configuration files that you can +choose from as well, or you could use the ``config/default.js`` file and +customize the settings yourself. The combined configuration files are +described more fully in :ref:`Common Configurations +`, and the configuration options are described in +:ref:`Configuration Options `. + +Note: The configuration process has changed in MathJax v1.1, so if you have +existing pages that use MathJax, you may need to modify the tag that +loads MathJax so that it conforms with the new configuration process. +See :ref:`Installing and Configuring MathJax ` for more +details. + + +Linking your copy of MathJax into a web page +-------------------------------------------- + +You can include MathJax in your web page by putting + +.. code-block:: html + + + +in your document's ```` block. Here, ``path-to-MathJax`` should +be replaced by the URL for the main MathJax directory, so if you have +put the ``MathJax`` directory at the top level of you server's web +site, you could use + +.. code-block:: html + + + +to load MathJax in your page. For example, your page could look like + +.. code-block:: html + + + + ... + + + + ... + + + +If you have installed MathJax on a server that is in a different +domain from the one serving the page that loads MathJax, be sure to +read the :ref:`Notes About Shared Servers ` for +more details. In that case, you may wish to consider using the +:ref:`MathJax CDN ` rather than installing your own copy +of MathJax. + + +Putting mathematics in a web page +================================= + +To put mathematics in your web page, you can use either :term:`TeX` +and :term:`LaTeX` notation or :term:`MathML` notation or both within +the same page; the MathJax configuration tells MathJax which you want +to use, and how you plan to indicate the mathematics when you are +using TeX notation. The configuration file used in the examples above +tells MathJax to look for both TeX and MathML notation within your +pages. These two formats are described in more detail below. + + +.. _tex-and-latex-input: + +TeX and LaTeX input +------------------- + +Mathematics that is written in :term:`TeX` or :term:`LaTeX` format is +indicated using *math delimiters* that surround the mathematics, +telling MathJax what part of your page represents mathematics and what +is normal text. There are two types of equations: ones that occur +within a paragraph (in-line mathematics), and larger equations that +appear separated from the rest of the text on lines by themselves +(displayed mathematics). + +The default math delimiters are ``$$...$$`` and ``\[...\]`` for +displayed mathematics, and ``\(...\)`` for in-line mathematics. Note +in particular that the ``$...$`` in-line delimiters are **not** used +by default. That is because dollar signs appear too often in +non-mathematical settings, which could cause some text to be treated +as mathematics unexpectedly. For example, with single-dollar +delimiters, "... the cost is $2.50 for the first one, and $2.00 for +each additional one ..." would cause the phrase "2.50 for the first +one, and" to be treated as mathematics since it falls between dollar +signs. For this reason, if you want to use single-dollars for in-line +math mode, you must enable that explicitly in your configuration: + +.. code-block:: html + + + + +See the ``config/default.js`` file, or the :ref:`tex2jax configuration +options ` page, for additional configuration +parameters that you can specify for the `tex2jax` preprocessor, +which is the component of MathJax that identifies TeX notation within +the page. See the :ref:`TeX and LaTeX ` page for +more on MathJax's support for TeX. + +Here is a complete sample page containing TeX mathematics (also available +in the ``test/sample-tex.html`` file): + +.. code-block:: html + + + + + MathJax TeX Test Page + + + + + When $a \ne 0$, there are two solutions to \(ax^2 + bx + c = 0\) and they are + $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$ + + + +Since the TeX notation is part of the text of the page, there are some +caveats that you must keep in mind when you enter your mathematics. +In particular, you need to be careful about the use of less-than +signs, since those are what the browser uses to indicate the start of +a tag in HTML. Putting a space on both sides of the less-than sign +should be sufficient, but see :ref:`TeX and LaTeX support +` for details. + +There are a number of extensions for the TeX input processor that are +loaded by the ``TeX-AMS-MML_HTMLorMML`` configuration. These include: + +- `TeX/AMSmath.js`, which defines the AMS math environments and + macros, + +- `TeX/AMSsymbols.js`, which defines the macros for the symbols in + the `msam10` and `msbm10` fonts, + +- `TeX/noErrors.js`, which shows the original TeX code rather than + an error message when there is a problem processing the TeX, and + +- `TeX/noUndefined.js`, which prevents undefined macros from + producing an error message, and instead shows the macro name in red. + +Other extensions may be loaded automatically when needed. + + +MathML input +------------ + +For mathematics written in :term:`MathML` notation, you mark your +mathematics using standard ```` tags, where ```` represents displayed mathematics and ```` or just ```` represents in-line mathematics. + +Note that this will work in HTML files, not just XHTML files (MathJax +works with both), and that the web page need not be served with any +special MIME-type. Also note that, unless you are using XHTML rather +than HTML, you should not include a namespace prefix for your +```` tags; for example, you should not use ```` except +in a file where you have tied the ``m`` namespace to the MathML DTD. + +Here is a complete sample page containing MathML mathematics (also +available in the ``test/sample-mml.html`` file): + +.. code-block:: html + + + + + MathJax MathML Test Page + + + + + When a0, + there are two solutions to + ax2 + + bx + + c = 0 + and they are + + x = + + + + + b + ± + + b2 + + 4ac + + + 2a + + + . + + + + + +When entering MathML notation in an HTML page (rather than an XHTML +page), you should **not** use self-closing tags, but should use explicit +open and close tags for all your math elements. For example, you +should use + +.. code-block:: html + + + +rather than ```` in an HTML document. If you use the +self-closing form, some browsers will not build the math tree properly, and +MathJax will receive a damaged math structure, which will not be rendered +as the original notation would have been. Unfortunately, there is nothing +MathJax can do about that, since the browser has incorrectly interpreted +the tags long before MathJax has a chance to work with them. + +The component of MathJax that recognizes MathML notation is called the +`mml2jax` extension, and it has only a few configuration options; see the +``config/default.js`` file or the :ref:`mml2jax configuration options +` page for more details. See the :ref:`MathML +` page for more on MathJax's MathML support. + + +Where to go from here? +====================== + +If you have followed the instructions above, you should now have +MathJax installed and configured on your web server, and you should be +able to use it to write web pages that include mathematics. At this +point, you can start making pages that contain mathematical content! + +You could also read more about the details of how to :ref:`customize +MathJax `. + +If you are trying to use MathJax in blog or wiki software or in some +other content-management system, you might want to read about :ref:`using +MathJax in popular platforms `. + +If you are working on dynamic pages that include mathematics, you +might want to read about the :ref:`MathJax Application Programming +Interface ` (its API), so you know how to include +mathematics in your interactive pages. + +If you are having trouble getting MathJax to work, you can read more +about :ref:`installing MathJax `, or :ref:`loading and +configuring MathJax `. + +Finally, if you have questions or comments, or want to help support +MathJax, you could visit the :ref:`MathJax community forums +` or the :ref:`MathJax bug tracker +`. diff --git a/sagenb/data/mathjax/docs/html/_sources/startup.txt b/sagenb/data/mathjax/docs/html/_sources/startup.txt new file mode 100644 index 000000000..c157d0fd6 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/startup.txt @@ -0,0 +1,160 @@ +.. _startup-sequence: + +**************************** +The MathJax Startup Sequence +**************************** + +When you load ``MathJax.js`` into a web page, it configures itself and +immediately begins loading the components it needs. As MathJax starts +up, it uses its :ref:`signaling mechanism ` +to indicate the actions that it is taking so that MathJax extensions +can tie into the initialization process, and so other applications +within the page can synchronize their actions with MathJax. + +The startup process performs the following actions: + +- It creates the ``MathJax`` variable, and defines the following + subsystems: + + - ``MathJax.Object`` (object-oriented programming model) + - ``MathJax.Callback`` (callbacks, signals, and queues) + - ``MathJax.Ajax`` (file-loading and style-creation code) + - ``MathJax.HTML`` (support code for creating HTML elements) + - ``MathJax.Message`` (manages the menu line in the lower left) + - ``MathJax.Hub`` (the core MathJax functions) + +.. + +- It then creates the base ``MathJax.InputJax``, + ``MathJax.OutputJax``, and ``MathJax.ElementJax`` objects. + +.. + +- MathJax sets up the default configuration, and creates the + signal objects used for the startup and hub actions. + +.. + +- MathJax locates the `` + + +will load the `autobold` TeX extension in addition to those already +included in the ``TeX-AMS_HTML`` configuration file. + +The main extensions are described below. + +AMSmath and AMSsymbols +---------------------- + +The `AMSmath` extension implements AMS math environments and macros, and +the `AMSsymbols` extension implements macros for accessing the AMS symbol +fonts. These are already included in the combined configuration files that +load the TeX input processor. To use these extensions in your own +configurations, add them to the `extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["AMSmath.js", "AMSsymbols.js", ...] + } + +See the list of control sequences at the end of this document for details +about what commands are implemented in these extensions. + +If you are not using one of the combined configuration files, the `AMSmath` +extension will be loaded automatically when you first use one of the math +environments it defines, but you will have to load it explicitly if you +want to use the other macros that it defines. The `AMSsymbols` extension +is not loaded automatically, so you must include it explicitly if you want +to use the macros it defines. + + +Autobold +-------- + +The `autobold` extension adds ``\boldsymbol{...}`` around mathematics that +appears in a section of an HTML page that is in bold. + +.. code-block:: javascript + + TeX: { + extensions: ["autobold.js"] + } + +This extension is **not** loaded by the combined configuration files. + + +noErrors +-------- + +The `noErrors` extension prevents TeX error messages from being +displayed and shows the original TeX code instead. You can configure +whether the dollar signs are shown or not for in-line math, and +whether to put all the TeX on one line or use multiple lines (if the +original text contained line breaks). + +This extension is loaded by all the combined configuration files that +include the TeX input processor. To enable the `noErrors` extension in +your own configuration, or to modify its parameters, add something like the +following to your :meth:`MathJax.Hub.Config()` call: + +.. code-block:: javascript + + TeX: { + extensions: ["noErrors.js"], + noErrors: { + inlineDelimiters: ["",""], // or ["$","$"] or ["\\(","\\)"] + multiLine: true, // false for TeX on all one line + style: { + "font-family": "serif", + "font-size": "80%", + "color": "black", + "border": "1px solid" + // add any additional CSS styles that you want + // (be sure there is no extra comma at the end of the last item) + } + } + } + +Display-style math is always shown in multi-line format, and without +delimiters, as it will already be set off in its own centered +paragraph, like standard display mathematics. + +The default settings place the invalid TeX in a multi-line box with a +black border. If you want it to look as though the TeX is just part of +the paragraph, use + +.. code-block:: javascript + + TeX: { + noErrors: { + inlineDelimiters: ["$","$"], // or ["",""] or ["\\(","\\)"] + multiLine: false, + style: { + "font-size": "normal", + "border": "" + } + } + } + +You may also wish to set the font family, as the default is "serif". + + +noUndefined +----------- + +The `noUndefined` extension causes undefined control sequences to be +shown as their macro names rather than generating error messages. So +``$X_{\xxx}$`` would display as an "X" with a subscript consisting of the +text ``\xxx`` in red. + +This extension is loaded by all the combined configuration files that +include the TeX input processor. To enable the `noUndefined` extension +in your own configuration, or to modify its parameters, add something like +the following to your :meth:`MathJax.Hub.Config()` call: + +.. code-block:: javascript + + TeX: { + extensions: ["noUndefined.js"], + noUndefined: { + attributes: { + mathcolor: "red", + mathbackground: "#FFEEEE", + mathsize: "90%" + } + } + } + +The ``attributes`` setting specifies attributes to apply to the +``mtext`` element that encodes the name of the undefined macro. The +default values set ``mathcolor`` to ``"red"``, but do not set any +other attributes. This example sets the background to a light pink, +and reduces the font size slightly. + + +Unicode support +--------------- + +The `unicode` extension implements a ``\unicode{}`` extension to TeX +that allows arbitrary unicode code points to be entered in your +mathematics. You can specify the height and depth of the character +(the width is determined by the browser), and the default font from +which to take the character. + +Examples: + +.. code-block:: latex + + \unicode{65} % the character 'A' + \unicode{x41} % the character 'A' + \unicode[.55,0.05]{x22D6} % less-than with dot, with height .55em and depth 0.05em + \unicode[.55,0.05][Geramond]{x22D6} % same taken from Geramond font + \unicode[Garamond]{x22D6} % same, but with default height, depth of .8em,.2em + +Once a size and font are provided for a given unicode point, they need +not be specified again in subsequent ``\unicode{}`` calls for that +character. + +The result of ``\unicode{...}`` will have TeX class `ORD` (i.e., it +will act like a variable). Use ``\mathbin{...}``, ``\mathrel{...}``, +etc., to specify a different class. + +Note that a font list can be given in the ``\unicode{}`` macro, but +Internet Explorer has a buggy implementation of the ``font-family`` +CSS attribute where it only looks in the first font in the list that +is actually installed on the system, and if the required glyph is not +in that font, it does not look at later fonts, but goes directly to +the default font as set in the `Internet-Options/Font` panel. For +this reason, the default font list for the ``\unicode{}`` macro is +``STIXGeneral, 'Arial Unicode MS'``, so if the user has :term:`STIX` +fonts, the symbol will be taken from that (almost all the symbols are +in `STIXGeneral`), otherwise MathJax tries `Arial Unicode MS`. + +The `unicode` extension is loaded automatically when you first use the +``\unicode{}`` macro, so you do not need to add it to the `extensions` +array. You can configure the extension as follows: + +.. code-block:: javascript + + TeX: { + unicode: { + fonts: "STIXGeneral, 'Arial Unicode MS'" + } + } + + +.. _tex-commands: + +Supported LaTeX commands +======================== + +This is a long list of the TeX macros supported by MathJax. If the +macro is defined in an extension, the name of the extension follows +the macro name. If the extension is in brackets, the extension will +be loaded automatically when the macro or environment is first used. + +Symbols +------- + +.. code-block:: latex + + # + % + & + ^ + _ + { + } + ~ + + \ (backslash-space) + \! + \# + \$ + \% + \& + \, + \: + \; + \> + \\ + \_ + \{ + \| + \} + +A +- + +.. code-block:: latex + + \above + \abovewithdelims + \acute + \aleph + \alpha + \amalg + \And + \angle + \approx + \approxeq AMSsymbols + \arccos + \arcsin + \arctan + \arg + \array + \Arrowvert + \arrowvert + \ast + \asymp + \atop + \atopwithdelims + +B +- + +.. code-block:: latex + + \backepsilon AMSsymbols + \backprime AMSsymbols + \backsim AMSsymbols + \backsimeq AMSsymbols + \backslash + \backslash + \bar + \barwedge AMSsymbols + \Bbb + \Bbbk AMSsymbols + \because AMSsymbols + \begin + \beta + \beth AMSsymbols + \between AMSsymbols + \bf + \Big + \big + \bigcap + \bigcirc + \bigcup + \Bigg + \bigg + \Biggl + \biggl + \Biggm + \biggm + \Biggr + \biggr + \Bigl + \bigl + \Bigm + \bigm + \bigodot + \bigoplus + \bigotimes + \Bigr + \bigr + \bigsqcup + \bigstar AMSsymbols + \bigtriangledown + \bigtriangleup + \biguplus + \bigvee + \bigwedge + \binom AMSmath + \blacklozenge AMSsymbols + \blacksquare AMSsymbols + \blacktriangle AMSsymbols + \blacktriangledown AMSsymbols + \blacktriangleleft AMSsymbols + \blacktriangleright AMSsymbols + \bmod + \boldsymbol [boldsymbol] + \bot + \bowtie + \Box AMSsymbols + \boxdot AMSsymbols + \boxed AMSmath + \boxminus AMSsymbols + \boxplus AMSsymbols + \boxtimes AMSsymbols + \brace + \bracevert + \brack + \breve + \buildrel + \bullet + \Bumpeq AMSsymbols + \bumpeq AMSsymbols + +C +- + +.. code-block:: latex + + \cal + \cap + \Cap AMSsymbols + \cases + \cdot + \cdotp + \cdots + \centerdot AMSsymbols + \cfrac AMSmath + \check + \checkmark AMSsymbols + \chi + \choose + \circ + \circeq AMSsymbols + \circlearrowleft AMSsymbols + \circlearrowright AMSsymbols + \circledast AMSsymbols + \circledcirc AMSsymbols + \circleddash AMSsymbols + \circledR AMSsymbols + \circledS AMSsymbols + \class [HTML] non-standard + \clubsuit + \colon + \color + \complement AMSsymbols + \cong + \coprod + \cos + \cosh + \cot + \coth + \cr + \csc + \cssId [HTML] non-standard + \cup + \Cup AMSsymbols + \curlyeqprec AMSsymbols + \curlyeqsucc AMSsymbols + \curlyvee AMSsymbols + \curlywedge AMSsymbols + \curvearrowleft AMSsymbols + \curvearrowright AMSsymbols + +D +- + +.. code-block:: latex + + \dagger + \daleth AMSsymbols + \dashleftarrow AMSsymbols + \dashrightarrow AMSsymbols + \dashv + \dbinom AMSmath + \ddagger + \ddddot AMSmath + \dddot AMSmath + \ddot + \ddots + \DeclareMathOperator AMSmath + \def [newcommand] + \deg + \Delta + \delta + \det + \dfrac AMSmath + \diagdown AMSsymbols + \diagup AMSsymbols + \diamond + \Diamond AMSsymbols + \diamondsuit + \digamma AMSsymbols + \dim + \displaylines + \displaystyle + \div + \divideontimes AMSsymbols + \dot + \doteq + \Doteq AMSsymbols + \doteqdot AMSsymbols + \dotplus AMSsymbols + \dots + \dotsb + \dotsc + \dotsi + \dotsm + \dotso + \doublebarwedge AMSsymbols + \doublecap AMSsymbols + \doublecup AMSsymbols + \Downarrow + \downarrow + \downdownarrows AMSsymbols + \downharpoonleft AMSsymbols + \downharpoonright AMSsymbols + +E +- + +.. code-block:: latex + + \ell + \emptyset + \end + \enspace + \epsilon + \eqalign + \eqalignno + \eqcirc AMSsymbols + \eqsim AMSsymbols + \eqslantgtr AMSsymbols + \eqslantless AMSsymbols + \equiv + \eta + \eth AMSsymbols + \exists + \exp + +F +- + +.. code-block:: latex + + \fallingdotseq AMSsymbols + \fbox + \Finv AMSsymbols + \flat + \forall + \frac + \frac AMSmath + \frak + \frown + +G +- + +.. code-block:: latex + + \Game AMSsymbols + \Gamma + \gamma + \gcd + \ge + \genfrac AMSmath + \geq + \geqq AMSsymbols + \geqslant AMSsymbols + \gets + \gg + \ggg AMSsymbols + \gggtr AMSsymbols + \gimel AMSsymbols + \gnapprox AMSsymbols + \gneq AMSsymbols + \gneqq AMSsymbols + \gnsim AMSsymbols + \grave + \gt + \gt + \gtrapprox AMSsymbols + \gtrdot AMSsymbols + \gtreqless AMSsymbols + \gtreqqless AMSsymbols + \gtrless AMSsymbols + \gtrsim AMSsymbols + \gvertneqq AMSsymbols + +H +- + +.. code-block:: latex + + \hat + \hbar + \hbox + \hdashline + \heartsuit + \hline + \hom + \hookleftarrow + \hookrightarrow + \hphantom + \href [HTML] + \hskip + \hslash AMSsymbols + \hspace + \Huge + \huge + \idotsint AMSmath + +I +- + +.. code-block:: latex + + \iff + \iiiint AMSmath + \iiint + \iint + \Im + \imath + \impliedby AMSsymbols + \implies AMSsymbols + \in + \inf + \infty + \injlim AMSmath + \int + \intercal AMSsymbols + \intop + \iota + \it + +J +- + +.. code-block:: latex + + \jmath + \Join AMSsymbols + +K +- + +.. code-block:: latex + + \kappa + \ker + \kern + +L +- + +.. code-block:: latex + + \Lambda + \lambda + \land + \langle + \LARGE + \Large + \large + \LaTeX + \lbrace + \lbrack + \lceil + \ldotp + \ldots + \le + \leadsto AMSsymbols + \left + \Leftarrow + \leftarrow + \leftarrowtail AMSsymbols + \leftharpoondown + \leftharpoonup + \leftleftarrows AMSsymbols + \Leftrightarrow + \leftrightarrow + \leftrightarrows AMSsymbols + \leftrightharpoons AMSsymbols + \leftrightsquigarrow AMSsymbols + \leftroot + \leftthreetimes AMSsymbols + \leq + \leqalignno + \leqq AMSsymbols + \leqslant AMSsymbols + \lessapprox AMSsymbols + \lessdot AMSsymbols + \lesseqgtr AMSsymbols + \lesseqqgtr AMSsymbols + \lessgtr AMSsymbols + \lesssim AMSsymbols + \lfloor + \lg + \lgroup + \lhd AMSsymbols + \lim + \liminf + \limits + \limsup + \ll + \llap + \llcorner AMSsymbols + \Lleftarrow AMSsymbols + \lll AMSsymbols + \llless AMSsymbols + \lmoustache + \ln + \lnapprox AMSsymbols + \lneq AMSsymbols + \lneqq AMSsymbols + \lnot + \lnsim AMSsymbols + \log + \Longleftarrow + \longleftarrow + \Longleftrightarrow + \longleftrightarrow + \longmapsto + \Longrightarrow + \longrightarrow + \looparrowleft AMSsymbols + \looparrowright AMSsymbols + \lor + \lower + \lozenge AMSsymbols + \lrcorner AMSsymbols + \Lsh AMSsymbols + \lt + \lt + \ltimes AMSsymbols + \lVert AMSmath + \lvert AMSmath + \lvertneqq AMSsymbols + +M +- + +.. code-block:: latex + + \maltese AMSsymbols + \mapsto + \mathbb + \mathbf + \mathbin + \mathcal + \mathchoice [mathchoice] + \mathclose + \mathfrak + \mathinner + \mathit + \mathop + \mathopen + \mathord + \mathpunct + \mathrel + \mathring AMSmath + \mathrm + \mathscr + \mathsf + \mathstrut + \mathtt + \matrix + \max + \mbox + \measuredangle AMSsymbols + \mho AMSsymbols + \mid + \min + \mit + \mkern + \mod + \models + \moveleft + \moveright + \mp + \mskip + \mspace + \mu + \multimap AMSsymbols + +N +- + +.. code-block:: latex + + \nabla + \natural + \ncong AMSsymbols + \ne + \nearrow + \neg + \negmedspace AMSmath + \negthickspace AMSmath + \negthinspace + \neq + \newcommand [newcommand] + \newenvironment [newcommand] + \newline + \nexists AMSsymbols + \ngeq AMSsymbols + \ngeqq AMSsymbols + \ngeqslant AMSsymbols + \ngtr AMSsymbols + \ni + \nLeftarrow AMSsymbols + \nleftarrow AMSsymbols + \nLeftrightarrow AMSsymbols + \nleftrightarrow AMSsymbols + \nleq AMSsymbols + \nleqq AMSsymbols + \nleqslant AMSsymbols + \nless AMSsymbols + \nmid AMSsymbols + \nobreakspace AMSmath + \nolimits + \normalsize + \not + \notag [AMSmath] + \notin + \nparallel AMSsymbols + \nprec AMSsymbols + \npreceq AMSsymbols + \nRightarrow AMSsymbols + \nrightarrow AMSsymbols + \nshortmid AMSsymbols + \nshortparallel AMSsymbols + \nsim AMSsymbols + \nsubseteq AMSsymbols + \nsubseteqq AMSsymbols + \nsucc AMSsymbols + \nsucceq AMSsymbols + \nsupseteq AMSsymbols + \nsupseteqq AMSsymbols + \ntriangleleft AMSsymbols + \ntrianglelefteq AMSsymbols + \ntriangleright AMSsymbols + \ntrianglerighteq AMSsymbols + \nu + \nVDash AMSsymbols + \nVdash AMSsymbols + \nvDash AMSsymbols + \nvdash AMSsymbols + \nwarrow + +O +- + +.. code-block:: latex + + \odot + \oint + \oldstyle + \Omega + \omega + \omicron + \ominus + \operatorname AMSmath + \oplus + \oslash + \otimes + \over + \overbrace + \overleftarrow + \overleftrightarrow + \overline + \overrightarrow + \overset + \overwithdelims + \owns + +P +- + +.. code-block:: latex + + \parallel + \partial + \perp + \phantom + \Phi + \phi + \Pi + \pi + \pitchfork AMSsymbols + \pm + \pmatrix + \pmb + \pmod + \pod + \Pr + \prec + \precapprox AMSsymbols + \preccurlyeq AMSsymbols + \preceq + \precnapprox AMSsymbols + \precneqq AMSsymbols + \precnsim AMSsymbols + \precsim AMSsymbols + \prime + \prod + \projlim AMSmath + \propto + \Psi + \psi + +Q +- + +.. code-block:: latex + + \qquad + \quad + +R +- + +.. code-block:: latex + + \raise + \rangle + \rbrace + \rbrack + \rceil + \Re + \renewcommand [newcommand] + \require non-standard + \restriction AMSsymbols + \rfloor + \rgroup + \rhd AMSsymbols + \rho + \right + \Rightarrow + \rightarrow + \rightarrowtail AMSsymbols + \rightharpoondown + \rightharpoonup + \rightleftarrows AMSsymbols + \rightleftharpoons + \rightleftharpoons AMSsymbols + \rightrightarrows AMSsymbols + \rightsquigarrow AMSsymbols + \rightthreetimes AMSsymbols + \risingdotseq AMSsymbols + \rlap + \rm + \rmoustache + \root + \Rrightarrow AMSsymbols + \Rsh AMSsymbols + \rtimes AMSsymbols + \Rule non-standard + \rVert AMSmath + \rvert AMSmath + +S +- + +.. code-block:: latex + + \S + \scr + \scriptscriptstyle + \scriptsize + \scriptstyle + \searrow + \sec + \setminus + \sf + \sharp + \shortmid AMSsymbols + \shortparallel AMSsymbols + \shoveleft AMSmath + \shoveright AMSmath + \sideset AMSmath + \Sigma + \sigma + \sim + \simeq + \sin + \sinh + \skew + \small + \smallfrown AMSsymbols + \smallint + \smallsetminus AMSsymbols + \smallsmile AMSsymbols + \smash + \smile + \Space + \space + \spadesuit + \sphericalangle AMSsymbols + \sqcap + \sqcup + \sqrt + \sqsubset AMSsymbols + \sqsubseteq + \sqsupset AMSsymbols + \sqsupseteq + \square AMSsymbols + \stackrel + \star + \strut + \style [HTML] non-stanard + \subset + \Subset AMSsymbols + \subseteq + \subseteqq AMSsymbols + \subsetneq AMSsymbols + \subsetneqq AMSsymbols + \substack AMSmath + \succ + \succapprox AMSsymbols + \succcurlyeq AMSsymbols + \succeq + \succnapprox AMSsymbols + \succneqq AMSsymbols + \succnsim AMSsymbols + \succsim AMSsymbols + \sum + \sup + \supset + \Supset AMSsymbols + \supseteq + \supseteqq AMSsymbols + \supsetneq AMSsymbols + \supsetneqq AMSsymbols + \surd + \swarrow + +T +- + +.. code-block:: latex + + \tag [AMSmath] + \tan + \tanh + \tau + \tbinom AMSmath + \TeX + \text + \textbf + \textit + \textrm + \textstyle + \tfrac AMSmath + \therefore AMSsymbols + \Theta + \theta + \thickapprox AMSsymbols + \thicksim AMSsymbols + \thinspace + \tilde + \times + \tiny + \Tiny non-standard + \to + \top + \triangle + \triangledown AMSsymbols + \triangleleft + \trianglelefteq AMSsymbols + \triangleq AMSsymbols + \triangleright + \trianglerighteq AMSsymbols + \tt + \twoheadleftarrow AMSsymbols + \twoheadrightarrow AMSsymbols + +U +- + +.. code-block:: latex + + \ulcorner AMSsymbols + \underbrace + \underleftarrow + \underleftrightarrow + \underline + \underrightarrow + \underset + \unicode [unicode] non-standard + \unlhd AMSsymbols + \unrhd AMSsymbols + \Uparrow + \uparrow + \Updownarrow + \updownarrow + \upharpoonleft AMSsymbols + \upharpoonright AMSsymbols + \uplus + \uproot + \Upsilon + \upsilon + \upuparrows AMSsymbols + \urcorner AMSsymbols + +V +- + +.. code-block:: latex + + \varDelta AMSsymbols + \varepsilon + \varGamma AMSsymbols + \varinjlim AMSmath + \varkappa AMSsymbols + \varLambda AMSsymbols + \varliminf AMSmath + \varlimsup AMSmath + \varnothing AMSsymbols + \varOmega AMSsymbols + \varphi + \varPhi AMSsymbols + \varpi + \varPi AMSsymbols + \varprojlim AMSmath + \varpropto AMSsymbols + \varPsi AMSsymbols + \varrho + \varsigma + \varSigma AMSsymbols + \varsubsetneq AMSsymbols + \varsubsetneqq AMSsymbols + \varsupsetneq AMSsymbols + \varsupsetneqq AMSsymbols + \vartheta + \varTheta AMSsymbols + \vartriangle AMSsymbols + \vartriangleleft AMSsymbols + \vartriangleright AMSsymbols + \varUpsilon AMSsymbols + \varXi AMSsymbols + \vcenter + \vdash + \Vdash AMSsymbols + \vDash AMSsymbols + \vdots + \vec + \vee + \veebar AMSsymbols + \verb [verb] + \Vert + \vert + \vphantom + \Vvdash AMSsymbols + +W +- + +.. code-block:: latex + + \wedge + \widehat + \widetilde + \wp + \wr + +X +- + +.. code-block:: latex + + \Xi + \xi + \xleftarrow AMSmath + \xrightarrow AMSmath + +Y +- + +.. code-block:: latex + + \yen AMSsymbols + +Z +- + +.. code-block:: latex + + \zeta + + +Environments +------------ + +LaTeX environments of the form ``\begin{XXX} ... \end{XXX}`` are +provided where ``XXX`` is one of the following: + +.. code-block:: latex + + align [AMSmath] + align* [AMSmath] + alignat [AMSmath] + alignat* [AMSmath] + aligned [AMSmath] + alignedat [AMSmath] + array + + Bmatrix + bmatrix + + cases + + eqnarray + eqnarray* + equation + equation* + + gather [AMSmath] + gather* [AMSmath] + gathered [AMSmath] + + matrix + multline [AMSmath] + multline* [AMSmath] + + pmatrix + + smallmatrix AMSmath + split [AMSmath] + subarray AMSmath + + Vmatrix + vmatrix diff --git a/sagenb/data/mathjax/docs/html/_sources/typeset.txt b/sagenb/data/mathjax/docs/html/_sources/typeset.txt new file mode 100644 index 000000000..76951dcc2 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/typeset.txt @@ -0,0 +1,234 @@ +.. _typeset-math: + +************************** +Modifying Math on the Page +************************** + +If you are writing a dynamic web page where content containing +mathematics may appear after MathJax has already typeset the rest of +the page, then you will need to tell MathJax to look for mathematics +in the page again when that new content is produced. To do that, you +need to use the :meth:`MathJax.Hub.Typeset()` method. This will cause +the preprocessors (if any were loaded) to run over the page again, and +then MathJax will look for unprocessed mathematics on the page and +typeset it, leaving unchanged any math that has already been typeset. + +You should not simply call this method directly, however. Because +MathJax operates asynchonously (see :ref:`Synchronizing with MathJax +` for details), you need to be sure that +your call to :meth:`MathJax.Hub.Typeset()` is synchronized with the +other actions that MathJax is taking. For example, it may already be +typesetting portions of the page, or it may be waiting for an output +jax to load, etc., and so you need to queue the typeset action to be +performed after MathJax has finished whatever else it may be doing. +That may be immediately, but it may not, and there is no way to tell. + +To queue the typeset action, use the command + +.. code-block:: javascript + + MathJax.Hub.Queue(["Typeset",MathJax.Hub]); + +This will cause MathJax to typeset the page when it is next able to do +so. It guarantees that the typesetting will synchronize properly +with the loading of jax, extensions, fonts, stylesheets, and other +asynchronous activity, and is the only truly safe way to ask MathJax +to process additional material. + +The :meth:`MathJax.Hub.Typeset()` command also accepts a parameter +that is a DOM element whose content is to be typeset. That could be +a paragraph, or a ``
`` element, or even a MathJax math +`` + + + + + + + + Type some TeX code: + +

+ +

+ You typed: ${}$ +
+ + + diff --git a/sagenb/data/mathjax/docs/html/_sources/upgrade.txt b/sagenb/data/mathjax/docs/html/_sources/upgrade.txt new file mode 100644 index 000000000..3a1aa2006 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/upgrade.txt @@ -0,0 +1,259 @@ +.. _upgrade: + +*********************************** +Migrating from MathJax v1.0 to v1.1 +*********************************** + +MathJax v1.1 fixes a number of bugs in v1.0, and improves support for +new versions of browsers and mobile devices. It includes changes to +increase its performance, and to make it more compliant with HTML5. It +has more flexible configuration options, and the ability to load +configuration files that combine multiple files into a single one to +increase loading speed when MathJax starts up. Finally, MathJax.org now +offers MathJax as a web service through a distributed "cloud" server. + +This document describes the changes you may need to make to your MathJax +configurations in order to take advantage of these improvements. + + +Configuration Changes +===================== + +The main changes that you will see as a page author are in the way that +MathJax can be loaded and configured. If you have been using in-line +configuration by putting a :meth:`MathJax.Hub.Config()` call in the body of +the `` + +would become + +.. code-block:: html + + + + +instead. This will make sure your pages pass HTML5 validation. Be sure +that you put the configuration block **before** the script that loads +MathJax. See :ref:`Loading and Configuring MathJax ` for more +details. + +If your page simply loads ``MathJax.js`` and relies on +``config/MathJax.js``, then you will need to modify your `` + +in the past, you should replace it with + +.. code-block:: html + + + +instead. If you don't do this, you will receive a warning message that +directs you to a page that explains how to update your script tags to use +the new configuration format. + + +Combined Configurations +======================= + +New with version 1.1 is the ability to combine several files into a single +configuration file, and to load that via the same script that loads +MathJax. This should make configuring MathJax easier, and also helps to +speed up the initial loading of MathJax's components, since only one file +needs to be downloaded. + +MathJax comes with four pre-built configurations, and our hope is that one +of these will suit your needs. They are described in more detail in the +:ref:`Using a Configuration File ` section. To load one, +add ``?config=filename`` (where ``filename`` is the name of the +configuration file without the ``.js``) to the URL that loads +``MathJax.js``. For example + +.. code-block:: html + + + +could be replaced by the single line + +.. code-block:: html + + + +In this way, you don't have to include the in-line configuration, and all +the needed files will be downloaded when MathJax starts up. For complete +details about the contents of the combined configuration files, see the +:ref:`Common Configurations ` section. + +If you want to use a pre-defined configuration file, but want to modify some +of the configuration parameters, you can use both a +``text/x-mathjax-config`` block and a ``config=filename`` parameter in +combination. For example, + +.. code-block:: html + + + + +would load the ``TeX-AMS_HTML`` configuration file, but would reconfigure +the inline math delimiters to include ``$...$`` in addition to +``\(...\)``, and would set the ``processEscapes`` parameter to ``true``. + + +Loading MathJax from the CDN +============================ + +The MathJax installation is fairly substantial (due to the large number of +images needed for the image fonts), and so you may not want to (or be able +to) store MathJax on your own server. Keeping MathJax up to date can also +be a maintenance problem, and you might prefer to let others handle that +for you. In either case, using the MathJax distributed network service may be +the best way for you to obtain MathJax. That way you can be sure you are +using an up-to-date version of MathJax, and that the server will be fast +and reliable. + +To use the MathJax CDN service, simply load MathJax as follows: + +.. code-block:: html + + + +and you want to use single-dollar delimiters for in-line math, then you +should replace this with + +.. code-block:: html + + + + +The same technique can be used in conjunction with a combined +configuration file. For example + +.. code-block:: html + + + + +will load the pre-defined ``TeX-AMS_HTML`` configuration, but will modify +the settings to allow ``$...$`` delimiters, and to process ``\$`` to +produce dollar signs within the text of the page. + + +New Distribution Location +========================= + +Version 1.0 of MathJax was distributed through `SourceForge`, but the +development of MathJax has switched to `GitHub +`_, which is now the primary location +for MathJax source code and distributions. The SourceForge repository will +no longer be actively maintained (and hasn't been since November 2010), and +so you will not be able to obtain updates through ``svn`` if you checked +out MathJax from there. + +You may be able to switch to using the MathJax CDN (see above) rather than +hosting your own copy of MathJax, and avoid the problem of updates all +together. If you must install your own copy, however, you should follow +the instructions at :ref:`Installing and Testing MathJax `, +using either ``git`` or ``svn`` as described to obtain your copy from +GitHub. This will allow you to keep your copy of MathJax up to date as +development continues. + +We apologize for the inconvenience of having to switch distributions, but +the git-to-svn bridge we tried to implement to keep both copies in synch +turned out to be unreliable, and so the SourceForge distribution was +retired in favor of the GitHub site. diff --git a/sagenb/data/mathjax/docs/html/_sources/whats-new.txt b/sagenb/data/mathjax/docs/html/_sources/whats-new.txt new file mode 100644 index 000000000..5c4b694fa --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_sources/whats-new.txt @@ -0,0 +1,172 @@ +.. _whats-new: + +************************** +What's New in MathJax v1.1 +************************** + +MathJax version 1.1 includes a number of important improvements and +enhancements over version 1.0. We have worked hard to fix bugs, improve +support for browsers and mobile devices, process TeX and MathML better, and +increase MathJax's performance. + +In addition to these changes, MathJax.org now offers MathJax as a network +service. Instead of having to install MathJax on your own server, you can +link to our content delivery network (CDN) to get fast access to +up-to-date and past versions of MathJax. See :ref:`Loading MathJax from +the CDN ` for more details. + +The following sections outline the changes in v1.1: + +Optimization +============ + +* Combined configuration files that load all the needed files in one piece + rather than loading them individually. This simplifies configuration + and speeds up typesetting of the mathematics on the page. + +* Improved responsiveness to mouse events during typesetting. + +* Parallel downloading of files needed by MathJax, for faster startup + times. + +* Shorter timeout for web fonts, so if they can't be downlaoded, you don't + have to wait so long. + +* Rollover to image fonts if a web font fails to load (so you don't have + to wait for *every* font to fail. + +* The MathJax files are now packed only with `yuicompressor` rather than a + custom compressor. The CDN serves gzipped versions, which end up being + smaller than the gzipped custom-packed files. + +* Improved rendering speed in IE by removing ``position:relative`` from + the style for mathematics. + +* Improved rendering speed for most browsers by isolating the mathematics + from the page during typesetting (avoids full page reflows). + + +Enhancements +============ + +* Allow the input and output jax configuration blocks to specify extensions + to be loaded when the jax is loaded (this avoids needing to load them up + front, so they don't have to be loaded on pages that don't include + mathematics, for example). + +* Better handling of background color from style attributes. + +* Ability to pass configuration parameters via script URL. + +* Support HTML5 compliant configuration syntax. + +* Switch the Git repository from storing the fonts in `fonts.zip` to + storing the `fonts/` directory directly. + +* Improved About box. + +* Added a minimum scaling factor (so math won't get too small). + + +TeX Support +============ + +* Added support for ``\href``, ``\style``, ``\class``, ``\cssId``. +* Avoid recursive macro definitions and other resource consumption possibilities. +* Fix for ``\underline`` bug. +* Fix for bug with ``\fbox``. +* Fix height problem with ``\raise`` and ``\lower``. +* Fix problem with ``\over`` used inside array entries. +* Fix problem with nesting of math delimiters inside text-mode material. +* Fix single digit super- and subscripts followed by punctuation. +* Make sure `movablelimits` is off for ``\underline`` and related macros. +* Fix problem with dimensions given with ``pc`` units. + + +MathML Support +============== + +* Fix ``<`` and ``&`` being translated too early. +* Handle self-closing tags in HTML files better. +* Combine adjacent relational operators in ```` tags. +* Fix entity name problems. +* Better support for MathML namespaces. +* Properly handle comments within MathML in IE. +* Properly consider ```` and ```` as space-like. +* Improved support for ```` with embellished operators. + + +Other Bug Fixes +=============== + +* Fixed CSS bleed through with zoom and other situations. +* Fixed problems with ``showMathMenuMSIE`` when set to ``false``. +* Replaced illegal prefix characters in cookie name. +* Improved placement of surd for square roots and n-th roots. +* Fixed layer obscuring math from MathPlayer for screen readers. +* Newlines in CDATA comments are now handled properly. +* Resolved conflict between `jsMath2jax` and `tex2jax` both processing the + same equation. +* Fixed problem with ``class="tex2jax_ignore"`` affecting the processing of + sibling elements. + + +Browser Support +=============== + +**Android** + +* Added detection and configuration for Android browser. +* Allow use of OTF web fonts in Android 2.2. + + +**Blackberry** + +* MathJax now works with OS version 6. + + +**Chrome** + +* Use OTF web fonts rather than SVG fonts for version 4 and above. + + +**Firefox** + +* Added Firefox 4 detection and configuration. +* Fix for extra line-break bug when displayed equations are in + preformatted text. +* Updated fonts so that FF 3.6.13 and above can read them. + + +**Internet Explorer** + +* Changes for compatibility with IE9. +* Fix for IE8 incorrectly parsing MathML. +* Fix for IE8 namespace problem. +* Fix for null ``parentNode`` problem. +* Fix for ``outerHTML`` not quoting values of attributes. + +**iPhone/iPad** + +* Added support for OTF web fonts in iOS4.2. + +**Nokia** + +* MathJax now works with Symbian\ :sup:`3`\ . + +**Opera** + +* Prevent Opera from using STIX fonts unless explicitly requested via the + font menu (since Opera can't display many of the characters). +* Fixed bad em-size detection in 10.61. +* Fixed a problem with the About dialog in Opera 11. + + +**Safari** + +* Use OTF web fonts for Safari/PC. + + +**WebKit** + +* Better version detection. diff --git a/sagenb/data/mathjax/docs/html/_static/basic.css b/sagenb/data/mathjax/docs/html/_static/basic.css new file mode 100644 index 000000000..32630d54c --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_static/basic.css @@ -0,0 +1,528 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 230px; + margin-left: -100%; + font-size: 90%; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +img { + border: 0; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li div.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable dl, table.indextable dd { + margin-top: 0; + margin-bottom: 0; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- general body styles --------------------------------------------------- */ + +a.headerlink { + visibility: hidden; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.field-list ul { + padding-left: 1em; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + clear: both; + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px 7px 0 7px; + background-color: #ffe; + width: 40%; + float: right; +} + +p.sidebar-title { + font-weight: bold; +} + +/* -- topics ---------------------------------------------------------------- */ + +div.topic { + border: 1px solid #ccc; + padding: 7px 7px 0 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +div.admonition dl { + margin-bottom: 0; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + border: 0; + border-collapse: collapse; +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +table.field-list td, table.field-list th { + border: 0 !important; +} + +table.footnote td, table.footnote th { + border: 0 !important; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +dl { + margin-bottom: 15px; +} + +dd p { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +dt:target, .highlighted { + background-color: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.refcount { + color: #060; +} + +.optional { + font-size: 1.3em; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +td.linenos pre { + padding: 5px 0px; + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + margin-left: 0.5em; +} + +table.highlighttable td { + padding: 0 0.5em 0 0.5em; +} + +tt.descname { + background-color: transparent; + font-weight: bold; + font-size: 1.2em; +} + +tt.descclassname { + background-color: transparent; +} + +tt.xref, a tt { + background-color: transparent; + font-weight: bold; +} + +h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} diff --git a/sagenb/data/mathjax/docs/html/_static/doctools.js b/sagenb/data/mathjax/docs/html/_static/doctools.js new file mode 100644 index 000000000..8b9bd2c0e --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_static/doctools.js @@ -0,0 +1,247 @@ +/* + * doctools.js + * ~~~~~~~~~~~ + * + * Sphinx JavaScript utilties for all documentation. + * + * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/** + * select a different prefix for underscore + */ +$u = _.noConflict(); + +/** + * make the code below compatible with browsers without + * an installed firebug like debugger +if (!window.console || !console.firebug) { + var names = ["log", "debug", "info", "warn", "error", "assert", "dir", + "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", + "profile", "profileEnd"]; + window.console = {}; + for (var i = 0; i < names.length; ++i) + window.console[names[i]] = function() {}; +} + */ + +/** + * small helper function to urldecode strings + */ +jQuery.urldecode = function(x) { + return decodeURIComponent(x).replace(/\+/g, ' '); +} + +/** + * small helper function to urlencode strings + */ +jQuery.urlencode = encodeURIComponent; + +/** + * This function returns the parsed url parameters of the + * current request. Multiple values per key are supported, + * it will always return arrays of strings for the value parts. + */ +jQuery.getQueryParameters = function(s) { + if (typeof s == 'undefined') + s = document.location.search; + var parts = s.substr(s.indexOf('?') + 1).split('&'); + var result = {}; + for (var i = 0; i < parts.length; i++) { + var tmp = parts[i].split('=', 2); + var key = jQuery.urldecode(tmp[0]); + var value = jQuery.urldecode(tmp[1]); + if (key in result) + result[key].push(value); + else + result[key] = [value]; + } + return result; +}; + +/** + * small function to check if an array contains + * a given item. + */ +jQuery.contains = function(arr, item) { + for (var i = 0; i < arr.length; i++) { + if (arr[i] == item) + return true; + } + return false; +}; + +/** + * highlight a given string on a jquery object by wrapping it in + * span elements with the given class name. + */ +jQuery.fn.highlightText = function(text, className) { + function highlight(node) { + if (node.nodeType == 3) { + var val = node.nodeValue; + var pos = val.toLowerCase().indexOf(text); + if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) { + var span = document.createElement("span"); + span.className = className; + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + } + } + else if (!jQuery(node).is("button, select, textarea")) { + jQuery.each(node.childNodes, function() { + highlight(this); + }); + } + } + return this.each(function() { + highlight(this); + }); +}; + +/** + * Small JavaScript module for the documentation. + */ +var Documentation = { + + init : function() { + this.fixFirefoxAnchorBug(); + this.highlightSearchWords(); + this.initIndexTable(); + }, + + /** + * i18n support + */ + TRANSLATIONS : {}, + PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; }, + LOCALE : 'unknown', + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext : function(string) { + var translated = Documentation.TRANSLATIONS[string]; + if (typeof translated == 'undefined') + return string; + return (typeof translated == 'string') ? translated : translated[0]; + }, + + ngettext : function(singular, plural, n) { + var translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated == 'undefined') + return (n == 1) ? singular : plural; + return translated[Documentation.PLURALEXPR(n)]; + }, + + addTranslations : function(catalog) { + for (var key in catalog.messages) + this.TRANSLATIONS[key] = catalog.messages[key]; + this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); + this.LOCALE = catalog.locale; + }, + + /** + * add context elements like header anchor links + */ + addContextElements : function() { + $('div[id] > :header:first').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this headline')). + appendTo(this); + }); + $('dt[id]').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this definition')). + appendTo(this); + }); + }, + + /** + * workaround a firefox stupidity + */ + fixFirefoxAnchorBug : function() { + if (document.location.hash && $.browser.mozilla) + window.setTimeout(function() { + document.location.href += ''; + }, 10); + }, + + /** + * highlight the search words provided in the url in the text + */ + highlightSearchWords : function() { + var params = $.getQueryParameters(); + var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; + if (terms.length) { + var body = $('div.body'); + window.setTimeout(function() { + $.each(terms, function() { + body.highlightText(this.toLowerCase(), 'highlighted'); + }); + }, 10); + $('') + .appendTo($('.sidebar .this-page-menu')); + } + }, + + /** + * init the domain index toggle buttons + */ + initIndexTable : function() { + var togglers = $('img.toggler').click(function() { + var src = $(this).attr('src'); + var idnum = $(this).attr('id').substr(7); + $('tr.cg-' + idnum).toggle(); + if (src.substr(-9) == 'minus.png') + $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); + else + $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); + }).css('display', ''); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { + togglers.click(); + } + }, + + /** + * helper function to hide the search marks again + */ + hideSearchWords : function() { + $('.sidebar .this-page-menu li.highlight-link').fadeOut(300); + $('span.highlighted').removeClass('highlighted'); + }, + + /** + * make the url absolute + */ + makeURL : function(relativeURL) { + return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; + }, + + /** + * get the current relative url + */ + getCurrentURL : function() { + var path = document.location.pathname; + var parts = path.split(/\//); + $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { + if (this == '..') + parts.pop(); + }); + var url = parts.join('/'); + return path.substring(url.lastIndexOf('/') + 1, path.length - 1); + } +}; + +// quick alias for translations +_ = Documentation.gettext; + +$(document).ready(function() { + Documentation.init(); +}); diff --git a/sagenb/data/mathjax/docs/html/_static/file.png b/sagenb/data/mathjax/docs/html/_static/file.png new file mode 100644 index 0000000000000000000000000000000000000000..d18082e397e7e54f20721af768c4c2983258f1b4 GIT binary patch literal 392 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP$HyOL$D9)yc9|lc|nKf<9@eUiWd>3GuTC!a5vdfWYEazjncPj5ZQX%+1 zt8B*4=d)!cdDz4wr^#OMYfqGz$1LDFF>|#>*O?AGil(WEs?wLLy{Gj2J_@opDm%`dlax3yA*@*N$G&*ukFv>P8+2CBWO(qz zD0k1@kN>hhb1_6`&wrCswzINE(evt-5C1B^STi2@PmdKI;Vst0PQB6!2kdN literal 0 HcmV?d00001 diff --git a/sagenb/data/mathjax/docs/html/_static/jquery.js b/sagenb/data/mathjax/docs/html/_static/jquery.js new file mode 100644 index 000000000..7c2430802 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_static/jquery.js @@ -0,0 +1,154 @@ +/*! + * jQuery JavaScript Library v1.4.2 + * http://jquery.com/ + * + * Copyright 2010, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2010, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Sat Feb 13 22:33:48 2010 -0500 + */ +(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/, +Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&& +(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this, +a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b=== +"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this, +function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b
a"; +var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected, +parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent= +false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n= +s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true, +applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando]; +else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this, +a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b=== +w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i, +cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected= +c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed"); +a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g, +function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split("."); +k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a), +C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B=0){a.type= +e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&& +f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive; +if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data", +e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a, +"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a, +d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, +e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift(); +t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D|| +g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, +CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, +g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, +text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, +setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return hl[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= +h[3];l=0;for(m=h.length;l=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== +"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, +h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& +q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML=""; +if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="

";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); +(function(){var g=s.createElement("div");g.innerHTML="
";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: +function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f0)for(var j=d;j0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= +{},i;if(f&&a.length){e=0;for(var o=a.length;e-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== +"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", +d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? +a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== +1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/"},F={option:[1,""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div
","
"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= +c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, +wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, +prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, +this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); +return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, +""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); +return this}else{e=0;for(var j=d.length;e0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", +""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]===""&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= +c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? +c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= +function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= +Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, +"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= +a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= +a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=//gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!== +"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("
").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this}, +serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), +function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href, +global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&& +e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)? +"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache=== +false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B= +false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since", +c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E|| +d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x); +g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status=== +1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b=== +"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional; +if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration=== +"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]|| +c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start; +this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now= +this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem, +e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b
"; +a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b); +c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a, +d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top- +f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset": +"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in +e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window); diff --git a/sagenb/data/mathjax/docs/html/_static/mathjax_mathml.user.js b/sagenb/data/mathjax/docs/html/_static/mathjax_mathml.user.js new file mode 100644 index 000000000..2bc4d2c2a --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_static/mathjax_mathml.user.js @@ -0,0 +1,18 @@ +// ==UserScript== +// @name MathJax MathML +// @namespace http://www.mathjax.org/ +// @description Insert MathJax into pages containing MathML +// @include * +// ==/UserScript== + +if ((window.unsafeWindow == null ? window : unsafeWindow).MathJax == null) { + if ((document.getElementsByTagName("math").length > 0) || + (document.getElementsByTagNameNS == null ? false : + (document.getElementsByTagNameNS("http://www.w3.org/1998/Math/MathML","math").length > 0))) { + var script = document.createElement("script"); + script.src = "http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full"; + var config = 'MathJax.Hub.Startup.onload()'; + if (window.opera) {script.innerHTML = config} else {script.text = config} + document.getElementsByTagName("head")[0].appendChild(script); + } +} diff --git a/sagenb/data/mathjax/docs/html/_static/mathjax_wikipedia.user.js b/sagenb/data/mathjax/docs/html/_static/mathjax_wikipedia.user.js new file mode 100644 index 000000000..2b169455b --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_static/mathjax_wikipedia.user.js @@ -0,0 +1,31 @@ +// ==UserScript== +// @name MathJax in Wikipedia +// @namespace http://www.mathjax.org/ +// @description Insert MathJax into Wikipedia pages +// @include http://en.wikipedia.org/wiki/* +// ==/UserScript== + +if ((window.unsafeWindow == null ? window : unsafeWindow).MathJax == null) { + // + // Replace the images with MathJax scripts of type math/tex + // + var images = document.getElementsByTagName('img'), count = 0; + for (var i = images.length - 1; i >= 0; i--) { + var img = images[i]; + if (img.className === "tex") { + var script = document.createElement("script"); script.type = "math/tex"; + if (window.opera) {script.innerHTML = img.alt} else {script.text = img.alt} + img.parentNode.replaceChild(script,img); count++; + } + } + if (count) { + // + // Load MathJax and have it process the page + // + var script = document.createElement("script"); + script.src = "http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full"; + var config = 'MathJax.Hub.Startup.onload()'; + if (window.opera) {script.innerHTML = config} else {script.text = config} + document.getElementsByTagName("head")[0].appendChild(script); + } +} diff --git a/sagenb/data/mathjax/docs/html/_static/minus.png b/sagenb/data/mathjax/docs/html/_static/minus.png new file mode 100644 index 0000000000000000000000000000000000000000..da1c5620d10c047525a467a425abe9ff5269cfc2 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^+#t-s1SHkYJtzcHoCO|{#XvD(5N2eUHAey{$X?>< z>&kweokM_|(Po{+Q=kw>iEBiObAE1aYF-J$w=>iB1I2R$WLpMkF=>bh=@O1TaS?83{1OVknK< z>&kweokM`jkU7Va11Q8%;u=xnoS&PUnpeW`?aZ|OK(QcC7sn8Z%gHvy&v=;Q4jejg zV8NnAO`-4Z@2~&zopr02WF_WB>pF literal 0 HcmV?d00001 diff --git a/sagenb/data/mathjax/docs/html/_static/pygments.css b/sagenb/data/mathjax/docs/html/_static/pygments.css new file mode 100644 index 000000000..1a14f2ae1 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_static/pygments.css @@ -0,0 +1,62 @@ +.highlight .hll { background-color: #ffffcc } +.highlight { background: #eeffcc; } +.highlight .c { color: #408090; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #007020; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #007020 } /* Comment.Preproc */ +.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #303030 } /* Generic.Output */ +.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0040D0 } /* Generic.Traceback */ +.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #007020 } /* Keyword.Pseudo */ +.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #902000 } /* Keyword.Type */ +.highlight .m { color: #208050 } /* Literal.Number */ +.highlight .s { color: #4070a0 } /* Literal.String */ +.highlight .na { color: #4070a0 } /* Name.Attribute */ +.highlight .nb { color: #007020 } /* Name.Builtin */ +.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ +.highlight .no { color: #60add5 } /* Name.Constant */ +.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ +.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #007020 } /* Name.Exception */ +.highlight .nf { color: #06287e } /* Name.Function */ +.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ +.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #bb60d5 } /* Name.Variable */ +.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mf { color: #208050 } /* Literal.Number.Float */ +.highlight .mh { color: #208050 } /* Literal.Number.Hex */ +.highlight .mi { color: #208050 } /* Literal.Number.Integer */ +.highlight .mo { color: #208050 } /* Literal.Number.Oct */ +.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ +.highlight .sc { color: #4070a0 } /* Literal.String.Char */ +.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #4070a0 } /* Literal.String.Double */ +.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ +.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ +.highlight .sx { color: #c65d09 } /* Literal.String.Other */ +.highlight .sr { color: #235388 } /* Literal.String.Regex */ +.highlight .s1 { color: #4070a0 } /* Literal.String.Single */ +.highlight .ss { color: #517918 } /* Literal.String.Symbol */ +.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ +.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */ +.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */ +.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/sagenb/data/mathjax/docs/html/_static/searchtools.js b/sagenb/data/mathjax/docs/html/_static/searchtools.js new file mode 100644 index 000000000..dae92b5e5 --- /dev/null +++ b/sagenb/data/mathjax/docs/html/_static/searchtools.js @@ -0,0 +1,518 @@ +/* + * searchtools.js + * ~~~~~~~~~~~~~~ + * + * Sphinx JavaScript utilties for the full-text search. + * + * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/** + * helper function to return a node containing the + * search summary for a given text. keywords is a list + * of stemmed words, hlwords is the list of normal, unstemmed + * words. the first one is used to find the occurance, the + * latter for highlighting it. + */ + +jQuery.makeSearchSummary = function(text, keywords, hlwords) { + var textLower = text.toLowerCase(); + var start = 0; + $.each(keywords, function() { + var i = textLower.indexOf(this.toLowerCase()); + if (i > -1) + start = i; + }); + start = Math.max(start - 120, 0); + var excerpt = ((start > 0) ? '...' : '') + + $.trim(text.substr(start, 240)) + + ((start + 240 - text.length) ? '...' : ''); + var rv = $('
').text(excerpt); + $.each(hlwords, function() { + rv = rv.highlightText(this, 'highlighted'); + }); + return rv; +} + +/** + * Porter Stemmer + */ +var PorterStemmer = function() { + + var step2list = { + ational: 'ate', + tional: 'tion', + enci: 'ence', + anci: 'ance', + izer: 'ize', + bli: 'ble', + alli: 'al', + entli: 'ent', + eli: 'e', + ousli: 'ous', + ization: 'ize', + ation: 'ate', + ator: 'ate', + alism: 'al', + iveness: 'ive', + fulness: 'ful', + ousness: 'ous', + aliti: 'al', + iviti: 'ive', + biliti: 'ble', + logi: 'log' + }; + + var step3list = { + icate: 'ic', + ative: '', + alize: 'al', + iciti: 'ic', + ical: 'ic', + ful: '', + ness: '' + }; + + var c = "[^aeiou]"; // consonant + var v = "[aeiouy]"; // vowel + var C = c + "[^aeiouy]*"; // consonant sequence + var V = v + "[aeiou]*"; // vowel sequence + + var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0 + var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1 + var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1 + var s_v = "^(" + C + ")?" + v; // vowel in stem + + this.stemWord = function (w) { + var stem; + var suffix; + var firstch; + var origword = w; + + if (w.length < 3) + return w; + + var re; + var re2; + var re3; + var re4; + + firstch = w.substr(0,1); + if (firstch == "y") + w = firstch.toUpperCase() + w.substr(1); + + // Step 1a + re = /^(.+?)(ss|i)es$/; + re2 = /^(.+?)([^s])s$/; + + if (re.test(w)) + w = w.replace(re,"$1$2"); + else if (re2.test(w)) + w = w.replace(re2,"$1$2"); + + // Step 1b + re = /^(.+?)eed$/; + re2 = /^(.+?)(ed|ing)$/; + if (re.test(w)) { + var fp = re.exec(w); + re = new RegExp(mgr0); + if (re.test(fp[1])) { + re = /.$/; + w = w.replace(re,""); + } + } + else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1]; + re2 = new RegExp(s_v); + if (re2.test(stem)) { + w = stem; + re2 = /(at|bl|iz)$/; + re3 = new RegExp("([^aeiouylsz])\\1$"); + re4 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re2.test(w)) + w = w + "e"; + else if (re3.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + else if (re4.test(w)) + w = w + "e"; + } + } + + // Step 1c + re = /^(.+?)y$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(s_v); + if (re.test(stem)) + w = stem + "i"; + } + + // Step 2 + re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) + w = stem + step2list[suffix]; + } + + // Step 3 + re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) + w = stem + step3list[suffix]; + } + + // Step 4 + re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; + re2 = /^(.+?)(s|t)(ion)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + if (re.test(stem)) + w = stem; + } + else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1] + fp[2]; + re2 = new RegExp(mgr1); + if (re2.test(stem)) + w = stem; + } + + // Step 5 + re = /^(.+?)e$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + re2 = new RegExp(meq1); + re3 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) + w = stem; + } + re = /ll$/; + re2 = new RegExp(mgr1); + if (re.test(w) && re2.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + + // and turn initial Y back to y + if (firstch == "y") + w = firstch.toLowerCase() + w.substr(1); + return w; + } +} + + +/** + * Search Module + */ +var Search = { + + _index : null, + _queued_query : null, + _pulse_status : -1, + + init : function() { + var params = $.getQueryParameters(); + if (params.q) { + var query = params.q[0]; + $('input[name="q"]')[0].value = query; + this.performSearch(query); + } + }, + + loadIndex : function(url) { + $.ajax({type: "GET", url: url, data: null, success: null, + dataType: "script", cache: true}); + }, + + setIndex : function(index) { + var q; + this._index = index; + if ((q = this._queued_query) !== null) { + this._queued_query = null; + Search.query(q); + } + }, + + hasIndex : function() { + return this._index !== null; + }, + + deferQuery : function(query) { + this._queued_query = query; + }, + + stopPulse : function() { + this._pulse_status = 0; + }, + + startPulse : function() { + if (this._pulse_status >= 0) + return; + function pulse() { + Search._pulse_status = (Search._pulse_status + 1) % 4; + var dotString = ''; + for (var i = 0; i < Search._pulse_status; i++) + dotString += '.'; + Search.dots.text(dotString); + if (Search._pulse_status > -1) + window.setTimeout(pulse, 500); + }; + pulse(); + }, + + /** + * perform a search for something + */ + performSearch : function(query) { + // create the required interface elements + this.out = $('#search-results'); + this.title = $('

' + _('Searching') + '

').appendTo(this.out); + this.dots = $('').appendTo(this.title); + this.status = $('

').appendTo(this.out); + this.output = $('