diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 438bf9708162..de83bce1cda8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -299,11 +299,24 @@ jobs: rm -rf ~/.cache/matplotlib if: matrix.delete-font-cache + - name: extract baseline images + run: | + mkdir -p /tmp/test_images/matplotlib/tests + cp -r lib/matplotlib/tests/baseline_images /tmp/test_images/matplotlib/tests + mkdir -p /tmp/test_images/mpl_toolkits/axes_grid1/tests/ + cp -r lib/mpl_toolkits/axes_grid1/tests/baseline_images /tmp/test_images/mpl_toolkits/axes_grid1/tests/ + mkdir -p /tmp/test_images/mpl_toolkits/axisartist/tests/ + cp -r lib/mpl_toolkits/axisartist/tests/baseline_images /tmp/test_images/mpl_toolkits/axisartist/tests/ + mkdir -p /tmp/test_images/mpl_toolkits/mplot3d/tests/ + cp -r lib/mpl_toolkits/mplot3d/tests/baseline_images /tmp/test_images/mpl_toolkits/mplot3d/tests/ + - name: Run pytest run: | python -mpytest -raR -n auto \ --maxfail=50 --timeout=300 --durations=25 \ --cov-report=xml --cov=lib --log-level=DEBUG --color=yes + env: + MPLTESTIMAGEPATH: /tmp/test_images/ - name: Filter C coverage run: | diff --git a/doc/devel/contribute.rst b/doc/devel/contribute.rst index c6e1a2199fae..a3291fae8588 100644 --- a/doc/devel/contribute.rst +++ b/doc/devel/contribute.rst @@ -303,6 +303,8 @@ project that leads to a scientific publication, please follow the Coding guidelines ================= +.. _coding_guidelines-API_changes: + API changes ----------- diff --git a/doc/devel/testing.rst b/doc/devel/testing.rst index 06296f5dc701..d73e82430ea9 100644 --- a/doc/devel/testing.rst +++ b/doc/devel/testing.rst @@ -96,8 +96,66 @@ and then use ``rng`` when generating the random numbers. The seed is John Hunter's birthday. -Writing an image comparison test --------------------------------- +Image Comparison tests +---------------------- + +As noted in :ref:`coding_guidelines-API_changes` we consider any changes to the +visual output of Matplotlib to be an API change. To ensure that our visual +output is consistent we make heavy use of image comparison tests in the +automated test suites. By default, and with only a few exceptions, the tests +compare the expected and test output with zero tolerance which means the output +of Matplotlib is stable at the pixel level across time, platform, and +architecture. + +For Agg, which directly produces raster output, we directly compare the output +with saved png. For vector outputs we use an external tool (inkscape for svg +and ghostscript for eps/pdf) to convert both the baseline and test image to a +raster that we can compare. However, different versions of FreeType slightly +shift the placement and size of the rendered text which in turn causes our +tests to fail. Thus, we have historically run the test suite with a fixed +version of FreeType. + +In the past we stored a complete set of the test images, against a specific +version of FreeType, in the main source repository. While highly effective, +this was not a sustainable over the long term as the pinned version of FreeType +will eventually need to be updated. Further, while our wheels are built with +the pinned version of FreeType, most other down-stream packages (such as +conda-forge and the Linux distributions) use what ever their currently +supported Freetype is this many of our users are using a version of FreeType +that we do not test. + +We now use a combination of testing for self-consistency with files generated +on a developers computer and sets of canonical baseline images generated with +every release. + + +Generate local baseline images from upstream branch +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + +Adding a test image +^^^^^^^^^^^^^^^^^^^ + + +Update a test image +^^^^^^^^^^^^^^^^^^^ + + +Build Matplotlib with a specific FreeType +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + +Fetch the baseline images for a Matplotlib Release and FreeType version +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + +Generate the baseline images for a Matplotlib Release and FreeType version +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + + +Writing an image comparison test [TODO fix] +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Writing an image-based test is only slightly more difficult than a simple test. The main consideration is that you must specify the "baseline", or @@ -140,6 +198,7 @@ See the documentation of `~matplotlib.testing.decorators.image_comparison` and `~matplotlib.testing.decorators.check_figures_equal` for additional information about their use. + Creating a new module in matplotlib.tests ----------------------------------------- diff --git a/lib/matplotlib/cbook.py b/lib/matplotlib/cbook.py index 850028c297db..87656b5c3c00 100644 --- a/lib/matplotlib/cbook.py +++ b/lib/matplotlib/cbook.py @@ -192,9 +192,11 @@ def __getstate__(self): for s, d in self.callbacks.items()}, # It is simpler to reconstruct this from callbacks in __setstate__. "_func_cid_map": None, + "_cid_gen": next(self._cid_gen) } def __setstate__(self, state): + cid_count = state.pop('_cid_gen') vars(self).update(state) self.callbacks = { s: {cid: _weak_or_strong_ref(func, self._remove_proxy) @@ -203,6 +205,7 @@ def __setstate__(self, state): self._func_cid_map = { s: {proxy: cid for cid, proxy in d.items()} for s, d in self.callbacks.items()} + self._cid_gen = itertools.count(cid_count) def connect(self, signal, func): """Register *func* to be called when signal *signal* is generated.""" diff --git a/lib/matplotlib/figure.py b/lib/matplotlib/figure.py index 947f638b5f95..dab2bc4a5ab7 100644 --- a/lib/matplotlib/figure.py +++ b/lib/matplotlib/figure.py @@ -105,6 +105,17 @@ def current(self): """Return the active axes, or None if the stack is empty.""" return max(self._axes, key=self._axes.__getitem__, default=None) + def __getstate__(self): + return { + **vars(self), + "_counter": max(self._axes.values(), default=0) + } + + def __setstate__(self, state): + next_counter = state.pop('_counter') + vars(self).update(state) + self._counter = itertools.count(next_counter) + class SubplotParams: """ diff --git a/lib/matplotlib/testing/conftest.py b/lib/matplotlib/testing/conftest.py index 83de7f9dcf27..75af05463b7c 100644 --- a/lib/matplotlib/testing/conftest.py +++ b/lib/matplotlib/testing/conftest.py @@ -15,6 +15,7 @@ def pytest_configure(config): ("markers", "backend: Set alternate Matplotlib backend temporarily."), ("markers", "baseline_images: Compare output against references."), ("markers", "pytz: Tests that require pytz to be installed."), + ("markers", "generate_images: Flag to generate matplotlib baseline images."), ("filterwarnings", "error"), ("filterwarnings", "ignore:.*The py23 module has been deprecated:DeprecationWarning"), diff --git a/lib/matplotlib/testing/decorators.py b/lib/matplotlib/testing/decorators.py index 49ac4a1506f8..5e3d770c4d8a 100644 --- a/lib/matplotlib/testing/decorators.py +++ b/lib/matplotlib/testing/decorators.py @@ -1,20 +1,26 @@ import contextlib import functools import inspect +import json import os +from pathlib import Path, PurePosixPath from platform import uname -from pathlib import Path import shutil import string +import subprocess import sys +import time import warnings from packaging.version import parse as parse_version +from matplotlib import _pylab_helpers, cbook, ft2font +from matplotlib import pyplot as plt +from matplotlib import ticker import matplotlib.style -import matplotlib.units import matplotlib.testing -from matplotlib import _pylab_helpers, cbook, ft2font, pyplot as plt, ticker +import matplotlib.units + from .compare import comparable_formats, compare_images, make_test_filename from .exceptions import ImageComparisonFailure @@ -116,21 +122,22 @@ class _ImageComparisonBase: This class provides *just* the comparison-related functionality and avoids any code that would be specific to any testing framework. """ - - def __init__(self, func, tol, remove_text, savefig_kwargs): + def __init__(self, func, tol, remove_text, savefig_kwargs, external_images): self.func = func - self.baseline_dir, self.result_dir = _image_directories(func) + self.result_dir = _results_directory(func) + print(external_images) + (self.root_dir, mod_dir, image_list, self.md_path) = _baseline_directory( + func, external_images + ) + self.image_revs = _load_blame(image_list) + self.baseline_dir = self.root_dir / mod_dir self.tol = tol self.remove_text = remove_text self.savefig_kwargs = savefig_kwargs - def copy_baseline(self, baseline, extension): - baseline_path = self.baseline_dir / baseline - orig_expected_path = baseline_path.with_suffix(f'.{extension}') - if extension == 'eps' and not orig_expected_path.exists(): - orig_expected_path = orig_expected_path.with_suffix('.pdf') - expected_fname = make_test_filename( - self.result_dir / orig_expected_path.name, 'expected') + def copy_baseline(self, orig_expected_path): + expected_fname = Path(make_test_filename( + self.result_dir / orig_expected_path.name, 'expected')) try: # os.symlink errors if the target already exists. with contextlib.suppress(OSError): @@ -148,8 +155,42 @@ def copy_baseline(self, baseline, extension): f"{orig_expected_path}") from err return expected_fname - def compare(self, fig, baseline, extension, *, _lock=False): - __tracebackhide__ = True + def can_use_imega_cache(self, baseline_images, extension): + """ + If any of the images are stale or missing. + """ + md = self._get_md() + for baseline in baseline_images: + actual_path = (self.result_dir / baseline).with_suffix(f'.{extension}') + orig_expected_path, rel_path = self._compute_baseline_filename( + baseline, extension + ) + if rel_path not in md: + return False + if md[rel_path]['sha'] != self.image_revs[rel_path]['sha']: + return False + return True + + # TODO add caching? + def _get_md(self): + if self.md_path.exists(): + with open(self.md_path) as fin: + md = {Path(k): v for k, v in json.load(fin).items()} + else: + md = {} + self.md_path.parent.mkdir(parents=True, exist_ok=True) + return md + + def _write_md(self, md): + with open(self.md_path, 'w') as fout: + json.dump( + {str(PurePosixPath(*k.parts)): v for k, v in md.items()}, + fout, + sort_keys=True, + indent=' ' + ) + + def _prep_figure(self, fig, baseline, extension): if self.remove_text: remove_ticks_and_titles(fig) @@ -160,17 +201,78 @@ def compare(self, fig, baseline, extension, *, _lock=False): kwargs.setdefault('metadata', {'Creator': None, 'Producer': None, 'CreationDate': None}) + orig_expected_path, rel_path = self._compute_baseline_filename( + baseline, extension + ) + + return actual_path, kwargs, orig_expected_path - lock = (cbook._lock_path(actual_path) - if _lock else contextlib.nullcontext()) + def _compute_baseline_filename(self, baseline, extension): + baseline_path = self.baseline_dir / baseline + orig_expected_path = baseline_path.with_suffix(f'.{extension}') + rel_path = orig_expected_path.relative_to(self.root_dir) + + if extension == 'eps' and rel_path not in self.image_revs: + orig_expected_path = orig_expected_path.with_suffix('.pdf') + rel_path = orig_expected_path.relative_to(self.root_dir) + + if rel_path not in self.image_revs: + raise ValueError(f'{rel_path!r} is not known.') + return orig_expected_path, rel_path + + def _save_and_close(self, fig, actual_path, kwargs): + try: + fig.savefig(actual_path, **kwargs) + finally: + # Matplotlib has an autouse fixture to close figures, but this + # makes things more convenient for third-party users. + plt.close(fig) + + def generate(self, fig, baseline, extension, *, _lock=False): + __tracebackhide__ = True + md = self._get_md() + + actual_path, kwargs, orig_expected_path = self._prep_figure( + fig, baseline, extension + ) + + lock = (cbook._lock_path(actual_path) if _lock else contextlib.nullcontext()) with lock: - try: - fig.savefig(actual_path, **kwargs) - finally: - # Matplotlib has an autouse fixture to close figures, but this - # makes things more convenient for third-party users. - plt.close(fig) - expected_path = self.copy_baseline(baseline, extension) + self._save_and_close(fig, actual_path, kwargs) + + rel_path = orig_expected_path.relative_to(self.root_dir) + if rel_path not in self.image_revs and rel_path.suffix == '.eps': + rel_path = rel_path.with_suffix('.pdf') + orig_expected_path.parent.mkdir(parents=True, exist_ok=True) + shutil.copyfile(actual_path, orig_expected_path) + + md[rel_path] = { + 'mpl_version': matplotlib.__version__, + 'ft_version': ft2font.__freetype_version__, + **{k: self.image_revs[rel_path][k]for k in ('sha', 'rev')} + } + self._write_md(md) + + def compare(self, fig, baseline, extension, *, _lock=False): + __tracebackhide__ = True + md = self._get_md() + actual_path, kwargs, orig_expected_path = self._prep_figure( + fig, baseline, extension + ) + + lock = (cbook._lock_path(actual_path) if _lock else contextlib.nullcontext()) + with lock: + self._save_and_close(fig, actual_path, kwargs) + + expected_path = self.copy_baseline(orig_expected_path) + + rel_path = actual_path.relative_to(self.result_dir.parent) + if rel_path not in md and rel_path.suffix == '.eps': + rel_path = rel_path.with_suffix('.pdf') + # TODO re-enable this check + if False and md[rel_path]['sha'] != self.image_revs[rel_path]['sha']: + raise RuntimeError("Baseline images do not match checkout.") + _raise_on_image_difference(expected_path, actual_path, self.tol) @@ -195,6 +297,7 @@ def decorator(func): @matplotlib.style.context(style) @_checked_on_freetype_version(freetype_version) @functools.wraps(func) + @pytest.mark.generate_images def wrapper(*args, extension, request, **kwargs): __tracebackhide__ = True if 'extension' in old_sig.parameters: @@ -210,10 +313,26 @@ def wrapper(*args, extension, request, **kwargs): }.get(extension, 'on this system') pytest.skip(f"Cannot compare {extension} files {reason}") - img = _ImageComparisonBase(func, tol=tol, remove_text=remove_text, - savefig_kwargs=savefig_kwargs) - matplotlib.testing.set_font_settings_for_testing() + generating = request.config.getoption("--generate-images") + if baseline_images is not None: + our_baseline_images = baseline_images + else: + # Allow baseline image list to be produced on the fly based on + # current parametrization. + our_baseline_images = request.getfixturevalue( + 'baseline_images') + + img = _ImageComparisonBase( + func, + tol=tol, remove_text=remove_text, savefig_kwargs=savefig_kwargs, + external_images=request.config.getoption("--image-baseline") + ) + + if generating and img.can_use_imega_cache(our_baseline_images, extension): + pytest.skip(reason="Suitable file already exists.") + + matplotlib.testing.set_font_settings_for_testing() with _collect_new_figures() as figs: func(*args, **kwargs) @@ -224,19 +343,15 @@ def wrapper(*args, extension, request, **kwargs): marker.args[0] != 'extension' for marker in request.node.iter_markers('parametrize')) - if baseline_images is not None: - our_baseline_images = baseline_images - else: - # Allow baseline image list to be produced on the fly based on - # current parametrization. - our_baseline_images = request.getfixturevalue( - 'baseline_images') - assert len(figs) == len(our_baseline_images), ( f"Test generated {len(figs)} images but there are " f"{len(our_baseline_images)} baseline images") + for fig, baseline in zip(figs, our_baseline_images): - img.compare(fig, baseline, extension, _lock=needs_lock) + if generating: + img.generate(fig, baseline, extension, _lock=needs_lock) + else: + img.compare(fig, baseline, extension, _lock=needs_lock) parameters = list(old_sig.parameters.values()) if 'extension' not in old_sig.parameters: @@ -387,7 +502,7 @@ def test_plot(fig_test, fig_ref): def decorator(func): import pytest - _, result_dir = _image_directories(func) + result_dir = _results_directory(func) old_sig = inspect.signature(func) if not {"fig_test", "fig_ref"}.issubset(old_sig.parameters): @@ -448,17 +563,153 @@ def wrapper(*args, ext, request, **kwargs): return decorator -def _image_directories(func): +# TODO make these functions share a cache +@functools.lru_cache +def _load_imagelist(target_file): + """ + Get the filename, rev, and time stamps from the files. + + This is a sub-set of what _load_blame will provide + + + """ + ret = [] + with open(target_file) as fin: + for ln in fin: + fname, rev, ts = ln.strip().split(":") + ret.append([Path(fname), int(rev), float(ts)]) + + return {fname: {"rev": rev, "ts": ts} for fname, rev, ts in ret} + + +@functools.lru_cache +def _load_blame(target_file): + """ + Extract the commit a given test image was last updated in. + + Parameters + ---------- + target_file : str | Path + The data file to read. + + Returns + ------- + Dict[str, Dict[str, str]] + Mapping of file same to a dictionary mapping to a union of the git + metadata, the rev number of the file and the timestamp of the last + revision. + + """ + blame_result = subprocess.run( + ["git", "blame", "-l", "--line-porcelain", str(target_file)], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + ) + blame_result.check_returncode() + ret = {} + + cur_line = {} + + for ln in blame_result.stdout.decode().split("\n"): + if not ln: + continue + + if ln[0] != "\t": + if len(cur_line) == 0: + sha, *_ = ln.split(" ") + cur_line["sha"] = sha + else: + key, _, val = ln.partition(" ") + cur_line[key] = val + else: + fname, rev, ts = ln[1:].strip().split(":") + cur_line["rev"] = int(rev) + cur_line["ts"] = float(ts) + ret[Path(fname)] = cur_line + cur_line = {} + return ret + + +def _write_imagelist(data, *, target_file): + with open(target_file, "w") as fout: + for fname, v in sorted(data.items()): + fout.write(f"{fname}:{v['rev']}:{int(v['ts'])}\n") + + +def _rev_fname(fname, *, target_file="image_list.txt"): + data = _load_imagelist() + old_rev = data[fname]["rev"] + data[fname] = {"rev": old_rev + 1, "ts": time.time()*100} + _write_imagelist(data) + + +def _baseline_directory(func, external_images): """ Compute the baseline and result image directories for testing *func*. For test module ``foo.bar.test_baz``, the baseline directory is at - ``foo/bar/baseline_images/test_baz`` and the result directory at - ``$(pwd)/result_images/test_baz``. The result directory is created if it - doesn't exist. + ``($base)/foo/bar/baseline_images/test_baz``. + + If *external_images* is not None then it will be used as th ``$base``, + if not ``$base`` will be the base path of the source code. + + Parameters + ---------- + func : callable + The function to compute the file locations for. + + external_images : str or None + If not None, the root of an external set of baseline images. + + Returns + ------- + root_dir : Path + The root of the baseline file tree + + mod_dir : Path + Path relative to *root_dir* for the images + + image_list : Path + Path to the list of images (with their versions) + + md_path : Path + Path to the json meta-data about the generate images + + """ + *pkg_name, mod_name = inspect.getmodule(func).__name__.split('.') + file_base = Path(inspect.getfile(func)).parent + if external_images is not None: + image_base = Path(external_images) / Path(*pkg_name) + else: + image_base = file_base + root_dir = image_base / "baseline_images" + mod_dir = Path(mod_name) + + image_list = file_base / "image_list.txt" + + return root_dir, mod_dir, image_list, root_dir / 'metadata.json' + + +def _results_directory(func): + """ + Compute the result image directories for testing *func*. + + For test module ``foo.bar.test_baz``, the result directory at + ``$(pwd)/result_images/test_baz``. + + The result directory is created if it doesn't exist. + + Parameters + ---------- + func : callable + The function to compute the file locations for. + + Returns + ------- + Path + The path to the directory in which to write the result images """ - module_path = Path(inspect.getfile(func)) - baseline_dir = module_path.parent / "baseline_images" / module_path.stem - result_dir = Path().resolve() / "result_images" / module_path.stem + *pkg_name, mod_name = inspect.getmodule(func).__name__.split('.') + result_dir = Path().resolve() / "result_images" / mod_name result_dir.mkdir(parents=True, exist_ok=True) - return baseline_dir, result_dir + return result_dir diff --git a/lib/matplotlib/testing/generate_images_plugin.py b/lib/matplotlib/testing/generate_images_plugin.py new file mode 100644 index 000000000000..cc46ba53766e --- /dev/null +++ b/lib/matplotlib/testing/generate_images_plugin.py @@ -0,0 +1,27 @@ +import pytest +import os + + +def pytest_addoption(parser): + parser.addoption( + "--generate-images", + action="store_true", + default=bool(os.environ.get('MPLGENERATEBASELINE', False)), + help="run matplotlib baseline image generation tests" + ) + parser.addoption( + "--image-baseline", + default=os.environ.get('MPLBASELINEIMAGES', None), + help="run matplotlib baseline image generation tests", + type=str + ) + + +def pytest_collection_modifyitems(config, items): + if config.getoption("--generate-images"): + skip_non_matplotlib_baseline_image_generation_tests = pytest.mark.skip( + reason="No need to run non image generation tests" + ) + for item in items: + if "generate_images" not in item.keywords: + item.add_marker(skip_non_matplotlib_baseline_image_generation_tests) diff --git a/lib/matplotlib/tests/__init__.py b/lib/matplotlib/tests/__init__.py index 8cce4fe4558d..e69de29bb2d1 100644 --- a/lib/matplotlib/tests/__init__.py +++ b/lib/matplotlib/tests/__init__.py @@ -1,10 +0,0 @@ -from pathlib import Path - - -# Check that the test directories exist. -if not (Path(__file__).parent / 'baseline_images').exists(): - raise OSError( - 'The baseline image directory does not exist. ' - 'This is most likely because the test data is not installed. ' - 'You may need to install matplotlib from source to get the ' - 'test data.') diff --git a/lib/matplotlib/tests/baseline_images/metadata.json b/lib/matplotlib/tests/baseline_images/metadata.json new file mode 100644 index 000000000000..6900a72a81f7 --- /dev/null +++ b/lib/matplotlib/tests/baseline_images/metadata.json @@ -0,0 +1,11562 @@ +{ + "test_agg/agg_filter.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_agg_filter/agg_filter_alpha.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_agg_filter/agg_filter_alpha.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_arrow_patches/arrow_styles.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_arrow_patches/boxarrow_test_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_arrow_patches/connection_styles.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_arrow_patches/fancyarrow_dash.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_arrow_patches/fancyarrow_dpi_cor_100dpi.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_arrow_patches/fancyarrow_dpi_cor_200dpi.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_arrow_patches/fancyarrow_test_image.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_arrow_patches/fancyarrow_test_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_arrow_patches/fancyarrow_test_image.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_artist/clip_path_clipping.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_artist/clip_path_clipping.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_artist/clip_path_clipping.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_artist/default_edges.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_artist/hatching.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_artist/hatching.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_artist/hatching.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/aitoff_proj.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/angle_spectrum_freqs.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/angle_spectrum_noise.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/annotate_across_transforms.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/arc_angles.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/arc_ellipse.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/arc_ellipse.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/arc_ellipse.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/arrow_simple.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/autoscale_tiny_range.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/autoscale_tiny_range.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/autoscale_tiny_range.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/axhspan_epoch.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/axhspan_epoch.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/axhspan_epoch.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/axis_options.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/axisbelow.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/axvspan_epoch.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/axvspan_epoch.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/axvspan_epoch.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bar_tick_label_multiple.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bar_tick_label_multiple_old_label_alignment.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bar_tick_label_single.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/barh_tick_label.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot_autorange_false_whiskers.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot_autorange_true_whiskers.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot_custom_capwidths.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot_mod_artists_after_plotting.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot_no_inverted_whisker.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot_rc_parameters.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot_rc_parameters.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot_rc_parameters.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot_sym.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot_sym2.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/boxplot_with_CIarray.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_baseline.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_custom_capwidth.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_custom_capwidths.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_custombox.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_customcap.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_custommedian.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_customoutlier.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_custompatchartist.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_custompositions.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_customwhisker.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_customwidths.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_horizontal.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_no_flier_stats.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_nobox.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_nocaps.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_patchartist.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_percentilewhis.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_rangewhis.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_scalarwidth.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_with_xlabels.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_with_ylabels.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_withmean_custompoint.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_withmean_line.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_withmean_point.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/bxp_withnotch.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/canonical.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/canonical.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/canonical.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/contour_colorbar.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/contour_colorbar.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/contour_colorbar.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/contour_hatching.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/contour_hatching.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/contour_hatching.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/csd_freqs.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/csd_noise.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/dash_offset.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/dash_offset.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/dash_offset.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/date_timezone_x.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/date_timezone_x_and_y.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/date_timezone_y.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_basic.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_basic.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_basic.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_limits.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_limits.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_limits.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_mixed.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_mixed.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_mixed.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_zorder.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_zorder.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/errorbar_zorder.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/eventplot.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/eventplot.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/eventplot.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/extent_units.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/fill_between_interpolate.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/fill_between_interpolate.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/fill_between_interpolate.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/fill_between_interpolate_decreasing.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/fill_between_interpolate_decreasing.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/fill_between_interpolate_decreasing.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/fill_between_interpolate_nan.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/fill_between_interpolate_nan.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/fill_between_interpolate_nan.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/fill_units.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_001.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_001.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_001.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_002.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_002.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_002.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_003.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_003.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_003.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_004.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_004.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_004.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_005.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_005.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/formatter_ticker_005.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hexbin_empty.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hexbin_extent.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hexbin_linear.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hexbin_log.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist2d.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist2d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist2d.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist2d_transpose.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist2d_transpose.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist2d_transpose.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_bar_empty.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_density.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_log.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_log.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_log.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_offset.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_offset.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_offset.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_bar.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_bar.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_bar.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_normed.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_normed.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_normed.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_step.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_step.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_step.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_stepfilled.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_stepfilled.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_stepfilled.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_stepfilled_alpha.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_stepfilled_alpha.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_stepfilled_alpha.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_weights.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_weights.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_stacked_weights.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_step.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_step_bottom.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_step_empty.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_step_filled.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hist_step_horiz.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hlines_basic.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hlines_masked.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/hlines_with_nan.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/imshow.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/imshow.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/imshow.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/imshow_clip.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/imshow_clip.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/imshow_clip.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/inset_polar.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/loglog.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/magnitude_spectrum_freqs_dB.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/magnitude_spectrum_freqs_linear.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/magnitude_spectrum_noise_dB.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/magnitude_spectrum_noise_linear.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/marker_edges.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/marker_edges.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/marker_edges.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/marker_styles.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_line.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_line.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_line.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_linear_scales.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_linear_scales.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_linear_scales.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_linear_scales_nans.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_linear_scales_nans.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_linear_scales_nans.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_linear_scales_zoomed.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_linear_scales_zoomed.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_linear_scales_zoomed.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_log_scales.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_log_scales.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_log_scales.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_polar.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_polar.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/markevery_polar.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/mixed_collection.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/mixed_collection.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/mixed_collection.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/mixed_errorbar_polar_caps.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/mollweide_grid.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/mollweide_grid.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/mollweide_grid.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/nonfinite_limits.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/nonfinite_limits.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/nonfinite_limits.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/o_marker_path_snap.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/offset_points.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/offset_points.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/offset_points.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pcolor_datetime_axis.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pcolormesh.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pcolormesh.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pcolormesh.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pcolormesh_alpha.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pcolormesh_alpha.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pcolormesh_datetime_axis.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pcolormesh_small.eps": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/phase_spectrum_freqs.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/phase_spectrum_noise.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pie_ccw_true.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pie_center_radius.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pie_default.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pie_frame_grid.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pie_linewidth_0.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pie_linewidth_2.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pie_no_label.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pie_rotatelabels_true.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/pie_shadow.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/polycollection_joinstyle.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/polycollection_joinstyle.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/polycollection_joinstyle.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/preset_clip_paths.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/psd_freqs.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/psd_noise.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/rc_grid.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/rc_markerfill.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/rc_spines.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/retain_tick_visibility.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/rgba_markers.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/rgba_markers.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/rgba_markers.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/scatter.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/scatter.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/scatter.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/scatter_2D.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/scatter_marker.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/secondary_xy.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/set_get_ticklabels.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/single_date.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/single_point.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/single_point.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/single_point.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_angle_freqs.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_angle_noise.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_freqs.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_freqs_linear.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_magnitude_freqs.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_magnitude_freqs_linear.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_magnitude_noise.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_magnitude_noise_linear.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_noise.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_noise_linear.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_phase_freqs.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/specgram_phase_noise.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/stackplot_test_baseline.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/stackplot_test_baseline.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/stackplot_test_baseline.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/stackplot_test_image.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/stackplot_test_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/stackplot_test_image.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/stem.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/stem_orientation.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/step_linestyle.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/step_linestyle.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/step_linestyle.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/symlog.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/symlog2.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/test_alpha.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/test_alpha.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/test_alpha.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/test_centered_bar_label_nonlinear.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/test_eventplot_defaults.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/test_eventplot_problem_kwargs.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/test_loglog_nonpos.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/test_stairs_datetime.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/test_stairs_options.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/transparent_markers.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/transparent_markers.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/transparent_markers.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/twin_autoscale.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/twin_axis_locators_formatters.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/twin_axis_locators_formatters.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/twin_axis_locators_formatters.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/twin_spines.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/twin_spines_on_top.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/vertex_markers.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_horiz_baseline.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_horiz_custompoints_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_horiz_custompoints_200.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_horiz_showall.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_horiz_showextrema.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_horiz_showmeans.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_horiz_showmedians.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_vert_baseline.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_vert_custompoints_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_vert_custompoints_200.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_vert_showall.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_vert_showextrema.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_vert_showmeans.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/violinplot_vert_showmedians.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/vline_hline_zorder.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/vline_hline_zorder.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/vline_hline_zorder.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/vlines_basic.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/vlines_hlines_blended_transform.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/vlines_masked.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_axes/vlines_with_nan.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_pdf/grayscale_alpha.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_pdf/hatching_legend.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_pdf/kerning.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_pdf/multi_font_type3.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_pdf/multi_font_type42.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_pdf/pdf_use14corefonts.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_pgf/pgf_mixedmode.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_pgf/pgf_pdflatex.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_pgf/pgf_xelatex.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_ps/colorbar_shift.eps": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_ps/coloredhatcheszerolw.eps": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_ps/empty.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_ps/multi_font_type3.eps": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_ps/multi_font_type42.eps": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_ps/scatter.eps": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_ps/type3.eps": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_ps/type42_without_prep.eps": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_ps/useafm.eps": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_svg/bold_font_output.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_svg/bold_font_output_with_none_fonttype.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_svg/fill_black_with_alpha.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_svg/multi_font_aspath.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_svg/multi_font_astext.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_svg/noscale.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_svg/noscale.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_backend_svg/noscale.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_fixed_aspect.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight_clipping.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight_clipping.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight_clipping.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight_layout.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight_raster.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight_raster.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight_raster.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight_suptile_legend.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight_suptile_legend.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight_suptile_legend.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_bbox_tight/bbox_inches_tight_suptile_non_default.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EllipseCollection_test_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__add_positions.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__add_positions.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__add_positions.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__append_positions.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__append_positions.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__append_positions.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__default.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__default.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__default.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__extend_positions.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__extend_positions.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__extend_positions.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_color.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_color.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_color.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_linelength.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_linelength.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_linelength.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_lineoffset.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_lineoffset.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_lineoffset.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_linestyle.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_linestyle.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_linestyle.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_linewidth.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_linewidth.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_linewidth.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_orientation.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_orientation.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_orientation.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_positions.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_positions.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__set_positions.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__switch_orientation.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__switch_orientation.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__switch_orientation.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__switch_orientation__2x.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__switch_orientation__2x.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/EventCollection_plot__switch_orientation__2x.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/cap_and_joinstyle.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/polycollection_close.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/regularpolycollection_rotate.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/regularpolycollection_scale.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/scatter_post_alpha.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/size_in_xy.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_collections/test_check_masked_offsets.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/cbar_locationing.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/cbar_sharing.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/cbar_with_orientation.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/cbar_with_subplots_adjust.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/colorbar_change_lim_scale.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/colorbar_closed_patch.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/colorbar_extend_alpha.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/colorbar_extensions_proportional.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/colorbar_extensions_shape_proportional.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/colorbar_extensions_shape_uniform.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/colorbar_extensions_uniform.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/colorbar_keeping_xlabel.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/colorbar_single_scatter.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/colorbar_twoslope.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/contour_colorbar.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/contourf_extend_patches.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/double_cbar.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/extend_drawedges.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/nonorm_colorbars.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/proportional_colorbars.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colorbar/test_boundaries.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colors/boundarynorm_and_colorbar.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colors/levels_and_colors.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_colors/light_source_shading_topo.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout1.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout11.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout11rat.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout12.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout13.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout14.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout15.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout16.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout17.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout2.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout3.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout4.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout5.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout6.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout8.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/constrained_layout9.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/test_bbox.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/test_bboxtight.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/test_colorbar_location.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/test_colorbars_no_overlapH.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_constrainedlayout/test_colorbars_no_overlapV.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_addlines.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_all_algorithms.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_closed_line_loop.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_corner_mask_False.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_corner_mask_True.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_datetime_axis.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_line_start_on_corner_edge.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_log_extension.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_log_locator.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_manual.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_manual_colors_and_levels.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_manual_labels.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_manual_labels.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_manual_labels.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_test_label_transforms.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_contour/contour_uneven.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_dates/DateFormatter_fractionalSeconds.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_dates/RRuleLocator_bounds.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_dates/date_axhline.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_dates/date_axhspan.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_dates/date_axvline.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_dates/date_axvspan.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_dates/date_inverted_limit.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/alpha_background.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/alpha_background.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/figure_align_labels.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/figure_align_labels.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/figure_legend.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/figure_legend.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/figure_legend.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/figure_suptitle.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/figure_suptitle.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/figure_suptitle.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/figure_today.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/figure_today.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/figure_today.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/test_subfigure.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/test_subfigure_double.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/test_subfigure_scatter_size.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/test_subfigure_ss.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_figure/tightbbox_box_aspect.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/bbox_image_inverted.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/bbox_image_inverted.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/bbox_image_inverted.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/figimage.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/figimage.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_alpha.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_alpha.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_alpha.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_clip.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_clip.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_clip.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_cliprect.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_cliprect.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_cliprect.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_composite_alpha.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_composite_alpha.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_composite_alpha.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_composite_background.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_composite_background.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_composite_background.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_interps.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_interps.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_interps.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_placement.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_placement.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_shift.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/image_shift.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/imshow.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/imshow.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/imshow.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/imshow_bignumbers.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/imshow_bignumbers_real.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/imshow_endianess.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/imshow_flatfield.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/imshow_masked_interpolation.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/imshow_masked_interpolation.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/imshow_masked_interpolation.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/interp_alpha.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/interp_nearest_vs_none.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/interp_nearest_vs_none.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/log_scale_image.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/log_scale_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/log_scale_image.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/mask_image.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/mask_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/mask_image.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/mask_image_over_under.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/no_interpolation_origin.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/no_interpolation_origin.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/no_interpolation_origin.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/nonuniform_and_pcolor.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/rasterize_10dpi.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/rasterize_10dpi.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/rgba_antialias.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/rotate_image.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/rotate_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/rotate_image.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_image/zoom_and_clip_upper_origin.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/fancy.pdf": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/fancy.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/fancy.svg": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/framealpha.pdf": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/framealpha.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/framealpha.svg": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/hatching.pdf": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/hatching.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/hatching.svg": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_auto1.pdf": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_auto1.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_auto1.svg": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_auto2.pdf": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_auto2.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_auto2.svg": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_auto3.pdf": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_auto3.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_auto3.svg": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_expand.pdf": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_expand.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_expand.svg": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_labels_first.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_multiple_keys.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_stackplot.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_various_labels.pdf": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_various_labels.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/legend_various_labels.svg": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/not_covering_scatter.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/not_covering_scatter_transform.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/rcparam_alpha.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/rgba_alpha.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/scatter_rc1.pdf": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/scatter_rc1.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/scatter_rc1.svg": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/scatter_rc3.pdf": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/scatter_rc3.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/scatter_rc3.svg": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_legend/shadow_argument_types.png": { + "mpl_version": "3.8.0.dev1359+g3538cc3828.d20230615", + "rev": 0, + "sha": "3538cc38286a3f7ea6a110d563984bdd58917562" + }, + "test_lines/drawstyle_variants.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_lines/line_collection_dashes.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_lines/line_collection_dashes.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_lines/line_collection_dashes.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_lines/line_dashes.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_lines/line_dashes.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_lines/line_dashes.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_lines/marker_fill_styles.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_lines/scaled_lines.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_lines/scaled_lines.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_lines/scaled_lines.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_lines/striped_line.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/math_fontfamily_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_00.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_01.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_02.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_03.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_04.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_05.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_06.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_07.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_08.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_09.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_11.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_12.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_13.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_14.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_15.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_16.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_17.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_18.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_19.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_20.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_21.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_22.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_32.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_33.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_34.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_35.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_36.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_37.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_38.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_39.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_40.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_41.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_42.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_43.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_44.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_45.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_46.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_47.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_48.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_49.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_50.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_51.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_52.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_53.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_54.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_55.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_56.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_57.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_58.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_59.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_60.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_61.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_62.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_63.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_cm_64.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_00.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_01.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_02.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_03.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_04.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_05.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_06.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_07.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_08.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_09.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_11.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_12.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_13.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_14.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_15.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_16.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_17.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_18.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_19.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_20.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_21.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_22.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_32.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_33.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_34.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_35.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_36.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_37.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_38.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_39.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_40.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_41.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_42.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_43.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_44.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_45.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_46.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_47.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_48.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_49.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_50.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_51.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_52.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_53.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_54.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_55.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_56.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_57.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_58.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_59.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_60.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_61.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_62.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_63.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavusans_64.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_00.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_01.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_02.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_03.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_04.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_05.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_06.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_07.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_08.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_09.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_11.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_12.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_13.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_14.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_15.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_16.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_17.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_18.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_19.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_20.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_21.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_22.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_32.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_33.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_34.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_35.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_36.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_37.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_38.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_39.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_40.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_41.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_42.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_43.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_44.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_45.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_46.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_47.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_48.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_49.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_50.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_51.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_52.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_53.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_54.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_55.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_56.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_57.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_58.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_59.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_60.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_61.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_62.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_63.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_dejavuserif_64.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_00.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_01.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_02.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_03.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_04.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_05.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_06.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_07.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_08.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_09.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_11.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_12.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_13.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_14.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_15.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_16.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_17.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_18.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_19.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_20.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_21.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_22.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_32.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_33.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_34.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_35.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_36.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_37.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_38.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_39.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_40.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_41.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_42.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_43.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_44.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_45.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_46.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_47.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_48.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_49.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_50.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_51.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_52.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_53.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_54.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_55.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_56.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_57.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_58.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_59.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_60.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_61.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_62.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_63.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stix_64.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_00.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_01.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_02.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_03.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_04.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_05.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_06.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_07.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_08.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_09.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_11.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_12.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_13.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_14.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_15.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_16.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_17.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_18.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_19.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_20.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_21.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_22.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_32.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_33.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_34.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_35.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_36.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_37.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_38.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_39.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_40.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_41.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_42.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_43.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_44.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_45.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_46.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_47.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_48.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_49.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_50.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_51.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_52.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_53.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_54.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_55.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_56.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_57.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_58.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_59.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_60.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_61.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_62.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_63.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathfont_stixsans_64.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext0_cm_00.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext0_dejavusans_00.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext1_dejavusans_00.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext1_dejavusans_01.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext1_dejavusans_02.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext1_dejavusans_03.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext1_dejavusans_04.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_00.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_00.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_00.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_01.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_01.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_01.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_02.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_02.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_02.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_03.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_03.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_03.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_04.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_04.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_04.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_05.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_05.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_05.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_06.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_06.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_06.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_07.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_07.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_07.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_08.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_08.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_08.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_09.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_09.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_09.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_10.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_10.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_11.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_11.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_11.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_12.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_12.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_12.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_13.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_13.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_13.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_14.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_14.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_14.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_15.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_15.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_15.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_16.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_16.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_16.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_17.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_17.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_17.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_18.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_18.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_18.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_19.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_19.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_19.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_20.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_20.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_20.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_21.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_21.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_21.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_23.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_23.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_23.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_24.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_24.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_24.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_25.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_25.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_25.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_26.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_26.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_26.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_27.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_27.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_27.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_28.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_28.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_28.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_29.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_29.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_29.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_31.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_31.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_31.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_32.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_32.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_32.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_33.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_33.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_33.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_35.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_35.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_35.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_36.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_36.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_36.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_37.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_37.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_37.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_38.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_38.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_38.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_39.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_39.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_39.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_40.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_40.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_40.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_41.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_41.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_41.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_42.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_42.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_42.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_43.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_43.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_43.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_44.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_44.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_44.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_45.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_45.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_45.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_46.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_46.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_46.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_47.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_47.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_47.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_48.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_48.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_48.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_49.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_49.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_49.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_50.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_50.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_50.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_51.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_51.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_51.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_52.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_52.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_52.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_53.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_53.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_53.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_54.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_54.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_54.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_55.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_55.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_55.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_56.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_56.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_56.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_57.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_57.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_57.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_58.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_58.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_58.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_59.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_59.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_59.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_60.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_60.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_60.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_61.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_61.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_61.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_62.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_62.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_62.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_63.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_63.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_63.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_64.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_64.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_64.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_65.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_65.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_65.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_68.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_68.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_68.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_69.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_69.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_69.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_70.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_70.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_70.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_71.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_71.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_71.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_72.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_72.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_72.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_73.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_73.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_73.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_74.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_74.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_74.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_75.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_75.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_75.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_76.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_76.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_76.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_78.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_78.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_78.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_79.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_79.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_79.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_80.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_80.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_80.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_81.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_81.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_81.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_82.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_82.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_cm_82.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_00.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_00.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_00.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_01.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_01.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_01.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_02.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_02.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_02.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_03.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_03.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_03.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_04.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_04.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_04.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_05.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_05.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_05.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_06.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_06.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_06.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_07.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_07.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_07.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_08.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_08.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_08.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_09.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_09.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_09.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_10.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_10.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_11.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_11.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_11.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_12.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_12.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_12.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_13.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_13.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_13.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_14.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_14.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_14.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_15.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_15.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_15.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_16.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_16.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_16.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_17.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_17.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_17.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_18.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_18.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_18.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_19.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_19.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_19.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_20.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_20.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_20.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_21.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_21.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_21.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_23.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_23.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_23.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_24.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_24.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_24.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_25.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_25.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_25.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_26.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_26.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_26.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_27.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_27.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_27.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_28.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_28.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_28.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_29.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_29.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_29.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_31.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_31.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_31.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_32.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_32.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_32.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_33.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_33.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_33.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_35.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_35.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_35.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_36.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_36.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_36.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_37.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_37.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_37.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_38.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_38.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_38.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_39.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_39.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_39.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_40.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_40.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_40.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_41.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_41.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_41.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_42.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_42.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_42.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_43.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_43.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_43.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_44.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_44.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_44.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_45.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_45.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_45.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_46.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_46.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_46.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_47.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_47.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_47.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_48.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_48.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_48.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_49.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_49.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_49.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_50.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_50.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_50.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_51.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_51.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_51.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_52.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_52.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_52.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_53.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_53.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_53.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_54.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_54.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_54.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_55.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_55.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_55.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_56.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_56.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_56.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_57.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_57.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_57.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_58.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_58.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_58.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_59.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_59.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_59.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_60.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_60.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_60.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_61.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_61.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_61.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_62.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_62.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_62.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_63.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_63.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_63.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_64.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_64.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_64.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_65.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_65.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_65.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_68.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_68.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_68.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_69.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_69.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_69.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_70.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_70.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_70.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_71.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_71.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_71.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_72.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_72.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_72.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_73.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_73.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_73.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_74.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_74.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_74.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_75.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_75.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_75.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_76.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_76.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_76.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_78.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_78.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_78.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_79.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_79.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_79.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_80.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_80.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_80.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_81.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_81.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_81.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_82.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_82.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavusans_82.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_00.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_00.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_00.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_01.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_01.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_01.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_02.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_02.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_02.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_03.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_03.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_03.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_04.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_04.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_04.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_05.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_05.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_05.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_06.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_06.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_06.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_07.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_07.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_07.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_08.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_08.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_08.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_09.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_09.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_09.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_10.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_10.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_11.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_11.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_11.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_12.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_12.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_12.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_13.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_13.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_13.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_14.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_14.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_14.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_15.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_15.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_15.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_16.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_16.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_16.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_17.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_17.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_17.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_18.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_18.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_18.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_19.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_19.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_19.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_20.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_20.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_20.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_21.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_21.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_21.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_23.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_23.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_23.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_24.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_24.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_24.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_25.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_25.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_25.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_26.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_26.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_26.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_27.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_27.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_27.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_28.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_28.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_28.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_29.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_29.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_29.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_31.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_31.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_31.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_32.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_32.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_32.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_33.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_33.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_33.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_35.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_35.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_35.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_36.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_36.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_36.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_37.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_37.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_37.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_38.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_38.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_38.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_39.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_39.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_39.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_40.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_40.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_40.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_41.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_41.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_41.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_42.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_42.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_42.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_43.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_43.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_43.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_44.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_44.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_44.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_45.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_45.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_45.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_46.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_46.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_46.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_47.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_47.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_47.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_48.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_48.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_48.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_49.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_49.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_49.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_50.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_50.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_50.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_51.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_51.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_51.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_52.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_52.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_52.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_53.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_53.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_53.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_54.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_54.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_54.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_55.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_55.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_55.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_56.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_56.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_56.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_57.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_57.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_57.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_58.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_58.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_58.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_59.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_59.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_59.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_60.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_60.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_60.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_61.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_61.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_61.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_62.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_62.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_62.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_63.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_63.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_63.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_64.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_64.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_64.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_65.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_65.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_65.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_68.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_68.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_68.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_69.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_69.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_69.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_70.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_70.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_70.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_71.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_71.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_71.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_72.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_72.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_72.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_73.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_73.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_73.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_74.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_74.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_74.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_75.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_75.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_75.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_76.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_76.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_76.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_78.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_78.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_78.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_79.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_79.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_79.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_80.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_80.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_80.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_81.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_81.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_81.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_82.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_82.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_dejavuserif_82.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_00.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_00.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_00.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_01.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_01.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_01.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_02.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_02.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_02.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_03.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_03.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_03.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_04.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_04.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_04.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_05.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_05.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_05.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_06.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_06.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_06.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_07.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_07.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_07.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_08.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_08.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_08.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_09.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_09.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_09.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_10.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_10.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_11.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_11.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_11.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_12.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_12.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_12.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_13.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_13.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_13.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_14.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_14.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_14.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_15.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_15.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_15.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_16.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_16.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_16.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_17.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_17.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_17.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_18.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_18.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_18.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_19.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_19.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_19.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_20.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_20.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_20.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_21.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_21.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_21.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_23.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_23.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_23.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_24.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_24.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_24.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_25.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_25.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_25.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_26.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_26.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_26.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_27.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_27.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_27.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_28.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_28.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_28.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_29.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_29.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_29.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_31.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_31.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_31.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_32.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_32.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_32.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_33.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_33.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_33.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_35.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_35.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_35.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_36.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_36.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_36.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_37.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_37.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_37.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_38.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_38.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_38.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_39.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_39.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_39.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_40.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_40.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_40.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_41.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_41.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_41.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_42.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_42.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_42.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_43.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_43.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_43.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_44.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_44.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_44.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_45.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_45.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_45.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_46.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_46.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_46.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_47.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_47.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_47.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_48.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_48.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_48.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_49.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_49.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_49.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_50.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_50.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_50.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_51.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_51.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_51.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_52.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_52.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_52.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_53.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_53.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_53.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_54.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_54.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_54.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_55.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_55.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_55.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_56.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_56.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_56.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_57.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_57.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_57.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_58.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_58.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_58.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_59.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_59.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_59.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_60.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_60.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_60.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_61.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_61.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_61.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_62.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_62.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_62.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_63.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_63.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_63.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_64.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_64.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_64.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_65.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_65.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_65.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_68.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_68.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_68.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_69.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_69.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_69.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_70.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_70.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_70.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_71.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_71.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_71.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_72.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_72.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_72.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_73.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_73.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_73.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_74.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_74.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_74.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_75.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_75.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_75.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_76.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_76.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_76.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_78.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_78.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_78.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_79.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_79.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_79.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_80.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_80.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_80.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_81.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_81.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_81.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_82.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_82.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stix_82.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_00.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_00.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_00.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_01.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_01.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_01.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_02.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_02.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_02.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_03.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_03.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_03.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_04.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_04.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_04.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_05.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_05.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_05.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_06.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_06.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_06.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_07.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_07.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_07.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_08.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_08.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_08.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_09.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_09.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_09.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_10.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_10.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_10.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_11.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_11.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_11.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_12.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_12.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_12.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_13.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_13.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_13.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_14.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_14.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_14.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_15.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_15.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_15.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_16.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_16.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_16.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_17.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_17.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_17.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_18.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_18.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_18.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_19.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_19.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_19.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_20.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_20.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_20.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_21.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_21.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_21.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_23.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_23.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_23.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_24.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_24.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_24.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_25.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_25.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_25.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_26.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_26.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_26.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_27.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_27.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_27.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_28.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_28.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_28.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_29.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_29.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_29.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_31.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_31.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_31.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_32.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_32.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_32.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_33.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_33.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_33.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_35.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_35.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_35.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_36.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_36.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_36.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_37.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_37.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_37.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_38.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_38.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_38.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_39.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_39.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_39.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_40.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_40.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_40.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_41.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_41.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_41.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_42.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_42.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_42.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_43.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_43.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_43.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_44.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_44.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_44.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_45.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_45.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_45.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_46.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_46.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_46.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_47.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_47.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_47.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_48.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_48.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_48.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_49.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_49.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_49.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_50.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_50.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_50.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_51.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_51.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_51.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_52.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_52.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_52.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_53.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_53.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_53.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_54.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_54.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_54.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_55.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_55.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_55.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_56.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_56.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_56.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_57.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_57.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_57.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_58.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_58.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_58.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_59.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_59.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_59.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_60.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_60.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_60.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_61.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_61.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_61.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_62.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_62.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_62.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_63.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_63.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_63.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_64.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_64.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_64.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_65.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_65.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_65.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_68.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_68.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_68.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_69.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_69.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_69.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_70.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_70.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_70.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_71.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_71.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_71.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_72.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_72.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_72.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_73.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_73.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_73.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_74.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_74.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_74.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_75.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_75.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_75.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_76.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_76.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_76.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_78.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_78.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_78.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_79.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_79.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_79.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_80.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_80.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_80.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_81.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_81.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_81.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_82.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_82.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_mathtext/mathtext_stixsans_82.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_offsetbox/anchoredtext_align.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_offsetbox/offsetbox_clipping.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_offsetbox/offsetbox_clipping.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_offsetbox/offsetbox_clipping.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_offsetbox/paddedbox.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/all_quadrants_arcs.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/annulus.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/autoscale_arc.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/autoscale_arc.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/clip_to_bbox.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/clip_to_bbox.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/clip_to_bbox.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/connection_patch.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/large_arc.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/multi_color_hatch.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/multi_color_hatch.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/multi_color_hatch.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/patch_alpha_coloring.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/patch_alpha_coloring.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/patch_alpha_coloring.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/patch_alpha_override.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/patch_alpha_override.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/patch_alpha_override.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/patch_custom_linestyle.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/patch_custom_linestyle.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/patch_custom_linestyle.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/units_rectangle.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/wedge_range.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/wedge_range.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patches/wedge_range.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_path/arrow_contains_point.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_path/marker_paths.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_path/nan_path.eps": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_path/nan_path.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_path/nan_path.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_path/nan_path.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_path/path_clipping.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_path/semi_log_with_zero.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_path/xkcd.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_path/xkcd_marker.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/collection.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/collection.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/collection.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/patheffect1.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/patheffect1.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/patheffect1.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/patheffect2.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/patheffect2.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/patheffect2.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/patheffect3.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/patheffect3.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/patheffect3.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/spaces_and_newlines.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/stroked_text.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_patheffects/tickedstroke.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_png/pngsuite.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_alignment.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_axes.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_axes.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_axes.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_coords.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_coords.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_coords.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_invertedylim.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_invertedylim_rorigin.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_log.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_negative_rmin.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_negative_rmin.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_negative_rmin.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_rlabel_position.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_rlabel_position.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_rlabel_position.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_rmin.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_rmin.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_rmin.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_rorigin.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_rorigin.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_rorigin.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_theta_position.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_theta_position.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_theta_position.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_theta_wedge.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_theta_wedge.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_polar/polar_theta_wedge.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_quiver/barbs_pivot_test_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_quiver/barbs_test_flip.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_quiver/barbs_test_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_quiver/quiver_animated_test_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_quiver/quiver_key_pivot.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_quiver/quiver_key_xy.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_quiver/quiver_single_test_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_quiver/quiver_with_key_test_image.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_quiver/quiver_xy.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_scale/function_scales.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_scale/logit_scales.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_scale/logscale_mask.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_scale/logscale_nonpos_values.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipper_edge.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipper_edge.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipper_edge.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipping.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipping.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipping.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipping_diamond.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipping_diamond.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipping_diamond.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipping_with_nans.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipping_with_nans.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/clipping_with_nans.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/fft_peaks.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/fft_peaks.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/fft_peaks.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/hatch_simplify.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/hatch_simplify.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/hatch_simplify.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/overflow.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/overflow.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/overflow.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/para_equal_perp.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/para_equal_perp.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/para_equal_perp.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/simplify_curve.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/simplify_curve.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_simplification/simplify_curve.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_skew/skew_axes.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_skew/skew_axes.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_skew/skew_axes.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_skew/skew_rects.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_skew/skew_rects.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_skew/skew_rects.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/black_axes.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/black_axes.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/black_axes.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/spines_axes_positions.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/spines_axes_positions.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/spines_axes_positions.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/spines_capstyle.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/spines_capstyle.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/spines_capstyle.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/spines_data_positions.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/spines_data_positions.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_spines/spines_data_positions.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_colormap.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_colormap.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_colormap.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_direction.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_linewidth.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_linewidth.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_linewidth.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_masks_and_nans.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_masks_and_nans.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_masks_and_nans.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_maxlength.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_maxlength_no_broken.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_streamplot/streamplot_startpoints.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_subplots/subplots_offset_text.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_subplots/subplots_offset_text.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_subplots/subplots_offset_text.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_table/table_auto_column.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_table/table_cell_manipulation.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_table/table_labels.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_table/table_zorder.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/agg_text_clip.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/annotation_negative_ax_coords.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/annotation_negative_fig_coords.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/antialiased.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/axes_titles.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/basictext_wrap.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/font_scaling.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/font_styles.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/font_styles.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/font_styles.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/fonttext_wrap.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/large_subscript_title.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/multiline.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/multiline.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/multiline.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/multiline2.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/multiline2.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/multiline2.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_alignment.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_alignment.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_alignment.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_as_path_opacity.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_as_text_opacity.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_bboxclip.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_bboxclip.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_bboxclip.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_contains.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_pdf_chars_beyond_bmp.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_pdf_font42_kerning.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/text_pdf_kerning.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/titles.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/titles.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_text/titles.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout1.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout1.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout1.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout2.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout2.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout2.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout3.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout3.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout3.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout4.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout4.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout4.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout5.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout5.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout5.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout6.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout6.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout6.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout7.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout7.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout7.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout8.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout8.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout8.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout9.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout9.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout9.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout_offsetboxes1.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout_offsetboxes1.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout_offsetboxes1.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout_offsetboxes2.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout_offsetboxes2.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_tightlayout/tight_layout_offsetboxes2.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_transforms/pre_transform_data.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_transforms/pre_transform_data.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_transforms/pre_transform_data.svg": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_triangulation/tri_smooth_contouring.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_triangulation/tri_smooth_gradient.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_triangulation/tripcolor1.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_ttconv/truetype-conversion.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_units/jpl_bar_units.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_units/jpl_barh_units.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_units/plot_masked_units.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_units/plot_pint.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_usetex/eqnarray.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_usetex/test_usetex.pdf": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_usetex/test_usetex.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + }, + "test_widgets/check_radio_buttons.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "3b659f864948748b67616403537b361890968f15" + } +} diff --git a/lib/matplotlib/tests/baseline_images/test_text/basictext_wrap.png b/lib/matplotlib/tests/baseline_images/test_text/basictext_wrap.png index 267e2af4c469..b041afb8b7b8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/basictext_wrap.png and b/lib/matplotlib/tests/baseline_images/test_text/basictext_wrap.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/fonttext_wrap.png b/lib/matplotlib/tests/baseline_images/test_text/fonttext_wrap.png index 7ca96d571331..fa057bbfd3dc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/fonttext_wrap.png and b/lib/matplotlib/tests/baseline_images/test_text/fonttext_wrap.png differ diff --git a/lib/matplotlib/tests/image_list.txt b/lib/matplotlib/tests/image_list.txt new file mode 100644 index 000000000000..ac2dea9d18fc --- /dev/null +++ b/lib/matplotlib/tests/image_list.txt @@ -0,0 +1,2345 @@ +pngsuite/basn0g01.png:0:0 +pngsuite/basn0g02.png:0:0 +pngsuite/basn0g04.png:0:0 +pngsuite/basn0g08.png:0:0 +pngsuite/basn0g16.png:0:0 +pngsuite/basn2c08.png:0:0 +pngsuite/basn2c16.png:0:0 +pngsuite/basn3p01.png:0:0 +pngsuite/basn3p02.png:0:0 +pngsuite/basn3p04.png:0:0 +pngsuite/basn3p08.png:0:0 +pngsuite/basn4a08.png:0:0 +pngsuite/basn4a16.png:0:0 +pngsuite/basn6a08.png:0:0 +pngsuite/basn6a16.png:0:0 +test_agg/agg_filter.png:0:0 +test_agg_filter/agg_filter_alpha.pdf:0:0 +test_agg_filter/agg_filter_alpha.png:0:0 +test_arrow_patches/arrow_styles.png:0:0 +test_arrow_patches/boxarrow_test_image.png:0:0 +test_arrow_patches/connection_styles.png:0:0 +test_arrow_patches/fancyarrow_dash.png:0:0 +test_arrow_patches/fancyarrow_dpi_cor_100dpi.png:0:0 +test_arrow_patches/fancyarrow_dpi_cor_200dpi.png:0:0 +test_arrow_patches/fancyarrow_test_image.pdf:0:0 +test_arrow_patches/fancyarrow_test_image.png:0:0 +test_arrow_patches/fancyarrow_test_image.svg:0:0 +test_artist/clip_path_clipping.pdf:0:0 +test_artist/clip_path_clipping.png:0:0 +test_artist/clip_path_clipping.svg:0:0 +test_artist/default_edges.png:0:0 +test_artist/hatching.pdf:0:0 +test_artist/hatching.png:0:0 +test_artist/hatching.svg:0:0 +test_axes/aitoff_proj.png:0:0 +test_axes/angle_spectrum_freqs.png:0:0 +test_axes/angle_spectrum_noise.png:0:0 +test_axes/annotate_across_transforms.png:0:0 +test_axes/arc_angles.png:0:0 +test_axes/arc_ellipse.pdf:0:0 +test_axes/arc_ellipse.png:0:0 +test_axes/arc_ellipse.svg:0:0 +test_axes/arrow_simple.png:0:0 +test_axes/autoscale_tiny_range.pdf:0:0 +test_axes/autoscale_tiny_range.png:0:0 +test_axes/autoscale_tiny_range.svg:0:0 +test_axes/axhspan_epoch.pdf:0:0 +test_axes/axhspan_epoch.png:0:0 +test_axes/axhspan_epoch.svg:0:0 +test_axes/axis_options.png:0:0 +test_axes/axisbelow.png:0:0 +test_axes/axvspan_epoch.pdf:0:0 +test_axes/axvspan_epoch.png:0:0 +test_axes/axvspan_epoch.svg:0:0 +test_axes/bar_tick_label_multiple.png:0:0 +test_axes/bar_tick_label_multiple_old_label_alignment.png:0:0 +test_axes/bar_tick_label_single.png:0:0 +test_axes/barh_tick_label.png:0:0 +test_axes/boxplot.pdf:0:0 +test_axes/boxplot.png:0:0 +test_axes/boxplot.svg:0:0 +test_axes/boxplot_autorange_false_whiskers.png:0:0 +test_axes/boxplot_autorange_true_whiskers.png:0:0 +test_axes/boxplot_custom_capwidths.png:0:0 +test_axes/boxplot_mod_artists_after_plotting.png:0:0 +test_axes/boxplot_no_inverted_whisker.png:0:0 +test_axes/boxplot_rc_parameters.pdf:0:0 +test_axes/boxplot_rc_parameters.png:0:0 +test_axes/boxplot_rc_parameters.svg:0:0 +test_axes/boxplot_sym.png:0:0 +test_axes/boxplot_sym2.png:0:0 +test_axes/boxplot_with_CIarray.png:0:0 +test_axes/bxp_baseline.png:0:0 +test_axes/bxp_custom_capwidth.png:0:0 +test_axes/bxp_custom_capwidths.png:0:0 +test_axes/bxp_custombox.png:0:0 +test_axes/bxp_customcap.png:0:0 +test_axes/bxp_custommedian.png:0:0 +test_axes/bxp_customoutlier.png:0:0 +test_axes/bxp_custompatchartist.png:0:0 +test_axes/bxp_custompositions.png:0:0 +test_axes/bxp_customwhisker.png:0:0 +test_axes/bxp_customwidths.png:0:0 +test_axes/bxp_horizontal.png:0:0 +test_axes/bxp_no_flier_stats.png:0:0 +test_axes/bxp_nobox.png:0:0 +test_axes/bxp_nocaps.png:0:0 +test_axes/bxp_patchartist.png:0:0 +test_axes/bxp_percentilewhis.png:0:0 +test_axes/bxp_rangewhis.png:0:0 +test_axes/bxp_scalarwidth.png:0:0 +test_axes/bxp_with_xlabels.png:0:0 +test_axes/bxp_with_ylabels.png:0:0 +test_axes/bxp_withmean_custompoint.png:0:0 +test_axes/bxp_withmean_line.png:0:0 +test_axes/bxp_withmean_point.png:0:0 +test_axes/bxp_withnotch.png:0:0 +test_axes/canonical.pdf:0:0 +test_axes/canonical.png:0:0 +test_axes/canonical.svg:0:0 +test_axes/contour_colorbar.pdf:0:0 +test_axes/contour_colorbar.png:0:0 +test_axes/contour_colorbar.svg:0:0 +test_axes/contour_hatching.pdf:0:0 +test_axes/contour_hatching.png:0:0 +test_axes/contour_hatching.svg:0:0 +test_axes/csd_freqs.png:0:0 +test_axes/csd_noise.png:0:0 +test_axes/dash_offset.pdf:0:0 +test_axes/dash_offset.png:0:0 +test_axes/dash_offset.svg:0:0 +test_axes/date_timezone_x.png:0:0 +test_axes/date_timezone_x_and_y.png:0:0 +test_axes/date_timezone_y.png:0:0 +test_axes/errorbar_basic.pdf:0:0 +test_axes/errorbar_basic.png:0:0 +test_axes/errorbar_basic.svg:0:0 +test_axes/errorbar_limits.pdf:0:0 +test_axes/errorbar_limits.png:0:0 +test_axes/errorbar_limits.svg:0:0 +test_axes/errorbar_mixed.pdf:0:0 +test_axes/errorbar_mixed.png:0:0 +test_axes/errorbar_mixed.svg:0:0 +test_axes/errorbar_zorder.pdf:0:0 +test_axes/errorbar_zorder.png:0:0 +test_axes/errorbar_zorder.svg:0:0 +test_axes/eventplot.pdf:0:0 +test_axes/eventplot.png:0:0 +test_axes/eventplot.svg:0:0 +test_axes/extent_units.png:0:0 +test_axes/fill_between_interpolate.pdf:0:0 +test_axes/fill_between_interpolate.png:0:0 +test_axes/fill_between_interpolate.svg:0:0 +test_axes/fill_between_interpolate_decreasing.pdf:0:0 +test_axes/fill_between_interpolate_decreasing.png:0:0 +test_axes/fill_between_interpolate_decreasing.svg:0:0 +test_axes/fill_between_interpolate_nan.pdf:0:0 +test_axes/fill_between_interpolate_nan.png:0:0 +test_axes/fill_between_interpolate_nan.svg:0:0 +test_axes/fill_units.png:0:0 +test_axes/formatter_ticker_001.pdf:0:0 +test_axes/formatter_ticker_001.png:0:0 +test_axes/formatter_ticker_001.svg:0:0 +test_axes/formatter_ticker_002.pdf:0:0 +test_axes/formatter_ticker_002.png:0:0 +test_axes/formatter_ticker_002.svg:0:0 +test_axes/formatter_ticker_003.pdf:0:0 +test_axes/formatter_ticker_003.png:0:0 +test_axes/formatter_ticker_003.svg:0:0 +test_axes/formatter_ticker_004.pdf:0:0 +test_axes/formatter_ticker_004.png:0:0 +test_axes/formatter_ticker_004.svg:0:0 +test_axes/formatter_ticker_005.pdf:0:0 +test_axes/formatter_ticker_005.png:0:0 +test_axes/formatter_ticker_005.svg:0:0 +test_axes/hexbin_empty.png:0:0 +test_axes/hexbin_extent.png:0:0 +test_axes/hexbin_linear.png:0:0 +test_axes/hexbin_log.png:0:0 +test_axes/hist2d.pdf:0:0 +test_axes/hist2d.png:0:0 +test_axes/hist2d.svg:0:0 +test_axes/hist2d_transpose.pdf:0:0 +test_axes/hist2d_transpose.png:0:0 +test_axes/hist2d_transpose.svg:0:0 +test_axes/hist_bar_empty.png:0:0 +test_axes/hist_density.png:0:0 +test_axes/hist_log.pdf:0:0 +test_axes/hist_log.png:0:0 +test_axes/hist_log.svg:0:0 +test_axes/hist_offset.pdf:0:0 +test_axes/hist_offset.png:0:0 +test_axes/hist_offset.svg:0:0 +test_axes/hist_stacked.png:0:0 +test_axes/hist_stacked_bar.pdf:0:0 +test_axes/hist_stacked_bar.png:0:0 +test_axes/hist_stacked_bar.svg:0:0 +test_axes/hist_stacked_normed.pdf:0:0 +test_axes/hist_stacked_normed.png:0:0 +test_axes/hist_stacked_normed.svg:0:0 +test_axes/hist_stacked_step.pdf:0:0 +test_axes/hist_stacked_step.png:0:0 +test_axes/hist_stacked_step.svg:0:0 +test_axes/hist_stacked_stepfilled.pdf:0:0 +test_axes/hist_stacked_stepfilled.png:0:0 +test_axes/hist_stacked_stepfilled.svg:0:0 +test_axes/hist_stacked_stepfilled_alpha.pdf:0:0 +test_axes/hist_stacked_stepfilled_alpha.png:0:0 +test_axes/hist_stacked_stepfilled_alpha.svg:0:0 +test_axes/hist_stacked_weights.pdf:0:0 +test_axes/hist_stacked_weights.png:0:0 +test_axes/hist_stacked_weights.svg:0:0 +test_axes/hist_step.png:0:0 +test_axes/hist_step_bottom.png:0:0 +test_axes/hist_step_empty.png:0:0 +test_axes/hist_step_filled.png:0:0 +test_axes/hist_step_horiz.png:0:0 +test_axes/hlines_basic.png:0:0 +test_axes/hlines_masked.png:0:0 +test_axes/hlines_with_nan.png:0:0 +test_axes/imshow.pdf:0:0 +test_axes/imshow.png:0:0 +test_axes/imshow.svg:0:0 +test_axes/imshow_clip.pdf:0:0 +test_axes/imshow_clip.png:0:0 +test_axes/imshow_clip.svg:0:0 +test_axes/inset_polar.png:0:0 +test_axes/loglog.png:0:0 +test_axes/magnitude_spectrum_freqs_dB.png:0:0 +test_axes/magnitude_spectrum_freqs_linear.png:0:0 +test_axes/magnitude_spectrum_noise_dB.png:0:0 +test_axes/magnitude_spectrum_noise_linear.png:0:0 +test_axes/marker_edges.pdf:0:0 +test_axes/marker_edges.png:0:0 +test_axes/marker_edges.svg:0:0 +test_axes/marker_styles.png:0:0 +test_axes/markevery.pdf:0:0 +test_axes/markevery.png:0:0 +test_axes/markevery.svg:0:0 +test_axes/markevery_line.pdf:0:0 +test_axes/markevery_line.png:0:0 +test_axes/markevery_line.svg:0:0 +test_axes/markevery_linear_scales.pdf:0:0 +test_axes/markevery_linear_scales.png:0:0 +test_axes/markevery_linear_scales.svg:0:0 +test_axes/markevery_linear_scales_nans.pdf:0:0 +test_axes/markevery_linear_scales_nans.png:0:0 +test_axes/markevery_linear_scales_nans.svg:0:0 +test_axes/markevery_linear_scales_zoomed.pdf:0:0 +test_axes/markevery_linear_scales_zoomed.png:0:0 +test_axes/markevery_linear_scales_zoomed.svg:0:0 +test_axes/markevery_log_scales.pdf:0:0 +test_axes/markevery_log_scales.png:0:0 +test_axes/markevery_log_scales.svg:0:0 +test_axes/markevery_polar.pdf:0:0 +test_axes/markevery_polar.png:0:0 +test_axes/markevery_polar.svg:0:0 +test_axes/mixed_collection.pdf:0:0 +test_axes/mixed_collection.png:0:0 +test_axes/mixed_collection.svg:0:0 +test_axes/mixed_errorbar_polar_caps.png:0:0 +test_axes/mollweide_grid.pdf:0:0 +test_axes/mollweide_grid.png:0:0 +test_axes/mollweide_grid.svg:0:0 +test_axes/nonfinite_limits.pdf:0:0 +test_axes/nonfinite_limits.png:0:0 +test_axes/nonfinite_limits.svg:0:0 +test_axes/o_marker_path_snap.png:0:0 +test_axes/offset_points.pdf:0:0 +test_axes/offset_points.png:0:0 +test_axes/offset_points.svg:0:0 +test_axes/pcolor_datetime_axis.png:0:0 +test_axes/pcolormesh.pdf:0:0 +test_axes/pcolormesh.png:0:0 +test_axes/pcolormesh.svg:0:0 +test_axes/pcolormesh_alpha.pdf:0:0 +test_axes/pcolormesh_alpha.png:0:0 +test_axes/pcolormesh_datetime_axis.png:0:0 +test_axes/pcolormesh_small.eps:0:0 +test_axes/phase_spectrum_freqs.png:0:0 +test_axes/phase_spectrum_noise.png:0:0 +test_axes/pie_ccw_true.png:0:0 +test_axes/pie_center_radius.png:0:0 +test_axes/pie_default.png:0:0 +test_axes/pie_frame_grid.png:0:0 +test_axes/pie_linewidth_0.png:0:0 +test_axes/pie_linewidth_2.png:0:0 +test_axes/pie_no_label.png:0:0 +test_axes/pie_rotatelabels_true.png:0:0 +test_axes/pie_shadow.png:0:0 +test_axes/polycollection_joinstyle.pdf:0:0 +test_axes/polycollection_joinstyle.png:0:0 +test_axes/polycollection_joinstyle.svg:0:0 +test_axes/preset_clip_paths.png:0:0 +test_axes/psd_freqs.png:0:0 +test_axes/psd_noise.png:0:0 +test_axes/rc_grid.png:0:0 +test_axes/rc_markerfill.png:0:0 +test_axes/rc_spines.png:0:0 +test_axes/retain_tick_visibility.png:0:0 +test_axes/rgba_markers.pdf:0:0 +test_axes/rgba_markers.png:0:0 +test_axes/rgba_markers.svg:0:0 +test_axes/scatter.pdf:0:0 +test_axes/scatter.png:0:0 +test_axes/scatter.svg:0:0 +test_axes/scatter_2D.png:0:0 +test_axes/scatter_marker.png:0:0 +test_axes/secondary_xy.png:0:0 +test_axes/set_get_ticklabels.png:0:0 +test_axes/single_date.png:0:0 +test_axes/single_point.pdf:0:0 +test_axes/single_point.png:0:0 +test_axes/single_point.svg:0:0 +test_axes/specgram_angle_freqs.png:0:0 +test_axes/specgram_angle_noise.png:0:0 +test_axes/specgram_freqs.png:0:0 +test_axes/specgram_freqs_linear.png:0:0 +test_axes/specgram_magnitude_freqs.png:0:0 +test_axes/specgram_magnitude_freqs_linear.png:0:0 +test_axes/specgram_magnitude_noise.png:0:0 +test_axes/specgram_magnitude_noise_linear.png:0:0 +test_axes/specgram_noise.png:0:0 +test_axes/specgram_noise_linear.png:0:0 +test_axes/specgram_phase_freqs.png:0:0 +test_axes/specgram_phase_noise.png:0:0 +test_axes/stackplot_test_baseline.pdf:0:0 +test_axes/stackplot_test_baseline.png:0:0 +test_axes/stackplot_test_baseline.svg:0:0 +test_axes/stackplot_test_image.pdf:0:0 +test_axes/stackplot_test_image.png:0:0 +test_axes/stackplot_test_image.svg:0:0 +test_axes/stem.png:0:0 +test_axes/stem_orientation.png:0:0 +test_axes/step_linestyle.pdf:0:0 +test_axes/step_linestyle.png:0:0 +test_axes/step_linestyle.svg:0:0 +test_axes/symlog.pdf:0:0 +test_axes/symlog2.pdf:0:0 +test_axes/test_alpha.pdf:0:0 +test_axes/test_alpha.png:0:0 +test_axes/test_alpha.svg:0:0 +test_axes/test_centered_bar_label_nonlinear.svg:0:0 +test_axes/test_eventplot_defaults.png:0:0 +test_axes/test_eventplot_problem_kwargs.png:0:0 +test_axes/test_loglog_nonpos.png:0:0 +test_axes/test_stairs_datetime.png:0:0 +test_axes/test_stairs_options.png:0:0 +test_axes/transparent_markers.pdf:0:0 +test_axes/transparent_markers.png:0:0 +test_axes/transparent_markers.svg:0:0 +test_axes/twin_autoscale.png:0:0 +test_axes/twin_axis_locators_formatters.pdf:0:0 +test_axes/twin_axis_locators_formatters.png:0:0 +test_axes/twin_axis_locators_formatters.svg:0:0 +test_axes/twin_spines.png:0:0 +test_axes/twin_spines_on_top.png:0:0 +test_axes/vertex_markers.png:0:0 +test_axes/violinplot_horiz_baseline.png:0:0 +test_axes/violinplot_horiz_custompoints_10.png:0:0 +test_axes/violinplot_horiz_custompoints_200.png:0:0 +test_axes/violinplot_horiz_showall.png:0:0 +test_axes/violinplot_horiz_showextrema.png:0:0 +test_axes/violinplot_horiz_showmeans.png:0:0 +test_axes/violinplot_horiz_showmedians.png:0:0 +test_axes/violinplot_vert_baseline.png:0:0 +test_axes/violinplot_vert_custompoints_10.png:0:0 +test_axes/violinplot_vert_custompoints_200.png:0:0 +test_axes/violinplot_vert_showall.png:0:0 +test_axes/violinplot_vert_showextrema.png:0:0 +test_axes/violinplot_vert_showmeans.png:0:0 +test_axes/violinplot_vert_showmedians.png:0:0 +test_axes/vline_hline_zorder.pdf:0:0 +test_axes/vline_hline_zorder.png:0:0 +test_axes/vline_hline_zorder.svg:0:0 +test_axes/vlines_basic.png:0:0 +test_axes/vlines_hlines_blended_transform.png:0:0 +test_axes/vlines_masked.png:0:0 +test_axes/vlines_with_nan.png:0:0 +test_backend_pdf/grayscale_alpha.pdf:0:0 +test_backend_pdf/hatching_legend.pdf:0:0 +test_backend_pdf/kerning.pdf:0:0 +test_backend_pdf/multi_font_type3.pdf:0:0 +test_backend_pdf/multi_font_type42.pdf:0:0 +test_backend_pdf/pdf_use14corefonts.pdf:0:0 +test_backend_pgf/pgf_bbox_inches.pdf:0:0 +test_backend_pgf/pgf_mixedmode.pdf:0:0 +test_backend_pgf/pgf_pdflatex.pdf:0:0 +test_backend_pgf/pgf_rcupdate1.pdf:0:0 +test_backend_pgf/pgf_rcupdate2.pdf:0:0 +test_backend_pgf/pgf_xelatex.pdf:0:0 +test_backend_ps/colorbar_shift.eps:0:0 +test_backend_ps/coloredhatcheszerolw.eps:0:0 +test_backend_ps/empty.pdf:0:0 +test_backend_ps/multi_font_type3.eps:0:0 +test_backend_ps/multi_font_type42.eps:0:0 +test_backend_ps/scatter.eps:0:0 +test_backend_ps/type3.eps:0:0 +test_backend_ps/type42_without_prep.eps:0:0 +test_backend_ps/useafm.eps:0:0 +test_backend_svg/bold_font_output.svg:0:0 +test_backend_svg/bold_font_output_with_none_fonttype.svg:0:0 +test_backend_svg/fill_black_with_alpha.svg:0:0 +test_backend_svg/multi_font_aspath.svg:0:0 +test_backend_svg/multi_font_astext.svg:0:0 +test_backend_svg/noscale.pdf:0:0 +test_backend_svg/noscale.png:0:0 +test_backend_svg/noscale.svg:0:0 +test_bbox_tight/bbox_inches_fixed_aspect.png:0:0 +test_bbox_tight/bbox_inches_tight.pdf:0:0 +test_bbox_tight/bbox_inches_tight.png:0:0 +test_bbox_tight/bbox_inches_tight.svg:0:0 +test_bbox_tight/bbox_inches_tight_clipping.pdf:0:0 +test_bbox_tight/bbox_inches_tight_clipping.png:0:0 +test_bbox_tight/bbox_inches_tight_clipping.svg:0:0 +test_bbox_tight/bbox_inches_tight_layout.png:0:0 +test_bbox_tight/bbox_inches_tight_raster.pdf:0:0 +test_bbox_tight/bbox_inches_tight_raster.png:0:0 +test_bbox_tight/bbox_inches_tight_raster.svg:0:0 +test_bbox_tight/bbox_inches_tight_suptile_legend.pdf:0:0 +test_bbox_tight/bbox_inches_tight_suptile_legend.png:0:0 +test_bbox_tight/bbox_inches_tight_suptile_legend.svg:0:0 +test_bbox_tight/bbox_inches_tight_suptile_non_default.png:0:0 +test_collections/EllipseCollection_test_image.png:0:0 +test_collections/EventCollection_plot__add_positions.pdf:0:0 +test_collections/EventCollection_plot__add_positions.png:0:0 +test_collections/EventCollection_plot__add_positions.svg:0:0 +test_collections/EventCollection_plot__append_positions.pdf:0:0 +test_collections/EventCollection_plot__append_positions.png:0:0 +test_collections/EventCollection_plot__append_positions.svg:0:0 +test_collections/EventCollection_plot__default.pdf:0:0 +test_collections/EventCollection_plot__default.png:0:0 +test_collections/EventCollection_plot__default.svg:0:0 +test_collections/EventCollection_plot__extend_positions.pdf:0:0 +test_collections/EventCollection_plot__extend_positions.png:0:0 +test_collections/EventCollection_plot__extend_positions.svg:0:0 +test_collections/EventCollection_plot__set_color.pdf:0:0 +test_collections/EventCollection_plot__set_color.png:0:0 +test_collections/EventCollection_plot__set_color.svg:0:0 +test_collections/EventCollection_plot__set_linelength.pdf:0:0 +test_collections/EventCollection_plot__set_linelength.png:0:0 +test_collections/EventCollection_plot__set_linelength.svg:0:0 +test_collections/EventCollection_plot__set_lineoffset.pdf:0:0 +test_collections/EventCollection_plot__set_lineoffset.png:0:0 +test_collections/EventCollection_plot__set_lineoffset.svg:0:0 +test_collections/EventCollection_plot__set_linestyle.pdf:0:0 +test_collections/EventCollection_plot__set_linestyle.png:0:0 +test_collections/EventCollection_plot__set_linestyle.svg:0:0 +test_collections/EventCollection_plot__set_linewidth.pdf:0:0 +test_collections/EventCollection_plot__set_linewidth.png:0:0 +test_collections/EventCollection_plot__set_linewidth.svg:0:0 +test_collections/EventCollection_plot__set_orientation.pdf:0:0 +test_collections/EventCollection_plot__set_orientation.png:0:0 +test_collections/EventCollection_plot__set_orientation.svg:0:0 +test_collections/EventCollection_plot__set_positions.pdf:0:0 +test_collections/EventCollection_plot__set_positions.png:0:0 +test_collections/EventCollection_plot__set_positions.svg:0:0 +test_collections/EventCollection_plot__switch_orientation.pdf:0:0 +test_collections/EventCollection_plot__switch_orientation.png:0:0 +test_collections/EventCollection_plot__switch_orientation.svg:0:0 +test_collections/EventCollection_plot__switch_orientation__2x.pdf:0:0 +test_collections/EventCollection_plot__switch_orientation__2x.png:0:0 +test_collections/EventCollection_plot__switch_orientation__2x.svg:0:0 +test_collections/cap_and_joinstyle.png:0:0 +test_collections/polycollection_close.png:0:0 +test_collections/regularpolycollection_rotate.png:0:0 +test_collections/regularpolycollection_scale.png:0:0 +test_collections/scatter_post_alpha.png:0:0 +test_collections/size_in_xy.png:0:0 +test_collections/test_check_masked_offsets.png:0:0 +test_colorbar/cbar_locationing.png:0:0 +test_colorbar/cbar_sharing.png:0:0 +test_colorbar/cbar_with_orientation.png:0:0 +test_colorbar/cbar_with_subplots_adjust.png:0:0 +test_colorbar/colorbar_change_lim_scale.png:0:0 +test_colorbar/colorbar_closed_patch.png:0:0 +test_colorbar/colorbar_extend_alpha.png:0:0 +test_colorbar/colorbar_extensions_proportional.png:0:0 +test_colorbar/colorbar_extensions_shape_proportional.png:0:0 +test_colorbar/colorbar_extensions_shape_uniform.png:0:0 +test_colorbar/colorbar_extensions_uniform.png:0:0 +test_colorbar/colorbar_keeping_xlabel.png:0:0 +test_colorbar/colorbar_single_scatter.png:0:0 +test_colorbar/colorbar_twoslope.png:0:0 +test_colorbar/contour_colorbar.png:0:0 +test_colorbar/contourf_extend_patches.png:0:0 +test_colorbar/double_cbar.png:0:0 +test_colorbar/extend_drawedges.png:0:0 +test_colorbar/nonorm_colorbars.svg:0:0 +test_colorbar/proportional_colorbars.png:0:0 +test_colorbar/test_boundaries.png:0:0 +test_colors/boundarynorm_and_colorbar.png:0:0 +test_colors/levels_and_colors.png:0:0 +test_colors/light_source_shading_topo.png:0:0 +test_compare_images/all127.png:0:0 +test_compare_images/all128.png:0:0 +test_compare_images/basn3p02-1px-offset.png:0:0 +test_compare_images/basn3p02-half-1px-offset.png:0:0 +test_compare_images/basn3p02-minorchange.png:0:0 +test_compare_images/basn3p02-scrambled.png:0:0 +test_compare_images/basn3p02.png:0:0 +test_compare_images/simple.pdf:0:0 +test_compare_images/simple.png:0:0 +test_compare_images/simple.svg:0:0 +test_constrainedlayout/constrained_layout1.png:0:0 +test_constrainedlayout/constrained_layout10.png:0:0 +test_constrainedlayout/constrained_layout11.png:0:0 +test_constrainedlayout/constrained_layout11rat.png:0:0 +test_constrainedlayout/constrained_layout12.png:0:0 +test_constrainedlayout/constrained_layout13.png:0:0 +test_constrainedlayout/constrained_layout14.png:0:0 +test_constrainedlayout/constrained_layout15.png:0:0 +test_constrainedlayout/constrained_layout16.png:0:0 +test_constrainedlayout/constrained_layout17.png:0:0 +test_constrainedlayout/constrained_layout2.png:0:0 +test_constrainedlayout/constrained_layout3.png:0:0 +test_constrainedlayout/constrained_layout4.png:0:0 +test_constrainedlayout/constrained_layout4.svg:0:0 +test_constrainedlayout/constrained_layout5.png:0:0 +test_constrainedlayout/constrained_layout6.png:0:0 +test_constrainedlayout/constrained_layout8.png:0:0 +test_constrainedlayout/constrained_layout9.png:0:0 +test_constrainedlayout/test_bbox.png:0:0 +test_constrainedlayout/test_bboxtight.png:0:0 +test_constrainedlayout/test_colorbar_location.png:0:0 +test_constrainedlayout/test_colorbars_no_overlapH.png:0:0 +test_constrainedlayout/test_colorbars_no_overlapV.png:0:0 +test_contour/contour_addlines.png:0:0 +test_contour/contour_all_algorithms.png:0:0 +test_contour/contour_closed_line_loop.png:0:0 +test_contour/contour_corner_mask_False.png:0:0 +test_contour/contour_corner_mask_True.png:0:0 +test_contour/contour_datetime_axis.png:0:0 +test_contour/contour_labels_size_color.png:0:0 +test_contour/contour_line_start_on_corner_edge.png:0:0 +test_contour/contour_log_extension.png:0:0 +test_contour/contour_log_locator.svg:0:0 +test_contour/contour_manual.png:0:0 +test_contour/contour_manual_colors_and_levels.png:0:0 +test_contour/contour_manual_labels.pdf:0:0 +test_contour/contour_manual_labels.png:0:0 +test_contour/contour_manual_labels.svg:0:0 +test_contour/contour_test_label_transforms.png:0:0 +test_contour/contour_uneven.png:0:0 +test_dates/DateFormatter_fractionalSeconds.png:0:0 +test_dates/RRuleLocator_bounds.png:0:0 +test_dates/date_axhline.png:0:0 +test_dates/date_axhspan.png:0:0 +test_dates/date_axvline.png:0:0 +test_dates/date_axvspan.png:0:0 +test_dates/date_inverted_limit.png:0:0 +test_figure/alpha_background.png:0:0 +test_figure/alpha_background.svg:0:0 +test_figure/figure_align_labels.png:0:0 +test_figure/figure_align_labels.svg:0:0 +test_figure/figure_legend.pdf:0:0 +test_figure/figure_legend.png:0:0 +test_figure/figure_legend.svg:0:0 +test_figure/figure_suptitle.pdf:0:0 +test_figure/figure_suptitle.png:0:0 +test_figure/figure_suptitle.svg:0:0 +test_figure/figure_today.pdf:0:0 +test_figure/figure_today.png:0:0 +test_figure/figure_today.svg:0:0 +test_figure/test_subfigure.png:0:0 +test_figure/test_subfigure_double.png:0:0 +test_figure/test_subfigure_scatter_size.png:0:0 +test_figure/test_subfigure_ss.png:0:0 +test_figure/tightbbox_box_aspect.svg:0:0 +test_image/bbox_image_inverted.pdf:0:0 +test_image/bbox_image_inverted.png:0:0 +test_image/bbox_image_inverted.svg:0:0 +test_image/figimage.pdf:0:0 +test_image/figimage.png:0:0 +test_image/image_alpha.pdf:0:0 +test_image/image_alpha.png:0:0 +test_image/image_alpha.svg:0:0 +test_image/image_clip.pdf:0:0 +test_image/image_clip.png:0:0 +test_image/image_clip.svg:0:0 +test_image/image_cliprect.pdf:0:0 +test_image/image_cliprect.png:0:0 +test_image/image_cliprect.svg:0:0 +test_image/image_composite_alpha.pdf:0:0 +test_image/image_composite_alpha.png:0:0 +test_image/image_composite_alpha.svg:0:0 +test_image/image_composite_background.pdf:0:0 +test_image/image_composite_background.png:0:0 +test_image/image_composite_background.svg:0:0 +test_image/image_interps.pdf:0:0 +test_image/image_interps.png:0:0 +test_image/image_interps.svg:0:0 +test_image/image_placement.pdf:0:0 +test_image/image_placement.svg:0:0 +test_image/image_shift.pdf:0:0 +test_image/image_shift.svg:0:0 +test_image/imshow.pdf:0:0 +test_image/imshow.png:0:0 +test_image/imshow.svg:0:0 +test_image/imshow_bignumbers.png:0:0 +test_image/imshow_bignumbers_real.png:0:0 +test_image/imshow_endianess.png:0:0 +test_image/imshow_flatfield.png:0:0 +test_image/imshow_masked_interpolation.pdf:0:0 +test_image/imshow_masked_interpolation.png:0:0 +test_image/imshow_masked_interpolation.svg:0:0 +test_image/interp_alpha.png:0:0 +test_image/interp_nearest_vs_none.pdf:0:0 +test_image/interp_nearest_vs_none.svg:0:0 +test_image/log_scale_image.pdf:0:0 +test_image/log_scale_image.png:0:0 +test_image/log_scale_image.svg:0:0 +test_image/mask_image.pdf:0:0 +test_image/mask_image.png:0:0 +test_image/mask_image.svg:0:0 +test_image/mask_image_over_under.png:0:0 +test_image/no_interpolation_origin.pdf:0:0 +test_image/no_interpolation_origin.png:0:0 +test_image/no_interpolation_origin.svg:0:0 +test_image/nonuniform_and_pcolor.png:0:0 +test_image/rasterize_10dpi.pdf:0:0 +test_image/rasterize_10dpi.svg:0:0 +test_image/rgba_antialias.png:0:0 +test_image/rotate_image.pdf:0:0 +test_image/rotate_image.png:0:0 +test_image/rotate_image.svg:0:0 +test_image/uint16.tif:0:0 +test_image/zoom_and_clip_upper_origin.png:0:0 +test_legend/fancy.pdf:0:0 +test_legend/fancy.png:0:0 +test_legend/fancy.svg:0:0 +test_legend/framealpha.pdf:0:0 +test_legend/framealpha.png:0:0 +test_legend/framealpha.svg:0:0 +test_legend/hatching.pdf:0:0 +test_legend/hatching.png:0:0 +test_legend/hatching.svg:0:0 +test_legend/legend_auto1.pdf:0:0 +test_legend/legend_auto1.png:0:0 +test_legend/legend_auto1.svg:0:0 +test_legend/legend_auto2.pdf:0:0 +test_legend/legend_auto2.png:0:0 +test_legend/legend_auto2.svg:0:0 +test_legend/legend_auto3.pdf:0:0 +test_legend/legend_auto3.png:0:0 +test_legend/legend_auto3.svg:0:0 +test_legend/legend_expand.pdf:0:0 +test_legend/legend_expand.png:0:0 +test_legend/legend_expand.svg:0:0 +test_legend/legend_labels_first.png:0:0 +test_legend/legend_multiple_keys.png:0:0 +test_legend/legend_stackplot.png:0:0 +test_legend/legend_various_labels.pdf:0:0 +test_legend/legend_various_labels.png:0:0 +test_legend/legend_various_labels.svg:0:0 +test_legend/not_covering_scatter.png:0:0 +test_legend/not_covering_scatter_transform.png:0:0 +test_legend/rcparam_alpha.png:0:0 +test_legend/rgba_alpha.png:0:0 +test_legend/scatter_rc1.pdf:0:0 +test_legend/scatter_rc1.png:0:0 +test_legend/scatter_rc1.svg:0:0 +test_legend/scatter_rc3.pdf:0:0 +test_legend/scatter_rc3.png:0:0 +test_legend/scatter_rc3.svg:0:0 +test_legend/shadow_argument_types.png:0:1686853922 +test_lines/drawstyle_variants.png:0:0 +test_lines/line_collection_dashes.pdf:0:0 +test_lines/line_collection_dashes.png:0:0 +test_lines/line_collection_dashes.svg:0:0 +test_lines/line_dashes.pdf:0:0 +test_lines/line_dashes.png:0:0 +test_lines/line_dashes.svg:0:0 +test_lines/marker_fill_styles.png:0:0 +test_lines/scaled_lines.pdf:0:0 +test_lines/scaled_lines.png:0:0 +test_lines/scaled_lines.svg:0:0 +test_lines/striped_line.png:0:0 +test_mathtext/math_fontfamily_image.png:0:0 +test_mathtext/mathfont_cm_00.png:0:0 +test_mathtext/mathfont_cm_01.png:0:0 +test_mathtext/mathfont_cm_02.png:0:0 +test_mathtext/mathfont_cm_03.png:0:0 +test_mathtext/mathfont_cm_04.png:0:0 +test_mathtext/mathfont_cm_05.png:0:0 +test_mathtext/mathfont_cm_06.png:0:0 +test_mathtext/mathfont_cm_07.png:0:0 +test_mathtext/mathfont_cm_08.png:0:0 +test_mathtext/mathfont_cm_09.png:0:0 +test_mathtext/mathfont_cm_10.png:0:0 +test_mathtext/mathfont_cm_11.png:0:0 +test_mathtext/mathfont_cm_12.png:0:0 +test_mathtext/mathfont_cm_13.png:0:0 +test_mathtext/mathfont_cm_14.png:0:0 +test_mathtext/mathfont_cm_15.png:0:0 +test_mathtext/mathfont_cm_16.png:0:0 +test_mathtext/mathfont_cm_17.png:0:0 +test_mathtext/mathfont_cm_18.png:0:0 +test_mathtext/mathfont_cm_19.png:0:0 +test_mathtext/mathfont_cm_20.png:0:0 +test_mathtext/mathfont_cm_21.png:0:0 +test_mathtext/mathfont_cm_22.png:0:0 +test_mathtext/mathfont_cm_32.png:0:0 +test_mathtext/mathfont_cm_33.png:0:0 +test_mathtext/mathfont_cm_34.png:0:0 +test_mathtext/mathfont_cm_35.png:0:0 +test_mathtext/mathfont_cm_36.png:0:0 +test_mathtext/mathfont_cm_37.png:0:0 +test_mathtext/mathfont_cm_38.png:0:0 +test_mathtext/mathfont_cm_39.png:0:0 +test_mathtext/mathfont_cm_40.png:0:0 +test_mathtext/mathfont_cm_41.png:0:0 +test_mathtext/mathfont_cm_42.png:0:0 +test_mathtext/mathfont_cm_43.png:0:0 +test_mathtext/mathfont_cm_44.png:0:0 +test_mathtext/mathfont_cm_45.png:0:0 +test_mathtext/mathfont_cm_46.png:0:0 +test_mathtext/mathfont_cm_47.png:0:0 +test_mathtext/mathfont_cm_48.png:0:0 +test_mathtext/mathfont_cm_49.png:0:0 +test_mathtext/mathfont_cm_50.png:0:0 +test_mathtext/mathfont_cm_51.png:0:0 +test_mathtext/mathfont_cm_52.png:0:0 +test_mathtext/mathfont_cm_53.png:0:0 +test_mathtext/mathfont_cm_54.png:0:0 +test_mathtext/mathfont_cm_55.png:0:0 +test_mathtext/mathfont_cm_56.png:0:0 +test_mathtext/mathfont_cm_57.png:0:0 +test_mathtext/mathfont_cm_58.png:0:0 +test_mathtext/mathfont_cm_59.png:0:0 +test_mathtext/mathfont_cm_60.png:0:0 +test_mathtext/mathfont_cm_61.png:0:0 +test_mathtext/mathfont_cm_62.png:0:0 +test_mathtext/mathfont_cm_63.png:0:0 +test_mathtext/mathfont_cm_64.png:0:0 +test_mathtext/mathfont_dejavusans_00.png:0:0 +test_mathtext/mathfont_dejavusans_01.png:0:0 +test_mathtext/mathfont_dejavusans_02.png:0:0 +test_mathtext/mathfont_dejavusans_03.png:0:0 +test_mathtext/mathfont_dejavusans_04.png:0:0 +test_mathtext/mathfont_dejavusans_05.png:0:0 +test_mathtext/mathfont_dejavusans_06.png:0:0 +test_mathtext/mathfont_dejavusans_07.png:0:0 +test_mathtext/mathfont_dejavusans_08.png:0:0 +test_mathtext/mathfont_dejavusans_09.png:0:0 +test_mathtext/mathfont_dejavusans_10.png:0:0 +test_mathtext/mathfont_dejavusans_11.png:0:0 +test_mathtext/mathfont_dejavusans_12.png:0:0 +test_mathtext/mathfont_dejavusans_13.png:0:0 +test_mathtext/mathfont_dejavusans_14.png:0:0 +test_mathtext/mathfont_dejavusans_15.png:0:0 +test_mathtext/mathfont_dejavusans_16.png:0:0 +test_mathtext/mathfont_dejavusans_17.png:0:0 +test_mathtext/mathfont_dejavusans_18.png:0:0 +test_mathtext/mathfont_dejavusans_19.png:0:0 +test_mathtext/mathfont_dejavusans_20.png:0:0 +test_mathtext/mathfont_dejavusans_21.png:0:0 +test_mathtext/mathfont_dejavusans_22.png:0:0 +test_mathtext/mathfont_dejavusans_32.png:0:0 +test_mathtext/mathfont_dejavusans_33.png:0:0 +test_mathtext/mathfont_dejavusans_34.png:0:0 +test_mathtext/mathfont_dejavusans_35.png:0:0 +test_mathtext/mathfont_dejavusans_36.png:0:0 +test_mathtext/mathfont_dejavusans_37.png:0:0 +test_mathtext/mathfont_dejavusans_38.png:0:0 +test_mathtext/mathfont_dejavusans_39.png:0:0 +test_mathtext/mathfont_dejavusans_40.png:0:0 +test_mathtext/mathfont_dejavusans_41.png:0:0 +test_mathtext/mathfont_dejavusans_42.png:0:0 +test_mathtext/mathfont_dejavusans_43.png:0:0 +test_mathtext/mathfont_dejavusans_44.png:0:0 +test_mathtext/mathfont_dejavusans_45.png:0:0 +test_mathtext/mathfont_dejavusans_46.png:0:0 +test_mathtext/mathfont_dejavusans_47.png:0:0 +test_mathtext/mathfont_dejavusans_48.png:0:0 +test_mathtext/mathfont_dejavusans_49.png:0:0 +test_mathtext/mathfont_dejavusans_50.png:0:0 +test_mathtext/mathfont_dejavusans_51.png:0:0 +test_mathtext/mathfont_dejavusans_52.png:0:0 +test_mathtext/mathfont_dejavusans_53.png:0:0 +test_mathtext/mathfont_dejavusans_54.png:0:0 +test_mathtext/mathfont_dejavusans_55.png:0:0 +test_mathtext/mathfont_dejavusans_56.png:0:0 +test_mathtext/mathfont_dejavusans_57.png:0:0 +test_mathtext/mathfont_dejavusans_58.png:0:0 +test_mathtext/mathfont_dejavusans_59.png:0:0 +test_mathtext/mathfont_dejavusans_60.png:0:0 +test_mathtext/mathfont_dejavusans_61.png:0:0 +test_mathtext/mathfont_dejavusans_62.png:0:0 +test_mathtext/mathfont_dejavusans_63.png:0:0 +test_mathtext/mathfont_dejavusans_64.png:0:0 +test_mathtext/mathfont_dejavuserif_00.png:0:0 +test_mathtext/mathfont_dejavuserif_01.png:0:0 +test_mathtext/mathfont_dejavuserif_02.png:0:0 +test_mathtext/mathfont_dejavuserif_03.png:0:0 +test_mathtext/mathfont_dejavuserif_04.png:0:0 +test_mathtext/mathfont_dejavuserif_05.png:0:0 +test_mathtext/mathfont_dejavuserif_06.png:0:0 +test_mathtext/mathfont_dejavuserif_07.png:0:0 +test_mathtext/mathfont_dejavuserif_08.png:0:0 +test_mathtext/mathfont_dejavuserif_09.png:0:0 +test_mathtext/mathfont_dejavuserif_10.png:0:0 +test_mathtext/mathfont_dejavuserif_11.png:0:0 +test_mathtext/mathfont_dejavuserif_12.png:0:0 +test_mathtext/mathfont_dejavuserif_13.png:0:0 +test_mathtext/mathfont_dejavuserif_14.png:0:0 +test_mathtext/mathfont_dejavuserif_15.png:0:0 +test_mathtext/mathfont_dejavuserif_16.png:0:0 +test_mathtext/mathfont_dejavuserif_17.png:0:0 +test_mathtext/mathfont_dejavuserif_18.png:0:0 +test_mathtext/mathfont_dejavuserif_19.png:0:0 +test_mathtext/mathfont_dejavuserif_20.png:0:0 +test_mathtext/mathfont_dejavuserif_21.png:0:0 +test_mathtext/mathfont_dejavuserif_22.png:0:0 +test_mathtext/mathfont_dejavuserif_32.png:0:0 +test_mathtext/mathfont_dejavuserif_33.png:0:0 +test_mathtext/mathfont_dejavuserif_34.png:0:0 +test_mathtext/mathfont_dejavuserif_35.png:0:0 +test_mathtext/mathfont_dejavuserif_36.png:0:0 +test_mathtext/mathfont_dejavuserif_37.png:0:0 +test_mathtext/mathfont_dejavuserif_38.png:0:0 +test_mathtext/mathfont_dejavuserif_39.png:0:0 +test_mathtext/mathfont_dejavuserif_40.png:0:0 +test_mathtext/mathfont_dejavuserif_41.png:0:0 +test_mathtext/mathfont_dejavuserif_42.png:0:0 +test_mathtext/mathfont_dejavuserif_43.png:0:0 +test_mathtext/mathfont_dejavuserif_44.png:0:0 +test_mathtext/mathfont_dejavuserif_45.png:0:0 +test_mathtext/mathfont_dejavuserif_46.png:0:0 +test_mathtext/mathfont_dejavuserif_47.png:0:0 +test_mathtext/mathfont_dejavuserif_48.png:0:0 +test_mathtext/mathfont_dejavuserif_49.png:0:0 +test_mathtext/mathfont_dejavuserif_50.png:0:0 +test_mathtext/mathfont_dejavuserif_51.png:0:0 +test_mathtext/mathfont_dejavuserif_52.png:0:0 +test_mathtext/mathfont_dejavuserif_53.png:0:0 +test_mathtext/mathfont_dejavuserif_54.png:0:0 +test_mathtext/mathfont_dejavuserif_55.png:0:0 +test_mathtext/mathfont_dejavuserif_56.png:0:0 +test_mathtext/mathfont_dejavuserif_57.png:0:0 +test_mathtext/mathfont_dejavuserif_58.png:0:0 +test_mathtext/mathfont_dejavuserif_59.png:0:0 +test_mathtext/mathfont_dejavuserif_60.png:0:0 +test_mathtext/mathfont_dejavuserif_61.png:0:0 +test_mathtext/mathfont_dejavuserif_62.png:0:0 +test_mathtext/mathfont_dejavuserif_63.png:0:0 +test_mathtext/mathfont_dejavuserif_64.png:0:0 +test_mathtext/mathfont_stix_00.png:0:0 +test_mathtext/mathfont_stix_01.png:0:0 +test_mathtext/mathfont_stix_02.png:0:0 +test_mathtext/mathfont_stix_03.png:0:0 +test_mathtext/mathfont_stix_04.png:0:0 +test_mathtext/mathfont_stix_05.png:0:0 +test_mathtext/mathfont_stix_06.png:0:0 +test_mathtext/mathfont_stix_07.png:0:0 +test_mathtext/mathfont_stix_08.png:0:0 +test_mathtext/mathfont_stix_09.png:0:0 +test_mathtext/mathfont_stix_10.png:0:0 +test_mathtext/mathfont_stix_11.png:0:0 +test_mathtext/mathfont_stix_12.png:0:0 +test_mathtext/mathfont_stix_13.png:0:0 +test_mathtext/mathfont_stix_14.png:0:0 +test_mathtext/mathfont_stix_15.png:0:0 +test_mathtext/mathfont_stix_16.png:0:0 +test_mathtext/mathfont_stix_17.png:0:0 +test_mathtext/mathfont_stix_18.png:0:0 +test_mathtext/mathfont_stix_19.png:0:0 +test_mathtext/mathfont_stix_20.png:0:0 +test_mathtext/mathfont_stix_21.png:0:0 +test_mathtext/mathfont_stix_22.png:0:0 +test_mathtext/mathfont_stix_32.png:0:0 +test_mathtext/mathfont_stix_33.png:0:0 +test_mathtext/mathfont_stix_34.png:0:0 +test_mathtext/mathfont_stix_35.png:0:0 +test_mathtext/mathfont_stix_36.png:0:0 +test_mathtext/mathfont_stix_37.png:0:0 +test_mathtext/mathfont_stix_38.png:0:0 +test_mathtext/mathfont_stix_39.png:0:0 +test_mathtext/mathfont_stix_40.png:0:0 +test_mathtext/mathfont_stix_41.png:0:0 +test_mathtext/mathfont_stix_42.png:0:0 +test_mathtext/mathfont_stix_43.png:0:0 +test_mathtext/mathfont_stix_44.png:0:0 +test_mathtext/mathfont_stix_45.png:0:0 +test_mathtext/mathfont_stix_46.png:0:0 +test_mathtext/mathfont_stix_47.png:0:0 +test_mathtext/mathfont_stix_48.png:0:0 +test_mathtext/mathfont_stix_49.png:0:0 +test_mathtext/mathfont_stix_50.png:0:0 +test_mathtext/mathfont_stix_51.png:0:0 +test_mathtext/mathfont_stix_52.png:0:0 +test_mathtext/mathfont_stix_53.png:0:0 +test_mathtext/mathfont_stix_54.png:0:0 +test_mathtext/mathfont_stix_55.png:0:0 +test_mathtext/mathfont_stix_56.png:0:0 +test_mathtext/mathfont_stix_57.png:0:0 +test_mathtext/mathfont_stix_58.png:0:0 +test_mathtext/mathfont_stix_59.png:0:0 +test_mathtext/mathfont_stix_60.png:0:0 +test_mathtext/mathfont_stix_61.png:0:0 +test_mathtext/mathfont_stix_62.png:0:0 +test_mathtext/mathfont_stix_63.png:0:0 +test_mathtext/mathfont_stix_64.png:0:0 +test_mathtext/mathfont_stixsans_00.png:0:0 +test_mathtext/mathfont_stixsans_01.png:0:0 +test_mathtext/mathfont_stixsans_02.png:0:0 +test_mathtext/mathfont_stixsans_03.png:0:0 +test_mathtext/mathfont_stixsans_04.png:0:0 +test_mathtext/mathfont_stixsans_05.png:0:0 +test_mathtext/mathfont_stixsans_06.png:0:0 +test_mathtext/mathfont_stixsans_07.png:0:0 +test_mathtext/mathfont_stixsans_08.png:0:0 +test_mathtext/mathfont_stixsans_09.png:0:0 +test_mathtext/mathfont_stixsans_10.png:0:0 +test_mathtext/mathfont_stixsans_11.png:0:0 +test_mathtext/mathfont_stixsans_12.png:0:0 +test_mathtext/mathfont_stixsans_13.png:0:0 +test_mathtext/mathfont_stixsans_14.png:0:0 +test_mathtext/mathfont_stixsans_15.png:0:0 +test_mathtext/mathfont_stixsans_16.png:0:0 +test_mathtext/mathfont_stixsans_17.png:0:0 +test_mathtext/mathfont_stixsans_18.png:0:0 +test_mathtext/mathfont_stixsans_19.png:0:0 +test_mathtext/mathfont_stixsans_20.png:0:0 +test_mathtext/mathfont_stixsans_21.png:0:0 +test_mathtext/mathfont_stixsans_22.png:0:0 +test_mathtext/mathfont_stixsans_32.png:0:0 +test_mathtext/mathfont_stixsans_33.png:0:0 +test_mathtext/mathfont_stixsans_34.png:0:0 +test_mathtext/mathfont_stixsans_35.png:0:0 +test_mathtext/mathfont_stixsans_36.png:0:0 +test_mathtext/mathfont_stixsans_37.png:0:0 +test_mathtext/mathfont_stixsans_38.png:0:0 +test_mathtext/mathfont_stixsans_39.png:0:0 +test_mathtext/mathfont_stixsans_40.png:0:0 +test_mathtext/mathfont_stixsans_41.png:0:0 +test_mathtext/mathfont_stixsans_42.png:0:0 +test_mathtext/mathfont_stixsans_43.png:0:0 +test_mathtext/mathfont_stixsans_44.png:0:0 +test_mathtext/mathfont_stixsans_45.png:0:0 +test_mathtext/mathfont_stixsans_46.png:0:0 +test_mathtext/mathfont_stixsans_47.png:0:0 +test_mathtext/mathfont_stixsans_48.png:0:0 +test_mathtext/mathfont_stixsans_49.png:0:0 +test_mathtext/mathfont_stixsans_50.png:0:0 +test_mathtext/mathfont_stixsans_51.png:0:0 +test_mathtext/mathfont_stixsans_52.png:0:0 +test_mathtext/mathfont_stixsans_53.png:0:0 +test_mathtext/mathfont_stixsans_54.png:0:0 +test_mathtext/mathfont_stixsans_55.png:0:0 +test_mathtext/mathfont_stixsans_56.png:0:0 +test_mathtext/mathfont_stixsans_57.png:0:0 +test_mathtext/mathfont_stixsans_58.png:0:0 +test_mathtext/mathfont_stixsans_59.png:0:0 +test_mathtext/mathfont_stixsans_60.png:0:0 +test_mathtext/mathfont_stixsans_61.png:0:0 +test_mathtext/mathfont_stixsans_62.png:0:0 +test_mathtext/mathfont_stixsans_63.png:0:0 +test_mathtext/mathfont_stixsans_64.png:0:0 +test_mathtext/mathtext0_cm_00.svg:0:0 +test_mathtext/mathtext0_dejavusans_00.svg:0:0 +test_mathtext/mathtext1_dejavusans_00.png:0:0 +test_mathtext/mathtext1_dejavusans_01.png:0:0 +test_mathtext/mathtext1_dejavusans_02.png:0:0 +test_mathtext/mathtext1_dejavusans_03.png:0:0 +test_mathtext/mathtext1_dejavusans_04.png:0:0 +test_mathtext/mathtext_cm_00.pdf:0:0 +test_mathtext/mathtext_cm_00.png:0:0 +test_mathtext/mathtext_cm_00.svg:0:0 +test_mathtext/mathtext_cm_01.pdf:0:0 +test_mathtext/mathtext_cm_01.png:0:0 +test_mathtext/mathtext_cm_01.svg:0:0 +test_mathtext/mathtext_cm_02.pdf:0:0 +test_mathtext/mathtext_cm_02.png:0:0 +test_mathtext/mathtext_cm_02.svg:0:0 +test_mathtext/mathtext_cm_03.pdf:0:0 +test_mathtext/mathtext_cm_03.png:0:0 +test_mathtext/mathtext_cm_03.svg:0:0 +test_mathtext/mathtext_cm_04.pdf:0:0 +test_mathtext/mathtext_cm_04.png:0:0 +test_mathtext/mathtext_cm_04.svg:0:0 +test_mathtext/mathtext_cm_05.pdf:0:0 +test_mathtext/mathtext_cm_05.png:0:0 +test_mathtext/mathtext_cm_05.svg:0:0 +test_mathtext/mathtext_cm_06.pdf:0:0 +test_mathtext/mathtext_cm_06.png:0:0 +test_mathtext/mathtext_cm_06.svg:0:0 +test_mathtext/mathtext_cm_07.pdf:0:0 +test_mathtext/mathtext_cm_07.png:0:0 +test_mathtext/mathtext_cm_07.svg:0:0 +test_mathtext/mathtext_cm_08.pdf:0:0 +test_mathtext/mathtext_cm_08.png:0:0 +test_mathtext/mathtext_cm_08.svg:0:0 +test_mathtext/mathtext_cm_09.pdf:0:0 +test_mathtext/mathtext_cm_09.png:0:0 +test_mathtext/mathtext_cm_09.svg:0:0 +test_mathtext/mathtext_cm_10.pdf:0:0 +test_mathtext/mathtext_cm_10.png:0:0 +test_mathtext/mathtext_cm_10.svg:0:0 +test_mathtext/mathtext_cm_11.pdf:0:0 +test_mathtext/mathtext_cm_11.png:0:0 +test_mathtext/mathtext_cm_11.svg:0:0 +test_mathtext/mathtext_cm_12.pdf:0:0 +test_mathtext/mathtext_cm_12.png:0:0 +test_mathtext/mathtext_cm_12.svg:0:0 +test_mathtext/mathtext_cm_13.pdf:0:0 +test_mathtext/mathtext_cm_13.png:0:0 +test_mathtext/mathtext_cm_13.svg:0:0 +test_mathtext/mathtext_cm_14.pdf:0:0 +test_mathtext/mathtext_cm_14.png:0:0 +test_mathtext/mathtext_cm_14.svg:0:0 +test_mathtext/mathtext_cm_15.pdf:0:0 +test_mathtext/mathtext_cm_15.png:0:0 +test_mathtext/mathtext_cm_15.svg:0:0 +test_mathtext/mathtext_cm_16.pdf:0:0 +test_mathtext/mathtext_cm_16.png:0:0 +test_mathtext/mathtext_cm_16.svg:0:0 +test_mathtext/mathtext_cm_17.pdf:0:0 +test_mathtext/mathtext_cm_17.png:0:0 +test_mathtext/mathtext_cm_17.svg:0:0 +test_mathtext/mathtext_cm_18.pdf:0:0 +test_mathtext/mathtext_cm_18.png:0:0 +test_mathtext/mathtext_cm_18.svg:0:0 +test_mathtext/mathtext_cm_19.pdf:0:0 +test_mathtext/mathtext_cm_19.png:0:0 +test_mathtext/mathtext_cm_19.svg:0:0 +test_mathtext/mathtext_cm_20.pdf:0:0 +test_mathtext/mathtext_cm_20.png:0:0 +test_mathtext/mathtext_cm_20.svg:0:0 +test_mathtext/mathtext_cm_21.pdf:0:0 +test_mathtext/mathtext_cm_21.png:0:0 +test_mathtext/mathtext_cm_21.svg:0:0 +test_mathtext/mathtext_cm_23.pdf:0:0 +test_mathtext/mathtext_cm_23.png:0:0 +test_mathtext/mathtext_cm_23.svg:0:0 +test_mathtext/mathtext_cm_24.pdf:0:0 +test_mathtext/mathtext_cm_24.png:0:0 +test_mathtext/mathtext_cm_24.svg:0:0 +test_mathtext/mathtext_cm_25.pdf:0:0 +test_mathtext/mathtext_cm_25.png:0:0 +test_mathtext/mathtext_cm_25.svg:0:0 +test_mathtext/mathtext_cm_26.pdf:0:0 +test_mathtext/mathtext_cm_26.png:0:0 +test_mathtext/mathtext_cm_26.svg:0:0 +test_mathtext/mathtext_cm_27.pdf:0:0 +test_mathtext/mathtext_cm_27.png:0:0 +test_mathtext/mathtext_cm_27.svg:0:0 +test_mathtext/mathtext_cm_28.pdf:0:0 +test_mathtext/mathtext_cm_28.png:0:0 +test_mathtext/mathtext_cm_28.svg:0:0 +test_mathtext/mathtext_cm_29.pdf:0:0 +test_mathtext/mathtext_cm_29.png:0:0 +test_mathtext/mathtext_cm_29.svg:0:0 +test_mathtext/mathtext_cm_31.pdf:0:0 +test_mathtext/mathtext_cm_31.png:0:0 +test_mathtext/mathtext_cm_31.svg:0:0 +test_mathtext/mathtext_cm_32.pdf:0:0 +test_mathtext/mathtext_cm_32.png:0:0 +test_mathtext/mathtext_cm_32.svg:0:0 +test_mathtext/mathtext_cm_33.pdf:0:0 +test_mathtext/mathtext_cm_33.png:0:0 +test_mathtext/mathtext_cm_33.svg:0:0 +test_mathtext/mathtext_cm_35.pdf:0:0 +test_mathtext/mathtext_cm_35.png:0:0 +test_mathtext/mathtext_cm_35.svg:0:0 +test_mathtext/mathtext_cm_36.pdf:0:0 +test_mathtext/mathtext_cm_36.png:0:0 +test_mathtext/mathtext_cm_36.svg:0:0 +test_mathtext/mathtext_cm_37.pdf:0:0 +test_mathtext/mathtext_cm_37.png:0:0 +test_mathtext/mathtext_cm_37.svg:0:0 +test_mathtext/mathtext_cm_38.pdf:0:0 +test_mathtext/mathtext_cm_38.png:0:0 +test_mathtext/mathtext_cm_38.svg:0:0 +test_mathtext/mathtext_cm_39.pdf:0:0 +test_mathtext/mathtext_cm_39.png:0:0 +test_mathtext/mathtext_cm_39.svg:0:0 +test_mathtext/mathtext_cm_40.pdf:0:0 +test_mathtext/mathtext_cm_40.png:0:0 +test_mathtext/mathtext_cm_40.svg:0:0 +test_mathtext/mathtext_cm_41.pdf:0:0 +test_mathtext/mathtext_cm_41.png:0:0 +test_mathtext/mathtext_cm_41.svg:0:0 +test_mathtext/mathtext_cm_42.pdf:0:0 +test_mathtext/mathtext_cm_42.png:0:0 +test_mathtext/mathtext_cm_42.svg:0:0 +test_mathtext/mathtext_cm_43.pdf:0:0 +test_mathtext/mathtext_cm_43.png:0:0 +test_mathtext/mathtext_cm_43.svg:0:0 +test_mathtext/mathtext_cm_44.pdf:0:0 +test_mathtext/mathtext_cm_44.png:0:0 +test_mathtext/mathtext_cm_44.svg:0:0 +test_mathtext/mathtext_cm_45.pdf:0:0 +test_mathtext/mathtext_cm_45.png:0:0 +test_mathtext/mathtext_cm_45.svg:0:0 +test_mathtext/mathtext_cm_46.pdf:0:0 +test_mathtext/mathtext_cm_46.png:0:0 +test_mathtext/mathtext_cm_46.svg:0:0 +test_mathtext/mathtext_cm_47.pdf:0:0 +test_mathtext/mathtext_cm_47.png:0:0 +test_mathtext/mathtext_cm_47.svg:0:0 +test_mathtext/mathtext_cm_48.pdf:0:0 +test_mathtext/mathtext_cm_48.png:0:0 +test_mathtext/mathtext_cm_48.svg:0:0 +test_mathtext/mathtext_cm_49.pdf:0:0 +test_mathtext/mathtext_cm_49.png:0:0 +test_mathtext/mathtext_cm_49.svg:0:0 +test_mathtext/mathtext_cm_50.pdf:0:0 +test_mathtext/mathtext_cm_50.png:0:0 +test_mathtext/mathtext_cm_50.svg:0:0 +test_mathtext/mathtext_cm_51.pdf:0:0 +test_mathtext/mathtext_cm_51.png:0:0 +test_mathtext/mathtext_cm_51.svg:0:0 +test_mathtext/mathtext_cm_52.pdf:0:0 +test_mathtext/mathtext_cm_52.png:0:0 +test_mathtext/mathtext_cm_52.svg:0:0 +test_mathtext/mathtext_cm_53.pdf:0:0 +test_mathtext/mathtext_cm_53.png:0:0 +test_mathtext/mathtext_cm_53.svg:0:0 +test_mathtext/mathtext_cm_54.pdf:0:0 +test_mathtext/mathtext_cm_54.png:0:0 +test_mathtext/mathtext_cm_54.svg:0:0 +test_mathtext/mathtext_cm_55.pdf:0:0 +test_mathtext/mathtext_cm_55.png:0:0 +test_mathtext/mathtext_cm_55.svg:0:0 +test_mathtext/mathtext_cm_56.pdf:0:0 +test_mathtext/mathtext_cm_56.png:0:0 +test_mathtext/mathtext_cm_56.svg:0:0 +test_mathtext/mathtext_cm_57.pdf:0:0 +test_mathtext/mathtext_cm_57.png:0:0 +test_mathtext/mathtext_cm_57.svg:0:0 +test_mathtext/mathtext_cm_58.pdf:0:0 +test_mathtext/mathtext_cm_58.png:0:0 +test_mathtext/mathtext_cm_58.svg:0:0 +test_mathtext/mathtext_cm_59.pdf:0:0 +test_mathtext/mathtext_cm_59.png:0:0 +test_mathtext/mathtext_cm_59.svg:0:0 +test_mathtext/mathtext_cm_60.pdf:0:0 +test_mathtext/mathtext_cm_60.png:0:0 +test_mathtext/mathtext_cm_60.svg:0:0 +test_mathtext/mathtext_cm_61.pdf:0:0 +test_mathtext/mathtext_cm_61.png:0:0 +test_mathtext/mathtext_cm_61.svg:0:0 +test_mathtext/mathtext_cm_62.pdf:0:0 +test_mathtext/mathtext_cm_62.png:0:0 +test_mathtext/mathtext_cm_62.svg:0:0 +test_mathtext/mathtext_cm_63.pdf:0:0 +test_mathtext/mathtext_cm_63.png:0:0 +test_mathtext/mathtext_cm_63.svg:0:0 +test_mathtext/mathtext_cm_64.pdf:0:0 +test_mathtext/mathtext_cm_64.png:0:0 +test_mathtext/mathtext_cm_64.svg:0:0 +test_mathtext/mathtext_cm_65.pdf:0:0 +test_mathtext/mathtext_cm_65.png:0:0 +test_mathtext/mathtext_cm_65.svg:0:0 +test_mathtext/mathtext_cm_68.pdf:0:0 +test_mathtext/mathtext_cm_68.png:0:0 +test_mathtext/mathtext_cm_68.svg:0:0 +test_mathtext/mathtext_cm_69.pdf:0:0 +test_mathtext/mathtext_cm_69.png:0:0 +test_mathtext/mathtext_cm_69.svg:0:0 +test_mathtext/mathtext_cm_70.pdf:0:0 +test_mathtext/mathtext_cm_70.png:0:0 +test_mathtext/mathtext_cm_70.svg:0:0 +test_mathtext/mathtext_cm_71.pdf:0:0 +test_mathtext/mathtext_cm_71.png:0:0 +test_mathtext/mathtext_cm_71.svg:0:0 +test_mathtext/mathtext_cm_72.pdf:0:0 +test_mathtext/mathtext_cm_72.png:0:0 +test_mathtext/mathtext_cm_72.svg:0:0 +test_mathtext/mathtext_cm_73.pdf:0:0 +test_mathtext/mathtext_cm_73.png:0:0 +test_mathtext/mathtext_cm_73.svg:0:0 +test_mathtext/mathtext_cm_74.pdf:0:0 +test_mathtext/mathtext_cm_74.png:0:0 +test_mathtext/mathtext_cm_74.svg:0:0 +test_mathtext/mathtext_cm_75.pdf:0:0 +test_mathtext/mathtext_cm_75.png:0:0 +test_mathtext/mathtext_cm_75.svg:0:0 +test_mathtext/mathtext_cm_76.pdf:0:0 +test_mathtext/mathtext_cm_76.png:0:0 +test_mathtext/mathtext_cm_76.svg:0:0 +test_mathtext/mathtext_cm_78.pdf:0:0 +test_mathtext/mathtext_cm_78.png:0:0 +test_mathtext/mathtext_cm_78.svg:0:0 +test_mathtext/mathtext_cm_79.pdf:0:0 +test_mathtext/mathtext_cm_79.png:0:0 +test_mathtext/mathtext_cm_79.svg:0:0 +test_mathtext/mathtext_cm_80.pdf:0:0 +test_mathtext/mathtext_cm_80.png:0:0 +test_mathtext/mathtext_cm_80.svg:0:0 +test_mathtext/mathtext_cm_81.pdf:0:0 +test_mathtext/mathtext_cm_81.png:0:0 +test_mathtext/mathtext_cm_81.svg:0:0 +test_mathtext/mathtext_cm_82.pdf:0:0 +test_mathtext/mathtext_cm_82.png:0:0 +test_mathtext/mathtext_cm_82.svg:0:0 +test_mathtext/mathtext_dejavusans_00.pdf:0:0 +test_mathtext/mathtext_dejavusans_00.png:0:0 +test_mathtext/mathtext_dejavusans_00.svg:0:0 +test_mathtext/mathtext_dejavusans_01.pdf:0:0 +test_mathtext/mathtext_dejavusans_01.png:0:0 +test_mathtext/mathtext_dejavusans_01.svg:0:0 +test_mathtext/mathtext_dejavusans_02.pdf:0:0 +test_mathtext/mathtext_dejavusans_02.png:0:0 +test_mathtext/mathtext_dejavusans_02.svg:0:0 +test_mathtext/mathtext_dejavusans_03.pdf:0:0 +test_mathtext/mathtext_dejavusans_03.png:0:0 +test_mathtext/mathtext_dejavusans_03.svg:0:0 +test_mathtext/mathtext_dejavusans_04.pdf:0:0 +test_mathtext/mathtext_dejavusans_04.png:0:0 +test_mathtext/mathtext_dejavusans_04.svg:0:0 +test_mathtext/mathtext_dejavusans_05.pdf:0:0 +test_mathtext/mathtext_dejavusans_05.png:0:0 +test_mathtext/mathtext_dejavusans_05.svg:0:0 +test_mathtext/mathtext_dejavusans_06.pdf:0:0 +test_mathtext/mathtext_dejavusans_06.png:0:0 +test_mathtext/mathtext_dejavusans_06.svg:0:0 +test_mathtext/mathtext_dejavusans_07.pdf:0:0 +test_mathtext/mathtext_dejavusans_07.png:0:0 +test_mathtext/mathtext_dejavusans_07.svg:0:0 +test_mathtext/mathtext_dejavusans_08.pdf:0:0 +test_mathtext/mathtext_dejavusans_08.png:0:0 +test_mathtext/mathtext_dejavusans_08.svg:0:0 +test_mathtext/mathtext_dejavusans_09.pdf:0:0 +test_mathtext/mathtext_dejavusans_09.png:0:0 +test_mathtext/mathtext_dejavusans_09.svg:0:0 +test_mathtext/mathtext_dejavusans_10.pdf:0:0 +test_mathtext/mathtext_dejavusans_10.png:0:0 +test_mathtext/mathtext_dejavusans_10.svg:0:0 +test_mathtext/mathtext_dejavusans_11.pdf:0:0 +test_mathtext/mathtext_dejavusans_11.png:0:0 +test_mathtext/mathtext_dejavusans_11.svg:0:0 +test_mathtext/mathtext_dejavusans_12.pdf:0:0 +test_mathtext/mathtext_dejavusans_12.png:0:0 +test_mathtext/mathtext_dejavusans_12.svg:0:0 +test_mathtext/mathtext_dejavusans_13.pdf:0:0 +test_mathtext/mathtext_dejavusans_13.png:0:0 +test_mathtext/mathtext_dejavusans_13.svg:0:0 +test_mathtext/mathtext_dejavusans_14.pdf:0:0 +test_mathtext/mathtext_dejavusans_14.png:0:0 +test_mathtext/mathtext_dejavusans_14.svg:0:0 +test_mathtext/mathtext_dejavusans_15.pdf:0:0 +test_mathtext/mathtext_dejavusans_15.png:0:0 +test_mathtext/mathtext_dejavusans_15.svg:0:0 +test_mathtext/mathtext_dejavusans_16.pdf:0:0 +test_mathtext/mathtext_dejavusans_16.png:0:0 +test_mathtext/mathtext_dejavusans_16.svg:0:0 +test_mathtext/mathtext_dejavusans_17.pdf:0:0 +test_mathtext/mathtext_dejavusans_17.png:0:0 +test_mathtext/mathtext_dejavusans_17.svg:0:0 +test_mathtext/mathtext_dejavusans_18.pdf:0:0 +test_mathtext/mathtext_dejavusans_18.png:0:0 +test_mathtext/mathtext_dejavusans_18.svg:0:0 +test_mathtext/mathtext_dejavusans_19.pdf:0:0 +test_mathtext/mathtext_dejavusans_19.png:0:0 +test_mathtext/mathtext_dejavusans_19.svg:0:0 +test_mathtext/mathtext_dejavusans_20.pdf:0:0 +test_mathtext/mathtext_dejavusans_20.png:0:0 +test_mathtext/mathtext_dejavusans_20.svg:0:0 +test_mathtext/mathtext_dejavusans_21.pdf:0:0 +test_mathtext/mathtext_dejavusans_21.png:0:0 +test_mathtext/mathtext_dejavusans_21.svg:0:0 +test_mathtext/mathtext_dejavusans_23.pdf:0:0 +test_mathtext/mathtext_dejavusans_23.png:0:0 +test_mathtext/mathtext_dejavusans_23.svg:0:0 +test_mathtext/mathtext_dejavusans_24.pdf:0:0 +test_mathtext/mathtext_dejavusans_24.png:0:0 +test_mathtext/mathtext_dejavusans_24.svg:0:0 +test_mathtext/mathtext_dejavusans_25.pdf:0:0 +test_mathtext/mathtext_dejavusans_25.png:0:0 +test_mathtext/mathtext_dejavusans_25.svg:0:0 +test_mathtext/mathtext_dejavusans_26.pdf:0:0 +test_mathtext/mathtext_dejavusans_26.png:0:0 +test_mathtext/mathtext_dejavusans_26.svg:0:0 +test_mathtext/mathtext_dejavusans_27.pdf:0:0 +test_mathtext/mathtext_dejavusans_27.png:0:0 +test_mathtext/mathtext_dejavusans_27.svg:0:0 +test_mathtext/mathtext_dejavusans_28.pdf:0:0 +test_mathtext/mathtext_dejavusans_28.png:0:0 +test_mathtext/mathtext_dejavusans_28.svg:0:0 +test_mathtext/mathtext_dejavusans_29.pdf:0:0 +test_mathtext/mathtext_dejavusans_29.png:0:0 +test_mathtext/mathtext_dejavusans_29.svg:0:0 +test_mathtext/mathtext_dejavusans_31.pdf:0:0 +test_mathtext/mathtext_dejavusans_31.png:0:0 +test_mathtext/mathtext_dejavusans_31.svg:0:0 +test_mathtext/mathtext_dejavusans_32.pdf:0:0 +test_mathtext/mathtext_dejavusans_32.png:0:0 +test_mathtext/mathtext_dejavusans_32.svg:0:0 +test_mathtext/mathtext_dejavusans_33.pdf:0:0 +test_mathtext/mathtext_dejavusans_33.png:0:0 +test_mathtext/mathtext_dejavusans_33.svg:0:0 +test_mathtext/mathtext_dejavusans_35.pdf:0:0 +test_mathtext/mathtext_dejavusans_35.png:0:0 +test_mathtext/mathtext_dejavusans_35.svg:0:0 +test_mathtext/mathtext_dejavusans_36.pdf:0:0 +test_mathtext/mathtext_dejavusans_36.png:0:0 +test_mathtext/mathtext_dejavusans_36.svg:0:0 +test_mathtext/mathtext_dejavusans_37.pdf:0:0 +test_mathtext/mathtext_dejavusans_37.png:0:0 +test_mathtext/mathtext_dejavusans_37.svg:0:0 +test_mathtext/mathtext_dejavusans_38.pdf:0:0 +test_mathtext/mathtext_dejavusans_38.png:0:0 +test_mathtext/mathtext_dejavusans_38.svg:0:0 +test_mathtext/mathtext_dejavusans_39.pdf:0:0 +test_mathtext/mathtext_dejavusans_39.png:0:0 +test_mathtext/mathtext_dejavusans_39.svg:0:0 +test_mathtext/mathtext_dejavusans_40.pdf:0:0 +test_mathtext/mathtext_dejavusans_40.png:0:0 +test_mathtext/mathtext_dejavusans_40.svg:0:0 +test_mathtext/mathtext_dejavusans_41.pdf:0:0 +test_mathtext/mathtext_dejavusans_41.png:0:0 +test_mathtext/mathtext_dejavusans_41.svg:0:0 +test_mathtext/mathtext_dejavusans_42.pdf:0:0 +test_mathtext/mathtext_dejavusans_42.png:0:0 +test_mathtext/mathtext_dejavusans_42.svg:0:0 +test_mathtext/mathtext_dejavusans_43.pdf:0:0 +test_mathtext/mathtext_dejavusans_43.png:0:0 +test_mathtext/mathtext_dejavusans_43.svg:0:0 +test_mathtext/mathtext_dejavusans_44.pdf:0:0 +test_mathtext/mathtext_dejavusans_44.png:0:0 +test_mathtext/mathtext_dejavusans_44.svg:0:0 +test_mathtext/mathtext_dejavusans_45.pdf:0:0 +test_mathtext/mathtext_dejavusans_45.png:0:0 +test_mathtext/mathtext_dejavusans_45.svg:0:0 +test_mathtext/mathtext_dejavusans_46.pdf:0:0 +test_mathtext/mathtext_dejavusans_46.png:0:0 +test_mathtext/mathtext_dejavusans_46.svg:0:0 +test_mathtext/mathtext_dejavusans_47.pdf:0:0 +test_mathtext/mathtext_dejavusans_47.png:0:0 +test_mathtext/mathtext_dejavusans_47.svg:0:0 +test_mathtext/mathtext_dejavusans_48.pdf:0:0 +test_mathtext/mathtext_dejavusans_48.png:0:0 +test_mathtext/mathtext_dejavusans_48.svg:0:0 +test_mathtext/mathtext_dejavusans_49.pdf:0:0 +test_mathtext/mathtext_dejavusans_49.png:0:0 +test_mathtext/mathtext_dejavusans_49.svg:0:0 +test_mathtext/mathtext_dejavusans_50.pdf:0:0 +test_mathtext/mathtext_dejavusans_50.png:0:0 +test_mathtext/mathtext_dejavusans_50.svg:0:0 +test_mathtext/mathtext_dejavusans_51.pdf:0:0 +test_mathtext/mathtext_dejavusans_51.png:0:0 +test_mathtext/mathtext_dejavusans_51.svg:0:0 +test_mathtext/mathtext_dejavusans_52.pdf:0:0 +test_mathtext/mathtext_dejavusans_52.png:0:0 +test_mathtext/mathtext_dejavusans_52.svg:0:0 +test_mathtext/mathtext_dejavusans_53.pdf:0:0 +test_mathtext/mathtext_dejavusans_53.png:0:0 +test_mathtext/mathtext_dejavusans_53.svg:0:0 +test_mathtext/mathtext_dejavusans_54.pdf:0:0 +test_mathtext/mathtext_dejavusans_54.png:0:0 +test_mathtext/mathtext_dejavusans_54.svg:0:0 +test_mathtext/mathtext_dejavusans_55.pdf:0:0 +test_mathtext/mathtext_dejavusans_55.png:0:0 +test_mathtext/mathtext_dejavusans_55.svg:0:0 +test_mathtext/mathtext_dejavusans_56.pdf:0:0 +test_mathtext/mathtext_dejavusans_56.png:0:0 +test_mathtext/mathtext_dejavusans_56.svg:0:0 +test_mathtext/mathtext_dejavusans_57.pdf:0:0 +test_mathtext/mathtext_dejavusans_57.png:0:0 +test_mathtext/mathtext_dejavusans_57.svg:0:0 +test_mathtext/mathtext_dejavusans_58.pdf:0:0 +test_mathtext/mathtext_dejavusans_58.png:0:0 +test_mathtext/mathtext_dejavusans_58.svg:0:0 +test_mathtext/mathtext_dejavusans_59.pdf:0:0 +test_mathtext/mathtext_dejavusans_59.png:0:0 +test_mathtext/mathtext_dejavusans_59.svg:0:0 +test_mathtext/mathtext_dejavusans_60.pdf:0:0 +test_mathtext/mathtext_dejavusans_60.png:0:0 +test_mathtext/mathtext_dejavusans_60.svg:0:0 +test_mathtext/mathtext_dejavusans_61.pdf:0:0 +test_mathtext/mathtext_dejavusans_61.png:0:0 +test_mathtext/mathtext_dejavusans_61.svg:0:0 +test_mathtext/mathtext_dejavusans_62.pdf:0:0 +test_mathtext/mathtext_dejavusans_62.png:0:0 +test_mathtext/mathtext_dejavusans_62.svg:0:0 +test_mathtext/mathtext_dejavusans_63.pdf:0:0 +test_mathtext/mathtext_dejavusans_63.png:0:0 +test_mathtext/mathtext_dejavusans_63.svg:0:0 +test_mathtext/mathtext_dejavusans_64.pdf:0:0 +test_mathtext/mathtext_dejavusans_64.png:0:0 +test_mathtext/mathtext_dejavusans_64.svg:0:0 +test_mathtext/mathtext_dejavusans_65.pdf:0:0 +test_mathtext/mathtext_dejavusans_65.png:0:0 +test_mathtext/mathtext_dejavusans_65.svg:0:0 +test_mathtext/mathtext_dejavusans_68.pdf:0:0 +test_mathtext/mathtext_dejavusans_68.png:0:0 +test_mathtext/mathtext_dejavusans_68.svg:0:0 +test_mathtext/mathtext_dejavusans_69.pdf:0:0 +test_mathtext/mathtext_dejavusans_69.png:0:0 +test_mathtext/mathtext_dejavusans_69.svg:0:0 +test_mathtext/mathtext_dejavusans_70.pdf:0:0 +test_mathtext/mathtext_dejavusans_70.png:0:0 +test_mathtext/mathtext_dejavusans_70.svg:0:0 +test_mathtext/mathtext_dejavusans_71.pdf:0:0 +test_mathtext/mathtext_dejavusans_71.png:0:0 +test_mathtext/mathtext_dejavusans_71.svg:0:0 +test_mathtext/mathtext_dejavusans_72.pdf:0:0 +test_mathtext/mathtext_dejavusans_72.png:0:0 +test_mathtext/mathtext_dejavusans_72.svg:0:0 +test_mathtext/mathtext_dejavusans_73.pdf:0:0 +test_mathtext/mathtext_dejavusans_73.png:0:0 +test_mathtext/mathtext_dejavusans_73.svg:0:0 +test_mathtext/mathtext_dejavusans_74.pdf:0:0 +test_mathtext/mathtext_dejavusans_74.png:0:0 +test_mathtext/mathtext_dejavusans_74.svg:0:0 +test_mathtext/mathtext_dejavusans_75.pdf:0:0 +test_mathtext/mathtext_dejavusans_75.png:0:0 +test_mathtext/mathtext_dejavusans_75.svg:0:0 +test_mathtext/mathtext_dejavusans_76.pdf:0:0 +test_mathtext/mathtext_dejavusans_76.png:0:0 +test_mathtext/mathtext_dejavusans_76.svg:0:0 +test_mathtext/mathtext_dejavusans_78.pdf:0:0 +test_mathtext/mathtext_dejavusans_78.png:0:0 +test_mathtext/mathtext_dejavusans_78.svg:0:0 +test_mathtext/mathtext_dejavusans_79.pdf:0:0 +test_mathtext/mathtext_dejavusans_79.png:0:0 +test_mathtext/mathtext_dejavusans_79.svg:0:0 +test_mathtext/mathtext_dejavusans_80.pdf:0:0 +test_mathtext/mathtext_dejavusans_80.png:0:0 +test_mathtext/mathtext_dejavusans_80.svg:0:0 +test_mathtext/mathtext_dejavusans_81.pdf:0:0 +test_mathtext/mathtext_dejavusans_81.png:0:0 +test_mathtext/mathtext_dejavusans_81.svg:0:0 +test_mathtext/mathtext_dejavusans_82.pdf:0:0 +test_mathtext/mathtext_dejavusans_82.png:0:0 +test_mathtext/mathtext_dejavusans_82.svg:0:0 +test_mathtext/mathtext_dejavuserif_00.pdf:0:0 +test_mathtext/mathtext_dejavuserif_00.png:0:0 +test_mathtext/mathtext_dejavuserif_00.svg:0:0 +test_mathtext/mathtext_dejavuserif_01.pdf:0:0 +test_mathtext/mathtext_dejavuserif_01.png:0:0 +test_mathtext/mathtext_dejavuserif_01.svg:0:0 +test_mathtext/mathtext_dejavuserif_02.pdf:0:0 +test_mathtext/mathtext_dejavuserif_02.png:0:0 +test_mathtext/mathtext_dejavuserif_02.svg:0:0 +test_mathtext/mathtext_dejavuserif_03.pdf:0:0 +test_mathtext/mathtext_dejavuserif_03.png:0:0 +test_mathtext/mathtext_dejavuserif_03.svg:0:0 +test_mathtext/mathtext_dejavuserif_04.pdf:0:0 +test_mathtext/mathtext_dejavuserif_04.png:0:0 +test_mathtext/mathtext_dejavuserif_04.svg:0:0 +test_mathtext/mathtext_dejavuserif_05.pdf:0:0 +test_mathtext/mathtext_dejavuserif_05.png:0:0 +test_mathtext/mathtext_dejavuserif_05.svg:0:0 +test_mathtext/mathtext_dejavuserif_06.pdf:0:0 +test_mathtext/mathtext_dejavuserif_06.png:0:0 +test_mathtext/mathtext_dejavuserif_06.svg:0:0 +test_mathtext/mathtext_dejavuserif_07.pdf:0:0 +test_mathtext/mathtext_dejavuserif_07.png:0:0 +test_mathtext/mathtext_dejavuserif_07.svg:0:0 +test_mathtext/mathtext_dejavuserif_08.pdf:0:0 +test_mathtext/mathtext_dejavuserif_08.png:0:0 +test_mathtext/mathtext_dejavuserif_08.svg:0:0 +test_mathtext/mathtext_dejavuserif_09.pdf:0:0 +test_mathtext/mathtext_dejavuserif_09.png:0:0 +test_mathtext/mathtext_dejavuserif_09.svg:0:0 +test_mathtext/mathtext_dejavuserif_10.pdf:0:0 +test_mathtext/mathtext_dejavuserif_10.png:0:0 +test_mathtext/mathtext_dejavuserif_10.svg:0:0 +test_mathtext/mathtext_dejavuserif_11.pdf:0:0 +test_mathtext/mathtext_dejavuserif_11.png:0:0 +test_mathtext/mathtext_dejavuserif_11.svg:0:0 +test_mathtext/mathtext_dejavuserif_12.pdf:0:0 +test_mathtext/mathtext_dejavuserif_12.png:0:0 +test_mathtext/mathtext_dejavuserif_12.svg:0:0 +test_mathtext/mathtext_dejavuserif_13.pdf:0:0 +test_mathtext/mathtext_dejavuserif_13.png:0:0 +test_mathtext/mathtext_dejavuserif_13.svg:0:0 +test_mathtext/mathtext_dejavuserif_14.pdf:0:0 +test_mathtext/mathtext_dejavuserif_14.png:0:0 +test_mathtext/mathtext_dejavuserif_14.svg:0:0 +test_mathtext/mathtext_dejavuserif_15.pdf:0:0 +test_mathtext/mathtext_dejavuserif_15.png:0:0 +test_mathtext/mathtext_dejavuserif_15.svg:0:0 +test_mathtext/mathtext_dejavuserif_16.pdf:0:0 +test_mathtext/mathtext_dejavuserif_16.png:0:0 +test_mathtext/mathtext_dejavuserif_16.svg:0:0 +test_mathtext/mathtext_dejavuserif_17.pdf:0:0 +test_mathtext/mathtext_dejavuserif_17.png:0:0 +test_mathtext/mathtext_dejavuserif_17.svg:0:0 +test_mathtext/mathtext_dejavuserif_18.pdf:0:0 +test_mathtext/mathtext_dejavuserif_18.png:0:0 +test_mathtext/mathtext_dejavuserif_18.svg:0:0 +test_mathtext/mathtext_dejavuserif_19.pdf:0:0 +test_mathtext/mathtext_dejavuserif_19.png:0:0 +test_mathtext/mathtext_dejavuserif_19.svg:0:0 +test_mathtext/mathtext_dejavuserif_20.pdf:0:0 +test_mathtext/mathtext_dejavuserif_20.png:0:0 +test_mathtext/mathtext_dejavuserif_20.svg:0:0 +test_mathtext/mathtext_dejavuserif_21.pdf:0:0 +test_mathtext/mathtext_dejavuserif_21.png:0:0 +test_mathtext/mathtext_dejavuserif_21.svg:0:0 +test_mathtext/mathtext_dejavuserif_23.pdf:0:0 +test_mathtext/mathtext_dejavuserif_23.png:0:0 +test_mathtext/mathtext_dejavuserif_23.svg:0:0 +test_mathtext/mathtext_dejavuserif_24.pdf:0:0 +test_mathtext/mathtext_dejavuserif_24.png:0:0 +test_mathtext/mathtext_dejavuserif_24.svg:0:0 +test_mathtext/mathtext_dejavuserif_25.pdf:0:0 +test_mathtext/mathtext_dejavuserif_25.png:0:0 +test_mathtext/mathtext_dejavuserif_25.svg:0:0 +test_mathtext/mathtext_dejavuserif_26.pdf:0:0 +test_mathtext/mathtext_dejavuserif_26.png:0:0 +test_mathtext/mathtext_dejavuserif_26.svg:0:0 +test_mathtext/mathtext_dejavuserif_27.pdf:0:0 +test_mathtext/mathtext_dejavuserif_27.png:0:0 +test_mathtext/mathtext_dejavuserif_27.svg:0:0 +test_mathtext/mathtext_dejavuserif_28.pdf:0:0 +test_mathtext/mathtext_dejavuserif_28.png:0:0 +test_mathtext/mathtext_dejavuserif_28.svg:0:0 +test_mathtext/mathtext_dejavuserif_29.pdf:0:0 +test_mathtext/mathtext_dejavuserif_29.png:0:0 +test_mathtext/mathtext_dejavuserif_29.svg:0:0 +test_mathtext/mathtext_dejavuserif_31.pdf:0:0 +test_mathtext/mathtext_dejavuserif_31.png:0:0 +test_mathtext/mathtext_dejavuserif_31.svg:0:0 +test_mathtext/mathtext_dejavuserif_32.pdf:0:0 +test_mathtext/mathtext_dejavuserif_32.png:0:0 +test_mathtext/mathtext_dejavuserif_32.svg:0:0 +test_mathtext/mathtext_dejavuserif_33.pdf:0:0 +test_mathtext/mathtext_dejavuserif_33.png:0:0 +test_mathtext/mathtext_dejavuserif_33.svg:0:0 +test_mathtext/mathtext_dejavuserif_35.pdf:0:0 +test_mathtext/mathtext_dejavuserif_35.png:0:0 +test_mathtext/mathtext_dejavuserif_35.svg:0:0 +test_mathtext/mathtext_dejavuserif_36.pdf:0:0 +test_mathtext/mathtext_dejavuserif_36.png:0:0 +test_mathtext/mathtext_dejavuserif_36.svg:0:0 +test_mathtext/mathtext_dejavuserif_37.pdf:0:0 +test_mathtext/mathtext_dejavuserif_37.png:0:0 +test_mathtext/mathtext_dejavuserif_37.svg:0:0 +test_mathtext/mathtext_dejavuserif_38.pdf:0:0 +test_mathtext/mathtext_dejavuserif_38.png:0:0 +test_mathtext/mathtext_dejavuserif_38.svg:0:0 +test_mathtext/mathtext_dejavuserif_39.pdf:0:0 +test_mathtext/mathtext_dejavuserif_39.png:0:0 +test_mathtext/mathtext_dejavuserif_39.svg:0:0 +test_mathtext/mathtext_dejavuserif_40.pdf:0:0 +test_mathtext/mathtext_dejavuserif_40.png:0:0 +test_mathtext/mathtext_dejavuserif_40.svg:0:0 +test_mathtext/mathtext_dejavuserif_41.pdf:0:0 +test_mathtext/mathtext_dejavuserif_41.png:0:0 +test_mathtext/mathtext_dejavuserif_41.svg:0:0 +test_mathtext/mathtext_dejavuserif_42.pdf:0:0 +test_mathtext/mathtext_dejavuserif_42.png:0:0 +test_mathtext/mathtext_dejavuserif_42.svg:0:0 +test_mathtext/mathtext_dejavuserif_43.pdf:0:0 +test_mathtext/mathtext_dejavuserif_43.png:0:0 +test_mathtext/mathtext_dejavuserif_43.svg:0:0 +test_mathtext/mathtext_dejavuserif_44.pdf:0:0 +test_mathtext/mathtext_dejavuserif_44.png:0:0 +test_mathtext/mathtext_dejavuserif_44.svg:0:0 +test_mathtext/mathtext_dejavuserif_45.pdf:0:0 +test_mathtext/mathtext_dejavuserif_45.png:0:0 +test_mathtext/mathtext_dejavuserif_45.svg:0:0 +test_mathtext/mathtext_dejavuserif_46.pdf:0:0 +test_mathtext/mathtext_dejavuserif_46.png:0:0 +test_mathtext/mathtext_dejavuserif_46.svg:0:0 +test_mathtext/mathtext_dejavuserif_47.pdf:0:0 +test_mathtext/mathtext_dejavuserif_47.png:0:0 +test_mathtext/mathtext_dejavuserif_47.svg:0:0 +test_mathtext/mathtext_dejavuserif_48.pdf:0:0 +test_mathtext/mathtext_dejavuserif_48.png:0:0 +test_mathtext/mathtext_dejavuserif_48.svg:0:0 +test_mathtext/mathtext_dejavuserif_49.pdf:0:0 +test_mathtext/mathtext_dejavuserif_49.png:0:0 +test_mathtext/mathtext_dejavuserif_49.svg:0:0 +test_mathtext/mathtext_dejavuserif_50.pdf:0:0 +test_mathtext/mathtext_dejavuserif_50.png:0:0 +test_mathtext/mathtext_dejavuserif_50.svg:0:0 +test_mathtext/mathtext_dejavuserif_51.pdf:0:0 +test_mathtext/mathtext_dejavuserif_51.png:0:0 +test_mathtext/mathtext_dejavuserif_51.svg:0:0 +test_mathtext/mathtext_dejavuserif_52.pdf:0:0 +test_mathtext/mathtext_dejavuserif_52.png:0:0 +test_mathtext/mathtext_dejavuserif_52.svg:0:0 +test_mathtext/mathtext_dejavuserif_53.pdf:0:0 +test_mathtext/mathtext_dejavuserif_53.png:0:0 +test_mathtext/mathtext_dejavuserif_53.svg:0:0 +test_mathtext/mathtext_dejavuserif_54.pdf:0:0 +test_mathtext/mathtext_dejavuserif_54.png:0:0 +test_mathtext/mathtext_dejavuserif_54.svg:0:0 +test_mathtext/mathtext_dejavuserif_55.pdf:0:0 +test_mathtext/mathtext_dejavuserif_55.png:0:0 +test_mathtext/mathtext_dejavuserif_55.svg:0:0 +test_mathtext/mathtext_dejavuserif_56.pdf:0:0 +test_mathtext/mathtext_dejavuserif_56.png:0:0 +test_mathtext/mathtext_dejavuserif_56.svg:0:0 +test_mathtext/mathtext_dejavuserif_57.pdf:0:0 +test_mathtext/mathtext_dejavuserif_57.png:0:0 +test_mathtext/mathtext_dejavuserif_57.svg:0:0 +test_mathtext/mathtext_dejavuserif_58.pdf:0:0 +test_mathtext/mathtext_dejavuserif_58.png:0:0 +test_mathtext/mathtext_dejavuserif_58.svg:0:0 +test_mathtext/mathtext_dejavuserif_59.pdf:0:0 +test_mathtext/mathtext_dejavuserif_59.png:0:0 +test_mathtext/mathtext_dejavuserif_59.svg:0:0 +test_mathtext/mathtext_dejavuserif_60.pdf:0:0 +test_mathtext/mathtext_dejavuserif_60.png:0:0 +test_mathtext/mathtext_dejavuserif_60.svg:0:0 +test_mathtext/mathtext_dejavuserif_61.pdf:0:0 +test_mathtext/mathtext_dejavuserif_61.png:0:0 +test_mathtext/mathtext_dejavuserif_61.svg:0:0 +test_mathtext/mathtext_dejavuserif_62.pdf:0:0 +test_mathtext/mathtext_dejavuserif_62.png:0:0 +test_mathtext/mathtext_dejavuserif_62.svg:0:0 +test_mathtext/mathtext_dejavuserif_63.pdf:0:0 +test_mathtext/mathtext_dejavuserif_63.png:0:0 +test_mathtext/mathtext_dejavuserif_63.svg:0:0 +test_mathtext/mathtext_dejavuserif_64.pdf:0:0 +test_mathtext/mathtext_dejavuserif_64.png:0:0 +test_mathtext/mathtext_dejavuserif_64.svg:0:0 +test_mathtext/mathtext_dejavuserif_65.pdf:0:0 +test_mathtext/mathtext_dejavuserif_65.png:0:0 +test_mathtext/mathtext_dejavuserif_65.svg:0:0 +test_mathtext/mathtext_dejavuserif_68.pdf:0:0 +test_mathtext/mathtext_dejavuserif_68.png:0:0 +test_mathtext/mathtext_dejavuserif_68.svg:0:0 +test_mathtext/mathtext_dejavuserif_69.pdf:0:0 +test_mathtext/mathtext_dejavuserif_69.png:0:0 +test_mathtext/mathtext_dejavuserif_69.svg:0:0 +test_mathtext/mathtext_dejavuserif_70.pdf:0:0 +test_mathtext/mathtext_dejavuserif_70.png:0:0 +test_mathtext/mathtext_dejavuserif_70.svg:0:0 +test_mathtext/mathtext_dejavuserif_71.pdf:0:0 +test_mathtext/mathtext_dejavuserif_71.png:0:0 +test_mathtext/mathtext_dejavuserif_71.svg:0:0 +test_mathtext/mathtext_dejavuserif_72.pdf:0:0 +test_mathtext/mathtext_dejavuserif_72.png:0:0 +test_mathtext/mathtext_dejavuserif_72.svg:0:0 +test_mathtext/mathtext_dejavuserif_73.pdf:0:0 +test_mathtext/mathtext_dejavuserif_73.png:0:0 +test_mathtext/mathtext_dejavuserif_73.svg:0:0 +test_mathtext/mathtext_dejavuserif_74.pdf:0:0 +test_mathtext/mathtext_dejavuserif_74.png:0:0 +test_mathtext/mathtext_dejavuserif_74.svg:0:0 +test_mathtext/mathtext_dejavuserif_75.pdf:0:0 +test_mathtext/mathtext_dejavuserif_75.png:0:0 +test_mathtext/mathtext_dejavuserif_75.svg:0:0 +test_mathtext/mathtext_dejavuserif_76.pdf:0:0 +test_mathtext/mathtext_dejavuserif_76.png:0:0 +test_mathtext/mathtext_dejavuserif_76.svg:0:0 +test_mathtext/mathtext_dejavuserif_78.pdf:0:0 +test_mathtext/mathtext_dejavuserif_78.png:0:0 +test_mathtext/mathtext_dejavuserif_78.svg:0:0 +test_mathtext/mathtext_dejavuserif_79.pdf:0:0 +test_mathtext/mathtext_dejavuserif_79.png:0:0 +test_mathtext/mathtext_dejavuserif_79.svg:0:0 +test_mathtext/mathtext_dejavuserif_80.pdf:0:0 +test_mathtext/mathtext_dejavuserif_80.png:0:0 +test_mathtext/mathtext_dejavuserif_80.svg:0:0 +test_mathtext/mathtext_dejavuserif_81.pdf:0:0 +test_mathtext/mathtext_dejavuserif_81.png:0:0 +test_mathtext/mathtext_dejavuserif_81.svg:0:0 +test_mathtext/mathtext_dejavuserif_82.pdf:0:0 +test_mathtext/mathtext_dejavuserif_82.png:0:0 +test_mathtext/mathtext_dejavuserif_82.svg:0:0 +test_mathtext/mathtext_stix_00.pdf:0:0 +test_mathtext/mathtext_stix_00.png:0:0 +test_mathtext/mathtext_stix_00.svg:0:0 +test_mathtext/mathtext_stix_01.pdf:0:0 +test_mathtext/mathtext_stix_01.png:0:0 +test_mathtext/mathtext_stix_01.svg:0:0 +test_mathtext/mathtext_stix_02.pdf:0:0 +test_mathtext/mathtext_stix_02.png:0:0 +test_mathtext/mathtext_stix_02.svg:0:0 +test_mathtext/mathtext_stix_03.pdf:0:0 +test_mathtext/mathtext_stix_03.png:0:0 +test_mathtext/mathtext_stix_03.svg:0:0 +test_mathtext/mathtext_stix_04.pdf:0:0 +test_mathtext/mathtext_stix_04.png:0:0 +test_mathtext/mathtext_stix_04.svg:0:0 +test_mathtext/mathtext_stix_05.pdf:0:0 +test_mathtext/mathtext_stix_05.png:0:0 +test_mathtext/mathtext_stix_05.svg:0:0 +test_mathtext/mathtext_stix_06.pdf:0:0 +test_mathtext/mathtext_stix_06.png:0:0 +test_mathtext/mathtext_stix_06.svg:0:0 +test_mathtext/mathtext_stix_07.pdf:0:0 +test_mathtext/mathtext_stix_07.png:0:0 +test_mathtext/mathtext_stix_07.svg:0:0 +test_mathtext/mathtext_stix_08.pdf:0:0 +test_mathtext/mathtext_stix_08.png:0:0 +test_mathtext/mathtext_stix_08.svg:0:0 +test_mathtext/mathtext_stix_09.pdf:0:0 +test_mathtext/mathtext_stix_09.png:0:0 +test_mathtext/mathtext_stix_09.svg:0:0 +test_mathtext/mathtext_stix_10.pdf:0:0 +test_mathtext/mathtext_stix_10.png:0:0 +test_mathtext/mathtext_stix_10.svg:0:0 +test_mathtext/mathtext_stix_11.pdf:0:0 +test_mathtext/mathtext_stix_11.png:0:0 +test_mathtext/mathtext_stix_11.svg:0:0 +test_mathtext/mathtext_stix_12.pdf:0:0 +test_mathtext/mathtext_stix_12.png:0:0 +test_mathtext/mathtext_stix_12.svg:0:0 +test_mathtext/mathtext_stix_13.pdf:0:0 +test_mathtext/mathtext_stix_13.png:0:0 +test_mathtext/mathtext_stix_13.svg:0:0 +test_mathtext/mathtext_stix_14.pdf:0:0 +test_mathtext/mathtext_stix_14.png:0:0 +test_mathtext/mathtext_stix_14.svg:0:0 +test_mathtext/mathtext_stix_15.pdf:0:0 +test_mathtext/mathtext_stix_15.png:0:0 +test_mathtext/mathtext_stix_15.svg:0:0 +test_mathtext/mathtext_stix_16.pdf:0:0 +test_mathtext/mathtext_stix_16.png:0:0 +test_mathtext/mathtext_stix_16.svg:0:0 +test_mathtext/mathtext_stix_17.pdf:0:0 +test_mathtext/mathtext_stix_17.png:0:0 +test_mathtext/mathtext_stix_17.svg:0:0 +test_mathtext/mathtext_stix_18.pdf:0:0 +test_mathtext/mathtext_stix_18.png:0:0 +test_mathtext/mathtext_stix_18.svg:0:0 +test_mathtext/mathtext_stix_19.pdf:0:0 +test_mathtext/mathtext_stix_19.png:0:0 +test_mathtext/mathtext_stix_19.svg:0:0 +test_mathtext/mathtext_stix_20.pdf:0:0 +test_mathtext/mathtext_stix_20.png:0:0 +test_mathtext/mathtext_stix_20.svg:0:0 +test_mathtext/mathtext_stix_21.pdf:0:0 +test_mathtext/mathtext_stix_21.png:0:0 +test_mathtext/mathtext_stix_21.svg:0:0 +test_mathtext/mathtext_stix_23.pdf:0:0 +test_mathtext/mathtext_stix_23.png:0:0 +test_mathtext/mathtext_stix_23.svg:0:0 +test_mathtext/mathtext_stix_24.pdf:0:0 +test_mathtext/mathtext_stix_24.png:0:0 +test_mathtext/mathtext_stix_24.svg:0:0 +test_mathtext/mathtext_stix_25.pdf:0:0 +test_mathtext/mathtext_stix_25.png:0:0 +test_mathtext/mathtext_stix_25.svg:0:0 +test_mathtext/mathtext_stix_26.pdf:0:0 +test_mathtext/mathtext_stix_26.png:0:0 +test_mathtext/mathtext_stix_26.svg:0:0 +test_mathtext/mathtext_stix_27.pdf:0:0 +test_mathtext/mathtext_stix_27.png:0:0 +test_mathtext/mathtext_stix_27.svg:0:0 +test_mathtext/mathtext_stix_28.pdf:0:0 +test_mathtext/mathtext_stix_28.png:0:0 +test_mathtext/mathtext_stix_28.svg:0:0 +test_mathtext/mathtext_stix_29.pdf:0:0 +test_mathtext/mathtext_stix_29.png:0:0 +test_mathtext/mathtext_stix_29.svg:0:0 +test_mathtext/mathtext_stix_31.pdf:0:0 +test_mathtext/mathtext_stix_31.png:0:0 +test_mathtext/mathtext_stix_31.svg:0:0 +test_mathtext/mathtext_stix_32.pdf:0:0 +test_mathtext/mathtext_stix_32.png:0:0 +test_mathtext/mathtext_stix_32.svg:0:0 +test_mathtext/mathtext_stix_33.pdf:0:0 +test_mathtext/mathtext_stix_33.png:0:0 +test_mathtext/mathtext_stix_33.svg:0:0 +test_mathtext/mathtext_stix_35.pdf:0:0 +test_mathtext/mathtext_stix_35.png:0:0 +test_mathtext/mathtext_stix_35.svg:0:0 +test_mathtext/mathtext_stix_36.pdf:0:0 +test_mathtext/mathtext_stix_36.png:0:0 +test_mathtext/mathtext_stix_36.svg:0:0 +test_mathtext/mathtext_stix_37.pdf:0:0 +test_mathtext/mathtext_stix_37.png:0:0 +test_mathtext/mathtext_stix_37.svg:0:0 +test_mathtext/mathtext_stix_38.pdf:0:0 +test_mathtext/mathtext_stix_38.png:0:0 +test_mathtext/mathtext_stix_38.svg:0:0 +test_mathtext/mathtext_stix_39.pdf:0:0 +test_mathtext/mathtext_stix_39.png:0:0 +test_mathtext/mathtext_stix_39.svg:0:0 +test_mathtext/mathtext_stix_40.pdf:0:0 +test_mathtext/mathtext_stix_40.png:0:0 +test_mathtext/mathtext_stix_40.svg:0:0 +test_mathtext/mathtext_stix_41.pdf:0:0 +test_mathtext/mathtext_stix_41.png:0:0 +test_mathtext/mathtext_stix_41.svg:0:0 +test_mathtext/mathtext_stix_42.pdf:0:0 +test_mathtext/mathtext_stix_42.png:0:0 +test_mathtext/mathtext_stix_42.svg:0:0 +test_mathtext/mathtext_stix_43.pdf:0:0 +test_mathtext/mathtext_stix_43.png:0:0 +test_mathtext/mathtext_stix_43.svg:0:0 +test_mathtext/mathtext_stix_44.pdf:0:0 +test_mathtext/mathtext_stix_44.png:0:0 +test_mathtext/mathtext_stix_44.svg:0:0 +test_mathtext/mathtext_stix_45.pdf:0:0 +test_mathtext/mathtext_stix_45.png:0:0 +test_mathtext/mathtext_stix_45.svg:0:0 +test_mathtext/mathtext_stix_46.pdf:0:0 +test_mathtext/mathtext_stix_46.png:0:0 +test_mathtext/mathtext_stix_46.svg:0:0 +test_mathtext/mathtext_stix_47.pdf:0:0 +test_mathtext/mathtext_stix_47.png:0:0 +test_mathtext/mathtext_stix_47.svg:0:0 +test_mathtext/mathtext_stix_48.pdf:0:0 +test_mathtext/mathtext_stix_48.png:0:0 +test_mathtext/mathtext_stix_48.svg:0:0 +test_mathtext/mathtext_stix_49.pdf:0:0 +test_mathtext/mathtext_stix_49.png:0:0 +test_mathtext/mathtext_stix_49.svg:0:0 +test_mathtext/mathtext_stix_50.pdf:0:0 +test_mathtext/mathtext_stix_50.png:0:0 +test_mathtext/mathtext_stix_50.svg:0:0 +test_mathtext/mathtext_stix_51.pdf:0:0 +test_mathtext/mathtext_stix_51.png:0:0 +test_mathtext/mathtext_stix_51.svg:0:0 +test_mathtext/mathtext_stix_52.pdf:0:0 +test_mathtext/mathtext_stix_52.png:0:0 +test_mathtext/mathtext_stix_52.svg:0:0 +test_mathtext/mathtext_stix_53.pdf:0:0 +test_mathtext/mathtext_stix_53.png:0:0 +test_mathtext/mathtext_stix_53.svg:0:0 +test_mathtext/mathtext_stix_54.pdf:0:0 +test_mathtext/mathtext_stix_54.png:0:0 +test_mathtext/mathtext_stix_54.svg:0:0 +test_mathtext/mathtext_stix_55.pdf:0:0 +test_mathtext/mathtext_stix_55.png:0:0 +test_mathtext/mathtext_stix_55.svg:0:0 +test_mathtext/mathtext_stix_56.pdf:0:0 +test_mathtext/mathtext_stix_56.png:0:0 +test_mathtext/mathtext_stix_56.svg:0:0 +test_mathtext/mathtext_stix_57.pdf:0:0 +test_mathtext/mathtext_stix_57.png:0:0 +test_mathtext/mathtext_stix_57.svg:0:0 +test_mathtext/mathtext_stix_58.pdf:0:0 +test_mathtext/mathtext_stix_58.png:0:0 +test_mathtext/mathtext_stix_58.svg:0:0 +test_mathtext/mathtext_stix_59.pdf:0:0 +test_mathtext/mathtext_stix_59.png:0:0 +test_mathtext/mathtext_stix_59.svg:0:0 +test_mathtext/mathtext_stix_60.pdf:0:0 +test_mathtext/mathtext_stix_60.png:0:0 +test_mathtext/mathtext_stix_60.svg:0:0 +test_mathtext/mathtext_stix_61.pdf:0:0 +test_mathtext/mathtext_stix_61.png:0:0 +test_mathtext/mathtext_stix_61.svg:0:0 +test_mathtext/mathtext_stix_62.pdf:0:0 +test_mathtext/mathtext_stix_62.png:0:0 +test_mathtext/mathtext_stix_62.svg:0:0 +test_mathtext/mathtext_stix_63.pdf:0:0 +test_mathtext/mathtext_stix_63.png:0:0 +test_mathtext/mathtext_stix_63.svg:0:0 +test_mathtext/mathtext_stix_64.pdf:0:0 +test_mathtext/mathtext_stix_64.png:0:0 +test_mathtext/mathtext_stix_64.svg:0:0 +test_mathtext/mathtext_stix_65.pdf:0:0 +test_mathtext/mathtext_stix_65.png:0:0 +test_mathtext/mathtext_stix_65.svg:0:0 +test_mathtext/mathtext_stix_68.pdf:0:0 +test_mathtext/mathtext_stix_68.png:0:0 +test_mathtext/mathtext_stix_68.svg:0:0 +test_mathtext/mathtext_stix_69.pdf:0:0 +test_mathtext/mathtext_stix_69.png:0:0 +test_mathtext/mathtext_stix_69.svg:0:0 +test_mathtext/mathtext_stix_70.pdf:0:0 +test_mathtext/mathtext_stix_70.png:0:0 +test_mathtext/mathtext_stix_70.svg:0:0 +test_mathtext/mathtext_stix_71.pdf:0:0 +test_mathtext/mathtext_stix_71.png:0:0 +test_mathtext/mathtext_stix_71.svg:0:0 +test_mathtext/mathtext_stix_72.pdf:0:0 +test_mathtext/mathtext_stix_72.png:0:0 +test_mathtext/mathtext_stix_72.svg:0:0 +test_mathtext/mathtext_stix_73.pdf:0:0 +test_mathtext/mathtext_stix_73.png:0:0 +test_mathtext/mathtext_stix_73.svg:0:0 +test_mathtext/mathtext_stix_74.pdf:0:0 +test_mathtext/mathtext_stix_74.png:0:0 +test_mathtext/mathtext_stix_74.svg:0:0 +test_mathtext/mathtext_stix_75.pdf:0:0 +test_mathtext/mathtext_stix_75.png:0:0 +test_mathtext/mathtext_stix_75.svg:0:0 +test_mathtext/mathtext_stix_76.pdf:0:0 +test_mathtext/mathtext_stix_76.png:0:0 +test_mathtext/mathtext_stix_76.svg:0:0 +test_mathtext/mathtext_stix_78.pdf:0:0 +test_mathtext/mathtext_stix_78.png:0:0 +test_mathtext/mathtext_stix_78.svg:0:0 +test_mathtext/mathtext_stix_79.pdf:0:0 +test_mathtext/mathtext_stix_79.png:0:0 +test_mathtext/mathtext_stix_79.svg:0:0 +test_mathtext/mathtext_stix_80.pdf:0:0 +test_mathtext/mathtext_stix_80.png:0:0 +test_mathtext/mathtext_stix_80.svg:0:0 +test_mathtext/mathtext_stix_81.pdf:0:0 +test_mathtext/mathtext_stix_81.png:0:0 +test_mathtext/mathtext_stix_81.svg:0:0 +test_mathtext/mathtext_stix_82.pdf:0:0 +test_mathtext/mathtext_stix_82.png:0:0 +test_mathtext/mathtext_stix_82.svg:0:0 +test_mathtext/mathtext_stixsans_00.pdf:0:0 +test_mathtext/mathtext_stixsans_00.png:0:0 +test_mathtext/mathtext_stixsans_00.svg:0:0 +test_mathtext/mathtext_stixsans_01.pdf:0:0 +test_mathtext/mathtext_stixsans_01.png:0:0 +test_mathtext/mathtext_stixsans_01.svg:0:0 +test_mathtext/mathtext_stixsans_02.pdf:0:0 +test_mathtext/mathtext_stixsans_02.png:0:0 +test_mathtext/mathtext_stixsans_02.svg:0:0 +test_mathtext/mathtext_stixsans_03.pdf:0:0 +test_mathtext/mathtext_stixsans_03.png:0:0 +test_mathtext/mathtext_stixsans_03.svg:0:0 +test_mathtext/mathtext_stixsans_04.pdf:0:0 +test_mathtext/mathtext_stixsans_04.png:0:0 +test_mathtext/mathtext_stixsans_04.svg:0:0 +test_mathtext/mathtext_stixsans_05.pdf:0:0 +test_mathtext/mathtext_stixsans_05.png:0:0 +test_mathtext/mathtext_stixsans_05.svg:0:0 +test_mathtext/mathtext_stixsans_06.pdf:0:0 +test_mathtext/mathtext_stixsans_06.png:0:0 +test_mathtext/mathtext_stixsans_06.svg:0:0 +test_mathtext/mathtext_stixsans_07.pdf:0:0 +test_mathtext/mathtext_stixsans_07.png:0:0 +test_mathtext/mathtext_stixsans_07.svg:0:0 +test_mathtext/mathtext_stixsans_08.pdf:0:0 +test_mathtext/mathtext_stixsans_08.png:0:0 +test_mathtext/mathtext_stixsans_08.svg:0:0 +test_mathtext/mathtext_stixsans_09.pdf:0:0 +test_mathtext/mathtext_stixsans_09.png:0:0 +test_mathtext/mathtext_stixsans_09.svg:0:0 +test_mathtext/mathtext_stixsans_10.pdf:0:0 +test_mathtext/mathtext_stixsans_10.png:0:0 +test_mathtext/mathtext_stixsans_10.svg:0:0 +test_mathtext/mathtext_stixsans_11.pdf:0:0 +test_mathtext/mathtext_stixsans_11.png:0:0 +test_mathtext/mathtext_stixsans_11.svg:0:0 +test_mathtext/mathtext_stixsans_12.pdf:0:0 +test_mathtext/mathtext_stixsans_12.png:0:0 +test_mathtext/mathtext_stixsans_12.svg:0:0 +test_mathtext/mathtext_stixsans_13.pdf:0:0 +test_mathtext/mathtext_stixsans_13.png:0:0 +test_mathtext/mathtext_stixsans_13.svg:0:0 +test_mathtext/mathtext_stixsans_14.pdf:0:0 +test_mathtext/mathtext_stixsans_14.png:0:0 +test_mathtext/mathtext_stixsans_14.svg:0:0 +test_mathtext/mathtext_stixsans_15.pdf:0:0 +test_mathtext/mathtext_stixsans_15.png:0:0 +test_mathtext/mathtext_stixsans_15.svg:0:0 +test_mathtext/mathtext_stixsans_16.pdf:0:0 +test_mathtext/mathtext_stixsans_16.png:0:0 +test_mathtext/mathtext_stixsans_16.svg:0:0 +test_mathtext/mathtext_stixsans_17.pdf:0:0 +test_mathtext/mathtext_stixsans_17.png:0:0 +test_mathtext/mathtext_stixsans_17.svg:0:0 +test_mathtext/mathtext_stixsans_18.pdf:0:0 +test_mathtext/mathtext_stixsans_18.png:0:0 +test_mathtext/mathtext_stixsans_18.svg:0:0 +test_mathtext/mathtext_stixsans_19.pdf:0:0 +test_mathtext/mathtext_stixsans_19.png:0:0 +test_mathtext/mathtext_stixsans_19.svg:0:0 +test_mathtext/mathtext_stixsans_20.pdf:0:0 +test_mathtext/mathtext_stixsans_20.png:0:0 +test_mathtext/mathtext_stixsans_20.svg:0:0 +test_mathtext/mathtext_stixsans_21.pdf:0:0 +test_mathtext/mathtext_stixsans_21.png:0:0 +test_mathtext/mathtext_stixsans_21.svg:0:0 +test_mathtext/mathtext_stixsans_23.pdf:0:0 +test_mathtext/mathtext_stixsans_23.png:0:0 +test_mathtext/mathtext_stixsans_23.svg:0:0 +test_mathtext/mathtext_stixsans_24.pdf:0:0 +test_mathtext/mathtext_stixsans_24.png:0:0 +test_mathtext/mathtext_stixsans_24.svg:0:0 +test_mathtext/mathtext_stixsans_25.pdf:0:0 +test_mathtext/mathtext_stixsans_25.png:0:0 +test_mathtext/mathtext_stixsans_25.svg:0:0 +test_mathtext/mathtext_stixsans_26.pdf:0:0 +test_mathtext/mathtext_stixsans_26.png:0:0 +test_mathtext/mathtext_stixsans_26.svg:0:0 +test_mathtext/mathtext_stixsans_27.pdf:0:0 +test_mathtext/mathtext_stixsans_27.png:0:0 +test_mathtext/mathtext_stixsans_27.svg:0:0 +test_mathtext/mathtext_stixsans_28.pdf:0:0 +test_mathtext/mathtext_stixsans_28.png:0:0 +test_mathtext/mathtext_stixsans_28.svg:0:0 +test_mathtext/mathtext_stixsans_29.pdf:0:0 +test_mathtext/mathtext_stixsans_29.png:0:0 +test_mathtext/mathtext_stixsans_29.svg:0:0 +test_mathtext/mathtext_stixsans_31.pdf:0:0 +test_mathtext/mathtext_stixsans_31.png:0:0 +test_mathtext/mathtext_stixsans_31.svg:0:0 +test_mathtext/mathtext_stixsans_32.pdf:0:0 +test_mathtext/mathtext_stixsans_32.png:0:0 +test_mathtext/mathtext_stixsans_32.svg:0:0 +test_mathtext/mathtext_stixsans_33.pdf:0:0 +test_mathtext/mathtext_stixsans_33.png:0:0 +test_mathtext/mathtext_stixsans_33.svg:0:0 +test_mathtext/mathtext_stixsans_35.pdf:0:0 +test_mathtext/mathtext_stixsans_35.png:0:0 +test_mathtext/mathtext_stixsans_35.svg:0:0 +test_mathtext/mathtext_stixsans_36.pdf:0:0 +test_mathtext/mathtext_stixsans_36.png:0:0 +test_mathtext/mathtext_stixsans_36.svg:0:0 +test_mathtext/mathtext_stixsans_37.pdf:0:0 +test_mathtext/mathtext_stixsans_37.png:0:0 +test_mathtext/mathtext_stixsans_37.svg:0:0 +test_mathtext/mathtext_stixsans_38.pdf:0:0 +test_mathtext/mathtext_stixsans_38.png:0:0 +test_mathtext/mathtext_stixsans_38.svg:0:0 +test_mathtext/mathtext_stixsans_39.pdf:0:0 +test_mathtext/mathtext_stixsans_39.png:0:0 +test_mathtext/mathtext_stixsans_39.svg:0:0 +test_mathtext/mathtext_stixsans_40.pdf:0:0 +test_mathtext/mathtext_stixsans_40.png:0:0 +test_mathtext/mathtext_stixsans_40.svg:0:0 +test_mathtext/mathtext_stixsans_41.pdf:0:0 +test_mathtext/mathtext_stixsans_41.png:0:0 +test_mathtext/mathtext_stixsans_41.svg:0:0 +test_mathtext/mathtext_stixsans_42.pdf:0:0 +test_mathtext/mathtext_stixsans_42.png:0:0 +test_mathtext/mathtext_stixsans_42.svg:0:0 +test_mathtext/mathtext_stixsans_43.pdf:0:0 +test_mathtext/mathtext_stixsans_43.png:0:0 +test_mathtext/mathtext_stixsans_43.svg:0:0 +test_mathtext/mathtext_stixsans_44.pdf:0:0 +test_mathtext/mathtext_stixsans_44.png:0:0 +test_mathtext/mathtext_stixsans_44.svg:0:0 +test_mathtext/mathtext_stixsans_45.pdf:0:0 +test_mathtext/mathtext_stixsans_45.png:0:0 +test_mathtext/mathtext_stixsans_45.svg:0:0 +test_mathtext/mathtext_stixsans_46.pdf:0:0 +test_mathtext/mathtext_stixsans_46.png:0:0 +test_mathtext/mathtext_stixsans_46.svg:0:0 +test_mathtext/mathtext_stixsans_47.pdf:0:0 +test_mathtext/mathtext_stixsans_47.png:0:0 +test_mathtext/mathtext_stixsans_47.svg:0:0 +test_mathtext/mathtext_stixsans_48.pdf:0:0 +test_mathtext/mathtext_stixsans_48.png:0:0 +test_mathtext/mathtext_stixsans_48.svg:0:0 +test_mathtext/mathtext_stixsans_49.pdf:0:0 +test_mathtext/mathtext_stixsans_49.png:0:0 +test_mathtext/mathtext_stixsans_49.svg:0:0 +test_mathtext/mathtext_stixsans_50.pdf:0:0 +test_mathtext/mathtext_stixsans_50.png:0:0 +test_mathtext/mathtext_stixsans_50.svg:0:0 +test_mathtext/mathtext_stixsans_51.pdf:0:0 +test_mathtext/mathtext_stixsans_51.png:0:0 +test_mathtext/mathtext_stixsans_51.svg:0:0 +test_mathtext/mathtext_stixsans_52.pdf:0:0 +test_mathtext/mathtext_stixsans_52.png:0:0 +test_mathtext/mathtext_stixsans_52.svg:0:0 +test_mathtext/mathtext_stixsans_53.pdf:0:0 +test_mathtext/mathtext_stixsans_53.png:0:0 +test_mathtext/mathtext_stixsans_53.svg:0:0 +test_mathtext/mathtext_stixsans_54.pdf:0:0 +test_mathtext/mathtext_stixsans_54.png:0:0 +test_mathtext/mathtext_stixsans_54.svg:0:0 +test_mathtext/mathtext_stixsans_55.pdf:0:0 +test_mathtext/mathtext_stixsans_55.png:0:0 +test_mathtext/mathtext_stixsans_55.svg:0:0 +test_mathtext/mathtext_stixsans_56.pdf:0:0 +test_mathtext/mathtext_stixsans_56.png:0:0 +test_mathtext/mathtext_stixsans_56.svg:0:0 +test_mathtext/mathtext_stixsans_57.pdf:0:0 +test_mathtext/mathtext_stixsans_57.png:0:0 +test_mathtext/mathtext_stixsans_57.svg:0:0 +test_mathtext/mathtext_stixsans_58.pdf:0:0 +test_mathtext/mathtext_stixsans_58.png:0:0 +test_mathtext/mathtext_stixsans_58.svg:0:0 +test_mathtext/mathtext_stixsans_59.pdf:0:0 +test_mathtext/mathtext_stixsans_59.png:0:0 +test_mathtext/mathtext_stixsans_59.svg:0:0 +test_mathtext/mathtext_stixsans_60.pdf:0:0 +test_mathtext/mathtext_stixsans_60.png:0:0 +test_mathtext/mathtext_stixsans_60.svg:0:0 +test_mathtext/mathtext_stixsans_61.pdf:0:0 +test_mathtext/mathtext_stixsans_61.png:0:0 +test_mathtext/mathtext_stixsans_61.svg:0:0 +test_mathtext/mathtext_stixsans_62.pdf:0:0 +test_mathtext/mathtext_stixsans_62.png:0:0 +test_mathtext/mathtext_stixsans_62.svg:0:0 +test_mathtext/mathtext_stixsans_63.pdf:0:0 +test_mathtext/mathtext_stixsans_63.png:0:0 +test_mathtext/mathtext_stixsans_63.svg:0:0 +test_mathtext/mathtext_stixsans_64.pdf:0:0 +test_mathtext/mathtext_stixsans_64.png:0:0 +test_mathtext/mathtext_stixsans_64.svg:0:0 +test_mathtext/mathtext_stixsans_65.pdf:0:0 +test_mathtext/mathtext_stixsans_65.png:0:0 +test_mathtext/mathtext_stixsans_65.svg:0:0 +test_mathtext/mathtext_stixsans_68.pdf:0:0 +test_mathtext/mathtext_stixsans_68.png:0:0 +test_mathtext/mathtext_stixsans_68.svg:0:0 +test_mathtext/mathtext_stixsans_69.pdf:0:0 +test_mathtext/mathtext_stixsans_69.png:0:0 +test_mathtext/mathtext_stixsans_69.svg:0:0 +test_mathtext/mathtext_stixsans_70.pdf:0:0 +test_mathtext/mathtext_stixsans_70.png:0:0 +test_mathtext/mathtext_stixsans_70.svg:0:0 +test_mathtext/mathtext_stixsans_71.pdf:0:0 +test_mathtext/mathtext_stixsans_71.png:0:0 +test_mathtext/mathtext_stixsans_71.svg:0:0 +test_mathtext/mathtext_stixsans_72.pdf:0:0 +test_mathtext/mathtext_stixsans_72.png:0:0 +test_mathtext/mathtext_stixsans_72.svg:0:0 +test_mathtext/mathtext_stixsans_73.pdf:0:0 +test_mathtext/mathtext_stixsans_73.png:0:0 +test_mathtext/mathtext_stixsans_73.svg:0:0 +test_mathtext/mathtext_stixsans_74.pdf:0:0 +test_mathtext/mathtext_stixsans_74.png:0:0 +test_mathtext/mathtext_stixsans_74.svg:0:0 +test_mathtext/mathtext_stixsans_75.pdf:0:0 +test_mathtext/mathtext_stixsans_75.png:0:0 +test_mathtext/mathtext_stixsans_75.svg:0:0 +test_mathtext/mathtext_stixsans_76.pdf:0:0 +test_mathtext/mathtext_stixsans_76.png:0:0 +test_mathtext/mathtext_stixsans_76.svg:0:0 +test_mathtext/mathtext_stixsans_78.pdf:0:0 +test_mathtext/mathtext_stixsans_78.png:0:0 +test_mathtext/mathtext_stixsans_78.svg:0:0 +test_mathtext/mathtext_stixsans_79.pdf:0:0 +test_mathtext/mathtext_stixsans_79.png:0:0 +test_mathtext/mathtext_stixsans_79.svg:0:0 +test_mathtext/mathtext_stixsans_80.pdf:0:0 +test_mathtext/mathtext_stixsans_80.png:0:0 +test_mathtext/mathtext_stixsans_80.svg:0:0 +test_mathtext/mathtext_stixsans_81.pdf:0:0 +test_mathtext/mathtext_stixsans_81.png:0:0 +test_mathtext/mathtext_stixsans_81.svg:0:0 +test_mathtext/mathtext_stixsans_82.pdf:0:0 +test_mathtext/mathtext_stixsans_82.png:0:0 +test_mathtext/mathtext_stixsans_82.svg:0:0 +test_offsetbox/anchoredtext_align.png:0:0 +test_offsetbox/offsetbox_clipping.pdf:0:0 +test_offsetbox/offsetbox_clipping.png:0:0 +test_offsetbox/offsetbox_clipping.svg:0:0 +test_offsetbox/paddedbox.png:0:0 +test_patches/all_quadrants_arcs.svg:0:0 +test_patches/annulus.png:0:0 +test_patches/autoscale_arc.png:0:0 +test_patches/autoscale_arc.svg:0:0 +test_patches/clip_to_bbox.pdf:0:0 +test_patches/clip_to_bbox.png:0:0 +test_patches/clip_to_bbox.svg:0:0 +test_patches/connection_patch.png:0:0 +test_patches/large_arc.svg:0:0 +test_patches/multi_color_hatch.pdf:0:0 +test_patches/multi_color_hatch.png:0:0 +test_patches/multi_color_hatch.svg:0:0 +test_patches/patch_alpha_coloring.pdf:0:0 +test_patches/patch_alpha_coloring.png:0:0 +test_patches/patch_alpha_coloring.svg:0:0 +test_patches/patch_alpha_override.pdf:0:0 +test_patches/patch_alpha_override.png:0:0 +test_patches/patch_alpha_override.svg:0:0 +test_patches/patch_custom_linestyle.pdf:0:0 +test_patches/patch_custom_linestyle.png:0:0 +test_patches/patch_custom_linestyle.svg:0:0 +test_patches/units_rectangle.png:0:0 +test_patches/wedge_range.pdf:0:0 +test_patches/wedge_range.png:0:0 +test_patches/wedge_range.svg:0:0 +test_path/arrow_contains_point.png:0:0 +test_path/marker_paths.pdf:0:0 +test_path/nan_path.eps:0:0 +test_path/nan_path.pdf:0:0 +test_path/nan_path.png:0:0 +test_path/nan_path.svg:0:0 +test_path/path_clipping.svg:0:0 +test_path/semi_log_with_zero.png:0:0 +test_path/xkcd.png:0:0 +test_path/xkcd_marker.png:0:0 +test_patheffects/collection.pdf:0:0 +test_patheffects/collection.png:0:0 +test_patheffects/collection.svg:0:0 +test_patheffects/patheffect1.pdf:0:0 +test_patheffects/patheffect1.png:0:0 +test_patheffects/patheffect1.svg:0:0 +test_patheffects/patheffect2.pdf:0:0 +test_patheffects/patheffect2.png:0:0 +test_patheffects/patheffect2.svg:0:0 +test_patheffects/patheffect3.pdf:0:0 +test_patheffects/patheffect3.png:0:0 +test_patheffects/patheffect3.svg:0:0 +test_patheffects/spaces_and_newlines.png:0:0 +test_patheffects/stroked_text.png:0:0 +test_patheffects/tickedstroke.png:0:0 +test_png/pngsuite.png:0:0 +test_png/uint16.png:0:0 +test_polar/polar_alignment.png:0:0 +test_polar/polar_axes.pdf:0:0 +test_polar/polar_axes.png:0:0 +test_polar/polar_axes.svg:0:0 +test_polar/polar_coords.pdf:0:0 +test_polar/polar_coords.png:0:0 +test_polar/polar_coords.svg:0:0 +test_polar/polar_invertedylim.png:0:0 +test_polar/polar_invertedylim_rorigin.png:0:0 +test_polar/polar_log.png:0:0 +test_polar/polar_negative_rmin.pdf:0:0 +test_polar/polar_negative_rmin.png:0:0 +test_polar/polar_negative_rmin.svg:0:0 +test_polar/polar_rlabel_position.pdf:0:0 +test_polar/polar_rlabel_position.png:0:0 +test_polar/polar_rlabel_position.svg:0:0 +test_polar/polar_rmin.pdf:0:0 +test_polar/polar_rmin.png:0:0 +test_polar/polar_rmin.svg:0:0 +test_polar/polar_rorigin.pdf:0:0 +test_polar/polar_rorigin.png:0:0 +test_polar/polar_rorigin.svg:0:0 +test_polar/polar_theta_position.pdf:0:0 +test_polar/polar_theta_position.png:0:0 +test_polar/polar_theta_position.svg:0:0 +test_polar/polar_theta_wedge.pdf:0:0 +test_polar/polar_theta_wedge.png:0:0 +test_polar/polar_theta_wedge.svg:0:0 +test_quiver/barbs_pivot_test_image.png:0:0 +test_quiver/barbs_test_flip.png:0:0 +test_quiver/barbs_test_image.png:0:0 +test_quiver/quiver_animated_test_image.png:0:0 +test_quiver/quiver_key_pivot.png:0:0 +test_quiver/quiver_key_xy.png:0:0 +test_quiver/quiver_single_test_image.png:0:0 +test_quiver/quiver_with_key_test_image.png:0:0 +test_quiver/quiver_xy.png:0:0 +test_scale/function_scales.png:0:0 +test_scale/logit_scales.png:0:0 +test_scale/logscale_mask.png:0:0 +test_scale/logscale_nonpos_values.png:0:0 +test_simplification/clipper_edge.pdf:0:0 +test_simplification/clipper_edge.png:0:0 +test_simplification/clipper_edge.svg:0:0 +test_simplification/clipping.pdf:0:0 +test_simplification/clipping.png:0:0 +test_simplification/clipping.svg:0:0 +test_simplification/clipping_diamond.pdf:0:0 +test_simplification/clipping_diamond.png:0:0 +test_simplification/clipping_diamond.svg:0:0 +test_simplification/clipping_with_nans.pdf:0:0 +test_simplification/clipping_with_nans.png:0:0 +test_simplification/clipping_with_nans.svg:0:0 +test_simplification/fft_peaks.pdf:0:0 +test_simplification/fft_peaks.png:0:0 +test_simplification/fft_peaks.svg:0:0 +test_simplification/hatch_simplify.pdf:0:0 +test_simplification/hatch_simplify.png:0:0 +test_simplification/hatch_simplify.svg:0:0 +test_simplification/overflow.pdf:0:0 +test_simplification/overflow.png:0:0 +test_simplification/overflow.svg:0:0 +test_simplification/para_equal_perp.pdf:0:0 +test_simplification/para_equal_perp.png:0:0 +test_simplification/para_equal_perp.svg:0:0 +test_simplification/simplify_curve.pdf:0:0 +test_simplification/simplify_curve.png:0:0 +test_simplification/simplify_curve.svg:0:0 +test_skew/skew_axes.pdf:0:0 +test_skew/skew_axes.png:0:0 +test_skew/skew_axes.svg:0:0 +test_skew/skew_rects.pdf:0:0 +test_skew/skew_rects.png:0:0 +test_skew/skew_rects.svg:0:0 +test_spines/black_axes.pdf:0:0 +test_spines/black_axes.png:0:0 +test_spines/black_axes.svg:0:0 +test_spines/spines_axes_positions.pdf:0:0 +test_spines/spines_axes_positions.png:0:0 +test_spines/spines_axes_positions.svg:0:0 +test_spines/spines_capstyle.pdf:0:0 +test_spines/spines_capstyle.png:0:0 +test_spines/spines_capstyle.svg:0:0 +test_spines/spines_data_positions.pdf:0:0 +test_spines/spines_data_positions.png:0:0 +test_spines/spines_data_positions.svg:0:0 +test_streamplot/streamplot_colormap.pdf:0:0 +test_streamplot/streamplot_colormap.png:0:0 +test_streamplot/streamplot_colormap.svg:0:0 +test_streamplot/streamplot_direction.png:0:0 +test_streamplot/streamplot_linewidth.pdf:0:0 +test_streamplot/streamplot_linewidth.png:0:0 +test_streamplot/streamplot_linewidth.svg:0:0 +test_streamplot/streamplot_masks_and_nans.pdf:0:0 +test_streamplot/streamplot_masks_and_nans.png:0:0 +test_streamplot/streamplot_masks_and_nans.svg:0:0 +test_streamplot/streamplot_maxlength.png:0:0 +test_streamplot/streamplot_maxlength_no_broken.png:0:0 +test_streamplot/streamplot_startpoints.png:0:0 +test_subplots/subplots_offset_text.pdf:0:0 +test_subplots/subplots_offset_text.png:0:0 +test_subplots/subplots_offset_text.svg:0:0 +test_table/table_auto_column.png:0:0 +test_table/table_cell_manipulation.png:0:0 +test_table/table_labels.png:0:0 +test_table/table_zorder.png:0:0 +test_text/agg_text_clip.png:0:0 +test_text/annotation_negative_ax_coords.png:0:0 +test_text/annotation_negative_fig_coords.png:0:0 +test_text/antialiased.png:0:0 +test_text/axes_titles.png:0:0 +test_text/basictext_wrap.png:0:0 +test_text/font_scaling.pdf:0:0 +test_text/font_styles.pdf:0:0 +test_text/font_styles.png:0:0 +test_text/font_styles.svg:0:0 +test_text/fonttext_wrap.png:0:0 +test_text/large_subscript_title.png:0:0 +test_text/multiline.pdf:0:0 +test_text/multiline.png:0:0 +test_text/multiline.svg:0:0 +test_text/multiline2.pdf:0:0 +test_text/multiline2.png:0:0 +test_text/multiline2.svg:0:0 +test_text/text_alignment.pdf:0:0 +test_text/text_alignment.png:0:0 +test_text/text_alignment.svg:0:0 +test_text/text_as_path_opacity.svg:0:0 +test_text/text_as_text_opacity.svg:0:0 +test_text/text_bboxclip.pdf:0:0 +test_text/text_bboxclip.png:0:0 +test_text/text_bboxclip.svg:0:0 +test_text/text_contains.png:0:0 +test_text/text_pdf_chars_beyond_bmp.pdf:0:0 +test_text/text_pdf_font42_kerning.pdf:0:0 +test_text/text_pdf_kerning.pdf:0:0 +test_text/titles.pdf:0:0 +test_text/titles.png:0:0 +test_text/titles.svg:0:0 +test_tightlayout/tight_layout1.pdf:0:0 +test_tightlayout/tight_layout1.png:0:0 +test_tightlayout/tight_layout1.svg:0:0 +test_tightlayout/tight_layout2.pdf:0:0 +test_tightlayout/tight_layout2.png:0:0 +test_tightlayout/tight_layout2.svg:0:0 +test_tightlayout/tight_layout3.pdf:0:0 +test_tightlayout/tight_layout3.png:0:0 +test_tightlayout/tight_layout3.svg:0:0 +test_tightlayout/tight_layout4.pdf:0:0 +test_tightlayout/tight_layout4.png:0:0 +test_tightlayout/tight_layout4.svg:0:0 +test_tightlayout/tight_layout5.pdf:0:0 +test_tightlayout/tight_layout5.png:0:0 +test_tightlayout/tight_layout5.svg:0:0 +test_tightlayout/tight_layout6.pdf:0:0 +test_tightlayout/tight_layout6.png:0:0 +test_tightlayout/tight_layout6.svg:0:0 +test_tightlayout/tight_layout7.pdf:0:0 +test_tightlayout/tight_layout7.png:0:0 +test_tightlayout/tight_layout7.svg:0:0 +test_tightlayout/tight_layout8.pdf:0:0 +test_tightlayout/tight_layout8.png:0:0 +test_tightlayout/tight_layout8.svg:0:0 +test_tightlayout/tight_layout9.pdf:0:0 +test_tightlayout/tight_layout9.png:0:0 +test_tightlayout/tight_layout9.svg:0:0 +test_tightlayout/tight_layout_offsetboxes1.pdf:0:0 +test_tightlayout/tight_layout_offsetboxes1.png:0:0 +test_tightlayout/tight_layout_offsetboxes1.svg:0:0 +test_tightlayout/tight_layout_offsetboxes2.pdf:0:0 +test_tightlayout/tight_layout_offsetboxes2.png:0:0 +test_tightlayout/tight_layout_offsetboxes2.svg:0:0 +test_transforms/pre_transform_data.pdf:0:0 +test_transforms/pre_transform_data.png:0:0 +test_transforms/pre_transform_data.svg:0:0 +test_triangulation/tri_smooth_contouring.png:0:0 +test_triangulation/tri_smooth_gradient.png:0:0 +test_triangulation/tripcolor1.png:0:0 +test_ttconv/truetype-conversion.pdf:0:0 +test_units/jpl_bar_units.png:0:0 +test_units/jpl_barh_units.png:0:0 +test_units/plot_masked_units.png:0:0 +test_units/plot_pint.png:0:0 +test_usetex/eqnarray.png:0:0 +test_usetex/test_usetex.pdf:0:0 +test_usetex/test_usetex.png:0:0 +test_widgets/check_radio_buttons.png:0:0 diff --git a/lib/matplotlib/tests/test_agg_filter.py b/lib/matplotlib/tests/test_agg_filter.py index dc8cff6858ae..350e692b72c7 100644 --- a/lib/matplotlib/tests/test_agg_filter.py +++ b/lib/matplotlib/tests/test_agg_filter.py @@ -1,5 +1,4 @@ import numpy as np - import matplotlib.pyplot as plt from matplotlib.testing.decorators import image_comparison diff --git a/lib/matplotlib/tests/test_backend_pgf.py b/lib/matplotlib/tests/test_backend_pgf.py index 27ea7fa7d8ab..11d52946aac5 100644 --- a/lib/matplotlib/tests/test_backend_pgf.py +++ b/lib/matplotlib/tests/test_backend_pgf.py @@ -13,24 +13,30 @@ from matplotlib.testing.compare import compare_images, ImageComparisonFailure from matplotlib.backends.backend_pgf import PdfPages from matplotlib.testing.decorators import ( - _image_directories, check_figures_equal, image_comparison) + _baseline_directory, _results_directory, check_figures_equal, image_comparison) from matplotlib.testing._markers import ( needs_ghostscript, needs_pgf_lualatex, needs_pgf_pdflatex, needs_pgf_xelatex) -baseline_dir, result_dir = _image_directories(lambda: 'dummy func') +root_dir, mod, image_list, md = _baseline_directory( + lambda: 'dummy func', os.environ.get("MPLTESTIMAGEPATH", None) +) +result_dir = _results_directory(lambda: 'dummy func') +baseline_dir = str(root_dir / mod) def compare_figure(fname, savefig_kwargs={}, tol=0): actual = os.path.join(result_dir, fname) plt.savefig(actual, **savefig_kwargs) - expected = os.path.join(result_dir, "expected_%s" % fname) - shutil.copyfile(os.path.join(baseline_dir, fname), expected) - err = compare_images(expected, actual, tol=tol) - if err: - raise ImageComparisonFailure(err) + if os.environ.get("MPLGENERATEBASELINE"): + shutil.copyfile(actual, os.path.join(baseline_dir, fname)) + else: + expected = os.path.join(result_dir, "expected_%s" % fname) + shutil.copyfile(os.path.join(baseline_dir, fname), expected) + if err := compare_images(expected, actual, tol=tol): + raise ImageComparisonFailure(err) @needs_pgf_xelatex diff --git a/lib/matplotlib/tests/test_backends_interactive.py b/lib/matplotlib/tests/test_backends_interactive.py index 4d9d30da50d3..1f4c6650df09 100644 --- a/lib/matplotlib/tests/test_backends_interactive.py +++ b/lib/matplotlib/tests/test_backends_interactive.py @@ -63,8 +63,11 @@ def _get_testable_interactive_backends(): elif env["MPLBACKEND"].startswith('wx') and sys.platform == 'darwin': # ignore on OSX because that's currently broken (github #16849) marks.append(pytest.mark.xfail(reason='github #16849')) - elif (env['MPLBACKEND'] == 'tkagg' and 'TF_BUILD' in os.environ and - sys.platform == 'darwin' and sys.version_info[:2] < (3, 11)): + elif (env['MPLBACKEND'] == 'tkagg' and + ('TF_BUILD' in os.environ or 'GITHUB_ACTION' in os.environ) and + sys.platform == 'darwin' and + sys.version_info[:2] < (3, 11) + ): marks.append( # https://github.com/actions/setup-python/issues/649 pytest.mark.xfail(reason='Tk version mismatch on Azure macOS CI')) envs.append( @@ -546,8 +549,11 @@ def _test_number_of_draws_script(): elif backend == "wx": param.marks.append( pytest.mark.skip("wx does not support blitting")) - elif (backend == 'tkagg' and 'TF_BUILD' in os.environ and - sys.platform == 'darwin' and sys.version_info[:2] < (3, 11)): + elif (backend == 'tkagg' and + ('TF_BUILD' in os.environ or 'GITHUB_ACTION' in os.environ) and + sys.platform == 'darwin' and + sys.version_info[:2] < (3, 11) + ): param.marks.append( # https://github.com/actions/setup-python/issues/649 pytest.mark.xfail('Tk version mismatch on Azure macOS CI') ) diff --git a/lib/matplotlib/tests/test_cbook.py b/lib/matplotlib/tests/test_cbook.py index effe2338931f..55dc934baf42 100644 --- a/lib/matplotlib/tests/test_cbook.py +++ b/lib/matplotlib/tests/test_cbook.py @@ -209,6 +209,13 @@ def is_not_empty(self): assert self.callbacks._func_cid_map != {} assert self.callbacks.callbacks != {} + def test_cid_restore(self): + cb = cbook.CallbackRegistry() + cb.connect('a', lambda: None) + cb2 = pickle.loads(pickle.dumps(cb)) + cid = cb2.connect('c', lambda: None) + assert cid == 1 + @pytest.mark.parametrize('pickle', [True, False]) def test_callback_complete(self, pickle): # ensure we start with an empty registry diff --git a/lib/matplotlib/tests/test_compare_images.py b/lib/matplotlib/tests/test_compare_images.py index 6023f3d05468..95fb726f3778 100644 --- a/lib/matplotlib/tests/test_compare_images.py +++ b/lib/matplotlib/tests/test_compare_images.py @@ -5,7 +5,6 @@ from pytest import approx from matplotlib.testing.compare import compare_images -from matplotlib.testing.decorators import _image_directories # Tests of the image comparison algorithm. @@ -55,9 +54,12 @@ def test_image_comparison_expect_rms(im1, im2, tol, expect_rms, tmp_path, succeed if compare_images succeeds. Otherwise, the test will succeed if compare_images fails and returns an RMS error almost equal to this value. """ + pytest.xfail() # Change the working directory using monkeypatch to use a temporary # test specific directory monkeypatch.chdir(tmp_path) + from matplotlib.testing.decorators import _image_directories + baseline_dir, result_dir = map(Path, _image_directories(lambda: "dummy")) # Copy "test" image to result_dir, so that compare_images writes # the diff to result_dir, rather than to the source tree diff --git a/lib/matplotlib/tests/test_text.py b/lib/matplotlib/tests/test_text.py index 4215927f05fe..620749a3d173 100644 --- a/lib/matplotlib/tests/test_text.py +++ b/lib/matplotlib/tests/test_text.py @@ -8,6 +8,8 @@ import matplotlib as mpl from matplotlib.backend_bases import MouseEvent +from matplotlib.backends.backend_agg import RendererAgg +from matplotlib.figure import Figure from matplotlib.font_manager import FontProperties import matplotlib.patches as mpatches import matplotlib.pyplot as plt @@ -962,3 +964,151 @@ def test_text_antialiased_on_default_vs_manual(fig_test, fig_ref): mpl.rcParams['text.antialiased'] = True fig_ref.text(0.5, 0.5, '6 inches x 2 inches') + + +@pytest.mark.xfail +def test_text_annotation_get_window_extent(): + figure = Figure(dpi=100) + renderer = RendererAgg(200, 200, 100) + + # Only text annotation + annotation = Annotation('test', xy=(0, 0)) + annotation.set_figure(figure) + + text = Text(text='test', x=0, y=0) + text.set_figure(figure) + + bbox = annotation.get_window_extent(renderer=renderer) + + text_bbox = text.get_window_extent(renderer=renderer) + assert bbox.width == text_bbox.width + assert bbox.height == text_bbox.height + + _, _, d = renderer.get_text_width_height_descent( + 'text', annotation._fontproperties, ismath=False) + _, _, lp_d = renderer.get_text_width_height_descent( + 'lp', annotation._fontproperties, ismath=False) + below_line = max(d, lp_d) + + # These numbers are specific to the current implementation of Text + points = bbox.get_points() + assert points[0, 0] == 0.0 + assert points[1, 0] == text_bbox.width + assert points[0, 1] == -below_line + assert points[1, 1] == text_bbox.height - below_line + + +def test_text_with_arrow_annotation_get_window_extent(): + headwidth = 21 + fig, ax = plt.subplots(dpi=100) + txt = ax.text(s='test', x=0, y=0) + ann = ax.annotate( + 'test', + xy=(0.0, 50.0), + xytext=(50.0, 50.0), xycoords='figure pixels', + arrowprops={ + 'facecolor': 'black', 'width': 2, + 'headwidth': headwidth, 'shrink': 0.0}) + + plt.draw() + renderer = fig.canvas.renderer + # bounding box of text + text_bbox = txt.get_window_extent(renderer=renderer) + # bounding box of annotation (text + arrow) + bbox = ann.get_window_extent(renderer=renderer) + # bounding box of arrow + arrow_bbox = ann.arrow_patch.get_window_extent(renderer) + # bounding box of annotation text + ann_txt_bbox = Text.get_window_extent(ann) + + # make sure annotation width is 50 px wider than + # just the text + assert bbox.width == text_bbox.width + 50.0 + # make sure the annotation text bounding box is same size + # as the bounding box of the same string as a Text object + assert ann_txt_bbox.height == text_bbox.height + assert ann_txt_bbox.width == text_bbox.width + # compute the expected bounding box of arrow + text + expected_bbox = mtransforms.Bbox.union([ann_txt_bbox, arrow_bbox]) + assert_almost_equal(bbox.height, expected_bbox.height) + + +def test_arrow_annotation_get_window_extent(): + dpi = 100 + dots_per_point = dpi / 72 + figure = Figure(dpi=dpi) + figure.set_figwidth(2.0) + figure.set_figheight(2.0) + renderer = RendererAgg(200, 200, 100) + + # Text annotation with arrow; arrow dimensions are in points + annotation = Annotation( + '', xy=(0.0, 50.0), xytext=(50.0, 50.0), xycoords='figure pixels', + arrowprops={ + 'facecolor': 'black', 'width': 8, 'headwidth': 10, 'shrink': 0.0}) + annotation.set_figure(figure) + annotation.draw(renderer) + + bbox = annotation.get_window_extent() + points = bbox.get_points() + + assert bbox.width == 50.0 + assert_almost_equal(bbox.height, 10.0 * dots_per_point) + assert points[0, 0] == 0.0 + assert points[0, 1] == 50.0 - 5 * dots_per_point + + +def test_empty_annotation_get_window_extent(): + figure = Figure(dpi=100) + figure.set_figwidth(2.0) + figure.set_figheight(2.0) + renderer = RendererAgg(200, 200, 100) + + # Text annotation with arrow + annotation = Annotation( + '', xy=(0.0, 50.0), xytext=(0.0, 50.0), xycoords='figure pixels') + annotation.set_figure(figure) + annotation.draw(renderer) + + bbox = annotation.get_window_extent() + points = bbox.get_points() + + assert points[0, 0] == 0.0 + assert points[1, 0] == 0.0 + assert points[1, 1] == 50.0 + assert points[0, 1] == 50.0 + + +@image_comparison(baseline_images=['basictext_wrap'], + extensions=['png']) +def test_basic_wrap(): + fig = plt.figure() + plt.axis([0, 10, 0, 10]) + t = "This is a really long string that I'd rather have wrapped so that" \ + " it doesn't go outside of the figure, but if it's long enough it" \ + " will go off the top or bottom!" + plt.text(4, 1, t, ha='left', rotation=15, wrap=True) + plt.text(6, 5, t, ha='left', rotation=15, wrap=True) + plt.text(5, 5, t, ha='right', rotation=-15, wrap=True) + plt.text(5, 10, t, fontsize=18, style='oblique', ha='center', + va='top', wrap=True) + plt.text(3, 4, t, family='serif', style='italic', ha='right', wrap=True) + plt.text(-1, 0, t, ha='left', rotation=-15, wrap=True) + + +@image_comparison(baseline_images=['fonttext_wrap'], + extensions=['png']) +def test_font_wrap(): + fig = plt.figure() + plt.axis([0, 10, 0, 10]) + t = "This is a really long string that I'd rather have wrapped so that" \ + " it doesn't go outside of the figure, but if it's long enough it" \ + " will go off the top or bottom!" + plt.text(4, -1, t, fontsize=18, family='serif', ha='left', rotation=15, + wrap=True) + plt.text(6, 5, t, family='sans serif', ha='left', rotation=15, wrap=True) + plt.text(5, 5, t, weight='light', ha='right', rotation=-15, wrap=True) + plt.text(5, 10, t, weight='heavy', ha='center', va='top', wrap=True) + plt.text(3, 4, t, family='monospace', ha='right', wrap=True) + plt.text(-1, 0, t, fontsize=14, style='italic', ha='left', rotation=-15, + wrap=True) diff --git a/lib/mpl_toolkits/axes_grid1/tests/__init__.py b/lib/mpl_toolkits/axes_grid1/tests/__init__.py index ea4d8ed16a6a..e69de29bb2d1 100644 --- a/lib/mpl_toolkits/axes_grid1/tests/__init__.py +++ b/lib/mpl_toolkits/axes_grid1/tests/__init__.py @@ -1,10 +0,0 @@ -from pathlib import Path - - -# Check that the test directories exist -if not (Path(__file__).parent / "baseline_images").exists(): - raise OSError( - 'The baseline image directory does not exist. ' - 'This is most likely because the test data is not installed. ' - 'You may need to install matplotlib from source to get the ' - 'test data.') diff --git a/lib/mpl_toolkits/axes_grid1/tests/baseline_images/metadata.json b/lib/mpl_toolkits/axes_grid1/tests/baseline_images/metadata.json new file mode 100644 index 000000000000..be685574bc98 --- /dev/null +++ b/lib/mpl_toolkits/axes_grid1/tests/baseline_images/metadata.json @@ -0,0 +1,82 @@ +{ + "test_axes_grid1/anchored_artists.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/anchored_direction_arrows.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/anchored_direction_arrows_many_args.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/anchored_locator_base_call.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/fill_facecolor.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/image_grid.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/image_grid_each_left_label_mode_all.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/image_grid_single_bottom_label_mode_1.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/imagegrid_cbar_mode.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/inset_axes.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/inset_locator.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/insetposition.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/inverted_zoomed_axes.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/rgb_axes.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/twin_axes_empty_and_removed.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes_grid1/zoomed_axes.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + } +} diff --git a/lib/mpl_toolkits/axes_grid1/tests/image_list.txt b/lib/mpl_toolkits/axes_grid1/tests/image_list.txt new file mode 100644 index 000000000000..637a2ed37507 --- /dev/null +++ b/lib/mpl_toolkits/axes_grid1/tests/image_list.txt @@ -0,0 +1,16 @@ +test_axes_grid1/anchored_artists.png:0:0 +test_axes_grid1/anchored_direction_arrows.png:0:0 +test_axes_grid1/anchored_direction_arrows_many_args.png:0:0 +test_axes_grid1/anchored_locator_base_call.png:0:0 +test_axes_grid1/fill_facecolor.png:0:0 +test_axes_grid1/image_grid.png:0:0 +test_axes_grid1/image_grid_each_left_label_mode_all.png:0:0 +test_axes_grid1/image_grid_single_bottom_label_mode_1.png:0:0 +test_axes_grid1/imagegrid_cbar_mode.png:0:0 +test_axes_grid1/inset_axes.png:0:0 +test_axes_grid1/inset_locator.png:0:0 +test_axes_grid1/insetposition.png:0:0 +test_axes_grid1/inverted_zoomed_axes.png:0:0 +test_axes_grid1/rgb_axes.png:0:0 +test_axes_grid1/twin_axes_empty_and_removed.png:0:0 +test_axes_grid1/zoomed_axes.png:0:0 diff --git a/lib/mpl_toolkits/axisartist/tests/__init__.py b/lib/mpl_toolkits/axisartist/tests/__init__.py index ea4d8ed16a6a..e69de29bb2d1 100644 --- a/lib/mpl_toolkits/axisartist/tests/__init__.py +++ b/lib/mpl_toolkits/axisartist/tests/__init__.py @@ -1,10 +0,0 @@ -from pathlib import Path - - -# Check that the test directories exist -if not (Path(__file__).parent / "baseline_images").exists(): - raise OSError( - 'The baseline image directory does not exist. ' - 'This is most likely because the test data is not installed. ' - 'You may need to install matplotlib from source to get the ' - 'test data.') diff --git a/lib/mpl_toolkits/axisartist/tests/baseline_images/metadata.json b/lib/mpl_toolkits/axisartist/tests/baseline_images/metadata.json new file mode 100644 index 000000000000..6b8c356eaec4 --- /dev/null +++ b/lib/mpl_toolkits/axisartist/tests/baseline_images/metadata.json @@ -0,0 +1,82 @@ +{ + "test_axis_artist/axis_artist.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axis_artist/axis_artist_labelbase.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axis_artist/axis_artist_ticklabels.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axis_artist/axis_artist_ticks.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axislines/ParasiteAxesAuxTrans_meshplot.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axislines/Subplot.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axislines/SubplotZero.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axislines/axisline_style.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axislines/axisline_style_size_color.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axislines/axisline_style_tight.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axislines/subplotzero_ylabel.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_floating_axes/curvelinear3.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_floating_axes/curvelinear4.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_grid_helper_curvelinear/axis_direction.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_grid_helper_curvelinear/custom_transform.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_grid_helper_curvelinear/polar_box.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + } +} diff --git a/lib/mpl_toolkits/axisartist/tests/image_list.txt b/lib/mpl_toolkits/axisartist/tests/image_list.txt new file mode 100644 index 000000000000..16760b26e99d --- /dev/null +++ b/lib/mpl_toolkits/axisartist/tests/image_list.txt @@ -0,0 +1,16 @@ +test_axis_artist/axis_artist.png:0:0 +test_axis_artist/axis_artist_labelbase.png:0:0 +test_axis_artist/axis_artist_ticklabels.png:0:0 +test_axis_artist/axis_artist_ticks.png:0:0 +test_axislines/ParasiteAxesAuxTrans_meshplot.png:0:0 +test_axislines/Subplot.png:0:0 +test_axislines/SubplotZero.png:0:0 +test_axislines/axisline_style.png:0:0 +test_axislines/axisline_style_size_color.png:0:0 +test_axislines/axisline_style_tight.png:0:0 +test_axislines/subplotzero_ylabel.png:0:0 +test_floating_axes/curvelinear3.png:0:0 +test_floating_axes/curvelinear4.png:0:0 +test_grid_helper_curvelinear/axis_direction.png:0:0 +test_grid_helper_curvelinear/custom_transform.png:0:0 +test_grid_helper_curvelinear/polar_box.png:0:0 diff --git a/lib/mpl_toolkits/mplot3d/tests/__init__.py b/lib/mpl_toolkits/mplot3d/tests/__init__.py index ea4d8ed16a6a..e69de29bb2d1 100644 --- a/lib/mpl_toolkits/mplot3d/tests/__init__.py +++ b/lib/mpl_toolkits/mplot3d/tests/__init__.py @@ -1,10 +0,0 @@ -from pathlib import Path - - -# Check that the test directories exist -if not (Path(__file__).parent / "baseline_images").exists(): - raise OSError( - 'The baseline image directory does not exist. ' - 'This is most likely because the test data is not installed. ' - 'You may need to install matplotlib from source to get the ' - 'test data.') diff --git a/lib/mpl_toolkits/mplot3d/tests/baseline_images/metadata.json b/lib/mpl_toolkits/mplot3d/tests/baseline_images/metadata.json new file mode 100644 index 000000000000..c6df9eefc3e7 --- /dev/null +++ b/lib/mpl_toolkits/mplot3d/tests/baseline_images/metadata.json @@ -0,0 +1,312 @@ +{ + "test_axes3d/add_collection3d_zs_array.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/add_collection3d_zs_scalar.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/arc_pathpatch.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/aspects.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/aspects_adjust_box.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/axes3d_cla.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/axes3d_focal_length.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/axes3d_isometric.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/axes3d_labelpad.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/axes3d_ortho.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/axes3d_primary_views.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/axes3d_rotated.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/bar3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/bar3d_notshaded.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/bar3d_shaded.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/computed_zorder.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/contour3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/contour3d_extend3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/contourf3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/contourf3d_fill.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/equal_box_aspect.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/errorbar3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/errorbar3d_errorevery.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/grid_off.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/invisible_ticks_axis.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/lines3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/minor_ticks.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/mixedsubplot.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/panecolor_rcparams.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/plot_3d_from_2d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/poly3dcollection_alpha.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/poly3dcollection_closed.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/proj3d_axes_cube.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/proj3d_axes_cube_ortho.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/proj3d_lines_dists.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/quiver3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/quiver3d_masked.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/scatter3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/scatter3d_color.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/scatter3d_linewidth.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/scatter_spiral.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/stem3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/surface3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/surface3d_masked.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/surface3d_masked_strides.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/surface3d_shaded.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/text3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/tricontour.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/trisurf3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/trisurf3d_shaded.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/voxels-alpha.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/voxels-edge-style.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/voxels-named-colors.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/voxels-rgb-data.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/voxels-simple.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/voxels-xyz.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/wireframe3d.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/wireframe3dzerocstride.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_axes3d/wireframe3dzerorstride.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_legend3d/fancy.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_legend3d/legend_bar.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + }, + "test_legend3d/legend_plot.png": { + "mpl_version": "3.8.0.dev1357+g44ac541436", + "rev": 0, + "sha": "cf7a1f2d861a05c3c89a6f155072692316e30d07" + } +} diff --git a/lib/mpl_toolkits/mplot3d/tests/image_list.txt b/lib/mpl_toolkits/mplot3d/tests/image_list.txt new file mode 100644 index 000000000000..b7b78326444e --- /dev/null +++ b/lib/mpl_toolkits/mplot3d/tests/image_list.txt @@ -0,0 +1,62 @@ +test_axes3d/add_collection3d_zs_array.png:0:0 +test_axes3d/add_collection3d_zs_scalar.png:0:0 +test_axes3d/arc_pathpatch.png:0:0 +test_axes3d/aspects.png:0:0 +test_axes3d/aspects_adjust_box.png:0:0 +test_axes3d/axes3d_cla.png:0:0 +test_axes3d/axes3d_focal_length.png:0:0 +test_axes3d/axes3d_isometric.png:0:0 +test_axes3d/axes3d_labelpad.png:0:0 +test_axes3d/axes3d_ortho.png:0:0 +test_axes3d/axes3d_primary_views.png:0:0 +test_axes3d/axes3d_rotated.png:0:0 +test_axes3d/bar3d.png:0:0 +test_axes3d/bar3d_notshaded.png:0:0 +test_axes3d/bar3d_shaded.png:0:0 +test_axes3d/computed_zorder.png:0:0 +test_axes3d/contour3d.png:0:0 +test_axes3d/contour3d_extend3d.png:0:0 +test_axes3d/contourf3d.png:0:0 +test_axes3d/contourf3d_fill.png:0:0 +test_axes3d/equal_box_aspect.png:0:0 +test_axes3d/errorbar3d.png:0:0 +test_axes3d/errorbar3d_errorevery.png:0:0 +test_axes3d/grid_off.png:0:0 +test_axes3d/invisible_ticks_axis.png:0:0 +test_axes3d/lines3d.png:0:0 +test_axes3d/minor_ticks.png:0:0 +test_axes3d/mixedsubplot.png:0:0 +test_axes3d/panecolor_rcparams.png:0:0 +test_axes3d/plot_3d_from_2d.png:0:0 +test_axes3d/poly3dcollection_alpha.png:0:0 +test_axes3d/poly3dcollection_closed.png:0:0 +test_axes3d/proj3d_axes_cube.png:0:0 +test_axes3d/proj3d_axes_cube_ortho.png:0:0 +test_axes3d/proj3d_lines_dists.png:0:0 +test_axes3d/quiver3d.png:0:0 +test_axes3d/quiver3d_masked.png:0:0 +test_axes3d/scatter3d.png:0:0 +test_axes3d/scatter3d_color.png:0:0 +test_axes3d/scatter3d_linewidth.png:0:0 +test_axes3d/scatter_spiral.png:0:0 +test_axes3d/stem3d.png:0:0 +test_axes3d/surface3d.png:0:0 +test_axes3d/surface3d_masked.png:0:0 +test_axes3d/surface3d_masked_strides.png:0:0 +test_axes3d/surface3d_shaded.png:0:0 +test_axes3d/text3d.png:0:0 +test_axes3d/tricontour.png:0:0 +test_axes3d/trisurf3d.png:0:0 +test_axes3d/trisurf3d_shaded.png:0:0 +test_axes3d/voxels-alpha.png:0:0 +test_axes3d/voxels-edge-style.png:0:0 +test_axes3d/voxels-named-colors.png:0:0 +test_axes3d/voxels-rgb-data.png:0:0 +test_axes3d/voxels-simple.png:0:0 +test_axes3d/voxels-xyz.png:0:0 +test_axes3d/wireframe3d.png:0:0 +test_axes3d/wireframe3dzerocstride.png:0:0 +test_axes3d/wireframe3dzerorstride.png:0:0 +test_legend3d/fancy.png:0:0 +test_legend3d/legend_bar.png:0:0 +test_legend3d/legend_plot.png:0:0 diff --git a/setup.py b/setup.py index cbde74384717..564cddd86e54 100644 --- a/setup.py +++ b/setup.py @@ -275,6 +275,8 @@ def make_release_tree(self, base_dir, files): author_email="matplotlib-users@python.org", url="https://matplotlib.org", download_url="https://matplotlib.org/stable/users/installing/index.html", + entry_points={"pytest11": ["generate_images_plugin = " + "matplotlib.testing.generate_images_plugin"]}, project_urls={ 'Documentation': 'https://matplotlib.org', 'Source Code': 'https://github.com/matplotlib/matplotlib', diff --git a/tools/manage_baseline_images.py b/tools/manage_baseline_images.py new file mode 100644 index 000000000000..5748dc46d57c --- /dev/null +++ b/tools/manage_baseline_images.py @@ -0,0 +1,128 @@ +import argparse +import json +from pathlib import Path +import sys +import time + +import matplotlib.testing.decorators as mtd + + +def _mod_to_path(libpath, mod): + return Path(libpath) / Path(*mod.split(".")) + + +def _find_imagelist(libpath, mod, imagelist_name="image_list.txt"): + return Path(libpath) / Path(*mod.split(".")[:-1]) / imagelist_name + + +def _add(args): + image_list_path = _find_imagelist(args.libpath, args.module) + data = mtd._load_imagelist(image_list_path) + fname = Path(args.module.split(".")[-1]) / args.fname + if fname in data: + raise RuntimeError("Trying to add as existing file, did you mean to use 'rev'?") + data[fname] = {"rev": 0, "ts": time.time()} + mtd._write_imagelist(data, target_file=image_list_path) + + +def _rev(args): + image_list_path = _find_imagelist(args.libpath, args.module) + data = mtd._load_imagelist(image_list_path) + fname = Path(args.module.split(".")[-1]) / args.fname + if fname not in data: + raise RuntimeError( + "Trying to rev a non-existing file, did you mean to use 'add'?" + ) + data[fname]["rev"] += 1 + data[fname]["ts"] = time.time() + mtd._write_imagelist(data, target_file=image_list_path) + + +def _validate(args): + fail = False + for pkg in args.package: + image_list_path = _find_imagelist(args.libpath, pkg + ".a") + data = mtd._load_blame(image_list_path) + json_path = ( + Path(args.baseline_path) + / Path(*pkg.split(".")) + / "baseline_images" + / "metadata.json" + ) + fail |= _validate_one(json_path, data) + if fail: + sys.exit(1) + + +def _validate_one(json_path, data): + fail = False + with open(json_path) as fin: + md = {Path(k): v for k, v in json.load(fin).items()} + + if extra := set(md) - set(data): + # TODO good error messages about where the extra files are + print("in json not in image list: ") + for p in sorted(extra): + print(f' - {p!s}') + fail = True + + if extra := set(data) - set(md): + # TODO good error messages about where the extra files are + print("in image list not in json: ") + for p in sorted(extra): + print(f' - {p!s}') + fail = True + + mismatch = set() + for k in md: + if md[k]["sha"] != data[k]["sha"]: + mismatch.add(k) + if mismatch: + print(f"{mismatch=}") + fail = True + return fail + + +if __name__ == "__main__": + # create the top-level parser + parser = argparse.ArgumentParser(prog="manage baseline images") + parser.add_argument( + "--libpath", + help="Relative path to package source.", + default="lib", + required=False, + ) + + subparsers = parser.add_subparsers(help="sub-command help", dest="cmd") + + # create the parser for the "rev" command + parser_rev = subparsers.add_parser("rev", help="Version rev a test file.") + parser_rev.add_argument("module", type=str, help="The dotted name of the module.") + parser_rev.add_argument( + "fname", type=str, help="The (relative) name of the file to version rev." + ) + + # create the parser for the "add" command + parser_add = subparsers.add_parser("add", help="Add a new baseline image.") + parser_add.add_argument("module", type=str, help="The dotted name of the module.") + parser_add.add_argument( + "fname", type=str, help="The (relative) name of the file to version rev." + ) + + # create the parser for the "validate" command + parser_add = subparsers.add_parser("validate", help="Check if the baseline dir .") + parser_add.add_argument( + "baseline_path", + type=str, + help="Path to the root of the baseline images.", + ) + parser_add.add_argument( + "package", type=str, help="The dotted name of the test (sub-)package.", + default=['matplotlib.tests'], + nargs='*' + ) + + # parse some argument lists + args = parser.parse_args() + + {"add": _add, "rev": _rev, "validate": _validate}[args.cmd](args)