From ff377258ce8818348869b173a2d080f7bdc267b9 Mon Sep 17 00:00:00 2001 From: Liz Munch Date: Sun, 19 May 2024 23:04:41 -0400 Subject: [PATCH 1/2] Lots of cleanup, linting, documentation, especially contributing section --- .github/pull_request_template.md | 6 +- Makefile | 27 +- doc_source/citing.md | 5 - doc_source/citing.rst | 7 + doc_source/conf.py | 35 +- doc_source/contributing.md | 42 - doc_source/contributing.rst | 122 + doc_source/index.rst | 8 +- doc_source/installation.md | 28 - doc_source/installation.rst | 37 + doc_source/modules.rst | 4 +- docs/.buildinfo | 2 +- docs/_modules/ect_graph.html | 459 + docs/_modules/embed_graph.html | 521 + docs/_modules/index.html | 111 + docs/_sources/citing.md.txt | 5 - docs/_sources/citing.rst.txt | 7 + docs/_sources/contributing.md.txt | 42 - docs/_sources/contributing.rst.txt | 122 + docs/_sources/index.rst.txt | 8 +- docs/_sources/installation.md.txt | 28 - docs/_sources/installation.rst.txt | 37 + docs/_sources/modules.rst.txt | 4 +- .../_sphinx_javascript_frameworks_compat.js | 17 +- docs/_static/basic.css | 55 +- docs/_static/doctools.js | 132 +- docs/_static/documentation_options.js | 7 +- docs/_static/jquery-3.6.0.js | 10881 ---------------- docs/_static/language_data.js | 2 +- docs/_static/plot_directive.css | 16 + docs/_static/pygments.css | 1 + docs/_static/searchtools.js | 109 +- docs/_static/sphinx_highlight.js | 154 + docs/_static/underscore-1.13.1.js | 2042 --- docs/_static/underscore.js | 6 - docs/citing.html | 27 +- docs/contributing.html | 155 +- docs/doctrees/citing.doctree | Bin 3429 -> 3725 bytes docs/doctrees/contributing.doctree | Bin 10090 -> 23167 bytes docs/doctrees/ect_on_graphs.doctree | Bin 62346 -> 113803 bytes docs/doctrees/embed_graph.doctree | Bin 86091 -> 204457 bytes docs/doctrees/environment.pickle | Bin 52957 -> 567509 bytes docs/doctrees/index.doctree | Bin 13796 -> 13870 bytes docs/doctrees/installation.doctree | Bin 6353 -> 5892 bytes docs/doctrees/license.doctree | Bin 4049 -> 4138 bytes docs/doctrees/modules.doctree | Bin 2788 -> 2862 bytes .../notebooks/CodingFiguresFern.doctree | Bin 145788 -> 147987 bytes .../Tutorial-ECT_for_embedded_graphs.doctree | Bin 51803 -> 52588 bytes docs/doctrees/tutorials.doctree | Bin 2756 -> 2830 bytes docs/ect_on_graphs.html | 213 +- docs/embed_graph.html | 352 +- docs/genindex.html | 34 +- docs/index.html | 67 +- docs/installation.html | 46 +- docs/license.html | 21 +- docs/modules.html | 40 +- docs/notebooks/CodingFiguresFern.html | 37 +- .../Tutorial-ECT_for_embedded_graphs.html | 27 +- docs/objects.inv | Bin 1852 -> 1910 bytes docs/py-modindex.html | 19 +- docs/search.html | 19 +- docs/searchindex.js | 2 +- docs/tutorials.html | 25 +- ect/__init__.py | 2 +- ect/ect_on_graphs/__init__.py | 6 +- ect/ect_on_graphs/ect_graph.py | 191 +- ect/ect_on_graphs/ect_sarah.py | 49 +- ect/ect_on_graphs/ect_utils_sarah.py | 96 +- ect/ect_on_graphs/embed_graph.py | 131 +- 69 files changed, 2592 insertions(+), 14056 deletions(-) delete mode 100644 doc_source/citing.md create mode 100644 doc_source/citing.rst delete mode 100644 doc_source/contributing.md create mode 100644 doc_source/contributing.rst delete mode 100644 doc_source/installation.md create mode 100644 doc_source/installation.rst create mode 100644 docs/_modules/ect_graph.html create mode 100644 docs/_modules/embed_graph.html create mode 100644 docs/_modules/index.html delete mode 100644 docs/_sources/citing.md.txt create mode 100644 docs/_sources/citing.rst.txt delete mode 100644 docs/_sources/contributing.md.txt create mode 100644 docs/_sources/contributing.rst.txt delete mode 100644 docs/_sources/installation.md.txt create mode 100644 docs/_sources/installation.rst.txt delete mode 100644 docs/_static/jquery-3.6.0.js create mode 100644 docs/_static/plot_directive.css create mode 100644 docs/_static/sphinx_highlight.js delete mode 100644 docs/_static/underscore-1.13.1.js delete mode 100644 docs/_static/underscore.js diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index b5dbe28..7b5d84f 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -21,9 +21,9 @@ ## Checklist -- [ ] My code follows the code style of this project. +- [ ] My code follows the code style of this project. (`make clean`) - [ ] My change requires a change to the documentation. -- [ ] I have updated the documentation accordingly. +- [ ] I have updated the documentation accordingly. (`make tests`) - [ ] I have incremented the version number in the `pyproject.toml` file. - [ ] I have added tests to cover my changes. -- [ ] All new and existing tests passed. +- [ ] All new and existing tests passed. (`make tests`) diff --git a/Makefile b/Makefile index ba2740d..8271e5f 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ clean: tests: # Running unittests - @python -m unittest + @pytest release: python setup.py sdist bdist_wheel @@ -31,26 +31,11 @@ html: rm -r docs/html all: - # Cleaning build folder - @mkdir $(shell pwd)/build/temp - @rm -rf $(shell pwd)/build/ - @mkdir $(shell pwd)/build/ - - # Cleaning docs folder - @mkdir $(shell pwd)/docs/temp - @rm -rf $(shell pwd)/docs/ - @mkdir $(shell pwd)/docs/ - - # Running sphinx-build to build html files. - @$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - - # Copying over contents of build/html to docs - @mkdir $(shell pwd)/docs/.doctrees - @cp -a $(shell pwd)/build/doctrees/. $(shell pwd)/docs/.doctrees/ - @cp -a $(shell pwd)/build/html/. $(shell pwd)/docs/ - # Running autopep8 - @autopep8 -r --in-place ect/ + @make clean + + # Generate documentation + @make html # Running unittests - @python -m unittest \ No newline at end of file + @make tests \ No newline at end of file diff --git a/doc_source/citing.md b/doc_source/citing.md deleted file mode 100644 index 74e78e7..0000000 --- a/doc_source/citing.md +++ /dev/null @@ -1,5 +0,0 @@ -# Citing - -To cite `ect` please use the following publication: - -> Elizabeth Munch. An Invitation to the Euler Characteristic Transform. (arXiv:2310.10395)[https://arxiv.org/abs/2310.10395]. 2024. diff --git a/doc_source/citing.rst b/doc_source/citing.rst new file mode 100644 index 0000000..f68ddaa --- /dev/null +++ b/doc_source/citing.rst @@ -0,0 +1,7 @@ +Citing +======= + +To cite `ect` please use the following publication: + + Elizabeth Munch. An Invitation to the Euler Characteristic Transform. `arXiv:2310.10395 `_. 2023. + diff --git a/doc_source/conf.py b/doc_source/conf.py index f100da9..056d773 100644 --- a/doc_source/conf.py +++ b/doc_source/conf.py @@ -28,7 +28,7 @@ author = 'MunchLab' # The full version, including alpha/beta/rc tags -release = '0.0.1' +release = '0.1.3' # -- General configuration --------------------------------------------------- @@ -36,14 +36,24 @@ # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = [ 'myst_parser', - "sphinx.ext.githubpages", +extensions = ['sphinx.ext.autodoc', + # 'numpydoc', + 'sphinx.ext.coverage', + 'sphinx.ext.napoleon', + 'matplotlib.sphinxext.mathmpl', + 'matplotlib.sphinxext.plot_directive', + 'sphinx.ext.autosummary', + 'sphinx.ext.doctest', + 'sphinx.ext.intersphinx', + 'sphinx.ext.todo', 'sphinx.ext.mathjax', - "sphinx.ext.autodoc", - "sphinx.ext.autosummary", - # "myst_nb" - "nbsphinx" -] + 'sphinx.ext.ifconfig', + 'sphinx.ext.viewcode', + 'sphinx.ext.githubpages', + 'myst_parser', + 'sphinx.ext.autosummary', + 'nbsphinx', + 'sphinx.ext.viewcode'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -60,6 +70,15 @@ # a list of builtin themes. # html_theme = 'sphinx_rtd_theme' +autodoc_default_options = { + 'members': True, + 'member-order': 'bysource', + 'special-members': '__init__', + 'undoc-members': True, + 'exclude-members': '__weakref__' +} +numpydoc_show_class_members = False +autodoc_typehints = "none" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, diff --git a/doc_source/contributing.md b/doc_source/contributing.md deleted file mode 100644 index 0b18c39..0000000 --- a/doc_source/contributing.md +++ /dev/null @@ -1,42 +0,0 @@ -# Contributing to the `ect` Package - -*Note this is a draft document and is subject to change.* - -## Introduction - -- Purpose of the `ect` package -- Importance of community contributions - -## Getting Started - -- Prerequisites -- Setting up the development environment -- Forking the `ect` repository -- Cloning the repository - -## Contributing Guidelines - -- Code style and formatting -- Testing guidelines -- Documentation guidelines -- Issue tracking and pull requests - -## Development Workflow - -- Creating a new feature or bug fix branch -- Making changes and committing code -- Running tests and ensuring code quality -- Submitting a pull request - -## Review and Feedback - -- Review process -- Addressing feedback and making revisions -- Collaborating with the community - -## Conclusion - -- Acknowledgements -- Future development plans -- Contact information and support -- \ No newline at end of file diff --git a/doc_source/contributing.rst b/doc_source/contributing.rst new file mode 100644 index 0000000..50321fb --- /dev/null +++ b/doc_source/contributing.rst @@ -0,0 +1,122 @@ +Contributing to the `ect` Package +================================= + +*Note this is a draft document and is subject to change.* + +Getting Started +--------------- + +- Prerequisites +- Setting up the development environment +- Forking the `ect` repository +- Cloning the repository + +Contributing Guidelines +----------------------- + +Code style and formatting +^^^^^^^^^^^^^^^^^^^^^^^^^ + +It is essential for this project to have well documented, clean, and readable code. The following guidelines should be followed when contributing to the `ect` package: + +- Use the PEP 8 style guide for Python code. +- Follow docstring format given below for documenting functions and classes. +- Use the Sphinx documentation system for generating documentation. +- Always include tests for new features and bug fixes. + + +Documentation guidelines +^^^^^^^^^^^^^^^^^^^^^^^^ + +The `ect` package uses the Sphinx documentation system for generating documentation. There are two things to be doing when contributing to the documentation: + +- First, include docstrings in the code which will be autogenerated into the documentation. When in doubt, write too much. +- Second, write documentation in the `doc_source` directory using the reStructuredText format. This package also supports writing files in markdown, although there are some issues when dealing with autogenerated content so it's a bit of a mix at the moment. Note that when the documentation is generated, everything in the `docs` folder is deleted and overwritten, so do not do your work in there, it will be lost! + +Assuming everything (TODO: Add install list) is set up correctly, you can generate the documentation by running the following command from the top level folder:: + + make html + +This will generate the documentation in the ``docs`` directory. You can view the documentation by opening the ``docs/index.html`` file in your browser. + +An example of a docstring for a function is given below. Note the use of indentation since rst is picky about it:: + + def my_function(arg1, arg2): + """ + This is a brief description of the function. + + This is a more detailed description of the function. It should include + information about the arguments and the return value. If the function + raises any exceptions, they should be documented here as well. Math can be included in text by using the math directive, e.g. :math:`y = x^2`. A displayed equation can be added as well using the math block directive. Note that for certain letters that are reserved by rst, you need to escape them with a backslash, e.g. `\\f` in the code below. + + .. math:: + + \int_0^1 x^2 dx = \\frac{1}{3} + + Code blocks can also be included using the code-block directive: + + .. code-block:: python + + def my_function(arg1, arg2): + return arg1 + arg2 + + Just ending a sentence with two colons also will create a code block:: + + def my_function(arg1, arg2): + return arg1 + arg2 + + Parameters + ---------- + arg1 (type): + Description of arg1. + arg2 (type): + Description of arg2. + + Returns + ------- + type + Description of the return value. + + Raises + ------ + ExceptionType + Description of when this exception is raised. + """ + + + +Testing guidelines +^^^^^^^^^^^^^^^^^^ + +You should always include tests for new features and bug fixes. The `ect` package uses the `pytest` testing framework. The tests are located in the `tests` directory. To run the tests, you can use the following command:: + + pytest + +or by running:: + + make tests + +Get in the habit of writing lots of simple tests. It is better to have too many tests than too few. The tests should be written in a way that they can be run quickly and easily. This will make it easier for you to test your code as you develop it and for others to test your code when they review it. Take a look at the existing tests for examples. + +Note that in order for a function written in the test folder to be run, the function must be prefixed with `test_`. For example, a test function for a function called `my_function` would be called `test_my_function`. + +Issue tracking and pull requests +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +If you find an issue, please post it on the `GitHub issue tracker `. Provide as much information as possible, including the version of the `ect` package you are using, the operating system you are using, and any other relevant information. + +If you would like to fix an issue and you are a contributor to the project, please create a new branch for the fix. Note that the ``main`` branch is protected so you will not be able to push directly to that branch. Once you are ready to open discussion, you will create a pull request. The pull request should include a description of the issue and the fix. There is a template for pull requests that you can use to fill out helpful information. + +- Note that in order for the `pip install` command to work, the version number in the `pyproject.toml` file must be updated. +- You should also make sure to update the version number to match in the ``doc_source/conf.py`` file. This will ensure that the documentation is updated with the correct version number. +- Be sure to run ``make all`` before committing to ensure that the code is cleaned, the documentation is up to date, and the tests all pass. + +If you are not a contributor, you will need to fork the code and create a pull request from your fork. +Note that all pull requests need to be approved by Liz Munch before they can be merged. + +Conclusion +---------- + +- Acknowledgements +- Future development plans +- Contact information and support \ No newline at end of file diff --git a/doc_source/index.rst b/doc_source/index.rst index d99d6a0..901e5eb 100644 --- a/doc_source/index.rst +++ b/doc_source/index.rst @@ -7,16 +7,16 @@ Table of Contents ----------------- .. toctree:: - :maxdepth: 2 + :maxdepth: 1 :numbered: :caption: Contents: - Getting Started + Getting Started Modules Tutorials - Contributing + Contributing License - Citing + Citing Description ----------- diff --git a/doc_source/installation.md b/doc_source/installation.md deleted file mode 100644 index 832e5e0..0000000 --- a/doc_source/installation.md +++ /dev/null @@ -1,28 +0,0 @@ -# Installation - -## Prerequisites - -Before installing `ect`, make sure you have the following prerequisites: - -- Python (version X.X or higher) -- Pip (Python package installer) - -## Installing `ect` - -To install `ect`, run the follwing in a terminal. - -```bash -git clone https://github.com/MunchLab/ect -cd ect -pip install . -``` - -*Please note that `ect` is not yet available on PyPi, so for the time being you will need to install it from the source code.* - -## Uninstalling `ect` - -To uninstall `ect`, simply run the following command: - -```bash -pip uninstall ect -``` diff --git a/doc_source/installation.rst b/doc_source/installation.rst new file mode 100644 index 0000000..57c42cf --- /dev/null +++ b/doc_source/installation.rst @@ -0,0 +1,37 @@ +Installation +============ + +Prerequisites +------------- + +Before installing `ect`, make sure you have the following prerequisites: + +- Python (version 3.7 or higher) +- Pip (Python package installer) + +Installing `ect` +---------------- + +To install `ect`, run the following in a terminal. + +.. code-block:: bash + + pip install ect + +Alternatively, you can install directly from the source by cloning the repository and running the following command: + +.. code-block:: bash + + git clone https://github.com/MunchLab/ect + cd ect + pip install . + + +Uninstalling `ect` +------------------ + +To uninstall `ect`, simply run the following command: + +.. code-block:: bash + + pip uninstall ect diff --git a/doc_source/modules.rst b/doc_source/modules.rst index c4bb665..8b82ae7 100644 --- a/doc_source/modules.rst +++ b/doc_source/modules.rst @@ -5,5 +5,5 @@ Table of Contents :maxdepth: 2 - ECT on graphs - Embedded graphs \ No newline at end of file + Embedded graphs + ECT on graphs \ No newline at end of file diff --git a/docs/.buildinfo b/docs/.buildinfo index e0f2657..230fc01 100644 --- a/docs/.buildinfo +++ b/docs/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: e5078083e1e4dc0826581f131d0ee9a3 +config: 323577bb763e1ae020bcf349ad4827a5 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/_modules/ect_graph.html b/docs/_modules/ect_graph.html new file mode 100644 index 0000000..84ff068 --- /dev/null +++ b/docs/_modules/ect_graph.html @@ -0,0 +1,459 @@ + + + + + + ect_graph — ect 0.1.3 documentation + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for ect_graph

+import numpy as np
+from itertools import compress, combinations
+from numba import jit
+import matplotlib.pyplot as plt
+
+
+
+[docs] +class ECT: + """A class to calculate the Euler Characteristic Transform (ECT) from an input embedded graph. + + The result is a matrix where entry ``M[i,j]`` is :math:`\chi(K_{a_i})` for the direction :math:`\omega_j` where :math:`a_i` is the ith entry in ``self.threshes``, and :math:`\omega_j` is the ith entry in ``self.thetas``. + + Attributes + num_dirs (int): + The number of directions to consider in the matrix. + num_thresh (int): + The number of thresholds to consider in the matrix. + bound_radius (int): + Either ``None``, or a positive radius of the bounding circle. + ECT_matrix (np.array): + The matrix to store the ECT. + SECT_matrix (np.array): + The matrix to store the SECT. + + """ + +
+[docs] + def __init__(self, num_dirs, num_thresh, bound_radius=None): + """ + Constructs all the necessary attributes for the ECT object. + + Parameters: + num_dirs (int): + The number of directions to consider in the matrix. + num_thresh (int): + The number of thresholds to consider in the matrix. + bound_radius (int): + Either None, or a positive radius of the bounding circle. + """ + self.num_dirs = num_dirs + + # Note: This version doesn't include 2pi since its the same as the 0 direction. + self.thetas = np.linspace(0, 2*np.pi, self.num_dirs, endpoint=False) + + self.num_thresh = num_thresh + self.set_bounding_radius(bound_radius) + + self.ECT_matrix = np.zeros((num_dirs, num_thresh)) + self.SECT_matrix = np.zeros((num_dirs, num_thresh))
+ + +
+[docs] + def set_bounding_radius(self, bound_radius): + """ + Manually sets the radius of the bounding circle centered at the origin for the ECT object. + + Parameters: + bound_radius (int): + Either None, or a positive radius of the bounding circle. + """ + self.bound_radius = bound_radius + + if self.bound_radius is None: + self.threshes = None + else: + self.threshes = np.linspace(-bound_radius, + bound_radius, self.num_thresh)
+ + +
+[docs] + def get_ECT(self): + """ + Returns the ECT matrix. + """ + return self.ECT_matrix
+ + +
+[docs] + def get_SECT(self): + """ + Returns the SECT matrix. + """ + return self.SECT_matrix
+ + +
+[docs] + def calculateECC(self, G, theta, tightbbox=False): + """ + Function to compute the Euler Characteristic of a graph with coordinates for each vertex (pos). + + Parameters: + G (nx.Graph): + The graph to compute the Euler Characteristic for. + theta (float): + The angle (in radians) to rotate the graph by before computing the Euler Characteristic. + tightbbox (bool): + If True, use the tight bounding box of the graph. If False, use the bounding circle. Default is False. + """ + + # Either use the global radius and the set self.threshes; or use the tight bounding box and calculate + # the thresholds from that. + if tightbbox: + # thresholds for filtration, r should be defined from global bounding box + r = G.get_bounding_radius() + r_threshes = np.linspace(-r, r, self.num_thresh) + else: + # The user wants to use the internally determined bounding radius + if self.bound_radius is None: + raise ValueError( + 'Bounding radius must be set before calculating ECC when you have tightbbox=False.') + else: + r = self.bound_radius + r_threshes = self.threshes + + # -- + def num_below_threshold(func_list, thresh): + """ + Returns the number of entries in func_list that are below the threshold thresh. + Warning: func_list must be sorted in ascending order. + + Parameters + func_list (list): sorted list of function values + thresh (float): threshold value + + Returns + int + """ + func_max = func_list[-1] + if thresh < func_max: + return np.argmin(func_list < thresh) + else: + return len(func_list) + # -- + + v_list, g = G.sort_vertices(theta, return_g=True) + g_list = [g[v] for v in v_list] + + vertex_count = np.array([num_below_threshold( + g_list, thresh) for thresh in r_threshes]) + # print(vertex_count) + + e_list, g_e = G.sort_edges(np.pi/2, return_g=True) + g_e_list = [g_e[e] for e in e_list] + edge_count = np.array([num_below_threshold( + g_e_list, thresh) for thresh in r_threshes]) + # print(edge_count) + + # print(vertex_count - edge_count) + ecc = vertex_count - edge_count + + return ecc
+ + +
+[docs] + def calculateECT(self, graph, tightbbox=False, compute_SECT=True): + """ + Calculates the ECT from an input ``EmbeddedGraph``. The entry ``M[i,j]`` is :math:`\\chi(K_{a_j})` for the direction :math:`\omega_i` where :math:`a_j` is the jth entry in ``self.threshes``, and :math:`\omega_i` is the ith entry in ``self.thetas``. + + Parameters: + graph (EmbeddedGraph): + The input graph to calculate the ECT from. + tightbbox (bool): + Whether to use the tight bounding box (a different value in each direction) computed from the input graph. Otherwise, a bounding box needs to already be set manually with the `set_bounding_box` method. + compute_SECT (bool): + Whether to compute the SECT after the ECT is computed. Default is True. Sets the SECT_matrix attribute, but doesn't return it. Can be returned with the get_SECT method. + + Returns: + np.array + The matrix representing the ECT of size (num_dirs,num_thresh). + """ + + if tightbbox == False and self.bound_radius is None: + self.set_bounding_radius(graph.get_bounding_radius()) + + M = np.zeros((self.num_dirs, self.num_thresh)) + + for i, theta in enumerate(self.thetas): + M[i] = self.calculateECC(graph, theta, tightbbox) + + self.ECT_matrix = M + + if compute_SECT: + self.SECT_matrix = self.calculateSECT() + + return self.ECT_matrix
+ + +
+[docs] + def calculateSECT(self): + """ + Function to calculate the Smooth Euler Characteristic Transform (SECT) from the ECT matrix. + + Returns: + np.array + The matrix representing the SECT of size (num_dirs,num_thresh). + """ + + # Calculate the SECT + M = self.ECT_matrix + + # Get average of each row, corresponds to each direction + A = np.average(M, axis=1) + + # Subtract the average from each row + M_normalized = M - A[:, np.newaxis] + + # Take the cumulative sum of each row to get the SECT + M_SECT = np.cumsum(M_normalized, axis=1) + + return M_SECT
+ + +
+[docs] + def plotECC(self, graph, theta): + """ + Function to plot the Euler Characteristic Curve (ECC) for a specific direction theta. Note that this calculates the ECC for the input graph and then plots it. + + Parameters: + graph (EmbeddedGraph): + The input graph. + theta (float): + The angle in :math:`[0,2\pi]` for the direction to plot the ECC. + """ + + ECC = self.calculateECC(graph, theta) + + plt.step(self.threshes, ECC) + theta_round = str(np.round(theta, 2)) + plt.title(r'ECC for $\omega = ' + theta_round + '$') + plt.xlabel('$a$') + plt.ylabel(r'$\chi(K_a)$')
+ + +
+[docs] + def plotECT(self): + """ + Function to plot the Euler Characteristic Transform (ECT) matrix. Note that the ECT matrix must be calculated before calling this function. + + The resulting plot will have the angle on the x-axis and the threshold on the y-axis. + """ + + # Make meshgrid. + # Add back the 2pi to thetas for the pcolormesh + thetas = np.concatenate((self.thetas, [2*np.pi])) + X, Y = np.meshgrid(thetas, self.threshes) + M = np.zeros_like(X) + + # Transpose to get the correct orientation + M[:, :-1] = self.ECT_matrix.T + M[:, -1] = M[:, 0] # Add the 2pi direction to the 0 direction + + plt.pcolormesh(X, Y, M, cmap='viridis') + plt.colorbar() + + ax = plt.gca() + ax.set_xticks(np.linspace(0, 2*np.pi, 9)) + + labels = [r'$0$', + r'$\frac{\pi}{4}$', + r'$\frac{\pi}{2}$', + r'$\frac{3\pi}{4}$', + r'$\pi$', + r'$\frac{5\pi}{4}$', + r'$\frac{3\pi}{2}$', + r'$\frac{7\pi}{4}$', + r'$2\pi$', + ] + + ax.set_xticklabels(labels) + + plt.xlabel(r'$\omega$') + plt.ylabel(r'$a$') + + plt.title(r'ECT of Input Graph')
+ + +
+[docs] + def plotSECT(self): + """ + Function to plot the Smooth Euler Characteristic Transform (SECT) matrix. Note that the SECT matrix must be calculated before calling this function. + + The resulting plot will have the angle on the x-axis and the threshold on the y-axis. + """ + + # Make meshgrid. + # Add back the 2pi to thetas for the pcolormesh + thetas = np.concatenate((self.thetas, [2*np.pi])) + X, Y = np.meshgrid(thetas, self.threshes) + M = np.zeros_like(X) + + # Transpose to get the correct orientation + M[:, :-1] = self.SECT_matrix.T + M[:, -1] = M[:, 0] # Add the 2pi direction to the 0 direction + + plt.pcolormesh(X, Y, M, cmap='viridis') + plt.colorbar() + + ax = plt.gca() + ax.set_xticks(np.linspace(0, 2*np.pi, 9)) + + labels = [r'$0$', + r'$\frac{\pi}{4}$', + r'$\frac{\pi}{2}$', + r'$\frac{3\pi}{4}$', + r'$\pi$', + r'$\frac{5\pi}{4}$', + r'$\frac{3\pi}{2}$', + r'$\frac{7\pi}{4}$', + r'$2\pi$', + ] + + ax.set_xticklabels(labels) + + plt.xlabel(r'$\omega$') + plt.ylabel(r'$t$') + + plt.title(r'SECT of Input Graph')
+ + +
+[docs] + def plot(self, plot_type): + """ + Function to plot the ECT or SECT matrix. The type parameter should be either 'ECT' or 'SECT'. + + Parameters: + plot_type : str + The type of plot to make. Either 'ECT' or 'SECT'. + """ + + if plot_type == 'ECT': + self.plotECT() + elif plot_type == 'SECT': + self.plotSECT() + else: + raise ValueError('plot_type must be either "ECT" or "SECT".')
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/docs/_modules/embed_graph.html b/docs/_modules/embed_graph.html new file mode 100644 index 0000000..91cb482 --- /dev/null +++ b/docs/_modules/embed_graph.html @@ -0,0 +1,521 @@ + + + + + + embed_graph — ect 0.1.3 documentation + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for embed_graph

+import networkx as nx
+import numpy as np
+import matplotlib.pyplot as plt
+
+
+
+[docs] +class EmbeddedGraph(nx.Graph): + """ + A class to represent a graph with 2D embedded coordinates for each vertex. + + Attributes + coordinates : dict + a dictionary mapping vertices to their (x, y) coordinates + + """ + +
+[docs] + def __init__(self): + """ + Initializes an empty EmbeddedGraph object. + + """ + super().__init__() + self.coordinates = {}
+ + +
+[docs] + def add_vertex(self, vertex, x, y): + """ + Adds a vertex to the graph and assigns it the given coordinates. + + Parameters: + vertex (str): + The vertex to be added. + x (float): + The x-coordinate of the vertex. + y (float): + The y-coordinate of the vertex. + + """ + self.add_node(vertex) + self.coordinates[vertex] = (x, y)
+ + +
+[docs] + def add_edge(self, u, v): + """ + Adds an edge between the vertices u and v if they exist. + + Parameters: + u (str): + The first vertex of the edge. + v (str): + The second vertex of the edge. + + """ + if not self.has_node(u) or not self.has_node(v): + raise ValueError("One or both vertices do not exist in the graph.") + else: + super().add_edge(u, v)
+ + +
+[docs] + def get_coordinates(self, vertex): + """ + Returns the coordinates of the given vertex. + + Parameters: + vertex (str): + The vertex whose coordinates are to be returned. + + Returns: + tuple: The coordinates of the vertex. + + """ + return self.coordinates.get(vertex)
+ + +
+[docs] + def set_coordinates(self, vertex, x, y): + """ + Sets the coordinates of the given vertex. + + Parameters: + vertex (str): + The vertex whose coordinates are to be set. + x (float): + The new x-coordinate of the vertex. + y (float): + The new y-coordinate of the vertex. + + Raises: + ValueError: If the vertex does not exist in the graph. + + """ + if vertex in self.coordinates: + self.coordinates[vertex] = (x, y) + else: + raise ValueError("Vertex does not exist in the graph.")
+ + +
+[docs] + def get_bounding_box(self): + """ + Method to find a bounding box of the vertex coordinates in the graph. + + Returns: + list: A list of tuples representing the minimum and maximum x and y coordinates. + + """ + if not self.coordinates: + return None + + x_coords, y_coords = zip(*self.coordinates.values()) + return [(min(x_coords), max(x_coords)), (min(y_coords), max(y_coords))]
+ + +
+[docs] + def get_bounding_radius(self): + """ + Method to find the radius of the bounding circle of the vertex coordinates in the graph. + + Returns: + float: The radius of the bounding circle. + + """ + if not self.coordinates: + return 0 + + x_coords, y_coords = zip(*self.coordinates.values()) + norms = [np.linalg.norm(point) for point in zip(x_coords, y_coords)] + + return max(norms)
+ + +
+[docs] + def get_mean_centered_coordinates(self): + """ + Method to find the mean-centered coordinates of the vertices in the graph. + + Returns: + dict: A dictionary mapping vertices to their mean-centered coordinates. + + """ + if not self.coordinates: + return None + + x_coords, y_coords = zip(*self.coordinates.values()) + mean_x, mean_y = np.mean(x_coords), np.mean(y_coords) + + return {v: (x - mean_x, y - mean_y) for v, (x, y) in self.coordinates.items()}
+ + +
+[docs] + def set_mean_centered_coordinates(self): + """ + Method to set the mean-centered coordinates of the vertices in the graph. Warning: This overwrites the original coordinates + + """ + + self.coordinates = self.get_mean_centered_coordinates()
+ + +
+[docs] + def g_omega(self, theta): + """ + Function to compute the function :math:`g_\omega(v)` for all vertices :math:`v` in the graph in the direction of :math:`\\theta \in [0,2\pi]` . This function is defined by :math:`g_\omega(v) = \langle \\texttt{pos}(v), \omega \\rangle` . + + Parameters: + + theta (float): + The angle in :math:`[0,2\pi]` for the direction to compute the :math:`g(v)` values. + + Returns: + + dict: A dictionary mapping vertices to their :math:`g(v)` values. + + """ + + omega = (np.cos(theta), np.sin(theta)) + + g = {} + for v in self.nodes: + g[v] = np.dot(self.coordinates[v], omega) + return g
+ + +
+[docs] + def g_omega_edges(self, theta): + """ + Calculates the function value of the edges of the graph by making the value equal to the max vertex value + + Parameters: + + theta (float): + The direction of the function to be calculated. + + Returns: + dict + A dictionary of the function values of the edges. + """ + g = self.g_omega(theta) + + g_edges = {} + for e in self.edges: + g_edges[e] = max(g[e[0]], g[e[1]]) + + return g_edges
+ + +
+[docs] + def sort_vertices(self, theta, return_g=False): + """ + Function to sort the vertices of the graph according to the function g_omega(v) in the direction of theta \in [0,2*np.pi]. + + TODO: eventually, do we want this to return a sorted list of g values as well? Since we're already doing the sorting work, it might be helpful. + + Parameters: + theta (float): + The angle in [0,2*np.pi] for the direction to sort the vertices. + return_g (bool): + Whether to return the g(v) values along with the sorted vertices. + + Returns: + list + A list of vertices sorted in increasing order of the :math:`g(v)` values. + If ``return_g`` is True, also returns the ``g`` dictionary with the function values ``g[vertex_name]=func_value``. + + """ + g = self.g_omega(theta) + + v_list = sorted(self.nodes, key=lambda v: g[v]) + + if return_g: + # g_sorted = [g[v] for v in v_list] + return v_list, g + else: + return v_list
+ + +
+[docs] + def sort_edges(self, theta, return_g=False): + """ + Function to sort the edges of the graph according to the function + + .. math :: + + g_\omega(e) = \max \{ g_\omega(v) \mid v \in e \} + + in the direction of :math:`\\theta \in [0,2\pi]` . + + Parameters: + theta (float): + The angle in :math:`[0,2\pi]` for the direction to sort the edges. + return_g (bool): + Whether to return the :math:`g(v)` values along with the sorted edges. + + Returns: + A list of edges sorted in increasing order of the :math:`g(v)` values. + If ``return_g`` is True, also returns the ``g`` dictionary with the function values ``g[vertex_name]=func_value``. + + """ + g_e = self.g_omega_edges(theta) + + e_list = sorted(self.edges, key=lambda e: g_e[e]) + + if return_g: + # g_sorted = [g[v] for v in v_list] + return e_list, g_e + else: + return e_list
+ + +
+[docs] + def lower_edges(self, v, omega): + """ + Function to compute the number of lower edges of a vertex v for a specific direction (included by the use of sorted v_list). + + Parameters: + v (str): + The vertex to compute the number of lower edges for. + omega (tuple): + The direction vector to consider given as an angle in [0, 2pi]. + + Returns: + int: The number of lower edges of the vertex v. + + """ + L = [n for n in self.neighbors(v)] + gv = np.dot(self.coordinates[v], omega) + Lg = [np.dot(self.coordinates[v], omega) for v in L] + return sum(n >= gv for n in Lg) # includes possible duplicate counts
+ + +
+[docs] + def plot(self, bounding_circle=False, color_nodes_theta=None): + """ + Function to plot the graph with the embedded coordinates. + + If ``bounding_circle`` is True, a bounding circle is drawn around the graph. + + If ``color_nodes_theta`` is not None, it should be given as a theta in :math:`[0,2\pi]`. Then the nodes are colored according to the :math:`g(v)` values in the direction of theta. + + """ + + fig, ax = plt.subplots() + + pos = self.coordinates + if color_nodes_theta == None: + nx.draw(self, pos, with_labels=True) + else: + g = self.g_omega(color_nodes_theta) + color_map = [g[v] for v in self.nodes] + # Some weird plotting to make the colorbar work. + pathcollection = nx.draw_networkx_nodes( + self, pos, node_color=color_map) + nx.draw_networkx_labels(self, pos=pos, font_color='black') + nx.draw_networkx_edges(self, pos) + plt.colorbar(pathcollection) + + plt.axis('on') + ax.tick_params(left=True, bottom=True, + labelleft=True, labelbottom=True) + + if bounding_circle: + r = self.get_bounding_radius() + ax = plt.gca() + circle1 = plt.Circle((0, 0), r, fill=False, + linestyle='--', color='r') + ax.add_patch(circle1) + plt.axis('square')
+
+ + + +
+[docs] +def create_example_graph(mean_centered=True): + """ + Function to create an example ``EmbeddedGraph`` object. Helpful for testing. + + Returns: + EmbeddedGraph: An example ``EmbeddedGraph`` object. + + """ + graph = EmbeddedGraph() + + graph.add_vertex('A', 1, 2) + graph.add_vertex('B', 3, 4) + graph.add_vertex('C', 5, 7) + graph.add_vertex('D', 3, 6) + graph.add_vertex('E', 4, 3) + graph.add_vertex('F', 4, 5) + + graph.add_edge('A', 'B') + graph.add_edge('B', 'C') + graph.add_edge('B', 'D') + graph.add_edge('B', 'E') + graph.add_edge('C', 'D') + graph.add_edge('E', 'F') + + if mean_centered: + graph.set_mean_centered_coordinates() + + return graph
+ + + +if __name__ == "__main__": + # Example usage of the EmbeddedGraph class + + # Create an instance of the EmbeddedGraph class + graph = EmbeddedGraph() + + # Add vertices with their coordinates + graph.add_vertex('A', 1, 2) + graph.add_vertex('B', 3, 4) + graph.add_vertex('C', 5, 6) + + # Add edges between vertices + graph.add_edge('A', 'B') + graph.add_edge('B', 'C') + + # Get coordinates of a vertex + coords = graph.get_coordinates('A') + print(f'Coordinates of A: {coords}') + + # Set new coordinates for a vertex + graph.set_coordinates('A', 7, 8) + coords = graph.get_coordinates('A') + print(f'New coordinates of A: {coords}') + + # Get the bounding box of the vertex coordinates + bbox = graph.get_bounding_box() + print(f'Bounding box: {bbox}') +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/docs/_modules/index.html b/docs/_modules/index.html new file mode 100644 index 0000000..b6acff7 --- /dev/null +++ b/docs/_modules/index.html @@ -0,0 +1,111 @@ + + + + + + Overview: module code — ect 0.1.3 documentation + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + +
  • +
  • +
+
+
+
+
+ +

All modules for which code is available

+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/docs/_sources/citing.md.txt b/docs/_sources/citing.md.txt deleted file mode 100644 index 74e78e7..0000000 --- a/docs/_sources/citing.md.txt +++ /dev/null @@ -1,5 +0,0 @@ -# Citing - -To cite `ect` please use the following publication: - -> Elizabeth Munch. An Invitation to the Euler Characteristic Transform. (arXiv:2310.10395)[https://arxiv.org/abs/2310.10395]. 2024. diff --git a/docs/_sources/citing.rst.txt b/docs/_sources/citing.rst.txt new file mode 100644 index 0000000..f68ddaa --- /dev/null +++ b/docs/_sources/citing.rst.txt @@ -0,0 +1,7 @@ +Citing +======= + +To cite `ect` please use the following publication: + + Elizabeth Munch. An Invitation to the Euler Characteristic Transform. `arXiv:2310.10395 `_. 2023. + diff --git a/docs/_sources/contributing.md.txt b/docs/_sources/contributing.md.txt deleted file mode 100644 index 0b18c39..0000000 --- a/docs/_sources/contributing.md.txt +++ /dev/null @@ -1,42 +0,0 @@ -# Contributing to the `ect` Package - -*Note this is a draft document and is subject to change.* - -## Introduction - -- Purpose of the `ect` package -- Importance of community contributions - -## Getting Started - -- Prerequisites -- Setting up the development environment -- Forking the `ect` repository -- Cloning the repository - -## Contributing Guidelines - -- Code style and formatting -- Testing guidelines -- Documentation guidelines -- Issue tracking and pull requests - -## Development Workflow - -- Creating a new feature or bug fix branch -- Making changes and committing code -- Running tests and ensuring code quality -- Submitting a pull request - -## Review and Feedback - -- Review process -- Addressing feedback and making revisions -- Collaborating with the community - -## Conclusion - -- Acknowledgements -- Future development plans -- Contact information and support -- \ No newline at end of file diff --git a/docs/_sources/contributing.rst.txt b/docs/_sources/contributing.rst.txt new file mode 100644 index 0000000..50321fb --- /dev/null +++ b/docs/_sources/contributing.rst.txt @@ -0,0 +1,122 @@ +Contributing to the `ect` Package +================================= + +*Note this is a draft document and is subject to change.* + +Getting Started +--------------- + +- Prerequisites +- Setting up the development environment +- Forking the `ect` repository +- Cloning the repository + +Contributing Guidelines +----------------------- + +Code style and formatting +^^^^^^^^^^^^^^^^^^^^^^^^^ + +It is essential for this project to have well documented, clean, and readable code. The following guidelines should be followed when contributing to the `ect` package: + +- Use the PEP 8 style guide for Python code. +- Follow docstring format given below for documenting functions and classes. +- Use the Sphinx documentation system for generating documentation. +- Always include tests for new features and bug fixes. + + +Documentation guidelines +^^^^^^^^^^^^^^^^^^^^^^^^ + +The `ect` package uses the Sphinx documentation system for generating documentation. There are two things to be doing when contributing to the documentation: + +- First, include docstrings in the code which will be autogenerated into the documentation. When in doubt, write too much. +- Second, write documentation in the `doc_source` directory using the reStructuredText format. This package also supports writing files in markdown, although there are some issues when dealing with autogenerated content so it's a bit of a mix at the moment. Note that when the documentation is generated, everything in the `docs` folder is deleted and overwritten, so do not do your work in there, it will be lost! + +Assuming everything (TODO: Add install list) is set up correctly, you can generate the documentation by running the following command from the top level folder:: + + make html + +This will generate the documentation in the ``docs`` directory. You can view the documentation by opening the ``docs/index.html`` file in your browser. + +An example of a docstring for a function is given below. Note the use of indentation since rst is picky about it:: + + def my_function(arg1, arg2): + """ + This is a brief description of the function. + + This is a more detailed description of the function. It should include + information about the arguments and the return value. If the function + raises any exceptions, they should be documented here as well. Math can be included in text by using the math directive, e.g. :math:`y = x^2`. A displayed equation can be added as well using the math block directive. Note that for certain letters that are reserved by rst, you need to escape them with a backslash, e.g. `\\f` in the code below. + + .. math:: + + \int_0^1 x^2 dx = \\frac{1}{3} + + Code blocks can also be included using the code-block directive: + + .. code-block:: python + + def my_function(arg1, arg2): + return arg1 + arg2 + + Just ending a sentence with two colons also will create a code block:: + + def my_function(arg1, arg2): + return arg1 + arg2 + + Parameters + ---------- + arg1 (type): + Description of arg1. + arg2 (type): + Description of arg2. + + Returns + ------- + type + Description of the return value. + + Raises + ------ + ExceptionType + Description of when this exception is raised. + """ + + + +Testing guidelines +^^^^^^^^^^^^^^^^^^ + +You should always include tests for new features and bug fixes. The `ect` package uses the `pytest` testing framework. The tests are located in the `tests` directory. To run the tests, you can use the following command:: + + pytest + +or by running:: + + make tests + +Get in the habit of writing lots of simple tests. It is better to have too many tests than too few. The tests should be written in a way that they can be run quickly and easily. This will make it easier for you to test your code as you develop it and for others to test your code when they review it. Take a look at the existing tests for examples. + +Note that in order for a function written in the test folder to be run, the function must be prefixed with `test_`. For example, a test function for a function called `my_function` would be called `test_my_function`. + +Issue tracking and pull requests +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +If you find an issue, please post it on the `GitHub issue tracker `. Provide as much information as possible, including the version of the `ect` package you are using, the operating system you are using, and any other relevant information. + +If you would like to fix an issue and you are a contributor to the project, please create a new branch for the fix. Note that the ``main`` branch is protected so you will not be able to push directly to that branch. Once you are ready to open discussion, you will create a pull request. The pull request should include a description of the issue and the fix. There is a template for pull requests that you can use to fill out helpful information. + +- Note that in order for the `pip install` command to work, the version number in the `pyproject.toml` file must be updated. +- You should also make sure to update the version number to match in the ``doc_source/conf.py`` file. This will ensure that the documentation is updated with the correct version number. +- Be sure to run ``make all`` before committing to ensure that the code is cleaned, the documentation is up to date, and the tests all pass. + +If you are not a contributor, you will need to fork the code and create a pull request from your fork. +Note that all pull requests need to be approved by Liz Munch before they can be merged. + +Conclusion +---------- + +- Acknowledgements +- Future development plans +- Contact information and support \ No newline at end of file diff --git a/docs/_sources/index.rst.txt b/docs/_sources/index.rst.txt index d99d6a0..901e5eb 100644 --- a/docs/_sources/index.rst.txt +++ b/docs/_sources/index.rst.txt @@ -7,16 +7,16 @@ Table of Contents ----------------- .. toctree:: - :maxdepth: 2 + :maxdepth: 1 :numbered: :caption: Contents: - Getting Started + Getting Started Modules Tutorials - Contributing + Contributing License - Citing + Citing Description ----------- diff --git a/docs/_sources/installation.md.txt b/docs/_sources/installation.md.txt deleted file mode 100644 index 832e5e0..0000000 --- a/docs/_sources/installation.md.txt +++ /dev/null @@ -1,28 +0,0 @@ -# Installation - -## Prerequisites - -Before installing `ect`, make sure you have the following prerequisites: - -- Python (version X.X or higher) -- Pip (Python package installer) - -## Installing `ect` - -To install `ect`, run the follwing in a terminal. - -```bash -git clone https://github.com/MunchLab/ect -cd ect -pip install . -``` - -*Please note that `ect` is not yet available on PyPi, so for the time being you will need to install it from the source code.* - -## Uninstalling `ect` - -To uninstall `ect`, simply run the following command: - -```bash -pip uninstall ect -``` diff --git a/docs/_sources/installation.rst.txt b/docs/_sources/installation.rst.txt new file mode 100644 index 0000000..57c42cf --- /dev/null +++ b/docs/_sources/installation.rst.txt @@ -0,0 +1,37 @@ +Installation +============ + +Prerequisites +------------- + +Before installing `ect`, make sure you have the following prerequisites: + +- Python (version 3.7 or higher) +- Pip (Python package installer) + +Installing `ect` +---------------- + +To install `ect`, run the following in a terminal. + +.. code-block:: bash + + pip install ect + +Alternatively, you can install directly from the source by cloning the repository and running the following command: + +.. code-block:: bash + + git clone https://github.com/MunchLab/ect + cd ect + pip install . + + +Uninstalling `ect` +------------------ + +To uninstall `ect`, simply run the following command: + +.. code-block:: bash + + pip uninstall ect diff --git a/docs/_sources/modules.rst.txt b/docs/_sources/modules.rst.txt index c4bb665..8b82ae7 100644 --- a/docs/_sources/modules.rst.txt +++ b/docs/_sources/modules.rst.txt @@ -5,5 +5,5 @@ Table of Contents :maxdepth: 2 - ECT on graphs - Embedded graphs \ No newline at end of file + Embedded graphs + ECT on graphs \ No newline at end of file diff --git a/docs/_static/_sphinx_javascript_frameworks_compat.js b/docs/_static/_sphinx_javascript_frameworks_compat.js index 8549469..8141580 100644 --- a/docs/_static/_sphinx_javascript_frameworks_compat.js +++ b/docs/_static/_sphinx_javascript_frameworks_compat.js @@ -1,20 +1,9 @@ -/* - * _sphinx_javascript_frameworks_compat.js - * ~~~~~~~~~~ - * - * Compatability shim for jQuery and underscores.js. - * - * WILL BE REMOVED IN Sphinx 6.0 - * xref RemovedInSphinx60Warning +/* Compatability shim for jQuery and underscores.js. * + * Copyright Sphinx contributors + * Released under the two clause BSD licence */ -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - - /** * small helper function to urldecode strings * diff --git a/docs/_static/basic.css b/docs/_static/basic.css index 0889677..30fee9d 100644 --- a/docs/_static/basic.css +++ b/docs/_static/basic.css @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- basic theme. * - * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ @@ -237,6 +237,10 @@ a.headerlink { visibility: hidden; } +a:visited { + color: #551A8B; +} + h1:hover > a.headerlink, h2:hover > a.headerlink, h3:hover > a.headerlink, @@ -324,17 +328,17 @@ aside.sidebar { p.sidebar-title { font-weight: bold; } + nav.contents, aside.topic, - div.admonition, div.topic, blockquote { clear: left; } /* -- topics ---------------------------------------------------------------- */ + nav.contents, aside.topic, - div.topic { border: 1px solid #ccc; padding: 7px; @@ -375,7 +379,6 @@ div.sidebar > :last-child, aside.sidebar > :last-child, nav.contents > :last-child, aside.topic > :last-child, - div.topic > :last-child, div.admonition > :last-child { margin-bottom: 0; @@ -385,7 +388,6 @@ div.sidebar::after, aside.sidebar::after, nav.contents::after, aside.topic::after, - div.topic::after, div.admonition::after, blockquote::after { @@ -611,25 +613,6 @@ ul.simple p { margin-bottom: 0; } -/* Docutils 0.17 and older (footnotes & citations) */ -dl.footnote > dt, -dl.citation > dt { - float: left; - margin-right: 0.5em; -} - -dl.footnote > dd, -dl.citation > dd { - margin-bottom: 0em; -} - -dl.footnote > dd:after, -dl.citation > dd:after { - content: ""; - clear: both; -} - -/* Docutils 0.18+ (footnotes & citations) */ aside.footnote > span, div.citation > span { float: left; @@ -654,8 +637,6 @@ div.citation > p:last-of-type:after { clear: both; } -/* Footnotes & citations ends */ - dl.field-list { display: grid; grid-template-columns: fit-content(30%) auto; @@ -668,10 +649,6 @@ dl.field-list > dt { padding-right: 5px; } -dl.field-list > dt:after { - content: ":"; -} - dl.field-list > dd { padding-left: 0.5em; margin-top: 0em; @@ -697,6 +674,16 @@ dd { margin-left: 30px; } +.sig dd { + margin-top: 0px; + margin-bottom: 0px; +} + +.sig dl { + margin-top: 0px; + margin-bottom: 0px; +} + dl > dd:last-child, dl > dd:last-child > :last-child { margin-bottom: 0; @@ -765,6 +752,14 @@ abbr, acronym { cursor: help; } +.translated { + background-color: rgba(207, 255, 207, 0.2) +} + +.untranslated { + background-color: rgba(255, 207, 207, 0.2) +} + /* -- code displays --------------------------------------------------------- */ pre { diff --git a/docs/_static/doctools.js b/docs/_static/doctools.js index c3db08d..d06a71d 100644 --- a/docs/_static/doctools.js +++ b/docs/_static/doctools.js @@ -4,12 +4,19 @@ * * Base JavaScript utilities for all Sphinx HTML documentation. * - * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ "use strict"; +const BLACKLISTED_KEY_CONTROL_ELEMENTS = new Set([ + "TEXTAREA", + "INPUT", + "SELECT", + "BUTTON", +]); + const _ready = (callback) => { if (document.readyState !== "loading") { callback(); @@ -18,73 +25,11 @@ const _ready = (callback) => { } }; -/** - * highlight a given string on a node by wrapping it in - * span elements with the given class name. - */ -const _highlight = (node, addItems, text, className) => { - if (node.nodeType === Node.TEXT_NODE) { - const val = node.nodeValue; - const parent = node.parentNode; - const pos = val.toLowerCase().indexOf(text); - if ( - pos >= 0 && - !parent.classList.contains(className) && - !parent.classList.contains("nohighlight") - ) { - let span; - - const closestNode = parent.closest("body, svg, foreignObject"); - const isInSVG = closestNode && closestNode.matches("svg"); - if (isInSVG) { - span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); - } else { - span = document.createElement("span"); - span.classList.add(className); - } - - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - parent.insertBefore( - span, - parent.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling - ) - ); - node.nodeValue = val.substr(0, pos); - - if (isInSVG) { - const rect = document.createElementNS( - "http://www.w3.org/2000/svg", - "rect" - ); - const bbox = parent.getBBox(); - rect.x.baseVal.value = bbox.x; - rect.y.baseVal.value = bbox.y; - rect.width.baseVal.value = bbox.width; - rect.height.baseVal.value = bbox.height; - rect.setAttribute("class", className); - addItems.push({ parent: parent, target: rect }); - } - } - } else if (node.matches && !node.matches("button, select, textarea")) { - node.childNodes.forEach((el) => _highlight(el, addItems, text, className)); - } -}; -const _highlightText = (thisNode, text, className) => { - let addItems = []; - _highlight(thisNode, addItems, text, className); - addItems.forEach((obj) => - obj.parent.insertAdjacentElement("beforebegin", obj.target) - ); -}; - /** * Small JavaScript module for the documentation. */ const Documentation = { init: () => { - Documentation.highlightSearchWords(); Documentation.initDomainIndexTable(); Documentation.initOnKeyListeners(); }, @@ -126,51 +71,6 @@ const Documentation = { Documentation.LOCALE = catalog.locale; }, - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords: () => { - const highlight = - new URLSearchParams(window.location.search).get("highlight") || ""; - const terms = highlight.toLowerCase().split(/\s+/).filter(x => x); - if (terms.length === 0) return; // nothing to do - - // There should never be more than one element matching "div.body" - const divBody = document.querySelectorAll("div.body"); - const body = divBody.length ? divBody[0] : document.querySelector("body"); - window.setTimeout(() => { - terms.forEach((term) => _highlightText(body, term, "highlighted")); - }, 10); - - const searchBox = document.getElementById("searchbox"); - if (searchBox === null) return; - searchBox.appendChild( - document - .createRange() - .createContextualFragment( - '" - ) - ); - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords: () => { - document - .querySelectorAll("#searchbox .highlight-link") - .forEach((el) => el.remove()); - document - .querySelectorAll("span.highlighted") - .forEach((el) => el.classList.remove("highlighted")); - const url = new URL(window.location); - url.searchParams.delete("highlight"); - window.history.replaceState({}, "", url); - }, - /** * helper function to focus on search bar */ @@ -210,15 +110,11 @@ const Documentation = { ) return; - const blacklistedElements = new Set([ - "TEXTAREA", - "INPUT", - "SELECT", - "BUTTON", - ]); document.addEventListener("keydown", (event) => { - if (blacklistedElements.has(document.activeElement.tagName)) return; // bail for input elements - if (event.altKey || event.ctrlKey || event.metaKey) return; // bail with special keys + // bail for input elements + if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return; + // bail with special keys + if (event.altKey || event.ctrlKey || event.metaKey) return; if (!event.shiftKey) { switch (event.key) { @@ -240,10 +136,6 @@ const Documentation = { event.preventDefault(); } break; - case "Escape": - if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break; - Documentation.hideSearchWords(); - event.preventDefault(); } } diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js index 42c2b5a..2f0ebda 100644 --- a/docs/_static/documentation_options.js +++ b/docs/_static/documentation_options.js @@ -1,6 +1,5 @@ -var DOCUMENTATION_OPTIONS = { - URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '0.0.1', +const DOCUMENTATION_OPTIONS = { + VERSION: '0.1.3', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', @@ -10,5 +9,5 @@ var DOCUMENTATION_OPTIONS = { SOURCELINK_SUFFIX: '.txt', NAVIGATION_WITH_KEYS: false, SHOW_SEARCH_SUMMARY: true, - ENABLE_SEARCH_SHORTCUTS: false, + ENABLE_SEARCH_SHORTCUTS: true, }; \ No newline at end of file diff --git a/docs/_static/jquery-3.6.0.js b/docs/_static/jquery-3.6.0.js deleted file mode 100644 index fc6c299..0000000 --- a/docs/_static/jquery-3.6.0.js +++ /dev/null @@ -1,10881 +0,0 @@ -/*! - * jQuery JavaScript Library v3.6.0 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright OpenJS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2021-03-02T17:08Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var flat = arr.flat ? function( array ) { - return arr.flat.call( array ); -} : function( array ) { - return arr.concat.apply( [], array ); -}; - - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - -var isFunction = function isFunction( obj ) { - - // Support: Chrome <=57, Firefox <=52 - // In some browsers, typeof returns "function" for HTML elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - // Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5 - // Plus for old WebKit, typeof returns "function" for HTML collections - // (e.g., `typeof document.getElementsByTagName("div") === "function"`). (gh-4756) - return typeof obj === "function" && typeof obj.nodeType !== "number" && - typeof obj.item !== "function"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - -var document = window.document; - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.6.0", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - even: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return ( i + 1 ) % 2; - } ) ); - }, - - odd: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return i % 2; - } ) ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a provided context; falls back to the global one - // if not specified. - globalEval: function( code, options, doc ) { - DOMEval( code, { nonce: options && options.nonce }, doc ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return flat( ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), - function( _i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); - } ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.6 - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://js.foundation/ - * - * Date: 2021-02-16 - */ -( function( window ) { -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ( {} ).hasOwnProperty, - arr = [], - pop = arr.pop, - pushNative = arr.push, - push = arr.push, - slice = arr.slice, - - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[ i ] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + - "ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram - identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - - // "Attribute values must be CSS identifiers [capture 5] - // or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + - whitespace + "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + - whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + - "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + - whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + - whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + - "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + - "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rhtml = /HTML$/i, - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), - funescape = function( escape, nonHex ) { - var high = "0x" + escape.slice( 1 ) - 0x10000; - - return nonHex ? - - // Strip the backslash prefix from a non-hex escape sequence - nonHex : - - // Replace a hexadecimal escape sequence with the encoded Unicode code point - // Support: IE <=11+ - // For values outside the Basic Multilingual Plane (BMP), manually construct a - // surrogate pair - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + - ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - ( arr = slice.call( preferredDoc.childNodes ) ), - preferredDoc.childNodes - ); - - // Support: Android<4.0 - // Detect silently failing push.apply - // eslint-disable-next-line no-unused-expressions - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - pushNative.apply( target, slice.call( els ) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - - // Can't trust NodeList.length - while ( ( target[ j++ ] = els[ i++ ] ) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - setDocument( context ); - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { - - // ID selector - if ( ( m = match[ 1 ] ) ) { - - // Document context - if ( nodeType === 9 ) { - if ( ( elem = context.getElementById( m ) ) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && ( elem = newContext.getElementById( m ) ) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[ 2 ] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !nonnativeSelectorCache[ selector + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && - - // Support: IE 8 only - // Exclude object elements - ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // The technique has to be used as well when a leading combinator is used - // as such selectors are not recognized by querySelectorAll. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && - ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - - // We can use :scope instead of the ID hack if the browser - // supports it & if we're not changing the context. - if ( newContext !== context || !support.scope ) { - - // Capture the context ID, setting it first if necessary - if ( ( nid = context.getAttribute( "id" ) ) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", ( nid = expando ) ); - } - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + - toSelector( groups[ i ] ); - } - newSelector = groups.join( "," ); - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return ( cache[ key + " " ] = value ); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement( "fieldset" ); - - try { - return !!fn( el ); - } catch ( e ) { - return false; - } finally { - - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split( "|" ), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[ i ] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( ( cur = cur.nextSibling ) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return ( name === "input" || name === "button" ) && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction( function( argument ) { - argument = +argument; - return markFunction( function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ ( j = matchIndexes[ i ] ) ] ) { - seed[ j ] = !( matches[ j ] = seed[ j ] ); - } - } - } ); - } ); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - var namespace = elem && elem.namespaceURI, - docElem = elem && ( elem.ownerDocument || elem ).documentElement; - - // Support: IE <=8 - // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes - // https://bugs.jquery.com/ticket/4833 - return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9 - 11+, Edge 12 - 18+ - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( preferredDoc != document && - ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, - // Safari 4 - 5 only, Opera <=11.6 - 12.x only - // IE/Edge & older browsers don't support the :scope pseudo-class. - // Support: Safari 6.0 only - // Safari 6.0 supports :scope but it's an alias of :root there. - support.scope = assert( function( el ) { - docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); - return typeof el.querySelectorAll !== "undefined" && - !el.querySelectorAll( ":scope fieldset div" ).length; - } ); - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert( function( el ) { - el.className = "i"; - return !el.getAttribute( "className" ); - } ); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert( function( el ) { - el.appendChild( document.createComment( "" ) ); - return !el.getElementsByTagName( "*" ).length; - } ); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert( function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - } ); - - // ID filter and find - if ( support.getById ) { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute( "id" ) === attrId; - }; - }; - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode( "id" ); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( ( elem = elems[ i++ ] ) ) { - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find[ "TAG" ] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { - - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert( function( el ) { - - var input; - - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll( "[selected]" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push( "~=" ); - } - - // Support: IE 11+, Edge 15 - 18+ - // IE 11/Edge don't find elements on a `[name='']` query in some cases. - // Adding a temporary attribute to the document before the selection works - // around the issue. - // Interestingly, IE 10 & older don't seem to have the issue. - input = document.createElement( "input" ); - input.setAttribute( "name", "" ); - el.appendChild( input ); - if ( !el.querySelectorAll( "[name='']" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + - whitespace + "*(?:''|\"\")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll( ":checked" ).length ) { - rbuggyQSA.push( ":checked" ); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push( ".#.+[+~]" ); - } - - // Support: Firefox <=3.6 - 5 only - // Old Firefox doesn't throw on a badly-escaped identifier. - el.querySelectorAll( "\\\f" ); - rbuggyQSA.push( "[\\r\\n\\f]" ); - } ); - - assert( function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement( "input" ); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll( "[name=d]" ).length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: Opera 10 - 11 only - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll( "*,:x" ); - rbuggyQSA.push( ",.*:" ); - } ); - } - - if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector ) ) ) ) { - - assert( function( el ) { - - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - } ); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - ) ); - } : - function( a, b ) { - if ( b ) { - while ( ( b = b.parentNode ) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { - - // Choose the first element that is related to our preferred document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( a == document || a.ownerDocument == preferredDoc && - contains( preferredDoc, a ) ) { - return -1; - } - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( b == document || b.ownerDocument == preferredDoc && - contains( preferredDoc, b ) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - return a == document ? -1 : - b == document ? 1 : - /* eslint-enable eqeqeq */ - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( ( cur = cur.parentNode ) ) { - ap.unshift( cur ); - } - cur = b; - while ( ( cur = cur.parentNode ) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[ i ] === bp[ i ] ) { - i++; - } - - return i ? - - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[ i ], bp[ i ] ) : - - // Otherwise nodes in our document sort first - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - ap[ i ] == preferredDoc ? -1 : - bp[ i ] == preferredDoc ? 1 : - /* eslint-enable eqeqeq */ - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - setDocument( elem ); - - if ( support.matchesSelector && documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch ( e ) { - nonnativeSelectorCache( expr, true ); - } - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( context.ownerDocument || context ) != document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( elem.ownerDocument || elem ) != document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - - // If no nodeType, this is expected to be an array - while ( ( node = elem[ i++ ] ) ) { - - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[ 1 ] = match[ 1 ].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[ 3 ] = ( match[ 3 ] || match[ 4 ] || - match[ 5 ] || "" ).replace( runescape, funescape ); - - if ( match[ 2 ] === "~=" ) { - match[ 3 ] = " " + match[ 3 ] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[ 1 ] = match[ 1 ].toLowerCase(); - - if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - - // nth-* requires argument - if ( !match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[ 4 ] = +( match[ 4 ] ? - match[ 5 ] + ( match[ 6 ] || 1 ) : - 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); - match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - - // other types prohibit arguments - } else if ( match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[ 6 ] && match[ 2 ]; - - if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[ 3 ] ) { - match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - - // Get excess from tokenize (recursively) - ( excess = tokenize( unquoted, true ) ) && - - // advance to the next closing parenthesis - ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { - - // excess is a negative index - match[ 0 ] = match[ 0 ].slice( 0, excess ); - match[ 2 ] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { - return true; - } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - ( pattern = new RegExp( "(^|" + whitespace + - ")" + className + "(" + whitespace + "|$)" ) ) && classCache( - className, function( elem ) { - return pattern.test( - typeof elem.className === "string" && elem.className || - typeof elem.getAttribute !== "undefined" && - elem.getAttribute( "class" ) || - "" - ); - } ); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - /* eslint-disable max-len */ - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - /* eslint-enable max-len */ - - }; - }, - - "CHILD": function( type, what, _argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, _context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( ( node = node[ dir ] ) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( ( node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - - // Use previously-cached element index if available - if ( useCache ) { - - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - - // Use the same loop as above to seek `elem` from the start - while ( ( node = ++nodeIndex && node && node[ dir ] || - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || - ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction( function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[ i ] ); - seed[ idx ] = !( matches[ idx ] = matched[ i ] ); - } - } ) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - - // Potentially complex pseudos - "not": markFunction( function( selector ) { - - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction( function( seed, matches, _context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( ( elem = unmatched[ i ] ) ) { - seed[ i ] = !( matches[ i ] = elem ); - } - } - } ) : - function( elem, _context, xml ) { - input[ 0 ] = elem; - matcher( input, null, xml, results ); - - // Don't keep the element (issue #299) - input[ 0 ] = null; - return !results.pop(); - }; - } ), - - "has": markFunction( function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - } ), - - "contains": markFunction( function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; - }; - } ), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - - // lang value must be a valid identifier - if ( !ridentifier.test( lang || "" ) ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( ( elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); - return false; - }; - } ), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && - ( !document.hasFocus || document.hasFocus() ) && - !!( elem.type || elem.href || ~elem.tabIndex ); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return ( nodeName === "input" && !!elem.checked ) || - ( nodeName === "option" && !!elem.selected ); - }, - - "selected": function( elem ) { - - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - // eslint-disable-next-line no-unused-expressions - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos[ "empty" ]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( ( attr = elem.getAttribute( "type" ) ) == null || - attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo( function() { - return [ 0 ]; - } ), - - "last": createPositionalPseudo( function( _matchIndexes, length ) { - return [ length - 1 ]; - } ), - - "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - } ), - - "even": createPositionalPseudo( function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "odd": createPositionalPseudo( function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? - argument + length : - argument > length ? - length : - argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ) - } -}; - -Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || ( match = rcomma.exec( soFar ) ) ) { - if ( match ) { - - // Don't consume trailing commas as valid - soFar = soFar.slice( match[ 0 ].length ) || soFar; - } - groups.push( ( tokens = [] ) ); - } - - matched = false; - - // Combinators - if ( ( match = rcombinators.exec( soFar ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - - // Cast descendant combinators to space - type: match[ 0 ].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || - ( match = preFilters[ type ]( match ) ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[ i ].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || - ( outerCache[ elem.uniqueID ] = {} ); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( ( oldCache = uniqueCache[ key ] ) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return ( newCache[ 2 ] = oldCache[ 2 ] ); - } else { - - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[ i ]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[ 0 ]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[ i ], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( ( elem = unmatched[ i ] ) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction( function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( - selector || "*", - context.nodeType ? [ context ] : context, - [] - ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( ( elem = temp[ i ] ) ) { - matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) ) { - - // Restore matcherIn since elem is not yet a final match - temp.push( ( matcherIn[ i ] = elem ) ); - } - } - postFinder( null, ( matcherOut = [] ), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) && - ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { - - seed[ temp ] = !( results[ temp ] = elem ); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - } ); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[ 0 ].type ], - implicitRelative = leadingRelative || Expr.relative[ " " ], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - ( checkContext = context ).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { - matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; - } else { - matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[ j ].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens - .slice( 0, i - 1 ) - .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), - - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), - len = elems.length; - - if ( outermost ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - outermostContext = context == document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( !context && elem.ownerDocument != document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( ( matcher = elementMatchers[ j++ ] ) ) { - if ( matcher( elem, context || document, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - - // They will have gone through all possible matchers - if ( ( elem = !matcher && elem ) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( ( matcher = setMatchers[ j++ ] ) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !( unmatched[ i ] || setMatched[ i ] ) ) { - setMatched[ i ] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[ i ] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( - selector, - matcherFromGroupMatchers( elementMatchers, setMatchers ) - ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( ( selector = compiled.selector || selector ) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[ 0 ] = match[ 0 ].slice( 0 ); - if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - - context = ( Expr.find[ "ID" ]( token.matches[ 0 ] - .replace( runescape, funescape ), context ) || [] )[ 0 ]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[ i ]; - - // Abort if we hit a combinator - if ( Expr.relative[ ( type = token.type ) ] ) { - break; - } - if ( ( find = Expr.find[ type ] ) ) { - - // Search, expanding context for leading sibling combinators - if ( ( seed = find( - token.matches[ 0 ].replace( runescape, funescape ), - rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || - context - ) ) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert( function( el ) { - - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; -} ); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert( function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute( "href" ) === "#"; -} ) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - } ); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert( function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -} ) ) { - addHandle( "value", function( elem, _name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - } ); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert( function( el ) { - return el.getAttribute( "disabled" ) == null; -} ) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; - } - } ); -} - -return Sizzle; - -} )( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -} -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, _i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, _i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, _i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( elem.contentDocument != null && - - // Support: IE 11+ - // elements with no `data` attribute has an object - // `contentDocument` with a `null` prototype. - getProto( elem.contentDocument ) ) { - - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( _i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the primary Deferred - primary = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - primary.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( primary.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return primary.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), primary.reject ); - } - - return primary.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, _key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( _all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // Support: IE <=9 only - // IE <=9 replaces "; - support.option = !!div.lastChild; -} )(); - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// Support: IE <=9 only -if ( !support.option ) { - wrapMap.optgroup = wrapMap.option = [ 1, "" ]; -} - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -var rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 - 11+ -// focus() and blur() are asynchronous, except when they are no-op. -// So expect focus to be synchronous when the element is already active, -// and blur to be synchronous when the element is not already active. -// (focus and blur are always synchronous in other supported browsers, -// this just defines when we can count on it). -function expectSync( elem, type ) { - return ( elem === safeActiveElement() ) === ( type === "focus" ); -} - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Only attach events to objects that accept data - if ( !acceptData( elem ) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = Object.create( null ); - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( nativeEvent ), - - handlers = ( - dataPriv.get( this, "events" ) || Object.create( null ) - )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", returnTrue ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, expectSync ) { - - // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add - if ( !expectSync ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var notAsync, result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - // Saved data should be false in such cases, but might be a leftover capture object - // from an async native handler (gh-4350) - if ( !saved.length ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - // Support: IE <=9 - 11+ - // focus() and blur() are asynchronous - notAsync = expectSync( this, type ); - this[ type ](); - result = dataPriv.get( this, type ); - if ( saved !== result || notAsync ) { - dataPriv.set( this, type, false ); - } else { - result = {}; - } - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - - // Support: Chrome 86+ - // In Chrome, if an element having a focusout handler is blurred by - // clicking outside of it, it invokes the handler synchronously. If - // that handler calls `.remove()` on the element, the data is cleared, - // leaving `result` undefined. We need to guard against this. - return result && result.value; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering the - // native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { - - // ...and capture the result - dataPriv.set( this, type, { - value: jQuery.event.trigger( - - // Support: IE <=9 - 11+ - // Extend with the prototype to reset the above stopImmediatePropagation() - jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), - saved.slice( 1 ), - this - ) - } ); - - // Abort handling of the native event - event.stopImmediatePropagation(); - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - which: true -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, expectSync ); - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - // Suppress native focus or blur as it's already being fired - // in leverageNative. - _default: function() { - return true; - }, - - delegateType: delegateType - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.get( src ); - events = pdataOld.events; - - if ( events ) { - dataPriv.remove( dest, "handle events" ); - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = flat( args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - }, doc ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html; - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var swap = function( elem, options, callback ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableTrDimensionsVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - }, - - // Support: IE 9 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Behavior in IE 9 is more subtle than in newer versions & it passes - // some versions of this test; make sure not to make it pass there! - // - // Support: Firefox 70+ - // Only Firefox includes border widths - // in computed dimensions. (gh-4529) - reliableTrDimensions: function() { - var table, tr, trChild, trStyle; - if ( reliableTrDimensionsVal == null ) { - table = document.createElement( "table" ); - tr = document.createElement( "tr" ); - trChild = document.createElement( "div" ); - - table.style.cssText = "position:absolute;left:-11111px;border-collapse:separate"; - tr.style.cssText = "border:1px solid"; - - // Support: Chrome 86+ - // Height set through cssText does not get applied. - // Computed height then comes back as 0. - tr.style.height = "1px"; - trChild.style.height = "9px"; - - // Support: Android 8 Chrome 86+ - // In our bodyBackground.html iframe, - // display for all div elements is set to "inline", - // which causes a problem only in Android 8 Chrome 86. - // Ensuring the div is display: block - // gets around this issue. - trChild.style.display = "block"; - - documentElement - .appendChild( table ) - .appendChild( tr ) - .appendChild( trChild ); - - trStyle = window.getComputedStyle( tr ); - reliableTrDimensionsVal = ( parseInt( trStyle.height, 10 ) + - parseInt( trStyle.borderTopWidth, 10 ) + - parseInt( trStyle.borderBottomWidth, 10 ) ) === tr.offsetHeight; - - documentElement.removeChild( table ); - } - return reliableTrDimensionsVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( _elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - if ( box === "margin" ) { - delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Support: IE 9 - 11 only - // Use offsetWidth/offsetHeight for when box sizing is unreliable. - // In those cases, the computed value can be trusted to be border-box. - if ( ( !support.boxSizingReliable() && isBorderBox || - - // Support: IE 10 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Interestingly, in some cases IE 9 doesn't suffer from this issue. - !support.reliableTrDimensions() && nodeName( elem, "tr" ) || - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - val === "auto" || - - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - - // Make sure the element is visible & connected - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "gridArea": true, - "gridColumn": true, - "gridColumnEnd": true, - "gridColumnStart": true, - "gridRow": true, - "gridRowEnd": true, - "gridRowStart": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( _i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( isValidValue ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = classesToArray( value ); - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -support.focusin = "onfocusin" in window; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( dataPriv.get( cur, "events" ) || Object.create( null ) )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - - // Handle: regular nodes (via `this.ownerDocument`), window - // (via `this.document`) & document (via `this`). - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = { guid: Date.now() }; - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml, parserErrorElem; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) {} - - parserErrorElem = xml && xml.getElementsByTagName( "parsererror" )[ 0 ]; - if ( !xml || parserErrorElem ) { - jQuery.error( "Invalid XML: " + ( - parserErrorElem ? - jQuery.map( parserErrorElem.childNodes, function( el ) { - return el.textContent; - } ).join( "\n" ) : - data - ) ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ).filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ).map( function( _i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - -originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + - uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Use a noop converter for missing script but not if jsonp - if ( !isSuccess && - jQuery.inArray( "script", s.dataTypes ) > -1 && - jQuery.inArray( "json", s.dataTypes ) < 0 ) { - s.converters[ "text script" ] = function() {}; - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( _i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - -jQuery.ajaxPrefilter( function( s ) { - var i; - for ( i in s.headers ) { - if ( i.toLowerCase() === "content-type" ) { - s.contentType = s.headers[ i ] || ""; - } - } -} ); - - -jQuery._evalUrl = function( url, options, doc ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options, doc ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( " - - - - + + + + + @@ -70,7 +71,7 @@
  • - View page source + View page source

  • @@ -79,10 +80,10 @@
    -

    6. Citing

    -

    To cite ect please use the following publication:

    +

    6. Citing

    +

    To cite ect please use the following publication:

    -

    Elizabeth Munch. An Invitation to the Euler Characteristic Transform. (arXiv:2310.10395)[https://arxiv.org/abs/2310.10395]. 2024.

    +

    Elizabeth Munch. An Invitation to the Euler Characteristic Transform. arXiv:2310.10395. 2023.

    diff --git a/docs/contributing.html b/docs/contributing.html index 9e3374e..4b5c41d 100644 --- a/docs/contributing.html +++ b/docs/contributing.html @@ -1,23 +1,24 @@ - + - 4. Contributing to the ect Package — ect 0.0.1 documentation - - + 4. Contributing to the ect Package — ect 0.1.3 documentation + + + - - - - - + + + + + @@ -51,12 +52,15 @@
  • 2. Modules
  • 3. Tutorials
  • 4. Contributing
  • 5. License
  • @@ -77,9 +81,9 @@

    @@ -88,57 +92,118 @@
    -

    4. Contributing to the ect Package

    +

    4. Contributing to the ect Package

    Note this is a draft document and is subject to change.

    -
    -

    4.1. Introduction

    -
      -
    • Purpose of the ect package

    • -
    • Importance of community contributions

    • -
    -
    -

    4.2. Getting Started

    +

    4.1. Getting Started

    • Prerequisites

    • Setting up the development environment

    • -
    • Forking the ect repository

    • +
    • Forking the ect repository

    • Cloning the repository

    -

    4.3. Contributing Guidelines

    +

    4.2. Contributing Guidelines

    +
    +

    4.2.1. Code style and formatting

    +

    It is essential for this project to have well documented, clean, and readable code. The following guidelines should be followed when contributing to the ect package:

      -
    • Code style and formatting

    • -
    • Testing guidelines

    • -
    • Documentation guidelines

    • -
    • Issue tracking and pull requests

    • +
    • Use the PEP 8 style guide for Python code.

    • +
    • Follow docstring format given below for documenting functions and classes.

    • +
    • Use the Sphinx documentation system for generating documentation.

    • +
    • Always include tests for new features and bug fixes.

    -
    -

    4.4. Development Workflow

    +
    +

    4.2.2. Documentation guidelines

    +

    The ect package uses the Sphinx documentation system for generating documentation. There are two things to be doing when contributing to the documentation:

      -
    • Creating a new feature or bug fix branch

    • -
    • Making changes and committing code

    • -
    • Running tests and ensuring code quality

    • -
    • Submitting a pull request

    • +
    • First, include docstrings in the code which will be autogenerated into the documentation. When in doubt, write too much.

    • +
    • Second, write documentation in the doc_source directory using the reStructuredText format. This package also supports writing files in markdown, although there are some issues when dealing with autogenerated content so it’s a bit of a mix at the moment. Note that when the documentation is generated, everything in the docs folder is deleted and overwritten, so do not do your work in there, it will be lost!

    +

    Assuming everything (TODO: Add install list) is set up correctly, you can generate the documentation by running the following command from the top level folder:

    +
    make html
    +
    +
    +

    This will generate the documentation in the docs directory. You can view the documentation by opening the docs/index.html file in your browser.

    +

    An example of a docstring for a function is given below. Note the use of indentation since rst is picky about it:

    +
    def my_function(arg1, arg2):
    +    """
    +    This is a brief description of the function.
    +
    +    This is a more detailed description of the function. It should include
    +    information about the arguments and the return value. If the function
    +    raises any exceptions, they should be documented here as well. Math can be included in text by using the math directive, e.g. :math:`y = x^2`. A displayed equation can be added as well using the math block directive. Note that for certain letters that are reserved by rst, you need to escape them with a backslash, e.g. `\\f` in the code below.
    +
    +        .. math::
    +
    +            \int_0^1 x^2 dx = \\frac{1}{3}
    +
    +    Code blocks can also be included using the code-block directive:
    +
    +        .. code-block:: python
    +
    +            def my_function(arg1, arg2):
    +                return arg1 + arg2
    +
    +    Just ending a sentence with two colons also will create a code block::
    +
    +            def my_function(arg1, arg2):
    +                return arg1 + arg2
    +
    +    Parameters
    +    ----------
    +    arg1 (type):
    +        Description of arg1.
    +    arg2 (type):
    +        Description of arg2.
    +
    +    Returns
    +    -------
    +    type
    +        Description of the return value.
    +
    +    Raises
    +    ------
    +    ExceptionType
    +        Description of when this exception is raised.
    +    """
    +
    +
    -
    -

    4.5. Review and Feedback

    +
    +

    4.2.3. Testing guidelines

    +

    You should always include tests for new features and bug fixes. The ect package uses the pytest testing framework. The tests are located in the tests directory. To run the tests, you can use the following command:

    +
    pytest
    +
    +
    +

    or by running:

    +
    make tests
    +
    +
    +

    Get in the habit of writing lots of simple tests. It is better to have too many tests than too few. The tests should be written in a way that they can be run quickly and easily. This will make it easier for you to test your code as you develop it and for others to test your code when they review it. Take a look at the existing tests for examples.

    +

    Note that in order for a function written in the test folder to be run, the function must be prefixed with test_. For example, a test function for a function called my_function would be called test_my_function.

    +
    +
    +

    4.2.4. Issue tracking and pull requests

    +

    If you find an issue, please post it on the GitHub issue tracker <https://github.com/MunchLab/ect/issues>. Provide as much information as possible, including the version of the ect package you are using, the operating system you are using, and any other relevant information.

    +

    If you would like to fix an issue and you are a contributor to the project, please create a new branch for the fix. Note that the main branch is protected so you will not be able to push directly to that branch. Once you are ready to open discussion, you will create a pull request. The pull request should include a description of the issue and the fix. There is a template for pull requests that you can use to fill out helpful information.

      -
    • Review process

    • -
    • Addressing feedback and making revisions

    • -
    • Collaborating with the community

    • +
    • Note that in order for the pip install command to work, the version number in the pyproject.toml file must be updated.

    • +
    • You should also make sure to update the version number to match in the doc_source/conf.py file. This will ensure that the documentation is updated with the correct version number.

    • +
    • Be sure to run make all before committing to ensure that the code is cleaned, the documentation is up to date, and the tests all pass.

    +

    If you are not a contributor, you will need to fork the code and create a pull request from your fork. +Note that all pull requests need to be approved by Liz Munch before they can be merged.

    +
    -

    4.6. Conclusion

    +

    4.3. Conclusion

    • Acknowledgements

    • Future development plans

    • Contact information and support

    • -
    diff --git a/docs/doctrees/citing.doctree b/docs/doctrees/citing.doctree index 847f0bfe7f0813265e4325ccf3bb0bfc200042dc..07f251040af0f094e8957051fc9e622fef99a109 100644 GIT binary patch delta 785 zcmaJ+LRWZjml_T8Q7$vd6GT1k9IpzOU_{ohB}6qbf!Z z5JsH_5?o}Ti6yL@EMuqsA}(N1XdZ^m!SGvvozdDPD;{ng#cQ zg*RY+gVrI+qDL-p`5)Rcazvmh&Sw6WKQ_hTmT@l4jE?gVi6bgmSdOLG6)dGzP74Yb zpbAo+FDgtN+(KmB(#61>!%{H*j52zm;`e^!?yM>kSA7$O1B=qL^avX>SYpc(%Svo0 z0I(YEvDnCmrYLIzC24ZfS8X<7@XHU4(zGR$<)_O( zy)LVkFS0p;osQRbh}-Q{w{f?Hk>{z{Fq3qN(-!3k78}+esbzxpe;GeD?Q{P}_+#i4 zJL%E7C$mTW4$5Ff=iermav69JJve|p%AyJ&yW2h}|KGsDYYGd>wVn+99#Gn!ow}p_ E2JUSLVgLXD delta 674 zcmeB`eJaJ;z&bUGcO$DYqkx<@V}@*xiGD_YZmNDxX4T{*MosSAlqng~89W&>8O)O> zGuBA3=VX?o7A59PnLI_aaZ2qJjSSWv=G5ep$%afW{BqvR8L}BVKn?m}4HZl&>`<}E zkC{}2GT1WMW2a>3!F4uHp2zGatdUq0ky&PCWNc`lXJ}w-X{s4LxsO#rFjh~&$iT=% zZwgqKSPx#+B5>8MQy>nL&Ip_Qk3~(iG($T>H$%>w73#KNu-opj$?$??0%0FFqwTEi*3@#6%7xCPQz24dCNDVVk-W~c+D z>NR7hfE;}h$5<`IViLqk6dPTWN_&J* zJe!x83$zsId`u^2T)^tSN2QZr@~9|ei_@% diff --git a/docs/doctrees/contributing.doctree b/docs/doctrees/contributing.doctree index e77c2a08da7ce41467940d05030411844f634742..0d68dd0a238c963b7bedf9cd6b9497013ea1a6c6 100644 GIT binary patch literal 23167 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 bEa|x7((cY7`u8b_FFUkysUV+kq_+PL20$+W diff --git a/docs/doctrees/ect_on_graphs.doctree b/docs/doctrees/ect_on_graphs.doctree index 573d89271f7673224282425c2c10bac24051ca4b..3a7c7654b8ba72eaeece9406663924c58aed01a6 100644 GIT binary patch literal 113803 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 literal 62346 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

    Xb@y4ZFiY@W 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

    3Z7&IROyv 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

      }+1@oPRsMVdE}OEF%o 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 ayB$9P=N$R76Mv@MbLHhcdJ$eQ@&5r#;651u diff --git a/docs/doctrees/environment.pickle b/docs/doctrees/environment.pickle index 103c59cb986750eb898a3685f363f6fe080eb0bd..273eda03c083b5ff11928eacb2867d4557223a40 100644 GIT binary patch literal 567509 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ðT>`1mM(d}bYdd=5X}a2b5O z1wW2l4j=d7$DS+T<4*ke7=ApAA1}tUA76$acqo%a$2egn9*b)CV5Xl%xq+w)TckZd zhCn^#LSV4gGhq8KlrA~I{yY=@9Gtffu|MPN&jkB3$^J~UKNkGix!gL8f0kKA_+ype z;}~$A+vlw+e1&%E?9UPSv)ek#e$3GiFJusIt_E+-KS^->HJ2NrK!V=_o#$e3pEpAv z%45@B1rIRd{s#b+9tsEC34a3)OV-#ogUD>%j^lUDulM?9eTuh~I|Ggg;+6Z@tgCWqZ^< ziO?nf=s|Zz6C#5LrujN(A~0rV3fMw!Rlb<3)#k%jcKWZZci~7##=RTAk&L5n@nziG zka8*G>YezFrt&fTMwE++>QC|4@8H8f_KfvexY}InSlzuu%s70(zTpoT_5(TV)xa5n zjlP!tFi=j<*v!H+1{xQQkk~4I(@fwywN`Fa^WasZIh_S8`q+HNIvf51b3cdvH0-6U z!eFd(iHV;_pXcL+C&5>{e%7<$_ipRSbnhbidPBYa@ICtbP()wl2Vr5xiq*)9O`1?`B`75EJ2do?5H%xT{{CMiJfBNMr>k|03+qxKgG4Nv>zOWrXE~7h_ z;>C6NaU;HZ+VrQ6TRZUfP56<88xL4l;q4y$xEU@Ux2}M%$E{oN`Q=tO{kRbCJ{dnQ zqTf$}&j+jwexH6WDkx8dr*~UB;Slp1($XmEUezVY=5;Hz+>VLgprwC-Skp3eS!7;ae~z#&_A@hit`*2`fXkImC93%OEl zQI$F3KW~9y9GeHk`WaN9vuZFv58Ch=m-k9;WUTweJI!85Cf#h@2!$=H#brBTn-3uSOK!QoLg+R?(UIwwcA066%g z9BF0?E1z!K=DvibS~HO9Qc-3P$@ep{VFKsMu(bmaN5|u{_U6Wmv>Rw!xm1VKKY?p` z_1}>D!X%%P?j$)rUKniH;uBvDlcY+Sry+iz4_vI1$w~Si!0_hkdO2UOnx^cb2jL-9 zERb`7z!CHxQQ2VtM=sJ_4bZ9saxr!!6OfWo&>1Z2K>W}#H8!%?b)(DN^x zZ?4|O3gN=H8T%VtJ$-KjveFB1C=qw07tWhF7TN(eS%5;kI9}^I1n&*_aU*`*j2}DkV>f)5&C{T+=!99R zPtWgM-dvr}RgfxSfDV#uo^P(4DwfCRk2g=9E=)|ACHS_+?!~=u8cP8MXzcpGE1F&P zLLIsmf?W2w84B(9IW-VVWumu)KU$`R>eHo$A4k1(wHtd<$c_G5%L$}k>!B9W8 zhhh^p073K;!q<#iy)ijSl7yW>uchiiqI3Q!}^Gs&}}Icvg$W<8I}06c8^ z1kwpOegPGZ1y{^9@MGvBVM6YSjPOL<2tkF*cfjtR8Hi>9s8Ri5ngl8n)20E--ec5E zbF(PkBEBO``6cb2@&%G9e;VYIM{#XF|HfkBUZ|lA=aBA#^XR6t#@3Q?OX*0#RioJC zm1=6%IFzgID;(K8FxcOh?e7~L9X76+uGcHI%^No4sZJiLvFmbfj@EWp|Pwn z&^Iuc?Q$XNSL~kG0i$yUXUD^Lq%$PZ5BNp}LRf$2Te6MufbGnKxmX|XUode%?@$a# zhbWsXscd&M*q!wQm{!whg(dU0l>Rb2%}^R)1+@FmKB%mVfN?GeL~RX62RPb`xYR8}_I%7i&%M!tLdJ1M~}~6QkeMPf~UwM!CX5HYD9{6n$Lu66$4HV@Jt>wvD}ed z0Zt77lQjqamqRls_274Q3eMtgjAskw4d9sJ%q0B&29RDZH}Od=>y$wt5M~0~LStQo zk%)X?CAJ|^kOLCo>NI9SOzFJv>55}JLoqfTe&PrRS*J`yTJt#|2zwcp^cKqKf(wWV_c;-pNXiTPm8DpHw2sAp2WRH$- zs((yHq3C({li?q1b@`29H7ax9=ERIA6OMO3Y~*3zJY=6uQWD}JG;dn2lJjnDgX8$< z1>JlM6!tO4b;qL0wd{0#rU;ZOS1_Nu=wowG&gK;BBM(TV$x#JO2KdFkb^+R%4AU`J z;&O_^+^QI+4pus>gLT0e#qJi2LKAO-d<9_~!dIS_I>x$S^syl}Tff@mTov>su8%$q zM=fD7Y(^=un9CW9873&{ET%S#(HXFH)2U!*EWgrOPTJq^(_U@nDC!=;)R^Xlf-=zy znp7{>r2NYwJ`BY{ylR)vdSDQ6v|F|EhdNMn?e@&=X2paMN-2+iW+4mb#ZiGnH(3hFNu2vNj)#+a?$AFA2_$KMM{iohA5iTyTXg!BuPt-XFKk1WRz{A#hgWrkG-3T)qxp zQLKaa9<2kOAZNEIF2*<7wHRNE3%Ibw=wXZT<+yDoSd7z<9>#Nr*I~Ylust^fsc#I)eGW17IWF}t3O39o%FaHR zmQQXsyU}4%$>k5{reKE=vk~oRIBYd))G(W)QmFW1F_GUArkxFrE{Sjnqk#cN10o!7 z+N%YXq`4O61hFTI`WxtA5Ed?QmraAUeGSZ_Rc4y#BIaq&%~fDLLyqL}>6bTGj^}FA z^UcR$WU`2n(J?rNw>A%{PmE6907LeBe}`n#6E&{p=B-6A{!0*6J7N~+dW^YpgBCXr zhw+#cXR4Z&GO5ZA5ZF#Ji1!PSNYaq7_Pg7^_M_(N%g@@IT{eOs zck?q`@m_3p3w$Zi?OF)pV{%L{kSHbT`1^JqfUE)M0mT5+X&8EL{?%I>kSJL78F}ti z0qyTk7wtKxe^#(z52wE&gwwxu?=(2&^H8|PI0|Jnk5&tHNO3X7=Zr(Q7Vc$1Y3^V# zooF>VgR?*#=!rLS{4_62r>L4WGgr+|LyktdQ6YW;yFtOpU#{jLRjQUX_LyZT@o5~L zE*sOiBe;pxPLu-a0;w8@fV>Vl86d8Zv0Zdel8#tZ&t4jYg)3JAF1ahC&sJoGr@K%R zdw)pLyN)n-JZ+wSn7i#l$K4jPCXTS+QCkECtiC^L`xN!kx>NNz!cGS?=p_^g5I^2B zoLd6vahKRTa4-^=m_1O^l%AG4Vu@>{#1NlJ&|F1G=|Y4CxB_(qfwDiA(z4s&;m!&# zTu$etA#|>qkDrysjALwP@x&WiQyc;hhfI*h{|}N? zkj5|JG#=j4wGLD)ADOQa)+0db?6zSqmpsV!V;q-++}W5@Le3owIlo45&|$Ln=(wr- zcfkebauj@UI*pSD+`1Xu;C44*rmj77KVA6&(_EdiwG6-Ffo$BX0%tmBxJ{<*S;2<+LhZZ-CgeA5?;!P|QY~A+yfHP@PQ3=R7X0*3T^uam zoA%s#WYDm)vyEO%JEZH*70kkB8L3dIqX3ED0tnjDg8``%LLZ1*Idv&^y<(m1XV8b3n zMYn!r5qh_)azg&hUFLYLP`9J@knV{rKBy6blHOw+x^V`O)wl*f>*dX)q`{-t&(s=O zbE2V2so9OAXVTHu!q4ywLKKdBf-`lI(=T?LS4N+JxRk5yiHm*TrRZCSFdV_`_QFK+ zMJSS`Kn_Y|1O=?DU+XrQM3y!r709cPvegcVV$ThM`*WRp3Wp*Q!uBvpr9Gv`R|P?9 zIWN_~G3ss=;iR~Tb15&P-3MF3^Cj3HdGRig6OfCcK0RuciJb-(&AlvHvg0k6%A zROxTHc;l2)|H{90+)DlH6 zZ9f%L9Qj)9JVj5*ZMysX&&2$+vuHc<(msCxgT_980-a}{|5kYY1l;Fu?@|xlbDpt2 ziY($I_)$PinZ%E8;m0@d;WqO!V9M z4HMg3WjBT-<@UmNgAF&Imcnj+ifz)yI^U-L=yukcJyl37y{Az?!^3C$`tAv^`e|@V z>A>nI!G^8>z-zR{eia~z-wAN@4JMd~xX+N_f#Ga&@Aeooxx=PWYrs8>j#6*}Jpz*u zzbGH2u(x;e{@BD5g6)dB?eBs^bzxw|b2+cxm?{c#mottPU`Kj-zdmGywO7sCuOn$` zv3#9ZGc8s`1{lB0t`2Tkd5T@fB4ck5HU_gJ25d=XyM*1tyZzW?U4|>*^&PirNC3?h z>8>Al=5Wy1`{^%*p7hkZfP#NUeQ@y}NU6x!fORrTY_c<}>*dbI|a zZ7o92Ru2mR-x8dIOM@|Zb{N3B7%q;sAK*H~qwquraK%qX{(hQkDqcnyuv7xK6_!Yd ztm8Wg z1N1cjbidFX*jsi4rXww@4YoO-i$^d%a|UD?%@m-Rf}0iN0N>Ms2>fRUN8{3DOyIvz z(PSdv<5&Sa#CR_4Fj4 zOR0<1m=}E?UP$ykKO9G#4UU{Cvlj ztZRfu#1;5?a7amI>u(fICRza;t0P<2LA@U=#-s#;!247)_0wBS;d%+9W^tKAgzH(D z9n6;%304rVA@{u;>gD?8$Z5^A793g4BogLK6vZ_ zUpP(=AEyV8(?iF3w165TaZinr-A;{>{*R4W$gCFkJO-pTV3Lof7xz7_;n?_h6VuMMm~ z)POwzf}KAQuEW!+1tcy>bXT_PVK&cTA_=~v!^hF#33MJE{vdsMtIDe z{yxxMD<8T3StSVJbj~VyB+B?=oK?a`s5-0Ud(d;}StUP#8tO_6-;A%@1`|ItVLjd=X=ooMawS}lOTI(UV#IS2Le|!Ddkaf#Zo@eV zgsvju@-f8EQKo4uN%%MtoKGF$WbpUNs-eNTc)1=1OV@wn;(dn0dE;O>=FrP%@#==QNanm@XG5 z=3ji;@7TZlZO&Ce*pcj*!EZ#{^bLhlb3C!^;8jMql_wxfv7;~r$(*$vQ1>QVsLYkd zJ;&;j(`+?H)WCI<94Ne?k3HAtsOD=2I4XE30P5CZ`Dk3RY18=+LlVjX<~+hOVK69eMrczRT> zy4l#Zb*r%pwuwz+Z7jGulc7slP3Ur#!4csla~Uk$8uv@M8az zbr(F&L_qS-Dn_J(#X zqC5GMD_8C}4*H@$?2^|-^lO;D)J4=h6^c~MR4~zN9&{r()lhJSHcvwptbqZ)>DvN8 zpfZ6Z{C)|2@Tto!!_YofnzNPa{PYX$rTsa!MXf#x-x}l7LwLsFgt-;G;Je|k1b%_c z)6YX%Pq|t*sMN3lWyeaDF8dO%dYi4xVf|aYT`AVP)*1E_b@01a%H>j57hKL(^LwCZ z&`d4cs9<<8b6=MM|1QO7T^8gm{JnHD9O&9Gd+5eGDNTr!;ji}Aj zKn2H*&4cp_j6DlFjE%7l(OCZt7z#f9I@ENj!fBOHFoBfjAn;H!YrQNUGY<{~RuN$> z_UOTD2`9}oSC__VzHmxsX&jDLwp0HnvmpD-W=K#>V>Q%^bZ?AVyS!EMZ^ zS4Dr#%OIv;R8lEsT?}_yf;1Xqn1H5|Glo6T3TF%f4!}Sy;Q&^@bT)bM~o znv;>KuXLQPdS-~Ano#HjcyClz`3eAWT58IJ)RvrXWYfto&2R-AaV+XI%_m<2``)hY zx?ZPFf!7!y1)I8mF-pM5FsjS`=9O;ZFE(K-l zd!cLx&RcO8Ht?EW`IkfhhF7kq!E0$;fD>_Ti69Pe$;Mgy5$q)!5})ixN! z8M{}#1O9S?0k1^WHrjZ1d6!ti(K5|5%8k0K!cD)x3kPC=v5GWUe^6MuhzChm=mhWy6H*P2!a0+a#7PB{Dqy&j@^erJveq!Wy7KVo z*pWiDFad=jw?Hun=LnW;ekN;Q7aqz&Cu8HeiA?v=X{d(L-P5044?aU`2TX+=>>>0w z1ENZ+ub`%ybRPRnUrpaWO=dF)mUZ6S6EGa9C`E zF~5Lp>lP)JBsbW0BtZ_T!L|)r1t3K=*!C?yW!bVFz$(zCRhYq~(oDA<8QK7erjz4G zv-QGc_xdh;Xh(K0`@3Oaco>2dJH{ppB`gBE1srKmHoG#H*#S@5SNHGOvZe1J+#BfY z>+1qP+D+^^h}_o3iiN`_J`7jg=lbDSrCKP}GdE>x(-4jVj<&24^LV^+I+kO#s~4=coOaDvWTHwE84WJw8e|;P27GM149l4DaKc^+LU9X1e#9H9Rc>z(!YVaMS=i${`Ee z5$d>)qPxeKs1%^r!M?uribu^#4IZ7$718>v)h0i~@%y8N>uEuE6t`P{Kx}-*1%g3e0gOD@;*fjwRuVuE5+0ttbR0W04Yp znVzHNdBBDj)4BTmc(PLFnNT@etk*|3iJBy!wCp#juscp|K`?0TjvOe{w~;-miU&z2 zSA+y!uNz`#HVa`Nh;eP+Y-F<=;Qw$0Yz;r^u;Z$>p)}4M6dRm8i`rNq?PqLwtPh#I z%Uw0noM_{lbrbGpy%&adY@Uv+qYJg>nM~y6iet1r?)t<7w2f@q4M)+4w+nR0{5Epm zSjPG%SpUct{9E)fz#;AF7uZ966AqAu%5XqJ%^B-a7+FH~w=*pEm&PM!znK~-R`E@M zuGB4Iu*)04b^+*j&ED6;qT_0KdH&V80RwDUwPy2{c?%xd2*G zkO~8igjCYg0N)4;u$UU)AH|~*sge}RCt0XXM+4kXsF{uixR2VBqq%G@8Os-V+IPwF zWy@HIEmy7P<}&;DgSVl_;2+s+*83A~9At?*koMEAXR%L8A8KPC5ypOSeOR1v31kj_ zgrEionU{^$0bQkvRh#0iZ)bY)J&aQPXg>>RuM={W5XXH7iWB8}?O0?AN&f}6MH#`k z4|s@LNyVwX0LaiXM7?imCFK0H?JMCW(ift?x}!Ya&Wz%yg!rxp*6BT{?d!j66IRcRa7FOrKKu5Hh?nOgQ<0Ae|fKCi^Gg5R&SJN%&8n)&rk%lmZ6r` zgB}IX6-xF`2u0zu>x?{X7=^P!nFE-vL90E`18aE(cE3(R5=jP*^qMj=tkd;9?k{+7 zJ?oYY20weTtI1-yT(zIyFu)#Rt-@!o_W}5g4^ZEeyK=R|&@;_pf8W6?vAwJ8pZy1~ zglFlw?R)LvHH!5D)KvwD(W`bdRkPlxmW=ItMc%#y>UM(KtMUAkl5|t_?tCu^4Lh9O z`XaQ#y*tgbygMv%lRzKyJD1yW0=~h55xSJ+pH%MA?=K+RUwe(hq)j1Ka3-{$KHEPX zS_L3Qb&u|Q5ZJz*S0c~N3rnXH(^c@0CoVOBtyT)aOoQ1dJ(RryOp}sW?EF8L#*xRw z!tq=+Gg*aWB@5-!mcDG?;4sLZ+ys6dN-1qYk}lGrIV(%+v!T;+io60Qqht~(3Yg22 za0^$!oCU3L0TU1~_! zJx~1bIj?h`VL~axJXLQ({1pp9xw$?%{KX~=UbN>8!G`%%cb&4l?TlSLfYWdQGS-&% zzUPMl7SfPc3iiRr5!P74iy)j%oJ*QyoZ0Cd$14EKRE zzON<00!MCGe+8{5^gf0ZQX%4VAv|>1GB6t9pTB^L%`SM21|_w&f6I-s`(5WQB(peW zOM98c?~;NBY8Cj%4=8&{Z&t$8=xbkPHa8QhXmpLDk7xNog@ z@9%dXyw;%IHvP1drN_w4!mG6LqcM(t=~|}0XP^hV!ZI>jG6Q`*8^ITxn+3luG*7!} zoTixjVM{lh|1sCS{%ZRnY$UTEHuLn*f5Y$>|Lf~J*kkM;*woiE*w6mM@9-a7&Tr|i zniH^frFeA95NoJE&>OzH8Q;Z?LYtvYd=d8Wxcv)~eF=KvTD69rmmy!MB(M}2@)Mz> z*kajb$Sa{01w&?pCt=7shPavqu3Kz{?Xs9WSf=BpWs2Vj%afMIbpy4Pf+>D$8e2E| z2a?+2cld2_ykOhnTVwCoaK{xe#`g;Zm$EUwPk*5u8V)hW*-}f$R^J#8Azs&vYqJ9_ zq-&3%*Bg^;eKF@|q&*uig(YgIo%Lb?ztW=m7ZGAbx3j(k1@llN0#hgpt)c2LgioxE8$(~sT`XZTjjVqChuyu z%JCIq7&_j$rqpix-_(|z`N-xH*gVjD727!=a*O_K-@r(}%PqRPWW1tlcyQC;0Oa>T zbv$4dX02;TbaRMkf zkl$?d_K%K)ZnXmqco7<|O|!F$*mT zRa|#MCTeSw&lvc$PdVc{8*h+s!3aOh%wp4To~`acJLg z%R(f7|4lC$-l+snin{q7N#Nv=k98fiqR`D5*d!E`o^D=QY~B2xm=q+_XVY>AK8Mg& zi!(||;25=)hHk!}>E;WdW4E;@FWJ5hfV0rL@~kaNU(FWAuPeVyM^{dHEn4fm9XC4f zYQ9Icnk{r8jVi*s{y@EgyVG42Q3$2oxEFqZkpO-gy5vg*@JXbMrY`v^A|@@4=?Fum zF3Gs3WQ~;mp)&B_^jB0W1OG3zm4*y_9Fu{4p{^nSO)qV&xNhMk z%^Pe&TLyiD7VMWaH|R*3zSbM>n`t!Yh1oeOn5D?i->Qbw@;;FT!*A~>FH0~=4X*ia zVUQAzq{%fO)2FdWT$9n8bc`pB1^$7Uyfc;sewPx@l3U<=q5bqN@TWnmIu&+w%TcOv-7u<^6g>S1mnK zs&%}E+Dbv|*!M=LEzT5={Z1v5UWkZghet++HVzI9^gv8&(`a_n=y3nY;HD8?{>9iI zcy6>$_FSLX-lnkUywyvL{l>uXXm)5|V0duj$R-#>@6b@Tzi(*Mz{dVT?;wKD4N9Kd z*eA9(%%3~B9%{2V(}xKgkmrd1`h}kOb#VmvAbWnu^Sn46u-gV;8u(|_^U!{NeNgC( z9;D|7`wmKn$9f$McD^4+Pitow_U#e&)FyB5_>}XueVhI9jxjh9m@SSE+Q&Z|*&hKl z@H%XF_1u=$Ua9k0mDEYmxAjf6qg#2653DS|Gyks)$#x5sca`~ zKVmiAhPotWJ>j;us^_$c2lU~IuXv*|LmQQ{6h^>un$!sH6nvo$@A=x@hN#0k|;l!@w@Wh2A`&~+GNgnolY7!)o z#y)O>R&~gJwN1c+?$>m$ddX)}36K=YC!Yi|F8SOBt#InQB6 z2L?^2S1sm1yhQ(Q0PR9M>9072ZEAZbTUMWwzWEUy4}F}Kbp3JhmNV1^B`odQE3qz-(h+N>lz0m(+0_bZPzQY3WC6ZFp@O>MRv=-NQ1iI4j zWfDL-#*@bIy#}Ru^eU5UcjXRamB~sW4+j*OzRa$`U4~?KZOQ+JrD{uU$zKH<_UJ1& zv|nLT58&pQ3RA4y!t=K(#A^z^g>#_&^nD9wL904O#-!t0*mz|N?}Go(kOc09h3eGH znfsK>nWBl*n`B)bj%qy#THz*=%)`J|TgqE?Jq$|fYk#dsW%s-GE+p|ERANhV55qH( zAc@r2x(iy>A^wM`f@3~c$0A3x&DZe`?%&)4l@k4zyqSI!c<_GI;D89ooyc#o8G}=2 z5e~Ya$zheo+_+iX(v7F}+;^Q{$l#5PlD(MyIOhsiFqKg6^R zv5zu9`~4yJ==ejf(F5$Y5q6&~LjT?s`J!q?QuIX}RXB+No>AP(u;V<{i)P}$OT11gAGD=L*O ztEsI{si`~AH`br6l%`zLeGokM$L2HE%bDl?mF&+v`}1n{=e6{wxuQ`m%v-m?59{6$ ze9O9L5WeGu#5Hx@aRqAX8UR0T|EFA2_agm;=A>&6^-XZH5A*i3rIrw^eofsF+UX3k zeNIfWjpbju9hOL{uB6~!x=p~Zw5a}8LM*vP=?6t_ok1rAp{ujpsM}}E!mlnoDZtK6 zna)*AJhGP6#RWeUJ24iYfJ_xQ#4!9;KizUEo`Q1=(4SYjA6716il*OmlGSub+u94Q zaMMrbRbp!_A@|fQz{U0_HDeNcyY0V+h{Dp5(XXVolzpt zh0kj?RI28+BKgT5^HR&qnx<9sEKgpOkK3P*%kE1?yx!Uv)^ zjCDw)NNT$Ku1_EnZ*T5whye3=*dC54MPwRpTDh|~!t$gg25z9X6 z6{3b;+?k0ci2mzd7~G!#1{!wCR|F79xVNUAvX78DeLID5CCM01is;QZI#jlNKz~K0 z(VIV^wmK$yGmtcTbHE?H!3)WwH_o^M(VM>k_;F<}<><|4^cULE4?|8wWJ@g}*pn!F z^Szj4>$9e#orw4=SR$#ql7eI57Xp5zrBVKr5KFF6`arR7ClJv(<4&_$gY)E#qlNl3 z#c=FopITQJS;cqMt7!c0uXZ1(6gCWjRb1^J^nD$GtKB2);z9n}4t7X2yjm%YmEnl8 zG5dANPu2{-X*WgP+xg2q#-NkR%)i1Gu@UF$!7ez&x?D91JqAmD27iZHYRs6`T-{`L zer^3`D%-^ZQp|xu7YZ{l(bQcnc;vO?YJuu0JH6rSVIceM+(Mdd)4u%6M zr+tG^ud$Mwz^_9La=1SALcM5as@<1Oj@@^Fwz?m?%)nK@jQv7q4Y+Y!{M}zT2tVO@ zm>G@^d_nd~Pvs}U+ht!Pkifm8g^Bufra!yMh66(sxRISQ>th(Ww4Fj3@O|LBEGZTa zWyfYipMyvzJ;|El&pSQ9q-tSKsxe_6NKkAp-D9P)12C1ds>hh96kt$;4&ovB;`d}$ zY7yOHOU%XfD>58eVlGR}1v$hLbE!$#n3B18?e@oSSE*+yI(64TN8Aq3)YBZL-TE)k z%M?ysrnX5m`1G8*D^@JBQ+Fi}Kq9v92^`S85-I&*tH)N6Jsd5>0lRp=^Drm z4sYxq9U2<#>mMB$92)lBAIgsO4-9VFG`gv8aMRGnQQz(1?9eDwSs3Xb8XVa)&_B4z zcRwr*q_c+RWej%!_@#DRn^I5CSYf>w@YUMGmfr7X{*+GY$zrc|>vWeBe>z@#nNZD%BL;LTz=7i+(Vvi~fd{AOpP{Ebu~d7risCfQ$Yw0DfFGPuWHPFix<)$ST?Qz!EOimwT)o6>Myk8PYVfx zv!yg=-_Y*8$NP}S6xB>)wyqyI5Lj8qS5G-423BjI3 zSu5i)$<~*u5iM)w6R<>5?`H~GD}OHFS6VLfKO@AFyUcx{*w+O_2y!REA|qs^EL1|uI?5!eLB@$2H6F-1NibE+F7T$2_)=KdE#V1I{z+(xO6*jW zHs_yYm2qJwN{ICVmUu(%u!&pS_7w7&9X%|wt;Z-=3sbb~ue(@2YE~hECqI*`0PDm* zV@C?r!bG9Qw+1fdt6?oe+2%#0vnAf(-%BY?Q(IKt;0+{wU8x+Um^1R#BwCWAGFyKM zt?--?t9KO6pgG0X`1x5HOm~u~(W#}5EOsrA7sXVfWyuz4C64?LX|7sMN2%@m8){3g z1FG;sveMfQ(mhlhsXSdEcE1M^7Ozk?xZB&w$aNhPX>gDEDer^6CXPL3&g zxzYJM6sB665>+0wW8CLJ-;jyrPgMDJ!bBC-q6U+cR8O}NyILo>{QiQ$i=P=4ex{fh z^CmS;ek>$0Muj<@f@fkv%?UdTFGg%ifDsyrI3E%aLZaDdCgPk$3{Oi=J9?P1rVo?Z zk};kXi8!C`P|a&ve?_I5mq~4POqg&eX(G;6f7AglB#$~c;|fF_o(=G8TbS@Z{e|YF zYY&xII%P|JG860KBKc&CW3W8-z zeKHg5-*+g%{!D)zr3Cv(rx9$zM4UZ-g2fAI5UeB-=d_#JC}CGYvd1;MhVKA8#j zyB$ifBl_zoCD&rfgmWXpdEKxfXah@gMmnQd?QvDnumOKRE2gP?Fi=fA?V^V93SBm9&4XSAf;nBhj zJhLS?3)uxw(WGk5Kphx(1~U+Z)P_E+wt;U3ic{QHD$Y44P(=|rWhi9C<*>L%*=W&w8BHAf!HWRX9;IZEjGIAXUJFvqL!()BPGK25*D<#*lOUWH^ew9kFOX(=Qtp;ch6kB8is(83@-Q1FT&;irS8D8P&) z^L3ElIulw^2rxE%DJ7g#$3L%H8Lu{s4+WyB=Q{!J?NrZiPJ$g$8F(YKszD9SbHdIx z5ChZUk9bwW2_>jfq^MjHn7I_S3tCZ76a%4zqS8|d&qQQiOqFm=OloSkO86k5a5^gC zOQ0LMJq<3{A9J(VML7ZBvUg-U~3VJCfA3aG8u~QioM3(7X^p5xQ3C63D8e<5?45=YO_z%k<^(&t(-aXr>;Z=C88)0{w*-dcp6{xINVbvsY@8SsPlwI_FV|QBa5ydvpDUE?pZ3nTb@utS_J%3iF9)smKo6|t85qVC?3T)~bI(|(>wDZ^ z@St4~nhgd&d$B8a;w^g~4!ot7S*!5b>wN%z;{)`>Ae&n$SMoHrbsXIE(#Gg6Ym7a3 zZAe=*h3$JM%180QIhf;2qgXFgigU2CG!A-|!D9Q~2JS}-d58wie)! zsKIym7|-PoAI()KYL{GR|Bt#}XY6X!>c%uw)i!DXLU01hBYR(&#VlGAZ!eA14=V-jv#n1|OFUStqW>V0v71}CbhTII+ z0QfY`P*cWMi++NtUTd|e{af?YO3_^lsTAdv*s=mZnhOPK^RyzIQ`*Q)ne)@PS%0z` zAp1V}up#{h{7sNPlmtnne!GLvs*X~$8niOnxeWr*J?n&>X~GmC1NL(7rvqGj;lR?K zUO36MuLnNx2OQ;k5abg{Ayxta4^IKPT5HT?ie_#yn>UNa8Y&Z{RrJ6yBZbhz?WmB0?O#lC0wfwuT_aZgvVM}ViVj8)(i-I-d3)}ebAHs{lEDb;d4M`xf6 z4a3^dq+kZlvALcZq<P%t_rFydjqZo5=gKj!q}jDtk4+4*6yp& zL2gg#D&>j4J(15)Y1xY^>x50gJ`AS_=hBGE;u2#Bsaip+j(Fw#TVf10Yg=Lr)svSo zc$Mg9Db=DBmFT%7`jM+do6rhZqHQINm$YE&l0z3ciF)w+gTs;7cy6YQ(`=BgqbS2;T$uvXs- zRxWqkvk=g0)oXc&7p^IN7c|pmTYB(9@&^eZsS#m)hX6>44AP9Sew+wQi=R58QW;@o zyj3zro#F!_a?*|GwK8{gXXimEJPnK%e zZ|^jMO;~*38GeGr3uzFnr1-$$b`tEg{z5AVmM!(kOt7EnP=bBE{yItt_BEYGunCI~ zZ1)o^UPyyrCB+9m*iM3dpZ-EC2$n7N$xN_c>QI9HzWzE&3HH04Mz9Hs4;=IpEM7>1 zVC~`q4=r1^d>Q_;UXML--T0U7q}-qBuegG8*_xlsl>7A#rQFMQrf1AvLTz=BF*}@W zm+sU3l#3VApj+p2yp;8$AP zsvaf8lBZGlK(TMjs_+bAD%WLVLNKOIx&^!Xdxm>p&s5dK?9#o}hS`G~U}}YXaRX3h zW6uEWY3hQwv{7)jVqpfdS!&FfRR~gN>|A6w4H;69VRsfK=20GQZq}^rFC1i7+L4qD z32!GrPVzc`3i3LwBxLbv$`O_vQH7b1^z35lv#2W|7%{kPTZ*bM#$}p1(||>;*EIL(bmAbR#$S zSSO1a5_;*hKHocTTVZ+3ED5;%naqj$(aL2GukGhg&E8rpvg~ZsDP zme^^}puO36iJb!BFR@c4<6BgA>P_Wad#g$XPcd8lOz4PvQ#EyQ$1t;g4Z61?Tb-%q z5-TmeZ1qc5wY{QLh=J(I#ao91kfokytY5%x)v)>_(pS>TRv(2$)?8Ytb7dp7)iL3V z{-i}lclwvQsnzgI>>@=}yeE2*qH}KCwhes@<&tSk6sl$(tyV!PZ-zg@1dUy& z=!J-nV%;Ry<)xF4Z6i7_RP?-H!yZ;S(0*R69>AuUyxQkRidIYWZ2*gQdeq*Guui>D z(Ho&vojv&`aL(YK{D`%M^ju!xR%50X*t;8ty1E!4nl;+RUo4brm0aG;*llKKpoS4t zGjf0CX7Q)n1}MelMjfeXi$S~p;j8nm_!!W*?F3=e4jZa{o9Me7_Yqp+%;#rd?EwS+ zkAJZA0J#a_IV4{9aaIWj+%>t`BQOCoGrI-u!6EcmWnfG96gVDn*E`&))#r-lmhRqO z++5zpJO*{MVsFwmYdvf-?3@6{#e=g$@8o3%ob@;`SOc}9By96D|75hwfnLI`RPJt=U8q%?Q3@pD#zv2i)9AnB^P?&w(XTVIm}X6tf&sb z&_`)ObK_>wSH=KW6_0+fQH@m$fZycbLyxoV>&Xm**SU*3;k>sPL3qjmNd0Th4eTIL zU;r>IlJ5x6tCcTm%V1xhW6doF;>iLZzrywg9(GM>gWo!Ms4wqW#E-tp# zKNC~ympOIP^3eQU(HHh}ZQ6w0Vg}bV}+xCi>O;;FV+mWGv2J~o4WatOMhCRC88{01=)dP52Od%Od z*<7|;AtX}BwSEj?oqA;Gzln3mWvm|*?^$QuWY&#bu?UrIJ<&?2o?I@fyb26O?lHBs2QIYd?F3pE0vz4M5`3l^Yfsi*!bm06YCUcMWLQEbn~;?7~Uy0 z;eTMUInM`UavqsVo0fNK8!S&+`9s%JTXNPRn@dnV|EXQ=vM)*NU0Oc%<@ z5z@8C9RFHOoz!mvuH0`N+$_=&yX3{Q4=V92`PoJ9gZ5)vE7Fws_YjK7Ra!qNwy!g` zO_$3x6HV4}vuczl?E_yRlek7{dT1qM${rlVSF4vRMy`%_v77P;hZu>VOs7fjQhY(V z6e(Je|0~IwxEADxp%sM%$(Be;t(f4TbK01aWZHk)n6mp_-(5(G{ZA#DB&XP)C&3OW z#XbtHY6MI7O~DbY;4vMmRLx4YoHuLeh`R3> zTY!O`IG(mjVHS?rr01d}SVQ-Lv(6aPApY*E4YrY+^)!J` zLl!O$Bw}tjJ}Tk}lyiVl1@p3P*P}C*LaE33nwu5^i%Ypovw!X715w5 z8hlY-^3J!GV7?k&oW~2(m2h26FV3xmtm%7k7&noQ@uczMoOf!x$^?GbMI#h%klKWACKQtk7C$Jq6hOHj@a(?~YX5M6bWey;us@J&o3Je}k$+MN{1i2} zhm)*=tGT@kT2c6I*rG`2Gd<1iVkD2}%F1&*2ombpe8ze?6Iicgf9BaAVYh$aAiC$c z2h^)oMCH znYHY#@Hwy@Jf=q9?8x9`|HkqDfeEv}?~1AV)!~8kuU8HKUM-l4ik{}X-r289FnbMsZ%CND zgjZ|od%xA^JB~gS;D5 z3E@0QypVi{qcg6+4#xt(k1NnA?{J*dUuaIc_E7nGkZh?X1gpQpv17^hhL~jQw@M-z zXnzPxBu$-5A?f_J0)C}M^$!tZ$@NDcDE7S$f_CeSUAe=B(v*=iK&z=1W-&NMMZ4W_ zIt0vSF%Zv_&Y`5ruKk4`3!*m=0-`2NW5%paPgM&OSz|B6=CA5E3N?(*PgHY9je$x5 zs&E-lFM1kN&TC!!dhTXnJm;-UHCLK4GeS34^;1O8&1LT$fC54IpF1=N@$F*mz;2S- zSg~-}%UNOPigjga*1Mt2TyborlC+an0PUX;q-A7Ypp)P!R zow41_6^)|>m`v5g`62u;ApxdI&Er!PgT&V%COK1{U@^%84xPi%381;p!{Y^(t-nEd z&}}sbPu$JMgD>GfCzJ?xe9<*Fgo7|`SR?13w}`Y^V>Pg;nd%&$J6ZUr%`h@Z&vEz@8i~44m<~MWMl0=xSu)(zo*CjxrC~IR9-?=2lqMv zRlPRFpDIO1iteQkC6OVHLSelTT2Z){m`IUm7wNf|#uwYYl#i)h$XqgMxtG32B0U}V z(mzmJa`iwqmwU>NAxMh05GvvsyBXW5XjG`}#KY4~_H zHVS*C33j?cMh_FKrHR6ff&M6?4|Rx~ zQG;}v92^}|GbZe&%n3-ufsJuT3$SO-tXA=0k&-dls6*-gtZ`$h27isYa>FoZ>rlrJ z_SS(~Q<^H8hFLUc%u?N$td?i+iK^Z6xCv^3X;jQA{Dp)ilC!&wxfk>y%goOB7GDFD>VgntF7F4f=LL8-Uqs3} zkS=LmdqUFH0Z)42en+`=6~@+{)}=K_&fDUwftNB*dzykWQ*=1rqo&3UK#d}WEfJWI zz8j=3(I8s_ptj_n_tL==6VQQ1=wVJE1Bo8bLJzJLV1|-mppfBD^;J{H>hMG$9r;(qx=GC#K2a^WsITuYRi%-I8aV+yd=$hk05K%^lFH&Mt)KgF_Rm zF;}Q2IJy=y;ArgG1x3PVaux7pbss5!hq6$!3wP6Fy2cCx>w;4$akr4T{O$mh84tZXD1Et7 zki0T1eT5Y^r`ysFM`Ujgzzv~C@b1}%=uw?>`y4*@2R)n!RJ&+8f`SycVCi(KrcTfD zitKyQGQ`@~#;s;<5*95=&F?|1`K>6*4NlUQmAFUMmAJ8q=;gPUuo7H!E)gtYW#}=3 z3xSnh{lioWgcRMB<4GigqcB*zp%qs_IUdj%n4pm84C%Qk-?rFp%D2bV8Dy@#wA_?0 zBSD>xo3cr5bxQ8SkaJFz6OM|W>)2e;s21j}9sb+}ypT9|!5x=P3x`J>{rMdN!KIwL z@K*hWc4#=HIx|~p3E7@RxeM=$Nw%?6{cpk&NqwIwFU= zrr>Y5D@_`6nc9d`a`z3gKU7D>uY+Z0LqgzdEJV+i7lBsKqD zCt1A%aiVob{7E@OFIH_=VO6O6wRtKArE~T9<|-^IF*_gFN%LOxpt^-@N$=bB88s%o zvh%P*WEGt_K<_&4O|Xs{Ui>c#%P5ilni~juiMeQ*Y>txRao-0`aVFKIV?1fx_g{^v zq4*WqNcqSwQsP;1_xpq z6r9PtEYN=Y>4U5;^_Be_Mc$FPH7}vRS-AiyS`lwdvJwt~TF0Rkg%!aTMna?MSrPxR z*jB`MW74Qh^G?fM_C+ELE#52LH2OJeOHO36xdg3v^M=iTX_C}0m`pU-xWuj_Q9sLM%%VtywLrH3c4w3mH(=S=y{G-DMCr)&a#KR z^I3U^0$W1+K z$@{9Z#`g5c(>=W}vSqL(S+>VBHkNG5mgJtE?wXk{^>mMWku(+xTMQCzz=VMSabl7e zAnbu`Bwv!}7rzjA;h7LZLLdtyBtQ~)>^uTIzW=$m_HDYVt49+t`q?#Ix2n!P_uO;O zJ?GqW&+U`%u-|NUPAD{>dMia5FvRiGxAYj%9JJ+cwmge?`$m)UXd?a}psDmm?Gps% zmvCCTabPT6H1+dN-IZkmRQ7A#@QyNHNQVK%McL=9WEQ6K*)Sod?R&}W>pHZ1pV`;7 z`q8b6DOsL%Ws~kD%QM|@hoimlHbC_vS+1u&y|Bnf5APb4uu>So>8#aT#lzxDI2@i(&1~=2sG%_cj}oI|5hv9A{3(Xi$dr zKQZR^q;@+Flz(Kff-tNvG_X2+K*3#X8 z>OrSDbOUyOvDp7S_8E&+wg-8)z!aT+p*T%}{w#Hg*eD~x2eO5<>d5t>zT1b*!POzy zS|=$#h6zvv4?~04aZsz&>KgnA-p00qDi(3^jb$i9K zl)1guZ-0Rax?uF%H!xU1=(krI_1hsKX|LkCyr&;B?*n3st>xY&D?Y!$iDK4rNBwBI zj1CJcx&g!1Q}PepC>fxxJLXQkjf$>I6fvs1#z%VGKiLKD9yHzu4X8UvHjf(bI~fys z8l{Q=cGY%y9?~egLc#ZdmjK!RVx0w{vNKeLU2Vekj0dYx+r{*=$5-)qI|4)jq_ zYkMzZu$;%PQ(G(%JBO}R^KdC=3{z4(9O<4(#Imtm20v5DbRwO|CD}pkxl}Thiy>)M zG#AgrGubSDCeo=~G?!&3s^i6IE|!g>I2VfpN+u`7acnz2LuN1hOs2BwL?)BKPo)YW z5s5}q(P%84>BDb8jb#(*Bz~q+F#u1;@G~1vrjnUdR!E}iOeUU7rSLP6L2a>A96!^^ zWHgsZ=KAnE7Xxmxo9$#Nha`9X$O90a1c>EmdFU{NEANRXd;os&v+J%P9?BH zVYBIAnN+T%(o4_7V9&)?zh`7E><}LsCiVN!sK?w{%cDUz8WyxbmdV?Vu(2htemqs& z##4Ys*m3tUv=L)yd0c4Y!eECUTBeS14mISedTAFN?7Yb7V20-YP|5#zByKMjFljTElT>>-Wa?@32=`g zeJz%&kbb^c3)kwUauxdn*%{ZY44H1ldS72uxOKPi!bji^xLE-nf34|f?^R$QP$N~P-0ABM&^eOHM=Nc*4g1^=n5>Cn+i_{|rWcS5M zyfX)kWYm~L1e8aW6A^!=}Gdf{hdDhpD)K^3o(5F6GD2kzzsA+CUctTzQ+&xfZ zXApo!F0ay;e3fpuyaG4aM*vZ?GkonMye5A(1X_xSyu@-Pj$4n!I2g7dC?Xt_)e#z) zs*7{fX>!`G!pU+YUz?nyG-$Ni*f3`(nnVh&JRL5e#5*sPKns;Sr_i!O>pYj%^59t> zJmztxjf3UEQ=EqAN1nrGd1|^jFlbQYKJGfb2DlXcr`^o6s$2BKfTFoYE&fnG?K)^+ zf%!v6f14Dba~W#+J3ciqCof`9p_bofYL6$)+EIo2KMdBAN%@t_bf5A|!ON2JYu!V7#WvuSUuyu|qw8B4!!{|ucvm|NTkk2qY(nRjM%3OP`y93= zYoW93zPr#xjxO5(QhsF&{N<4u97lbUF;>ThQ~L$=NUc;K`-zFp{gs>1McM9EB+CCQ(H9U5ai>l2KyYURL?6=#mkcr z4(DCt^d8UyuIw40;&FdBe5wd7=~h5-Q9L-?I!LhK6pt6qwc_z9pAxLsipOatHiA(+ zo?x(?MUYcltV^*USfd}DiKfME}M>EX*Lz3)mPkM z#Waz|a%PI2Wpa^pDv?cQV%a{r#rkF@7LDO8y2J8oHjBa}eVEQha?w;G8H>@gbSjdF z<7C8ChCPd6i8PnaM3Zp>lgdV7sdP4xie~688A;)3E|-bZT{M!z8f-d=)zmP~Z33p* zL_8OzXGvPOO(k;)TG_=d)|Hd-bPCULmq-KETs9uZDl_h|2%JghvY9kJi{~QAToMbr zae9UWl2Ah;md-J3;&GswP2zYcdKk+_GRagrnU2Tk4lBOtcs3Tzrs*yQOo1oXk#QHz z0MiVxh@}aeXfl!nhEV{byJ!TfzsYnCtHwe&mjR|&s0MN9E)hwm0SL&^T{IHS#&h%# zDcZy64O+X7XQT8m8)u8pSRAJh(HmG<#`<$2MR!gg5U6u*d_rKz>CNv2$n*uKpg+k z9rz8Xr9lC@BVLRnS|A3tK~6$2Dq5R}C+T4vObi6l8N@2!juV0NHG*kqCsggUT$ zy2}F9XgrsV(udg?Fiij?^_!4I00g=eEJq~H<|62dY!oAaz~tgUHAYb$^e~4|2y}KP znWYbNxkxsOSdC~5&%i#wG#Ueg;aM!22Bxe&>hKtPBb7>JK`nZS?vEw1=@ht_?lQnM zhCzi$5&#YPX+w9p zNIZs4g&@NnIwKop?ImQ;84!dJ8X5Ks{0?~*g(Sc;bOyvy7A#NCFrrXPnxac^hrR$R zDF~1B(Y{o!Ph+DP2#XfPZNo#B#rLxKUKZaZKEli5ds%${7ZBfi1M@9V;~o7UJxbF1 z*K)MNo45&K4q5vW>;W&EMwYFHWvgM?YFM@!maPV687w`k!8XoQITVImxQCWS{<5Qp zTqDblqGd3i4$xoI6ww#pY39AeBoZh?H7El_kG zFZJfW71%0_e@ExrN=%$yQSS3Gttdeku*_sa}c0HJX0i+DP?a5iBVYGLzO zZ&I&#c=4C=!t$v52`7PRDX+cP%Q_yl+SYHN@C1wY4F;s1Zd={xW;^`+ohX@br`0O7 z-=ONYS&1Ig>$||zgDBl)K-57xc@(Ap>3zI)BtiMubHwqy*-idp$We1E+x$eGFrBCq zE`*gGrq|<4pI?A5#R=c@>`(i$iv7tuU7Y>HPQvN@?4Qm1>g8iN{O7n>r}i5$6ZBB_Xz|VMC-uM z`k4h(FWIaA1nL=b^I?xmB2N46%SHTbB9V1uR;*9vi?tSQ`NwANegS**@vI^iCL`F6 z65@O3k(9cQP3i}CH(8Fqn)By;o6C+pH5~6Fp2Ueh*j9e(H1R(w6&pvYJ0kp4;!s7b z;(t_A6f2bmj_Mpl{s1LS;11NSevHa_=70vy4-!u8iXNFj(&Nx_ zpCb7MW6b~3eX7@U-ry>X0^Ie~?nWvp`iXQBP+WFBaUo@%ynUY{K`SBO5#KhFOg0%Vogrz~SwRw?275W76tFcOT z&u-^#ilg(g|KR5cdFDU(m=&;26)N>!6>>*FT1-{wUqK7Ukk|mW1phP9TIH6Ywgi6> zP`#)^S6o1<(80Szp;j+XA@fm100;6cHnS|*4JG>t9U6LMXp|q60d+`sR0b&p?6rvk zDNH=$5fx4q3%Hl_r4ggb*pD=7VM8^sb+r5Yl#CL!HazFeiWC7}eAF_wSmB>OBxBxC!$ zZ$Pdh`gBe$FHjLH<4RhcX=$}d;Z9^K67Gc}irgo9kISKDP5~nlMNR$2$`~vB40DQJ zZTqRK;0#c0`*AlCR8`x)3MejW8yBc%WkT_+#5(uQyH9OTo$I-^?Q?GJwTFK2kmuwn zjvo4(7_1;X^cn7v65&R>quO?4iz9Yq=D0z|qTUt<8*}nsGgLIonjNGxXlMMCXDx zdGArjx!`FAYpG;ROC|HM?lPv0k`ezzX2pur^U~u9{HB7gGp4C{Su&=*2lUg-*MKvo zy~}$?EBc&G#x&m54g=PE#x$F;vowb72Yn7(Un@mlKo>cx9RavUK4;*spxh&$WsK#l z0h&qiwSM8wTBTAu0mq@R2MerN$0)@q6$mY8AcwIq0|UF-j0kr(a9eI*g<}%wc~L}* zGxWl!Se-)78`X4n`E&5?VjT?s6Mr0lJ|+v@PBHM$zp|d1QxEr z!-J0(DlHsiCi{CR#G~W55r&E7;3^6S31dk!tiW_TxXKhUvdnmP;Y&*-O5{9aJiSu< z>#kxwKrh~}b|c?aFW&0_#l?%q#l6GKADkEO!u37h=VGID=-i0w2mxm|);ZfE`U0D7 zJ!y1~i;jQJU@e(N$8@*HG#xZAI#NORi;fCjmPN-e8wOm!i;iFN-qFe!wpn!KUF|Sz z&!a`htv-jXNlWeQn5N4fb#W;Mu;_R(;0Ld;Uj(QgVzS$ptE+U8Mr$UduJIXs3C?fn zr@~=Zf(1Ag4s}C0Wf)0U0E)|0$O-8%rh=OauQ=CJ;gvqel+)}PRJMdi7$XNW6+XmZ zIa{$#ZLuzBorZnO7qklXdSNbv#VnkrlEZ-^v6P5oSB7w?1)V*TPDi70UO;bTa7Iu( zlat@TnvwiZyg3?G_Z{HHIF2w$;OG$fOB^GT#R)?IkAgU0W1TFGgJW>85HASh>>5;- zjHfcJK(zsIR7ot0V{J0L9LJSJGTBTjnN4J6P*_q+q_Q~ZBq98nTY zP{*Jj%$=@)3gb|eOf-d4ag-OckvI;pN#q!JP!F1!0cZ21a1u@`5#=pbK^Yr<)HbO1 z&@wyX944HDw9Jlr8Km;iBCw-g0jNXFF7_hq_Vs)>VU3G;^CIkrA+NnG!Y)hoWvQ-A z<%=?mY*$?kd*PN@*r>Xw-LkBhKz~{Siis@?>*s}6xy=g!1`dSX=Ym!}hlAT(vX;Se9%N2!vH0TK+qonD@Zp#c7ZOMNFz$qu zfN^J=$aulG^}}ZekX&p})?soe^Q-hwW2{)<+Xa`QX zQ*xV?Iz~xs_kzA1d%9?c2Q5l6G{ZsqdDNn=Vayf07R5)k1CHlKo`TsWDw`YLd(<&x zXqLeWLN>@a-lutXt$y^)i#g(MI^tsg1rYn$5BR~4H~~;S#C{$+>#$i1<8XPO zmahj^3L|25YHo z_)15+-S9PL-ta{QU2phO@v?0AdYNIs1-#+wrQSPQ8N)UkzIazV4BPW)!`JgZhppMR z?8waiFuKTb(I)_<|APkp3Mxax`xs+&Y-Vf6oxUEUi4H-18h>$apL~2@fD_oCb<CV z%h>gDD!39q<->aE8usj3cD;^Wx3jB&t8_hGcHlCyQtIb_Zor>0=|*TbtLUgxA8f1@lvg^&bo{?_E^XU&tL%5N`bcxVqm@ZMZEJnZLbV<-9$sW*$ zZ=byWYyKyV>nQ#pOZ0vG&rA591N_f}>`zE~+pQSlH^Z`M)y43XSVh9wCQj@OBSmevTs>ZH z^4n%Dj2yRNVr=PoI!Hr4KPyb2UWEUTbE$LxhYtOO>x*clw2^+XbGtXuFLtilX8J|S zb4z-Zcgqp}=P~?22afYU6Z}t!|C!`}ruiQUf50Bc=+6qNfwe1ry-b!+vqW@ublG;I8AF@>qJy>Cj}JfCz)7>i zmGTqA_m(H>h5Fp^o=UA%I?$|90_EYo_1Y|)C&QzK=JfC$NX22W)o`g+%yY>(jLOA{ zTJ2b4_+Sg)lnWI~hLZ<^d2wb!ES1DkeyU!Woo+Mr4t!$br4HF4o zhlY==Mg5&0I=4en(8kb8TZf*q$)f}iMplM>>RRU3rZIwfl{R+oG4U|33Ig;ol9D4O-&1}2BrR{ zMBd}$V2<%|VYW~_2Ij%RsX`Iwy0)75iO2g|6+kOaUY=2WR~*(BLdf*n)jn^IyAk`rHFaKV{_ncFZ%s7>VDfv6~T#Qb2tG`CpiU{MT0` zeUSvYun>1EM_Imrx2^rR(*xrhxXX=Yy=daH+!W>UOz zvR<2Ehl!VGW^45($?+j!pR7XcCk+D2dnAd)ym+!er-gI9qOVW>V5ZQd^R+AGiOB36 z{lZ*9$3ZI3ah~Sv9F8p$lkQ<_lK9IxX`?5Wu8mwtxF!QP$-IxL|M;4AevcN+&e9R+ZbbIOB!s z*1|3f?de_P`^R|-PrSlOLIlDYGSC^P%E!g3FoEGM%oJvY8b4SDCM{G(%xf`+ntqBhat70QJ$kQJ}%6Ucwe#$TYpI-##$n>WKgg_Mee1S2*>v z5rrQv2Dw5VvzB3?x{=30XxjP>T-2%o-nYh)i(c-nRc@?KQ#-g-9!C9vs8w;RT17?r z`BZqUw`$e3fUmVLD7ES;Kn0OHRjUrY1IB#6piU_yUS;ix3p^ZvH3kn3j9pmI%zS|i zCS$z;LqnE{>=}ydBD|7SNW_V`UHEQ4LTT(2GCJg(o*8sERv0OiN_i5>;>pm!?E^Ry z77_M?eftgNcc45mBqYt{dr(gC_vZ4w{Qb1Kd>_h_0A((}lb5FmOIER1!a-pSoq;E(~3Yo(QUL%f&4}KGhL}bj<&fkXe{MHax9|^k~zbG3^?}YxOXN{#<)%F z4QB&~@$5bJ#%5S)_RG1{AP-_hn@!EiLFhBZ8qOsxSK&Ttu$2a^WGLq0kZeA}&@13n zQ5fE}Di*@vZsNvZp$HqY0li1R(xHQg6^}x*Suamup~Ji`@Idf&8?Bgk5)V3<^p-V) zE#u<`yp49#2Hi7bB_D99#EY1cN07FLK-iVj)TWZ%eCe- zd5Z6wKXp@oB6rK}?7B+`G2?znV7GTDh0L;-3->66%&eCS_bP>WGd(C5?o$exK`$5H zsVhtkp0?eQzoanJi=3J`jGB8a#5kZ{f56OAtSOhwgXlP+M)Jy_UjW3QdG_RiKt) z`SJY}Tk!#0WSRXwGRM_PliL?9*G?P@v|kVcc>?wn;^3Hq7Bp}@`5x|qd<$kJ(1yTE z_0)5i0zD=rh_d12MGJ1LGxat2)@7#V650{XZxVZW*eShajkZ@}8ZsGehql6TeTP^q zv>GDWYvhuy*LX~Ap@KEJS%jJ?4_K(c33{)IRlpMkiqyiIB40ejS|2Uw$p`)o35^A9=*v>+7+wB6cUb6&k;@1VG z)+entF%{|Oq~8J;^wK8&O=4eldJk%a@B^H89o2fXd*DU;Bd$XZD|b90sKIuoH5!}M zt9IAW^d0a?*A58K?*2qKJ)zF#zXK>PvpMe=r?Gjy*xhgSH$a_?&7hW4zRyO5mr22S zN##2XRse?cp;b_FY;9+p$%G@H^#5Q_p)jRb#Hv9Zj@rE$)!tOC>==$+F#H2Z9Yode zwuKne0IJ4#)CM39nNo374RpH~2}4_(eVHh7YC*ju+%oPm74^tn@GPJHH==5cX_LF) z(0Z`0ACG|>XLC1#E&rjA_=@`$oH?1h8*CwP#^f#tJBE}wm%AnGULXuQ@l-6620LgU z66+J#069b3>0U7pM*@o~5Zu_$X28J4ya)v!cm4bG|f6&o0p}*u{fW z=>2+banR2^I)&CVq3KE8P}E4*b04_s;eex;jKxdV7xdw!sXvZ;?@-5(oTCiZ5)H}8 zO7<(z3%d9^g=J4 zhc6KO1nxZibIv;*I}g9q&$s8(#x3M5DO4(RG_KXHYka)+)v+C5f5c`;sLsX70Sc6p zWdPQDlo2l!%k^SKTfae!7+Zfqrim$R{X)H`>Zd7~z8_mXYg)y8?dL?fIW3f%0}Ts2 zR3TSZk0`E8rOrIBbN9h|OEd=Ow|@rOt7qbWb7kTH9k5^NhMSc+R{9K}XbxDX(00z_ zPGatS@x%U=KUvpnKkOw1nw-4MZ_a+$tqfKGe%SWI+zIPf1SKNLSS}MwMzh&iERjv8 zQntZJJ*!1OWWykeH!Gtd#|Zq)n>#g{*{s_&bvbIxJxu4h~$0-s+DdR*%|R*VRFqDa_C zkp;$?kv=!d^l|^lh}?fH2DL7+lLtmTJQ3+4nMkTEG16h3Qf{o`|1CySw=W>pj3{|( zb*Gt>I8)v-RdLbpE1$~q zxnJFLfL-a0>Dq~^N-%jY?(YDcaVYI_;d;wf@eNq!Qcy9%ih^4CO#|xE~y3eNy%L4|9F?9r1l;lAY;^xP0A+r-l zgwB?Slcp7=9@eApv{$-zT7WA#FYBiF6zf+y1}NG}jyy4G*@<{(I*sV_WC>?<+hUID z54kc(_oMp#-SCB@YwSIM3eo2{s-0z`d6nYt?Bei|89tWDrm(0J#R5+zl}*QR7(Cl| zt_0wlU&-WB$}39bJ;g3(bMaIvor>nN*-S2)R9;bn?h$+(&!rRTcrp=>Wm1VmMunn; z+arEC5s#*mX+X+Ev#EpvLkY9DV3Lm62H3aH@22Xd-k-ZMb#E5KMz53=gpYI9H1pX% zd07pUx7nL}ma`#?mN!4*?8n07?b(h+$lJ3Ui;cHqGZqtXsVN=nBpSZ`v(R8Y&;6Yn z&)Hifei8wU-r&w>&+;I5bFVEG)-gq|FL`YBJ^UYC^l<0PjH6LQ2RkS`9@iQFlnEs- z_L!Ee;KTUVMJMA^u_Kz_JWrApjNTHMR+h2aT2!QGwe3YW_eS?x*)@P4ysdR5pt@;g z=77q_l_)}%1Rkp}eyJk+uX6^=D-6gkOL3y4=Q)8il*$t&~~bvGz`Xo zBM(~M*+3cJHpyc-BRCA{^C$9Pbj;_VHqU3P4`;1YI~D1r{(I3y&MOz)PwnqE@K;bV zx4+I9%h};#CdEjrr41v<16r}C+%mby&a+;JK=IZgwGtnZlTT{|Yg z>G-*BdPo_r()$6$Wjf{^<}h~8o9XzF&ym~f>GD)TBhSwCA}pS@N~Qaz&%P}WqjLA$D9!yhV*$f9TzaD&8=)34m{&WYs+T@hS{Dk z93TG+U>xMEP3>tLrja7BW$fbYV0oQExhyI%Kpe8v~%V%R@}66 z=0>Mz7BGih>>s1Uf%&dtBsvpXv&?&-9OF!$1S3PRNGv*jQXi*Oz+vqAT&RIT<(h{a z$@7r4dFrtWK1gqq)Niybdlik81l`P`JnxeiDv+VJUOtHoy+~2pJO#3x#u0kEgqze8 z^e8ZvZsE6~E4_6mB3e&}lmNsBP9ye5K5p;P(}PEj^x-`o&d8w5Hu$Hf1Vr58_&&Nl zQk*V_lwhLAPK9HqLt(`5PB!O;3P*8*pPVsRM$Xtb|D`b3Yn~-^zq3ie<(YAS1RcyY zdd!JE%){z)4^#Lu#uZ|rn>h8o{DhKA6)ZA7F4QI@L`4tL8*)%KciORFE0TMv=HH-L zC?%#-W)mK44L+b0tt?D=d>nCFd3-cJJ_PHbWP*mn$VG%nRZ1{4nm7x*T%7Lc_;I)o zIb;rCeB2ynb-6=3je_{N%fPjSR^jAsMk6EFu0oj+=+C(T^&t(kkSf9!Bc6pVN4@rx z5l7dCn`62!vFl|c6*ek@f;hlf)ziU}Lz|cMsh=qR(dIu$zDL$`vbD&_Ba8+eftGL(^E-Z!ZS9R+`dgxHZtM zsCJ;%*iFw3C;8jk@Is?DVDhz(&iS;i&Ca0JhjUiH7!~O!!7rd^ohQNW{bHXZ&Ivrc z@Uwslk?I(TWFp0(8^P=|bCkmz2W9R#7?Nc|1GlmCkf5>s?s$}Cw>Str6)(!t8gn8J zuqw2gHB6X%tBz2duGQp(=GxpEk(2jM4(!#oPvOl5CU5Mb+9jM~SVY(YSwqgGaaZkx zh+R=bNSw|Suv^pgOcxr}fhJx692wl4i0PixY5iP`jau;Z33w(z`PQ&GsLj{5*wAb) z5$)+Dt-*p{Q0eUpQ)y>#aJRZ{D1B#1BlMgi~dFvtg(^cs8eu2@o`q48! zWp1xMn%9Y*U0IF`j8`*Q&O+0vE!Go=zRjaI9c0{L9J`?WL%QT#Je|u$vp9?av7L!r zHkKA*5yW{$bD4MwKM`J;K`>?lKk+A-OC@7{$dsH&rDM5dGKZg;WHy^iq%uMx5=+KX z0GPthR3aJA#WG3!l&gpf$w(rWOJ{SrKK#tY;t7116;hE{G=*#-(KLQ05m}l=_7MEc zA~ZCcjwg=xImpK`Y#p)9E%LKS0KJIIfR!Azh8{(FzFyYVlAMiAk)DTc!W8c%*z;$D zc^AyevP?H}V(673Ht22XrXK-!xs8AT<4%9kmFwI8@-xB42CejGrOkS7JJbcYd5D4i zRRgm*=zJbyU}H>NdvTztF|e+=cDOd8l)oRt!lFj%ygQaDEg^v!0Y1vf* z$1)X{StRNB_`s29XGAjk$DRa}JFX0xeU%rP32YQ^ z8}-yTR`WWSYP^gvd7)49S`z+>i#kL;*-rY~h?^%8tYKYgZ1>9jMu5*QMq?kd=huIF z`P%~FSYwLjR%d$2;0zQukil&k|z=?zR0(K=t6YZ9mVQrIN^%Sj zE`OzXh zBYw-35d-vfexn)uD1t;&E@gtZ@d|t7l)Q9>0dvPog_Tb+k;(< z3=f{}e=rOT2aVsOr#r$XKreo{&OF^*mvzMPyzz8@)yC7^{=wao6x4j8P~|5P?Q2!w z?=4Oj>No*Otd|>z#}bOI`f;SaM5cm*Fj+n+mb7qZ77|Snrex8Nk0Z@;u~jKF#eIAB zz*(*2GN4TeNEKOYHD_B*N-kFcU<#Wq!+!v`G<@aQK8dXh1q3=5Yjv3Sv$ZM~4&fS8 zqHHOIep1dQZ3&@ARdOB$`SrrM!15=saP0AMB`l2l4Xkm|_XbG@qgV2kU|TP~Ya?Yh9}GGG;8kYr9VbpHzbC^_YHBc9q{MVPFOa41P-CQ;<`IwDMp33wp{a4Vpj;412F8MDL z?*#6W{}P~jamj}{d+Wt~Xg>m|S+dpmP_sNW-JF=HowPg6&*Qgx;;xu-BW{3h=AU#! zW!266H9&E3GjpOljlJ{5&HUrV9e-h07U_OTY$xCcKmG;))ouJa`P{8Bx%YD?b)jA_ z%!P3FiopMi4GH|e_>jQ=Q%g)g5HB{G>erBl@vX~D$i<%{n&*vc{n)XS0Gn}D+>FEOLb==s z{8<;^Uf9m!8X&9{*MP&>>~0Nn;7eP%=3*UPEssfKoG0))mzzwlCysR1F20*JoHR52 zq%slNSVwUi>xjzq;_qYViC$Vq&l3v;ZXG?x`R5`e(;a-p{OS3SbbR%S70$%Cid#oA zlapZ-w$G;K_M)C_|L97#0PUW?>xO=+-Scrkagp|%oKBUwPU(y_l+HOs!>(GUhDNz84HkBHZUS2 zE(V2e?1=G{^P4sOqjiC<^?*wiPy%$g+DLXZW4*fcU%Pgx!2a(ON zua6F(z&1pd>X7EGSxiuvx9C{EsvLwN6eenj>6mD-iH$i(8inI*a#MD6M1=j=(m`<@ z{0WEGH;SY_yxu8n9KrYssrx}jBaP|8tT-rd<1k9tArxHJ8B)p~bzWp&0c(mlK`qcB z&}g`aFvHKZ5R@_vD)2-=^;Q)DDfLQOtVe{~@%!;s88IayB4rftsEId{qd}z5?n48p z#+>qJx!3-S^qO9ve8N?r1n4ICST~YIF(agp0E&y7fD0O@`R06a6Ws4}&gr$A;5$sr zd(o+#-2~rcu$-q1r?yyEH?QWan<2{9Mk(5mL?|A$U8r<@Q$J`nmR)Ay9<4b(ENegO zQ8(sN^P1y*Ue+8545Hb2zkAMOHw59@Q2 z2J{_doX7RKwTziOjaWq#yJpznqt^jPiPq){wjC?m*x$es0$*WYvR<9a5|zP6z4xeN z*0)C)tflIzP2^*d+3J)!PG1jC60Ng5jlVclz;L#JDHr#uR=qqgO_J+L@2aJOz+JTp znif}W1Ju<_t$`#CHyES1&Vx%q7~95AU`D)+Hl4MFP_t$MBD2%paJk;fN`LZ_n6c+@5i;UZ^&( z|6xW5QR4<-)mACPjB4|igvoksMzMS&!ky)l*n=S_Ymg)A9~jqC9Fd8}jvwKNN5CSk z7p8c^UOMbb+x?+#&S2*sj0+`kvRs8dU8|}Fxe^yHS93W0z|aFnk;bSYOqGwr0-u;u zIzv7wW!KoqsyHg>HxGE8iN zpK$Urr!FziB3DDK^2~2EM-Uq+!djESd@#GdX<)g{QlPV>9m~DKseNXa`>O2$Kh)M9 zp77JuPWWL=Obm>&ia6N}xp6Ta`V)2=BS-4A(_`?+t`ZIrayuR9XQ$cvfp-lU?;H=j zS2;1JdEo6(#+j;v9lUSveY=E*>*Xe;c5K#bMnTre2Zmu7>HRQ#%Bi)zjj=RNG$uoE z^o@4f@(1MwB~|%lYA=&{Sm%eqfrwvyl&|_8y`qa98LOdpkS&u|z#uFqNc*mf$bwnL zu4L%P%GPEUK8)ODyp+pUEh!rIFVoB8A-x)X>^vcLzdP<##6y9H z9K4*5w@yP2+VRmm6L3lZfI&uJ?VD$Xw=IWowM>Fv$7PBlxYBa^-bX7hC zswx)6Mx#(ip6fCKGI8D;B@cl@RcKY@hFDW`~>la$4H&;(2-j~ov} z?{Y7sSVHRTNnx(m5=u2X|A}WoF$bNp8kinHkuXS#-7MomP~>DMiZ>IL3^8cre^UZl zc#?2>MGYFMHk!!Ytxo;i>iX$Yq6P9ZFFG|0lh(&*{5?f$57w|(A1a2OW%)j*Ny|I| z4Dyg3rMHpV22oZ+3J)=fxcg3UpJ+VYtL@=Cy^Q-SR~cvLRFK|(Aqe#Wy4;govEuCX z)7T(5hb?Q>dFfshoSs*FI`oP|KEeTu_k zs|$*H&Qb`8g+>`_|M7C8#gBF^H%+52VAuv;{(A3u`45(2Cq5UD0*3tDDYFJ9m+8k% z-?84RU>5?uHh6;C>9ZP8Ve)jWf^E~s7t+jR3NUQjy`U#kzblynRH1}!=%uPq8v(^d zh2rFMP@$Lx)nN>UtM+oPm8Vbm97#^`UqNko8)eMvWj=O}WxI#LTB>mrxo)?-iRL&8 zDhND|LP1lW@3k#&MZ;hWIF4f6I~yqD+h)rfX9R~K?LCgdW?*Y8yysHK`AZCHb1U0C z6ro^TpKGsfz;D@2j0D9MSnAqw5C`toaoBx$R~QpX7!d?vab`j+mBdn*E&n$x@f$mu z@;AaRfr2+E>!R`v4;i3u3`<^|7nN8Jrp_A`doBK9WW5zlBPooaF)`Fy^`bb>LHy{* ziWO(1t!sFQ)5Z8ZvO>Cq{b|V~qE5r`QWT9zm$B>RRB$DJ${WxrQe#ZIhCREMU9V%; z?d&SxDqT;P9k`6Fl=}If8}MgLx{+OPV%GtBaDg-ka3gD^5Z$ej2HB&X?0PeUi_xz*T@rLjvIq3x8>JL}k4;}aCZ+KM8|SY?v2+z(GW0~s zvTKfAcd_d&?0PG^?q=89aODJi5xaje-TxG{ly(Bp8R-t(qp8EVxo5?fzPCoY9>2z< z?Np0Emp$~sUb@`Cp6sB)e!A?VPuER9cUHQS9`C111P{(gH`C)Gy4;1rv(ioYc~-ic z-d`yVu$!yt={0n@mfc^6>lrCTzo%b8Q}R7{drTU^6`^dS_=D}l_whe3;eQVBKM%4$ zA?XbIEUHOibUrxdrC-PLZ(ECK;_m<^BA*a( zH&2!Ek=v3U)?sj#!9UABKg(V_+hPHE6qxrR64Wf<={M=u3$*F;!}KcyoTQJ?FOq02 z=~3RaBmB=}_yZ!0^FI^(Pl^ATGsfx>K_^cn8m+JTlI8FZN zIR1=DC-}`AyHSTO=>MHn__%@ouub03c}UiJMG!TN-a=iu!JzsCQGp@yJpCerRu$=9 zlo44bXu(+@vjT394L{gGg4*Fq`HA6s%M*1tqlWiXYOT@%2v0;s4ezbjW|5I^c(l-* z9^O+ciNoNl;Zm)b=fY`N;kQPl-e}JAxtA2WaNL1%ai<5JM{n}LIo3h90@~5}vGz_l z*Tjih?O0=2p*M;BJVbb2;q1ID_FoMlen0z8`WMioAU%K^h_eIu(_X))1`k`c+1NEN zJ&1y{(nIX}FuNYY6^!)=yLl8>u+tIzk-iE*GR0$b&-@U7Lll1EM2I$W>zlV#R3JaU=b7&{snQ>$|XeeQ)jwaJa4y*#b? znbsKTbko}H5Mt-qv?hIz#?ZHMX~@$ID>>Vc=M?sc4Tr`#oiu20v?f~Zb;!<8C>5H8 zc_~E$HH}MqbqOa-&cBIGLLuoJm{?BFx7VMj)l0=%tJN(~R~qAY?nEv0&k~ zd&;B`$VeWa>2+2qOlW+FBd>%%RbrOQfw!Ef0VjGW~B+4Z!e4t>BGAgiZDm~_x*fn zL62(PGpa^X{hx)g+juv$aqQMEG|O1m&{zI4&y_38v(m&oBq|o_vHkboi?hU{!oB69 zSZx^D_;tQ9S!2TFy9;Bo^h;C@SAdzn1FgKZGU3|>YXI2 zIv=q%0*WxRYJ_g$$H=~4ccT!Od#bYqjuVnUc8(K0Q$O#w`$8kDM$Chs*#Yj;n#I=Q zGux;AqA{|{$VIJoU!_)^GS9U%bMo1arT{kaOC*HZq%M&Jl$hiq0V8oKLBH5QrO_s_ zfkM14F*c>1lvsBV0l9@rZD_SuH)}=RB>zc`3yGbyoP(csdhj@2Yj35<0i2AIpTz+w z%vgfbVyi5C3a{HfaMU8c0X#iw5$lxY&-pX$wRLflZP_CwrrlSl7N=_ngP0NL(Kwnd zr8E(OkC_)}QfHI%zf++n!$b!0H3G>%{HtFOe?cRcf%s>?ApRU66otuipN6D=L%p`W zX6P;Yjud{&)v?2_!cC@VbKK#nuR*@!Wm|#yX7A2d?xCUjO~m1k!go{A)x`W zdR47+wI=JeA$@1}q}}5egf^sK%zMYF4}6S0-U*i*?4JFta!I6(Mn*+`re~dTMSoFe zcZH|4`gNV6ngUvZGbtAnlokZhSx<9$C8X9Df8iHI&-+5SyU}PNS{GYQk5QMfJpYtHwvJ40pp|jP_|Km8 z%=P_cLL{sp!UWkY5DBY@82V|owV!_Am&jT_eb+Atb3b`e6lIl-lyt7=^C`>+2n~w` z^a{TcwGV1Vv4WjpChyYDYA{xrMLTY9AWcH4QpW){<8%N>bZMmB;1`6M@;*9G>wm7Y z`v9R~agkp}mQ6+GA$HQC98Ct_>Z*&kxfl>@QHyL1ucDpdHSU)YG+A<#fshu3h^8FZ znxlpftB166tO%{JY?$nzXMv{ zyq}hV`?sEn)9Jw7Vd{FD=2*Gluf3zwAs2kcGvss51vCvt)P&K7LBGD%bIOpYz^kGM-39J5)>qJ>7kGCp=T6)9yCQc%=>2{*HRb zp~Lbn;`(-2`~9eQJUZ<6M?FJca{X=| z>rZ#z@2~Srl>qwPMm2w}cRV`m_t$uae9rs*V#9d15%Pc3eaHWSXR>tK@z*#Fcxs4s z#Q&amL^|yG-}VgoocBD_HV-@l23T``oO@$xX2K_Lse*&|z>2Vo?`@{F6RB(j`rhul`*zP1>2z?L zwRWWq*8aZDI}RQ8_br|wpY#4^hocd#OxpV6-S>6XGc`Kx>x)g3H{oyX=VRXM@35bz zJwtZrXCI3o+Byn%=lTGl`2pwrI*~Li_&PvWSUlPd7Km$OLH3KX5W&_PTm$z1(DS&l zXL@Rr?Rw7RcI!F6@0TI9^_<^jARO0ooEHcDtctmNi#I7dBG~Q>gP-spJd;-*dD_y> z7d+Fd!yam1)z9`&DvLYvwhrD184WG$;&a~7=ukR+)^AS+?)JaJ(2?q5iD{}?_juP@ z3)A)j+D*lv^uw7gQRVOwvxT0r=si5cF|Ju|dDlc-Z> z*y$n^OwF?L#98lXb;uL1_6&Kc@dT}{JM+XJcFz;P@0mnF@Pw&ZR-X7>?`U<%6Tjsd z@;T=T!73-z@DU_iF$s#VbX}BJGR4gc2nv0>tX%QW-tp>?E57I%@;T>%CeM)1Id6omyfGsds(I|vM>=q^7Gko?3rMlijV99T;kYBE5Gdaj%0`Yvdc5%rN%EbJv)-pG~LX0&o48c2^IvuxHi(t zFOqj8JLH!s&ydeKzg%vTFL`zjqKPwpxqHrdyJymL${7e^CAXxVi!w6Bn`7mHU-XVn zhdeOv8S**jfopAffcY`Zw(I}uo)iAeGl4qggwVpAz#C=dhyUpvsSf$!e|Uzx)cB!M zt2dc@6RCmB{P2VB`Qf{s2^0iB7#d~ehi`dDszZMGhG)p68nv zH*ld{Yphb}!``v!kPkoT8M1{BIS2S)B8?Au*p3en8Xx|a-;e^r0^wIIIp5-iUv-h9 z^!uK<+nzP4#irmaxo@@jp6~c&4=p6?n+(Jvg=DeNwgvKuUfT4kvvx?o_O|{eWiq8> z6DYM7WtO*&FYk z>BxGXNq-|fW4RQE{E|wOESywbNtTVA+5tuyF)rP(S8NpP;CoP?xBcUt^5@3> zlCDn6VBhbT+!|-@^$S81>2$xL7M0)wGjLReyOFg^?Ut-=sCgrklZflaWP2C1dNoo3UlSvvctetSym>>v9D(R(u6okwtE56N7S&p)t`c?T-(Qd8gV7evp=d@-^FHj)2b zxVy?z(VEi*-qkabU&0a(qwa87SGR@y`~1>Q+*pJl{B0i0i8xgcz8SP#oke18B6UgI$e`Il{nxG!|LdKXk?{bBJAfFB3+$; z@JD_@^qvnkJy_K=ZzCssmvwE&obV&|y37e*3Xl^BkKS;?*8Y~R^=4kMN$~qEza6QG z+Hd#;Vde!NQ?52^bAj&zgoeclzYURRZFV@2=ULmYeY3^wK(JlMgRyg{Nw)L$+wJD< z3~KFC15f$|p><=-F9^9C*~w0xyV19!bAja#F`%BLR@wICZ`k$ZgkKtJVj<5!IBH4LQ z`t4b5>^E&;0;FO=%@{DSCt2dtt5rh1>(qdlYdYS7yzS?a@nX`_+%pkEL@ zC+`*aicL0ImgMdOUgkKtJ-EhJ$ zh@N-DMXJ(*Ttb!uo8Hkg@^9&v^%bRB3)z3!FU>TvzuhkgGueHZHJW9_^(G%6G%Oa- zT>bi6RDS~q{fF9txd z-Ac_g*?N4<>o4p)F8|kWzi3_iJqE(j;}WD%&z0ZpSd?xw>n$7s1&gjZEedR-FR8-( zh;sdCx$0yvny`heZJ}R}M;Lg76+FTm4|P2RN7UP`j9m`gx>SxY@e4v5S6dkf#{uA7 zaLKNhOZVXH_?Fs7P@ja_q;X~BHr6>(Y?FE_xg3eiq6b&*H|QDr*vqn)Wp7DYA&cT; zsq;W(?p_;X-nB8VA`=!tcv-A0ayeK;rUBy*(160e_iHO<#2GfHC*Q(Q>T0bl>lZ{1 zIfIX1>y%cLySDRgv|ppN_JBO48AhVbdQ`MU1b}i)_~hePUeB_#1l0mNWj?FQqi4 zol~kSUVpY5ELsz-_LgR?NT*Qdv5lurQPs3v=KJ88k(Cl1fjhEJqLURzHnGgzBiq;x zvXMTCqA5mJOSI65H)#b4f5>x;{VgQL@Qiw8WM!+pnX15nm;9_tRzrKE9BaUiL#H~Y zpB!2F_@+H>7NqcKOg9 zeb|t0(eCkeqrF~>muIi7qL2OsJ<03E6oxu>f|4Ul&w0(fbXd8$05>mFZdSbp^>3s- zPxbNyQw(IxR|E4$aLnz?@2azjx6Rk;CFsSjDz@$m&Ct8uf7 z-|*HdVVex`H9)+*wpb>e1XZKOYf&Ooc(OdDQMi2(h~BJ=BF^o^k;T{$!#bAsHzB@7 zdJ%0tx`QtJ=yDfbM(8qzi^#f@UL(RXYKp8gv4e`JR%o>^nk=IW^37VlE>5({l@fza zP~U*hsFtT0cXG;;^R~F4`R-LwCezPq*5erYf}w;KbV9 zn1923dn+dha_HzvW&GNGrP@pZ?w~@mK-jle7TKQ-^;)f&Z_Le1)GG7RI_wy0uRXx; z-ZVe>3f52(0AuZqjq(KiNmI8^)Q*eu+Wj3O_S)lqO&L2Cn)tDyBo-@$I_LGV_JyTd zv09kHC(`Q}pe^Ob1ET(&v+ecy;xx!w7pwC}=i8g|g=($3M=NPfv@fhpNO0IvzfPYW zS?~{E_BnL>2B0Ph z_+@OhbOVaUq#NnlUe8*1U;VyWv~qJ(#8zc&TD~7mooNt3l#<))Q@ED~*ry?OWi6Km z@%yZ_6Ibxo5c`8QR@$E@w`%$wG)4(o67TrUWD{N{*@QnNn}}22+XrlapDthBjLY}w z@}(`f+;tHyAEL_}x8X8>DK3+j;qtea<1%&yF3;m4GVw-`{`4voeTFWB*W!|)%a5n}`3780+=$CdZo=iGba^U-%jX7h**t{HqY+$gh~o1908eD&0yvZC z#2*r!_(P11KO{QwheRj-5Jw-KZ?)PNNPOT%K%3L^2H{7YE|Kv-RFR)=nl3c*h^A!y z%)caAewLBzETh&L*3vT!nX?R+vkaB943o1AkuwaBGYpNhEyiBc|DaV9YOe?9@jdDD z?MoZ8)8*>P2p>+3$m|^U4^-#d8}4Hax)0KFZvIWck@`w{5B1SIHvp&R{42oODj;^i zvh*0*DZlwqdh;b99DnmN!<$+@cl{?nq)&dZQTgP0<0q6&O-s3tFQzTtA|Ivd!2WmfS*5v_GNOpSV(~VFUAS$ZRXW$BrZUpETMvp1e}`USyx) zWC;CNe@S1xC#FE(;rNw>S6QXEU4zfxj0gQ*SY@l zACXME7cz~1KImM(IXku<$`KNZzY3waAQT#Xx-`)W^DtU`n561Q`V}ZU-EmRJFcJ$J z!2AgyNNvbvjtuu^*{9EQ76lBUXGpkDLb!8C8Fz#n^H3VFJ5F=Oi!n_s2-7|7qn`Zt z)2#Du73TFWc*+R_^(9$jQNwB z6&NlhBt3*jXsW(AszA8T8G>HQFkb1$SJGXo9N@lO znd@xxp6KiS2?>##6)Dh?4zPJXBpt?I=?E_E4WrE7v6)7vpPYV@HCTF*-u@$8Li~Is z5@_mEK7Y4Y)f-GPlvM?;Gp=ehnd;u&Fk7!p)z~h5QX3R~Vr```A;K|%xxc+`N<@rw zNyM1@B&wQzvb{;3`71TdTO!o${K0ym+JFv-T~_zkYbR;mhsrE%gF@H75Z{aSLS??a z=57Y&HS-g%nQyOyJ;%WUiMgXB>LQpbX>S|mCRYR`?3b-CriV(ap*pwM?%@U* z8nZ$7<~(}^&G<5)<5_H2Z#i;UI#V*-tZ^4SHjK>{ipL07rnX7r&}!PWW}up#LbJw~ z4Y0B8e)(P0u+>rnhX5SD#&Njb@dLH8JN;#N52Mx!N$n{{+1bq2M1wpFQwX=@ZS>x$tL46r@ zTw|>R{RCG4TYu*`9wNr-L)R$9_-@BADOI&97hsLZOsOA35)K#I6rt!&swUs2<7E*( zB(Q_C8W>z)LNfqvrGW`oJ;4UTcFP;OBLeX;e_vwyKV1Mcw7@4i6^r4<3<0{}+r&cO z+S&yS46_L60x$y$fgv?X!=9N2bm;_p`Vpv?>ly5Q3V8HQ@rVazNGy5QRz z7HTqA0T_oc6N4`J4ns$muUR*6w9|?Fok7!cLy|RCI~I}U zwOgi~Fe8O703Pr7W8H9KP?)Vk7eGmN4n=RcFgVO)p^Gdn217@*i7%*nX&;`JDdBeY0g#MmAd20?KrxGlF5WJPZ;G{ZloxvDlfS4IX7XXTM4u}gx27y^abOD5@8w7jPh{0e+5nTWy zGt7(wrY>WK42w`j>S6e{p(^2=kTTS-BI!-l2I+qkPb~W%nS)dMtrS!oQeAcl`{+wy zkKs#!87%ZAg+X)mpOlzBt=4%42qJht7s1zPk8JYb@meS2sMThJ8X#Y$`&^%@c zs2KA!;iF4+A8EUcIccRTeWK4agb%jqK2Q?G@Cr6ikE%&(Os^`dW&G7RdsRuaf>*E8 zK_#ojoScJy_CET|HgSjy0;W=h8@Y@v4NIBKqb`LrM1{L~CL_M+f^WB?dgHfzF#yap z#hGin-W}e(G0?k z)V_-hJH}-gR}ag5K$gSQY$cosN5g8j@U6b|v1J=B>ffOImamV1GA&M->xQ`*(qJUF zCZJ@i7t;PLK-&+zjd}ol*#*#_;Lyj0t58BGYPDkx*iG<9Okp*ZwgXLy^=hO%J6E0P z=Otn8#UKv{*`*LT$K_=;odM66bELQ23T$rXTTBG)JF-;a!BDwm2#WyoP_b{-$Shu}wK-pXdY~me&o?$zvw4F>G><{juUN-Np z0?1ScAe-9mpfIPqOw!Z$0;=8SApp*F02qdbbVj#nb#IpB{H;LSWpUQiwZ;6Mie zx$(qW`;8+2!-L}R@j>0kO5g=^9)RuhijAVU7x>UpU)x15vT>!n$RknV|Dcso>1|l? zZ+8-yY@&)<0l?=S@!*wUTs_0b)l0m$1ha}7*=rk7%bF1@p&1KC0iz9f`N2RRuu0@Z zz~+=pzh5n*;>*;SPUb{p9-K*GKM5bbBKO!wLjhW~*UtY+YIU zHodJ2ena(}ji2y!aP-G}S%0)BjICDHT++-BEjyzTYx7z7IHkX4u3X%aH&}KFUVEReieUss-dIM8S{M0`l>p;HPQ`F0f?Zjp`&1pQoyjfP`P7{Gdy0e z7LX$h1sl`?a%rJplUhKIDimx{3&{I~f~{%+xsyArxGy7LdOO1(&M@9doT0jmL6kMwokS7HN+o^z=0<@BWf*nc$Yw8WkokX4uJibXSASVS1LTUkd z8&I%QEg;7M3Wn4IGX7BzQ47d`M?q9AAR8P7akYSKXcQ#X0n1V?PGz!W}0mJ*4a>o>4Jg%w*q|&0`akYRnR1`F+K-D@?a6&0y z5a;NQrN1D}5szQ06tKrXM|W(BBUKKMU!fGR$FEZEB+{Yq_|<9wX+J19s}_*rf`YbM zK+DPU;6L%EY^-ofMl zrWVkAfP#0a1th{z@E$6lAS5QGQSg4HfFQCJ#r7JQ-w5+MjhM*Q&048Oi-feQhzGdS zf{zf+WC+$`0~>`r7ST&IRI9zVJcD(y222Hc=@C(wSWvv^PJ|;;NF6Ma$M<3nm6u*lAllIqmfyJRid$nI{zxCeRaU_)eUZS#p2p$ z_jUeRJerRwI3DrvSzP<<4iBFtw9j7R>9e?kWeWteUVNai_ZF|VWXF5*4tMktiI_7%R(`PD4_ImnECCO1wpQ$8y(9>rrg-iB$ z`Yf${cCV+;GRkKo9zKg{Lg5|{pCz=<9`W#5P8$JtcK%sXhvWkuKGVs`(at|h>4xb+ z51*wql8kl!SvsnHR**lVS@r35TodL8Wh*8Ov&qhq%zoPSKy*DkZUB<- z&>a0#mG=)tN0pLqC~+P0P5OtTo7Y7DP&AHi(H?{+PeECFj4rcud5|u<>5`$#&2)Js zU0zI=2wm=_%XYfN=(2+@A-dd6mjYd0N|$Ts@&H}t=rTnYi7pMg+((x?>GCqV9Hz^0 zx}2fQ3|*3R*+Z8b=~AN0A-e3sR3P?_p;RV*c~;7K-+Ux;Tj?RvZa*l0wbemmsKtLbI?31>suxX1U4t z?X)j9KA_r3dn28(eW~%;Oks8wni@U1+W3Tl%j=$BVSElBy{<~r#~dRB1Ic@y+LswW z#^#FV+$_h)`bb4~YncwK=elUVSSU`5tO@#3IEYbA4KeW41pO0&QUYys&o|7>HE5N( z3a2NQTG-ueq23Vd5ndRfEh})8jFzy=0>yjytI8gY_LgF8W~Nr1Db$Z4h^I0)e-?3j zlQYWit)MfGZo;v0IJSu*f!H>g&82dK6*uOvCW83BCm{9O+lYXOoEzj#0oV+(Z4$?Jh7-JEH*B##W`QQE5%(CtKAb zDqBC@oT=b^cx>&F<_Xxvli1ZmVlU6u3K6h}EedDa7oDipOO5<24*Q%bS6fYSe&pi_ zYivzmSrOhVMj+{z2*73(<|(pm26?J+I)d~L2A1eko}5FyPdqWlsRgjxN;8G#bRGn( zoyg1nsx$4a`qBns{6zDsC5$n|dYx%s%wH|lTGU(RDh1S`{hM2}7;7S!zBw(Sqt3Lq z$UpPgVAN=UU!@NbUP?cspNhv2CXEMYr$2oZqiec6HC@5~#AO=A&$Krve8~3zVuR7P z>V(YL>U04X4l#SUeZ5*XY%!(ydI|S9wximM3r(H!ci7IR*39J+;!!`3Rw0@;qL>djWpjBxK<%UoYfL*HX#Y)tk?ZcfWJA(&u%ydhR5BYY)G zY>bZ&u|Q3wRuvjBasCzp3}4DEyuHZ-fW-!DFcB7AL*ld{gfOuTa$-|C{Ud^K;Yw*M z)b^k{bO9tk;&kg2^+2_AVnqyaIpzyPR@dq}g3RKa@;ofb4)#6}5qOP{k0CD{5e;jl z1!1;^;{nRY(Zi7ctp+uS&{l$`gkrf~tcV)^q@2qP5US2b3iWzn&W1elD zxaXh-hjt+O1w`M*w<0|G`Us0^dBHEn0KiZrbmImnH>=(~ema2S10 z@SVBLT7x%Eqwg2uHhM?qI3lu7Zqs)N8}usScB|dX`=9FT7sjB6>;m;L^yNiYp;Qwa z)d7euzFS*}&z6M-Zb+zb0nvcANCK9+II0b2jaOxHLn1>!y|WQ04NS`jMTdm=P87_R zhXezDLl9S`*&1ZW?mLlxLLAhvRNs?3h_{5_sNBb1vI(CK>FI6;svA-a%_qcqtq}?- zG}DiR!9inH`r+8Yx9npYa&{;Z?#6NEFvLa+)fUFq96{macNIcH5t9w(oDzl~>nv_L z`5S?HI?B>gP)S0}ME`ogz=nEv8-|g_B4r{hrZ~gP;At93MnS?}(lsNn+vEqV(L!oqjx*5P&Zn%8dc>B8+hdzX#WuLX|sSoWEf094VA@#){FW^-3c3u z)I+XFP_%(ObJ}Tgn5hdqtC?_u^dnsaHX9NmjAoL8@EHgpO!I>s%uD-)5cZq1EhoA@ zQaYbzB^CnT5q<~;(L^YLV5AU2lkk9;H7a^c(2-^Vdyb%TF?9r?r-M{gy@s7doD#hH zi8*0H1bmTnYJDOx8#)t=U37!n0?p|{Q$r7uNM&7(XQ{jT4PT;u*p2W25c>`ZbpaWu zTa^;JNx0iBC(!lqs* zgUcQ&R9fP`dc9T;8DP;H^l#vfTB}Ol8HEvMT8$==mKZ@92>*Y3*YYFTRo-ooz%rmf z62M>uZn{UQ+e~#aGuYTPbYR?L8>?KgG&2HQ-L2}H?&_MFseVwe?q)K|GKoZFMe;7Y zB#2F-EF&Q=5`nVFiWLd}1slW)iQn)0&f`1x-m0!PEg2#AV&+!e^ZeegbE-4gov?Hk zt$6n|ytBjX>}ZnR@4&bZI8^b|sHM;>1BKHP7bP`RTHw%PB2h<{u2)w>M=ArFBsl(x z7)~I+oB<}pc}8OjOQ7gv^Z$17_YPaa@U ze&R0JKs3RWv=QA>?M_)r2nAv4K7)%h>5wkO0jjhLP**9GOg=kXMKBC%jfY@(21D%D%O&vA$M5f5m z4yr@^TIVPS1yC*Ps@lDEiu^cEPkN%;W^Z%4E!uQSeCvqYW(rZS2>49^O0k>8AZDM&UO+`+y%(da9HPjbn5pB;j5Vy1Qvb`P!kt)$r z^P+7r-1cCRa2tYa8o>+UHU!{Y$n3#|!)@n<>XL99F%pGigb=@1120c@Ur+>Wb{A07 zkYzMTJxmjjMpK5}f*zb{{(TpMfnhRZ1XLJQc?WTVeH>u`LR8`ktI*;O;lLGVoO;uT zh&D@ZWN&by6Bq!9Uq+jP_T^!>3v&!h=nRI)%h1{tU4P&mW-<6V;7;Ozqwh|J+|2!> zy>#DdCM#VovUS&9ASs?vXCKy204&JFwb*M|+m=$ak=^m$ym6Ca#0-%E1e$$R#_?N! z+{iW%g~mSh8vrfr(YtbCXF-tOR);aAAW<=hN`_WMJpb+jUM?;<>@p?~+9+WNI1G=Igz<$IPeJ))!5I~xu~>+jSOt5)^U*@ znKP_jjW@Fg(+|#5hL{z$K1KopQXb84g~+%oo-1POWY_}VA;iCp>0}Zk6E}3JZZIPh z&2-WSF!mAO^{f?TE?{WsGsUL#w1iY#0N=qm2-tQMRhY3tnoCDEGuyN>`W0`2fe*uW zl_L(2^1OfEvB#VfxCDzQF&ELu;&LyKggM=NqTyw*o;nZe@N%F4P7+upEXh&J*{kqC z;9xM(CdM}<;PB{#ns5jXJ3cy8K_AC zt2CM%*qu-cg9#Py31CFY>-y0h-Eup7#ZDY$wxnYuNapuq$Vk}U@zMf>Dak>hu8Pn{ zwlNuEM@aN-fDR?yGdk|>_V@d{QBA1~Xh`TB&k|ateD@^bEtCysuO&)MBps$dM0OIl zJ|LuSe4xu!@lgPi@-Qa^*8;I5$Tnx-Y+kG1*gEcSS7joB61I)exO?nHDvkRt^1wt#pjg>Rdq@YLV~>Y4*5#x3QEr%6J%^OyjeJ<+YKYV; zTaxia?^i;KsWakMI~L&HeCv8+Yri|_3SN` zO@1{>PG~ODTsPJoMMAWe1U$)y-Tci&3Jb~*Mh1SOL=-6x$&5@4j428Jg~hihc-Igu z@H_+Q>GXfY=ohxqM$+NhHq{EjMVJs$L2Ede*&JQUY!QMv_g~MTPj*qpwqBd|fsg*E zzzhQLd!3;*A0*g8PU-D-Ow6%!+Mtnkis->Z@uw?OfL{X!!v3{737g*pPhGoGt4gVm z+xDT`9zifYe)QbqMOxiBuhm!19qhP&&P30jJA|xSXF7L5FPt|T<#P3kjJmccP}t`B zpMkj%aRjXh#@T{SWMIHoDqF>rdQFOAULAIh?-xbkMXbjl3-4USaIBVzVx6#rm^ zBJufwRHR84|2~k4h?m!{yiZbb9Lzpq#7aexJ&2Ob5sNPIO^MfLnfHZU82Ycn%t$y5 zdUBlXm{;F31!ppgU9D(?C49HWo;7x@8QX7`2NIT-A@MRE1{L5*@GeXbnH8H=;eCY2 z(L=RY=o5?a|6}T#lEt)8J+nq>0PY*DCHSzabe!H zcF^wb{g*PqIs}_~Gxkx2@(sRJ`?l-){ap-hL|SYli-h z=1=ijR-pTg7EdEvc$_eZ!7K%b`J>E@^Wci;LG|McIV_D?^- zbpYDqqd4WSPk$Yrp8A~oZt|e{`6r$jWAkzah`Vw$fAb4hV>xqojJo}Yr&7^;>dTQ4 z8w^Fx3s)%H^hL3##E02T>2iq3rbR6`ZpE79IR!3`=PT-XZKpN(61(Gs+Zo4~L@TR0 z-H8{;6EREZ9FG1l%TMds83X#r^Rk2+8Ce-7usc2Er2KS-;Cl@Ps`x=F#HZ+FVsFRe zvn)w=l#56`v?yan6P&2XR{|p%t{1<~tPq~ZqsP&Ik5@)I8Lio{dL~3YV*+yr(h^tLq5?y5_wG?km zX*#S;>e}x(a5&4lh;=Lyv72Ob5VVgfc_hKK z(9A)YOGx26oi_w-x#E{ni;vO=v@{@#L%m@etUr8f={ydEM2 zhoC<9A+XvzlCcCt%#aX}Li&xRh{tl_jAu}yUeG28i|C}HixfFZcyR_^U5Y?fV7hv0 zR<`pr9pE*~_Hl@sgHYGvKu#O{u7tbebCss|`w3WVB;}iP#2d02h*`$P`?Y&=Ai?{;DB{wp zAHJugiWmYWN$n3?^<#R-WvGYDiSDrwRXrArhWTBu@la zCAYD7Y%RMPipYffMu>hFlHDl3>K`D@#j;QoYsoWAK72Z}a~tL^U?&LKNO%QuaNH~9 z=z+aYl}8bSK66jdci-fAv5h|lugkMG`xk1H;o zNSTpf&n4Ztj>Qm20-t|c;c{>)whfQ8oHN}eAnRHrFAv}Mgej(A8K2ukCJSNm&Y;)e zSExZp^_nIk<&j#I*e_4!(L}y=cqf`=-~#{6ygvH^%t%~voYio^#L%^ssA3pggd^!( zkRumzGG;E}5^#Hoj3^L?(;)w!0nb1)p93DjbpETrc#*UmJ|9ijVCo`2?}t0{&+xOD z5}SgR)$6KI0u3CqJs9OH#=oHnAY*wXmJEV(85={0;^Hvxfflk*Gb{(t@Y9vUlOYzW z8FYWmgO#umDip9mP8OvhU@TuzV$I&7WemNc-I+lk?{R0w=55N>7Jd0ds!yKx+L}zs zr|u*#&qPv53rn~R`xFI)#!&VjVge5$(KX%Ll2v6}=nxb0jQ5!=E-R)WskP?*%y%_Q z0bsTUn!m+>xJzL?euNa|W2~~CxwQD!7OpVIsgj+{u#q*61K25TbX9XbN}UhuUaYRb zLe=%?2^3YunMK|9)ojU%E+j(cPmmCqFB)LI!7h#oDwPQ9;&`O{Xi{seqDDM{K;oaU zC^0OQNe8T80Z8Sv2#39+u}~tW3E>lzRpUq~&wWQ{%1MTvGJ>dRrDOe(fCZ>I)G;Z` z1tJzudqGaGESz)JUum&G7uky!<6(yCppq?VAOdwJ~ zE?s5#)O2^fSZuy7R$OnhyLoLJbis$~+o*gG8}g)~6Y2Nj_u$m z?bfXL;{k!-w}@DC5OV>qT@*XWSr0AUh^Xp0uuNAfC7y~DFX;5N@U}tc-8XK%v6gjt zSB;#8t;1u=PP%d!3G0Cj#Doq2o#Hu>o>m_tN;g8E!Qh+O9XZ>4(yhT+_vOQTu)MU+ zm7C-D^7^wKudi zMca^}Jp`3_6NDq9D%o6?3hgL``j9#QO4dcJsgN(5ipGP=F4tV+ggbs261l7lrYE_S2ads?jL271L&W*i0BJHN|L!KTWr{ns;IzwB?gAvuOTaEco-_DNum@PwY3-j% zrbDDigI+ViOsKgHPK^?`sCykUa}&panHGw!N*5N-y`$j>CPF;b*qfp)JfTH>mDi~r z8Q?mnL-dngkCQpQ#UlfU*zdrv1G|cIM0M=z`To(EWvYVp-;7egM}dl1SDVM(itR( zcq^O^&;oQWg6_Sq`Rw>OO>XT=?q9nmw|_H2PMykfP`3Hh5HW)XN0q23!oiuMJ^i< zhXEi`OMu|6+lfvkb|(jV>#E$g8?t+*26lR;6ZEnZ71rH)}W;q?IGhxev{hjqX0Ls!Y7 zRA0VVfvc&LyAbiE(7i3f>t+B?cM;@{-)lXJ1q?(`ZJ;? zos^{Ecb=#Fw1k3IJhG72jt%eN>g=9&4v<8LSD2IuLF~EP=CW_A=Po+L{c5%oJSEkd z41vVN0>i6J@@rH*u%4DIdBLRun?O^=oY!swyw{=e6>jDCFX8=H>e+L%-f!Uj^Y!e7 zS?_OY|F6z^|1#b`hbd;ge?{Lv?+7|BkesQ@uf62xqWF?)uWihGd28OwmuI}>mTR+m zazC|K&{L=!yq6GF`L%R0rY1QdJGkqt|s}D z&Cj6T_nEX!6oszUGtIw1tHMaWRLr%>n_oqnKTAg{pw~5hv3aZ9w164c^p)mYX!?cn zs1_Qo?PjxwwtqgStyVs`=KbagnqMt9PlS`D7T58t`M2ecbA^`c`1j4X(ecxT88r;= zn*3w)hiLL_WfKi?xQ0J!{0j}iY})Q`@Y`$p^qcVXGyMFTes>%9 oWb4!4;Ro0B=|AyHYx?vqeqv3ZKKrbDnmqWI>#R_pOzt&)3xyw-`~Uy| literal 52957 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 diff --git a/docs/doctrees/index.doctree b/docs/doctrees/index.doctree index 5e2e39d4513c57e9b9bbedad53b837399f5622b2..4b714fbb6b15914917fd279cf35ea6d0622fe35f 100644 GIT binary patch delta 123 zcmaEoy)K8ffpw~~*+$lGMg=eZ(BjmhV*Q-VDt({Kq@u*4N`2>?{L+-*lKi5?^wiC> z7^RsR88>fZ3D+>`5h*E3%qz}GEXmBzi!Uh3PcKR>E}l|5MWctcB)=pvXNosN4;M^L UY6_5Bx|vt^6CR2@Gcz)6KEo2Ou{m7#6C7%Q6wcaS|0TBN05;Ob_9P9E7B?0IRKy_xqFzV@L_kkP$=aUyty%Aw+1*fs zDuNUami9Kw2~L$N1$TnsQEq8JL48l)SCln>OWk%{1PtZ5nm1^ImP;WN!0yhjG0{#T!a3 z$!*7n@L;`OI>w;H) zt>*x<$kHArZs6nu>?1!6t3gM6r<}{ILKr6n8W`fMX;N&{aNF#1vGGrzggr2R4Pt}Kp^`yj?>LyAwlz1pnKK`n5L+J5hd@M!;2IA{< z74^6w@|lH_28ZLUHZqvj{p!7^MK)1Zn5ZUJl%rET-$9nU!4E=px2;bkii*y|5bv@6>)s zgt(u?oowlY)Rm6;yxrB&0A8}oDY|P9r|K@_xYhTPrf#)dbe8YM>becSmzDiC@pHCy z-m=j$E<6c847-+>8A(+p)No!ju@p;pj6G`hs-(wU($FnpTpVWHG&m-0_Q)=0oj?hj zxtIZ|_ejHJmQ+OQ!)ce<270|mbgL<4lSks6%$$xw{%e^3E6Sr{Gnr z&6#IoPbgDUlkO@iHE}0Xi)-!R41GGQwHNW)F{@U@#SD$DKLEQi#0F;z*=NE_Xt+zE z;pQ>-5gB%PTy9?a&&6h(a^M3_MjmW8{*w%6WKgk~+d3gbMI7W_!oBFR(jxfY=hnP< zXdfS{-op;pE!#xzF>AZaSqn`rUAyF|4#Vf-Z%ldV(H+{vr8~Hn`(05!AN-pCEL!wt zZMSaY-_i{jEWJY|T>MseobIE9?Wu{|-FIQzbT#`f$A; fTq9SX1oHMKSuGve9 zD}l>RC}`hid8$-YsZxN43dk?0KA?a_KptZJaz^G~O0P`G zwHPcy5$z>mFOOcDPioAjrlNV=TYk%X!z)1CjnRh9KT6K=(O79luEhh;lRn6)!>n87 z%IL#fjXjl^F7nD3@01q4PuxC*cMQ8+2i@K`6K_a zz325+EP%$ZCsuN&K&~YN0ZgdAo+L|K1J-6B3qoE<@NdU9rFSBHD!^Y1@i`wKS_Pi} zn#l7T@%u3#!N$LdKR=MKgFL>RsOCTQ{lMZH$ZMF6XG7j7Z_*b?T|{^~AQk|mcyRH+ zwj0PkNLQ6tk}_XQK9b-6KZ2V+!7;fu5fBJ~xSFFyVmdmpfs&S?Y5cFGEba5l*<$A4 z^e#V>Iwr01*V3obX-{0*tSgq;wAa4?tdSoq{z81A=cY78-*S{K>bYZe#RAVAf4!}p zv^q)yO{tDaEoyF4&w&&0ozNrKCJ{dz;F~M!8dWSxbi<}7QL)J;mf9v^mTw|mY7=E! zVVY9cD8YJJ@2>Y)kyr-CVv3k-)~2LRnZ8B3hC|LXO(Qy`O=25_>6WeFn%Sgf8f|gj zG90r(NyBK;@=8C{aW_TV9Z)Q04Ho@{A#Es)u-@&Z-8*GMSOFU=HzZ;uxR3%Ys3X$I z$ek-=c2rIAYPQmoYY+5GBLa!)Xx%B*_b{GJ)W+%vzmzTIZeha(ir`N_299l<^_x4i z?(%0c&kgiU*m7r=s&^Ci6Mop!a&0yUI|TV%H()LYzBr$tOQ-L~@r!}u`M_}q;;rnX z(rFB?vLV;P&Coq2`}^ownC`F+arCe}v8NiRHY_E~~BzCsoPMtT*X2WoF zyX4O-560a&%c)y7vmG1X@K>9(#dPLR2fJtVv4_Hk#Gghn{DLve)rZ|Ga2&si<#Yb4 zq5kCG18Q{YZtj4;&2-16mZ$!V+fg#5hzDm8%`Km%cNqFMM2?{L+-*lKi5?^wiB! zj2~D{dPGW!67!045=%1k^WqDN^3#h_i;Jh!PSNOLEy*uQ%$efN(8C2&lbQnLmTvZ9 z|HR06YO^ip4`xP=$?JI~Cj0TqF|tk01(NKOdw7)?C4iz9K#>=`ri`qU<@h8R#W$Pt YO=lG9;mWNnE{QMBDNP62QktX(03#+oS^xk5 delta 96 zcmZ3ba8aJMfpzLJ{*A2Oj9jMr8Tq-X`Z<|Zn+q5}ux_5h{)v(C*yeW5AIyv_lN)%= z7?~z-=apk*o_vj0iBSY7A~9KzPXQ=u#AnLF$jHDj`2epdqwwZNzUhq2rAc}K)G!;b diff --git a/docs/doctrees/modules.doctree b/docs/doctrees/modules.doctree index 71bfef2cff0f42c10b95f204e78375fc0929f3cc..d6dae97c249a1518c1cf4064b5a679d9311d9d91 100644 GIT binary patch delta 129 zcmaDNx=xI>fpw}f_eR!WMg<@J(BjmhV*Q-VDt({Kq@u*4N`2>?{L+-*lKi5?^wh~o zj0+~KFey%EWK!Df$`r|H(j!t*l$ckXlUS0OpBG M@&N&Zv)ctz1@n{=Gynhq diff --git a/docs/doctrees/notebooks/CodingFiguresFern.doctree b/docs/doctrees/notebooks/CodingFiguresFern.doctree index e38b913190364c6f807f2fd3d1dab0db361eea4b..7aae9ecc07cfb5c8ecd76eb77b92d3d65fe24629 100644 GIT binary patch delta 10015 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 F_&+T4qdEWp delta 9842 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 fdqxoH0V~nzMB0Xuxwug delta 4442 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 diff --git a/docs/doctrees/tutorials.doctree b/docs/doctrees/tutorials.doctree index 1f17dea345b72a3ff885112275a475ecde35370a..f33912540d5863361f1ddd04c81c3a774a16a703 100644 GIT binary patch delta 117 zcmX>i+9$@^z&e$gdn2neqk^A)XmM&$v3^cwmA+4AQc+@2rM`1cerZZ@Nq$jcdg|sN zMja-T9+8rw#Ju91#FEVXy!e8m{Pd#K;^HZ_Q#5*5OY%z+bEbGR^l-t{q^1D5rJL)R OKQS`4ZZ2dEW(5FPJ}L(Q delta 42 ycmeAZJ0i;3z&dp&*G5)nMlK8ejQreG{hZ9I%^8e3Oq)+Ie_~{8+`OALm=ypf01f&8 diff --git a/docs/ect_on_graphs.html b/docs/ect_on_graphs.html index f7c8330..2e95e4e 100644 --- a/docs/ect_on_graphs.html +++ b/docs/ect_on_graphs.html @@ -1,31 +1,32 @@ - + - 2.1. ECT on Graphs — ect 0.0.1 documentation - - + 2.2. ECT on Graphs — ect 0.1.3 documentation + + + - - - - - + + + + + - - + + @@ -51,8 +52,24 @@

      • 1. Getting Started
      • 2. Modules
      • 3. Tutorials
      • @@ -76,7 +93,7 @@
        • - +
        • View page source
        • @@ -87,147 +104,153 @@
          -

          2.1. ECT on Graphs

          +

          2.2. ECT on Graphs

          -class ect_graph.ECT(num_dirs, num_thresh, bound_radius=None)
          -

          A class to calculate the Euler Characteristic Transform (ECT) from an input embed_graph.EmbeddedGraph. -The result is a matrix where entry M[i,j] is \(\chi(K_{a_i})\) for the direction \(\omega_j\) where \(a_i\) is the ith entry in self.threshes, and \(\omega_j\) is the ith entry in self.thetas.

          -

          +class ect_graph.ECT(num_dirs, num_thresh, bound_radius=None)[source] +

          A class to calculate the Euler Characteristic Transform (ECT) from an input embedded graph.

          +

          The result is a matrix where entry M[i,j] is \(\chi(K_{a_i})\) for the direction \(\omega_j\) where \(a_i\) is the ith entry in self.threshes, and \(\omega_j\) is the ith entry in self.thetas.

          Attributes
          -
          num_dirsint

          The number of directions to consider in the matrix.

          +
          num_dirs (int):

          The number of directions to consider in the matrix.

          -
          num_threshint

          The number of thresholds to consider in the matrix.

          +
          num_thresh (int):

          The number of thresholds to consider in the matrix.

          -
          bound_radiusint

          Either None, or a positive radius of the bounding circle.

          +
          bound_radius (int):

          Either None, or a positive radius of the bounding circle.

          -
          ECT_matrixnp.array

          The matrix to store the ECT.

          +
          ECT_matrix (np.array):

          The matrix to store the ECT.

          -
          SECT_matrixnp.array

          The matrix to store the SECT.

          +
          SECT_matrix (np.array):

          The matrix to store the SECT.

          -
          Methods
          -
          __init__(num_dirs, num_thresh):

          Constructs all the necessary attributes for the ECT object.

          -
          -
          calculate(graph):

          Calculates the ECT from an input EmbeddedGraph.

          +
          +
          +
          +__init__(num_dirs, num_thresh, bound_radius=None)[source]
          +

          Constructs all the necessary attributes for the ECT object.

          +
          +
          Parameters:
          +
            +
          • num_dirs (int) – The number of directions to consider in the matrix.

          • +
          • num_thresh (int) – The number of thresholds to consider in the matrix.

          • +
          • bound_radius (int) – Either None, or a positive radius of the bounding circle.

          • +
          +
          + +
          +
          +set_bounding_radius(bound_radius)[source]
          +

          Manually sets the radius of the bounding circle centered at the origin for the ECT object.

          +
          +
          Parameters:
          +

          bound_radius (int) – Either None, or a positive radius of the bounding circle.

          +
          + +
          +
          +get_ECT()[source]
          +

          Returns the ECT matrix.

          +
          + +
          +
          +get_SECT()[source]
          +

          Returns the SECT matrix.

          +
          +
          -calculateECC(G, theta, tightbbox=False)
          +calculateECC(G, theta, tightbbox=False)[source]

          Function to compute the Euler Characteristic of a graph with coordinates for each vertex (pos).

          -
          -
          Parameters:
          -
          GGraph

          The graph to compute the Euler Characteristic for.

          -
          -
          thetafloat

          The angle (in radians) to rotate the graph by before computing the Euler Characteristic.

          -
          -
          tightbboxbool, optional

          If True, use the tight bounding box of the graph. If False, use the bounding circle. Default is False.

          -
          -
          +
          +
          Parameters:
          +
            +
          • G (nx.Graph) – The graph to compute the Euler Characteristic for.

          • +
          • theta (float) – The angle (in radians) to rotate the graph by before computing the Euler Characteristic.

          • +
          • tightbbox (bool) – If True, use the tight bounding box of the graph. If False, use the bounding circle. Default is False.

          • +
          -calculateECT(graph, tightbbox=False, compute_SECT=True)
          -

          Calculates the ECT from an input EmbeddedGraph. The entry M[i,j] is $chi(K_{a_j})$ for the direction $omega_i$ where $a_j$ is the $j$th entry in self.threshes, and $omega_i$ is the ith entry in self.thetas.

          -
          -
          Parameters:
          -
          graphEmbeddedGraph

          The input graph to calculate the ECT from.

          -
          -
          tightbboxbool, optional

          Whether to use the tight bounding box (a different value in each direction) computed from the input graph. Otherwise, a bounding box needs to already be set manually with the set_bounding_box method.

          -
          -
          compute_SECTbool, optional

          Whether to compute the SECT after the ECT is computed. Default is True. Sets the SECT_matrix attribute, but doesn’t return it. Can be returned with the get_SECT method.

          -
          -
          +calculateECT(graph, tightbbox=False, compute_SECT=True)[source] +

          Calculates the ECT from an input EmbeddedGraph. The entry M[i,j] is \(\chi(K_{a_j})\) for the direction \(\omega_i\) where \(a_j\) is the jth entry in self.threshes, and \(\omega_i\) is the ith entry in self.thetas.

          +
          +
          Parameters:
          +
            +
          • graph (EmbeddedGraph) – The input graph to calculate the ECT from.

          • +
          • tightbbox (bool) – Whether to use the tight bounding box (a different value in each direction) computed from the input graph. Otherwise, a bounding box needs to already be set manually with the set_bounding_box method.

          • +
          • compute_SECT (bool) – Whether to compute the SECT after the ECT is computed. Default is True. Sets the SECT_matrix attribute, but doesn’t return it. Can be returned with the get_SECT method.

          • +
          -
          Returns:
          +
          Returns:
          +

          np.array

          The matrix representing the ECT of size (num_dirs,num_thresh).

          +

          -calculateSECT()
          +calculateSECT()[source]

          Function to calculate the Smooth Euler Characteristic Transform (SECT) from the ECT matrix.

          -
          -
          Returns:
          +
          +
          Returns:
          +

          np.array

          The matrix representing the SECT of size (num_dirs,num_thresh).

          -
          -
          -
          - -
          -
          -get_ECT()
          -

          Returns the ECT matrix.

          -
          - -
          -
          -get_SECT()
          -

          Returns the SECT matrix.

          -
          - -
          -
          -plot(type)
          -

          Function to plot the ECT or SECT matrix. The type parameter should be either ‘ECT’ or ‘SECT’.

          -
          -
          Parameters:
          -
          typestr

          The type of plot to make. Either ‘ECT’ or ‘SECT’.

          -
          -
          +

          -plotECC(graph, theta)
          +plotECC(graph, theta)[source]

          Function to plot the Euler Characteristic Curve (ECC) for a specific direction theta. Note that this calculates the ECC for the input graph and then plots it.

          -
          -
          Parameters:
          -
          graphEmbeddedGraph

          The input graph.

          -
          -
          thetafloat

          The angle in [0,2*np.pi] for the direction to plot the ECC.

          -
          -
          +
          +
          Parameters:
          +
            +
          • graph (EmbeddedGraph) – The input graph.

          • +
          • theta (float) – The angle in \([0,2\pi]\) for the direction to plot the ECC.

          • +
          -plotECT()
          +plotECT()[source]

          Function to plot the Euler Characteristic Transform (ECT) matrix. Note that the ECT matrix must be calculated before calling this function.

          The resulting plot will have the angle on the x-axis and the threshold on the y-axis.

          -plotSECT()
          +plotSECT()[source]

          Function to plot the Smooth Euler Characteristic Transform (SECT) matrix. Note that the SECT matrix must be calculated before calling this function.

          The resulting plot will have the angle on the x-axis and the threshold on the y-axis.

          -
          -set_bounding_radius(bound_radius)
          -

          Manually sets the radius of the bounding circle centered at the origin for the ECT object.

          -
          -
          Parameters:

          bound_radius (int): Either None, or a positive radius of the bounding circle.

          +
          +plot(plot_type)[source]
          +

          Function to plot the ECT or SECT matrix. The type parameter should be either ‘ECT’ or ‘SECT’.

          +
          +
          Parameters:
          +

          plot_type – str +The type of plot to make. Either ‘ECT’ or ‘SECT’.

          @@ -240,8 +263,8 @@

    diff --git a/docs/embed_graph.html b/docs/embed_graph.html index 73df041..c83e236 100644 --- a/docs/embed_graph.html +++ b/docs/embed_graph.html @@ -1,31 +1,32 @@ - + - 2.2. Embedded graphs — ect 0.0.1 documentation - - + 2.1. Embedded graphs — ect 0.1.3 documentation + + + - - - - - + + + + + - - + + @@ -51,8 +52,29 @@
    • 1. Getting Started
    • 2. Modules
    • 3. Tutorials
    • @@ -76,7 +98,7 @@
      • - +
      • View page source
      • @@ -87,10 +109,10 @@
        -

        2.2. Embedded graphs

        +

        2.1. Embedded graphs

        -class embed_graph.EmbeddedGraph
        +class embed_graph.EmbeddedGraph[source]

        A class to represent a graph with 2D embedded coordinates for each vertex.

        Attributes
        @@ -98,238 +120,244 @@
        -
        Methods
        -
        add_vertex(vertex, x, y):

        Adds a vertex to the graph and assigns it the given coordinates.

        -
        -
        add_edge(u, v):

        Adds an edge between the vertices u and v.

        -
        -
        get_coordinates(vertex):

        Returns the coordinates of the given vertex.

        -
        -
        set_coordinates(vertex, x, y):

        Sets the coordinates of the given vertex.

        -
        -
        -
        -
        -add_edge(u, v)
        -

        Adds an edge between the vertices u and v if they exist.

        -
        -
        Parameters:
        -
        ustr

        The first vertex of the edge.

        -
        -
        vstr

        The second vertex of the edge.

        -
        -
        -
        -
        +
        +__init__()[source]
        +

        Initializes an empty EmbeddedGraph object.

        -add_vertex(vertex, x, y)
        +add_vertex(vertex, x, y)[source]

        Adds a vertex to the graph and assigns it the given coordinates.

        -
        -
        Parameters:
        -
        vertex: str

        The vertex to be added.

        -
        -
        xfloat

        The x-coordinate of the vertex.

        -
        -
        yfloat

        The y-coordinate of the vertex.

        +
        +
        Parameters:
        +
          +
        • vertex (str) – The vertex to be added.

        • +
        • x (float) – The x-coordinate of the vertex.

        • +
        • y (float) – The y-coordinate of the vertex.

        • +
        +
        + +
        +
        +add_edge(u, v)[source]
        +

        Adds an edge between the vertices u and v if they exist.

        +
        +
        Parameters:
        +
          +
        • u (str) – The first vertex of the edge.

        • +
        • v (str) – The second vertex of the edge.

        • +
        -
        -g_omega(theta)
        -

        Function to compute the function g_omega(v) for all vertices v in the graph in the direction of theta in [0,2*np.pi]. This function is defined by $g_omega(v) = < pos(v), omega >$.

        -

        Parameters:

        -
        -
        -
        thetafloat

        The angle in [0,2*np.pi] for the direction to compute the g(v) values.

        +
        +get_coordinates(vertex)[source]
        +

        Returns the coordinates of the given vertex.

        +
        +
        Parameters:
        +

        vertex (str) – The vertex whose coordinates are to be returned.

        +
        +
        Returns:
        +

        The coordinates of the vertex.

        +
        +
        Return type:
        +

        tuple

        -
        -

        Returns:

        -
        -

        dict: A dictionary mapping vertices to their g(v) values.

        -
        -
        -g_omega_edges(theta)
        -

        Calculates the function value of the edges of the graph by making the value equal to the max vertex value

        -

        Parameters:

        -
        -
        -
        thetafloat

        The direction of the function to be calculated.

        +
        +set_coordinates(vertex, x, y)[source]
        +

        Sets the coordinates of the given vertex.

        +
        +
        Parameters:
        +
          +
        • vertex (str) – The vertex whose coordinates are to be set.

        • +
        • x (float) – The new x-coordinate of the vertex.

        • +
        • y (float) – The new y-coordinate of the vertex.

        • +
        -
        -
        -

        Returns:

        -
        -
        -
        g_edgesdict

        A dictionary of the function values of the edges.

        +
        Raises:
        +

        ValueError – If the vertex does not exist in the graph.

        -
        -get_bounding_box()
        +get_bounding_box()[source]

        Method to find a bounding box of the vertex coordinates in the graph.

        -
        -
        Returns:

        list: A list of tuples representing the minimum and maximum x and y coordinates.

        +
        +
        Returns:
        +

        A list of tuples representing the minimum and maximum x and y coordinates.

        +
        +
        Return type:
        +

        list

        -get_bounding_radius()
        +get_bounding_radius()[source]

        Method to find the radius of the bounding circle of the vertex coordinates in the graph.

        -
        -
        Returns:

        float: The radius of the bounding circle.

        +
        +
        Returns:
        +

        The radius of the bounding circle.

        +
        +
        Return type:
        +

        float

        -
        -get_coordinates(vertex)
        -

        Returns the coordinates of the given vertex.

        -
        -
        Parameters:
        -
        vertexstr

        The vertex whose coordinates are to be returned.

        -
        -
        +
        +get_mean_centered_coordinates()[source]
        +

        Method to find the mean-centered coordinates of the vertices in the graph.

        +
        +
        Returns:
        +

        A dictionary mapping vertices to their mean-centered coordinates.

        -
        Returns:

        tuple: The coordinates of the vertex.

        +
        Return type:
        +

        dict

        -
        -get_mean_centered_coordinates()
        -

        Method to find the mean-centered coordinates of the vertices in the graph.

        -
        -
        Returns:

        dict: A dictionary mapping vertices to their mean-centered coordinates.

        -
        -
        +
        +set_mean_centered_coordinates()[source]
        +

        Method to set the mean-centered coordinates of the vertices in the graph. Warning: This overwrites the original coordinates

        -
        -lower_edges(v, omega)
        -

        Function to compute the number of lower edges of a vertex v for a specific direction (included by the use of sorted v_list).

        -
        -
        Parameters:
        -
        vstr

        The vertex to compute the number of lower edges for.

        -
        -
        omegatuple

        The direction vector to consider given as an angle in [0, 2pi].

        +
        +g_omega(theta)[source]
        +

        Function to compute the function \(g_\omega(v)\) for all vertices \(v\) in the graph in the direction of \(\theta \in [0,2\pi]\) . This function is defined by \(g_\omega(v) = \langle \texttt{pos}(v), \omega \rangle\) .

        +
        +
        Parameters:
        +

        theta (float) – The angle in \([0,2\pi]\) for the direction to compute the \(g(v)\) values.

        -
        +
        Returns:
        +

        A dictionary mapping vertices to their \(g(v)\) values.

        -
        Returns:

        int: The number of lower edges of the vertex v.

        +
        Return type:
        +

        dict

        -
        -plot(bounding_circle=False, color_nodes_theta=None)
        -

        Function to plot the graph with the embedded coordinates.

        -

        If bounding_circle is True, a bounding circle is drawn around the graph.

        -

        If color_nodes_theta is not None, it should be given as a theta in \([0,2\pi]\). Then the nodes are colored according to the \(g(v)\) values in the direction of theta.

        -
        - -
        -
        -set_coordinates(vertex, x, y)
        -

        Sets the coordinates of the given vertex.

        -
        -
        Parameters:
        -
        vertexstr

        The vertex whose coordinates are to be set.

        -
        -
        xfloat

        The new x-coordinate of the vertex.

        +
        +g_omega_edges(theta)[source]
        +

        Calculates the function value of the edges of the graph by making the value equal to the max vertex value

        +
        +
        Parameters:
        +

        theta (float) – The direction of the function to be calculated.

        -
        yfloat

        The new y-coordinate of the vertex.

        +
        Returns:
        +

        +
        dict

        A dictionary of the function values of the edges.

        -
        -
        Raises:

        ValueError: If the vertex does not exist in the graph.

        +

        -
        -set_mean_centered_coordinates()
        -

        Method to set the mean-centered coordinates of the vertices in the graph. Warning: This overwrites the original coordinates

        +
        +sort_vertices(theta, return_g=False)[source]
        +

        Function to sort the vertices of the graph according to the function g_omega(v) in the direction of theta in [0,2*np.pi].

        +

        TODO: eventually, do we want this to return a sorted list of g values as well? Since we’re already doing the sorting work, it might be helpful.

        +
        +
        Parameters:
        +
          +
        • theta (float) – The angle in [0,2*np.pi] for the direction to sort the vertices.

        • +
        • return_g (bool) – Whether to return the g(v) values along with the sorted vertices.

        • +
        +
        +
        Returns:
        +

        +
        list

        A list of vertices sorted in increasing order of the \(g(v)\) values. +If return_g is True, also returns the g dictionary with the function values g[vertex_name]=func_value.

        +
        +
        +

        +
        +
        -sort_edges(theta, return_g=False)
        +sort_edges(theta, return_g=False)[source]

        Function to sort the edges of the graph according to the function

        \[g_\omega(e) = \max \{ g_\omega(v) \mid v \in e \}\]

        in the direction of \(\theta \in [0,2\pi]\) .

        -
        -
        Parameters:
        -
        thetafloat

        The angle in \([0,2\pi]\) for the direction to sort the vertices.

        -
        -
        return_gbool

        Whether to return the \(g(v)\) values along with the sorted vertices.

        -
        -
        -
        -
        Returns:
        -
        list:

        A list of vertices sorted in increasing order of the \(g(v)\) values.

        -
        -
        dict:

        If return_g is True, also returns the g dictionary with the function values.

        +
        +
        Parameters:
        +
          +
        • theta (float) – The angle in \([0,2\pi]\) for the direction to sort the edges.

        • +
        • return_g (bool) – Whether to return the \(g(v)\) values along with the sorted edges.

        • +
        -
        +
        Returns:
        +

        A list of edges sorted in increasing order of the \(g(v)\) values. +If return_g is True, also returns the g dictionary with the function values g[vertex_name]=func_value.

        -
        -sort_vertices(theta, return_g=False)
        -

        Function to sort the vertices of the graph according to the function g_omega(v) in the direction of theta in [0,2*np.pi].

        -

        TODO: eventually, do we want this to return a sorted list of g values as well? Since we’re already doing the sorting work, it might be helpful.

        -
        -
        Parameters:
        -
        thetafloat

        The angle in [0,2*np.pi] for the direction to sort the vertices.

        -
        -
        return_gbool

        Whether to return the g(v) values along with the sorted vertices.

        -
        -
        +
        +lower_edges(v, omega)[source]
        +

        Function to compute the number of lower edges of a vertex v for a specific direction (included by the use of sorted v_list).

        +
        +
        Parameters:
        +
          +
        • v (str) – The vertex to compute the number of lower edges for.

        • +
        • omega (tuple) – The direction vector to consider given as an angle in [0, 2pi].

        • +
        -
        Returns:
        -
        list:

        A list of vertices sorted in increasing order of the g(v) values.

        +
        Returns:
        +

        The number of lower edges of the vertex v.

        -
        dict:

        If return_g is True, also returns the g dictionary with the function values.

        -
        -
        +
        Return type:
        +

        int

        +
        +
        +plot(bounding_circle=False, color_nodes_theta=None)[source]
        +

        Function to plot the graph with the embedded coordinates.

        +

        If bounding_circle is True, a bounding circle is drawn around the graph.

        +

        If color_nodes_theta is not None, it should be given as a theta in \([0,2\pi]\). Then the nodes are colored according to the \(g(v)\) values in the direction of theta.

        +
        +
        -embed_graph.create_example_graph(mean_centered=True)
        +embed_graph.create_example_graph(mean_centered=True)[source]

        Function to create an example EmbeddedGraph object. Helpful for testing.

        -
        -
        Returns:

        EmbeddedGraph: An example EmbeddedGraph object.

        +
        +
        Returns:
        +

        An example EmbeddedGraph object.

        +
        +
        Return type:
        +

        EmbeddedGraph

        @@ -340,8 +368,8 @@