From dfa76e94629d3fa14ca5e0642ac83cf57098b13f Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Wed, 15 Dec 2021 03:03:01 -0800 Subject: [PATCH] updates Signed-off-by: Jess Frazelle --- .github/workflows/build-test.yml | 9 +- .github/workflows/generate-docs.yml | 9 +- docs/conf.py | 98 + docs/html/.buildinfo | 4 + docs/html/.doctrees/environment.pickle | Bin 0 -> 1683345 bytes docs/html/.doctrees/index.doctree | Bin 0 -> 4924 bytes docs/html/_sources/index.rst.txt | 20 + docs/html/_static/alabaster.css | 701 + docs/html/_static/basic.css | 905 ++ docs/html/_static/custom.css | 1 + docs/html/_static/doctools.js | 323 + docs/html/_static/documentation_options.js | 12 + docs/html/_static/file.png | Bin 0 -> 286 bytes docs/html/_static/jquery-3.5.1.js | 10872 ++++++++++++++++ docs/html/_static/jquery.js | 2 + docs/html/_static/language_data.js | 297 + docs/html/_static/minus.png | Bin 0 -> 90 bytes docs/html/_static/plus.png | Bin 0 -> 90 bytes docs/html/_static/pygments.css | 82 + docs/html/_static/searchtools.js | 529 + docs/html/_static/underscore-1.13.1.js | 2042 +++ docs/html/_static/underscore.js | 6 + docs/html/genindex.html | 100 + docs/html/index.html | 132 +- ...ttycad.api.file.file_conversion_by_id.html | 43 - docs/html/kittycad.api.file.file_convert.html | 43 - docs/html/kittycad.api.file.html | 23 - docs/html/kittycad.api.html | 23 - docs/html/kittycad.api.meta.html | 24 - ...kittycad.api.meta.meta_debug_instance.html | 43 - .../kittycad.api.meta.meta_debug_session.html | 43 - docs/html/kittycad.api.meta.ping.html | 42 - docs/html/kittycad.client.html | 171 - docs/html/kittycad.models.auth_session.html | 113 - docs/html/kittycad.models.environment.html | 76 - docs/html/kittycad.models.error_message.html | 112 - .../html/kittycad.models.file_conversion.html | 113 - ...ittycad.models.file_conversion_status.html | 80 - docs/html/kittycad.models.html | 29 - .../kittycad.models.instance_metadata.html | 112 - docs/html/kittycad.models.message.html | 112 - .../kittycad.models.valid_file_types.html | 80 - docs/html/kittycad.types.html | 161 - docs/html/objects.inv | Bin 0 -> 263 bytes docs/html/search.html | 119 + docs/html/searchindex.js | 1 + docs/index.rst | 20 + docs/make.bat | 35 + pyproject.toml | 9 + 49 files changed, 16296 insertions(+), 1475 deletions(-) create mode 100644 docs/conf.py create mode 100644 docs/html/.buildinfo create mode 100644 docs/html/.doctrees/environment.pickle create mode 100644 docs/html/.doctrees/index.doctree create mode 100644 docs/html/_sources/index.rst.txt create mode 100644 docs/html/_static/alabaster.css create mode 100644 docs/html/_static/basic.css create mode 100644 docs/html/_static/custom.css create mode 100644 docs/html/_static/doctools.js create mode 100644 docs/html/_static/documentation_options.js create mode 100644 docs/html/_static/file.png create mode 100644 docs/html/_static/jquery-3.5.1.js create mode 100644 docs/html/_static/jquery.js create mode 100644 docs/html/_static/language_data.js create mode 100644 docs/html/_static/minus.png create mode 100644 docs/html/_static/plus.png create mode 100644 docs/html/_static/pygments.css create mode 100644 docs/html/_static/searchtools.js create mode 100644 docs/html/_static/underscore-1.13.1.js create mode 100644 docs/html/_static/underscore.js create mode 100644 docs/html/genindex.html delete mode 100644 docs/html/kittycad.api.file.file_conversion_by_id.html delete mode 100644 docs/html/kittycad.api.file.file_convert.html delete mode 100644 docs/html/kittycad.api.file.html delete mode 100644 docs/html/kittycad.api.html delete mode 100644 docs/html/kittycad.api.meta.html delete mode 100644 docs/html/kittycad.api.meta.meta_debug_instance.html delete mode 100644 docs/html/kittycad.api.meta.meta_debug_session.html delete mode 100644 docs/html/kittycad.api.meta.ping.html delete mode 100644 docs/html/kittycad.client.html delete mode 100644 docs/html/kittycad.models.auth_session.html delete mode 100644 docs/html/kittycad.models.environment.html delete mode 100644 docs/html/kittycad.models.error_message.html delete mode 100644 docs/html/kittycad.models.file_conversion.html delete mode 100644 docs/html/kittycad.models.file_conversion_status.html delete mode 100644 docs/html/kittycad.models.html delete mode 100644 docs/html/kittycad.models.instance_metadata.html delete mode 100644 docs/html/kittycad.models.message.html delete mode 100644 docs/html/kittycad.models.valid_file_types.html delete mode 100644 docs/html/kittycad.types.html create mode 100644 docs/html/objects.inv create mode 100644 docs/html/search.html create mode 100644 docs/html/searchindex.js create mode 100644 docs/index.rst create mode 100644 docs/make.bat diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 2ded89fbd..7bb463067 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -29,20 +29,19 @@ jobs: shell: bash run: | pip install \ - flake8 \ - poetry \ - pytest + poetry - name: Build shell: bash run: | + poetry install poetry build - name: Lint with flake8 shell: bash run: | # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics diff --git a/.github/workflows/generate-docs.yml b/.github/workflows/generate-docs.yml index 42729018f..c46f90670 100644 --- a/.github/workflows/generate-docs.yml +++ b/.github/workflows/generate-docs.yml @@ -27,8 +27,11 @@ jobs: - name: Install dependencies shell: bash run: | + sudo apt update && sudo apt install -y \ + enchant-2 \ + --no-install-recommends pip install \ - poetry + poetry - name: Build shell: bash @@ -40,10 +43,8 @@ jobs: run: | rm -rf docs/html poetry install + poetry run sphinx-build -b html docs/ docs/html/ for f in `poetry run python -m pydoc -k kittycad | awk '{ print $1}'`; do poetry run python -m pydoc -w $f; done - mkdir -p docs/html - mv *.html docs/html/ - mv docs/html/kittycad.html docs/html/index.html - name: Check for modified files id: git-check diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 000000000..79b58ce11 --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,98 @@ +# Configuration file for the Sphinx documentation builder. +# +# This file only contains a selection of the most common options. For a full +# list see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Path setup -------------------------------------------------------------- + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# +import os +import sys + + +sys.path.append(os.path.abspath('../kittycad')) + + +# -- Project information ----------------------------------------------------- + +project = 'kittycad' +copyright = '2021, KittyCAD Inc.' +author = 'KittyCAD Inc.' + +# The full version, including alpha/beta/rc tags +# Get the version from the poetry file. +import toml + +with open(os.path.abspath('../pyproject.toml'), 'r') as f: + parsed_toml = toml.load(f) + version = parsed_toml['tool']['poetry']['version'] + +release = 'v'+ version + + +# -- General configuration --------------------------------------------------- + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx_autodoc_typehints', + 'sphinx.ext.intersphinx', + 'sphinx.ext.linkcode' +] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path. +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +html_theme = 'alabaster' + +# 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, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = [] + +# Intersphinx configuration. +# FROM: https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#module-sphinx.ext.intersphinx +intersphinx_mapping = { + 'python': ('https://python.readthedocs.io/en/latest/', None), +} + +# This is a function linkcode_resolve(domain, info), which should return the URL +# to source code corresponding to the object in given domain with given information. +# FROM: https://www.sphinx-doc.org/en/master/usage/extensions/linkcode.html +def linkcode_resolve(domain, info): + if domain != 'py': + return None + if not info['module']: + return None + filename = info['module'].replace('.', '/') + return "https://github.com/kittycad/kittycad.py/%s.py" % filename + + +# Spell checker. +try: + import enchant # noqa # pylint: disable=unused-import +except ImportError as ex: + print("enchant module import failed:\n" + "{0}\n" + "Spell checking disabled.".format(ex), + file=sys.stderr) +else: + extensions.append('sphinxcontrib.spelling') + spelling_show_suggestions = True diff --git a/docs/html/.buildinfo b/docs/html/.buildinfo new file mode 100644 index 000000000..cb68cb6fc --- /dev/null +++ b/docs/html/.buildinfo @@ -0,0 +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: 6bd9e2481a7ccca135a0d86b825cd8ac +tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/html/.doctrees/environment.pickle b/docs/html/.doctrees/environment.pickle new file mode 100644 index 0000000000000000000000000000000000000000..9334f6b7ebe4940c3eb7b44b6a2599a771c54ccf GIT binary patch literal 1683345 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%0DJYD9*q&fuV~Fsvl0E>RV%SPIeb#Do+6ll0(4& zt>$~DGm8ZS3JQeYb8F-@@P6}j(>~vbI~3f%B+rUnfH9RZM9`y-vD?zEfQH5h3Z9-k zdZ3P&(YiYQtDn2~h>l^UYi{-*qHrKaW5#gF$T7Gh+_IH_keUVrISLEx$6ht4x2k+x zJYqRw%(W1Q_&J!MNWIm5?@^=>jErVjSY=f`TLsZ&rXul2(nB9+_)C zVtBI%hbUS|5FBf0D&5sT?fvD7q7Cg}g5p?5iSaAiQ2+>XZ;v!^uxFW^?86m)sBPI6 zCXKq*Dm=Rr>v98Ua*h~vEzDtp3>O+4vp_+0x2Ge)d;}?Kfet1p295lKb}loKXl%oG zI`TKNj|N&n$1nxS6-8W2{*Dm=1UU)|tZ4`f49oKIuh6s8z6}MkAdX%t= zpENjPDsDxO6O&k=^v)`WBz|Ibf8*}mLeQZOTAQL8W8ML%oWPwLGlbb5e% z_b0f3=ZZf}OX7jruhqA0`?RTltU5}&F8(wVD;*meWOvnONf*@Sl-7+OFy9=<(cm~V z&A*LdAK**tr#~CtC^q=&Al0uUrO%^tI!))j;c#S6G15o0>L7yKK-&v9`E#{>6nmWS zpU7&(>4JsSLhLc;a<&@B2H&@$eM@{3-t#@O&rfK1iw9n_abELY9Us#g<-WWt*6$6^ z03W<*HCVV`Q)lHb#CNm;Ebf;_8Lx^m_L0F=$379RYudAl55SFORyVHZmycA* z&pvy2F}_ncr0_pmwTq`eGk>20`2W_^N38A?RO-)}SNo}et2h7;*1w;|dP7$XwDBjJ8eK!TkgZSbNU-OKY{B`6WSMM1%ETz`G#<>Dx>KM5IQ*Uvtydfm3OAA5bM zlKFgB)IJcn9t zU!kkc0ih+m;;s9DE*ke?$%p-?smg+Z(;fDq<`nT1N1P*c{NiBSd0ygHj12`a%rPXV zeq%xhsR$Toh5Jyg6)Lb)a~nn{w+{``z$)5SkrS|m+R8f{f=8kE%@j@+&O znzkcW^u7$O_ja^MNoPO<_jKF>rG~SOn1l~S{!v=Q_@^S{;C$Dt>lpc+5Rkm{lSn>b z0QzcOc$_{R*U(Gse74=5g1HM0(!ZOabM>M}>}bnzGu1?eb9fL}E1TomR_A7!TR3hb zKasJ<1=W9=pksZ+mv*%%%h&w(zxy3yecZhIDArD)F+=uzz_Wgp~F#Q5L9%T7Mq5dLf|hx|Z)aAGf5R*Z>w9gr_(~ z@zt8fqw0cBHBRCbUGP-WF+)EYX@G;YT5udU4RI7IVjIV;^e5VegAK}4j6;4FIkR&T zJ-gr_J!Qm{-%*Ga9<)5kh{@qWe2N!mU(VajiqFeV;>9BzP=zVMEiK!L>@BhQ@Fc;l zhY#v3UU~4+0Gw*|M&?T`SZprd)!%pAwO~m z8Fbm0IQG%kUwryGQ*Pcd@gOt^-=L=xWCGi79)9}hpJvr|OKzDF`?u6U0}|y741Zzb z0e;8(Rh+fn?3#t2$^9=mDYzgYa-9=dT-IJ{ljIxF5ExN{l0F0-+;+$cEu{nc8c3?f z2^QnN&!~2`0_Pdsf=)$xd3JLeofeN;d*G2Izd6CZM8CJV%GIxxclRdw$~lBajLjkp z)Sq&So_X&k=B&RK5AfGPRhb;k@Aj0%gZY~uGFlzv1K#WB=k;#EGxFu^Y)U$yJ+q@z zxqh?fRJ#@r@Vi{?;@1srTFb;`O!>*r)Io5>^f(Hr+{72k0;teWdt$;^Bxk#T%s2}L z00Q2i0|H&!@-^g~gAM}$5zqau8ZYBWPWLN?1K8^YH0$)9a?RNblypGfLrbaFmp{%I z^m5O9z5Hip1IbJHkQ}iA4+dnsE=i?muYr-s*(J4jfcvdauZA$_tgSDE1K8_;>z7?a zhY9!+aLx{B06@SS14T~j@HOb1W1vL<1yA{#)_c4pr}Cxn0pOOR?P9Gig#*|dcqvcG zuJPVX%Q^5uKH$AJr@XK)UIyuKbGErf00pnjgBwIS+nik)@;aROO=MqY?Vhv4835GW z^K)Ij@KbT*^mAJLAb60&J}Q9#ABeJWHo&^7==1TOcx zCFPo6R*sI2xcgag=bcbQvjRW80$$-4*u1bnsA zG;`14v$`E69^l^GMm$EqN7|fo8zmjkUW_B20bF#=8Hdjq<5&bx@KjHU%l&)OIaRO4 z1N=42z|`Ds-*AWjUB-1CAseu_J=l#^i@WLn?>XTe4AAfl?*%;sux73QX48w4P1@vY>L@YAC7*A%AQ5)Mm>}sjE&o9D-r#(D-liP@1icS! z^+FvAdVRa^7JR%-zK3El4yw?BoJ5gsif!r51pjDJNs106D2`g9+oN3nSJDz)Optun zHiKwt-A~j`UaY57M+|Iw$cQv^6b{rp2cydlb>X}YCIU82Yc=4Ki_mhx#%Zb0gbrtJ z`N6;XmOcbdjo&2U!;t9em*Pz~nP87VEG+LugR`l@%i>i-!M#o)>-Tw!X0Cnj2?w zzE}$rVLOJJLNpTPpMa=F1yOHIiPkMJ)VyQLFeXTTV%sCu?4iB517Py8R0}qt@k4Bo z_ND`LNlnH$dLR%HNHAB)I~^E81VPV5J$C604T^bP)F31%ipi@pKV;>jQEl?QNDB~Y z>^L6Cc?}#C?!%ZiZvzh@P9f-omu_b%NYFt9!7&STLlT!^K?`&tL2;~+w<7D!dPmpD z*f3sDhYsRog0#x(oe?NaP$7cgSRbaHhtLZa?862R zRXEp)^(Ulm2!Q?{Qs_qpv7b&zUc)C-cLp0*@28^fz=OK8!ftI{IG6)-mwYSi2Vp_g znPLxr6HE&7O|cJvf@aivI2sK@bJr9~c#lzV&~_#>wxTMO6W{Ckfnz}~>wJ@$Y1kkg z)pbDH4WL}sC3HOs4%*XnEu*S1Ogf3K9c+;PZOlIh)it4vtLWsbQxiS$^7G?8O^ty|{$8dP(`NWRgt2Vwygy(GaR*PQnAd+n`4; z8PbluI9EUm_N&Uo=uk1kCDYVcmN>qR-Ax% znLRi|{h!HR=r9oj1VW}^Ea7qu6JmhIFX{CGYKq;QPIO%C_&us`Q}xjAmb;hRT4xpW zBm?p9#lP>``PoZ)Gl3bvpRSH)T2wf{HYi}Xdar8w=$Ynpznr`0EF zhNJ`kW{4jg=lU+S-Xv4Gf&g902KKEu_V1a}(~mHYg8$we>ADj~m#oXG&UVyTJ3x8c5cpNi_ zcCBRKzDD)bBj}vs+SPo{bobI*`{7J$L z^^-Dz<eOK?Ex7|~d(7S%ISna(B8`94V83+}@nZJ%9 zg5Za7f{S)dOSkoWqX_euEB#=Yp)|rUfCR<6af+91@13?vei*?D9^s{MK;|v`jjP_4 zvPiC~E!Wfkoje*%(UXA!rMKgh=!z$`-n>0$=AQg~iWNShBZ~!6Z`$u%J*k3RP04xo zt>}Z4?2YSzhU@p_97s=0No5+&KtV_E*otr+DN26RrQffdVoqQs&_IlPt$#VW*BV3w zLGHCo@xX<+L0VR?H4F)g+-sTgg}s)C12WwBO(Ek-Ts>tq{tyb3xYsh}tS50fW%XJS zERf<}%PUyWYXwLkG|+J9wB@{(!$>K?}J82`0~NPwggJ(C&yeLmZK#+@xZq& zfdaz*BOG$HL<9mn{#K;Wob_~%h^an#wVn4oD-<}lDNiKjAxQCH^Qx;;? z<1U>(Xn}tfr|UQv_`DG-Qm-4XhU7sEQV-LSSYY!yz9Yh929(!9{D-wja%X@@=@{@A zE+6n#8EvM#6xMu^aR;8pStsa*FSR=CPXq z0wivMH%e5CpZ3jFmy95kDZ@tq1>@XIf#p*5G-k5NM+(PD7!1%bUIa8k|C+~(aQT40 z1G?sCS`psSnSHODBxj(8+-O^Q3}kJ-$YS>M|^qm*(%74 z!fOE3KCpstFFmgn@NM<5{^3ZHx&8_O^$!SK$|o6FPs~d|1AxF?v=%Ht{r*MpURZKg zdI*l1fr|nvfp6^URZS;8nKF`>(?@9l0Tj%D1#NWonier4?lI4R6@?ijLl;HNK+2So zmkfgenPBv!Qs2^(=zL=~@91eDK*BW7x9!CbG#Blb;(*%2$Ww87G!lgY8KV&@bwNQW z?ZZUuB#%Y{2#_#?xhiWx|r!92tO4bydX5z4tKo)F^3k*DkW2%uobQC(nJpY8ce z+j+)OCVmJ!d~Pu-xDpR=-wqUW|uyHmVOo zfs}6@YWQa^Dywy9`G7aUz9xEE_1a7FHTOKhegp(Wu0wsgOtU%X=Twt#vOr+0J*0F% zn?MiH{TK4psU?LJtReCQdNCAGxdzg@5dD=gNM1>YyqFS%Z~*&WVqHD0RUE@%w;_Ctl-6QKGbFGPMp{R3;f1 z><1L-UXX`iM*Omn5l^6jI((8)hbNR_hw8;PL*~|$$7?#H97={@GmhBJiY9%frF>@`|!46P>e#5C+?89LEDm7Ib1P9-6 z>ihWN&oK23K*28zc-^8DK0e-`{pdfuT`J%mfCksl1E}Sg(@%S2xL_GBBzdLfaoH0t zB#pp>bLh4BM?rro<+UQP;22JQd12*n!{e8wroO}IU>y1?{*72reAFzSde7XJ@>PT2 zDSVX>HX@vkuLcL-LslCsexAl^+0tjkXT9vd9b5V+6}3E$;ErgLl|Ehn4`IPE+yLP< zQkUu;bxli0DEUH1sSS`(0^l9-Tdb0_yc{K6%x?{%gYiEFA*Q$vw2Z|%13}_n3$4sd z;elGrrq?1c@7<~SO9o&bE}8zN+R^iq;*_)r&jZe-mQ07R!S)YU>d1*N0i424*n~H8FPu#C`SfrrYGBpO@|PU2A7s?v2C|DA2mM`s=!yefu8| zKYc(se>ytEL>K5qA`S6JHUg&~yAzVtirg3mnB0yr3Ab<3k9UpI;QKW94F_?j-snSI ztdD3U{e)LYWe5jaxn>xNei`PLPR_g?r8+~SaDL6|)x zHw0u#aQwvs0D(8c-&fUHz2YXBd}tn02PkL=khq58isZ__eE5B;Q-Qn)yc7=L8z`uN z_nQDZ`Mv@qMxeELfWL*J5?rt9i|aFUsUBtn$!|G8c1R-x0-?9@5hEmQGGY?R*`y$R zn3017O84QarVTD1@UNmQ{Tv=6NX|M7 zX+E+N4Nx=s5a_b$7gfhY+B~C=BOJhPZNvC0TWxvdbsb6}LeX#|`RWY>`dT*9QD4`% zr8#f z$Of#95yVfC&YLMlaHIqJo^jjsquYVcR~5g0n0yfvlKDs#g8`X0@ySD{l#DEh4DYzf zOH>d&$j0J;PEJ(+lj$|%v~7&LsKd~*G<0o4Z*xuMNmelkf}$e z-MOh)6i~6Dqv0D#ubU}!^dUgP&QDAUx|-;jNT&IThX4u@>mYMJL6cY%P_YA{=1OZK z%+Y2V2p#EwwvmVaaY0GI_~E@wkq47M0^fQm$a2FA`G611Ft#w0*9?IG3PA&eOEh^k zFtkpi+lL%RLDLh`QS;mIqHxdjW8|IV|>NLEvT{$NmnEJR-FPEkYOQ;Eah*0=8F=Hc!1lr zNv#Pim4>a7X(>6113GNb5@d^xnhwA)0eSwW(5NX1C;$+!>(@$Aqk9dR)~^SU4p9;v zOB_yO$|*w0Ac2xOz$M~t(jv4Z`+Bgdp63A9AQVUqHJu<8WRfkWCze&#?x==(qNnyq zbFA?)?Whi7K~wLpsfajU?CBKF$KR((e#r^)gQWwfh|%oFu;`G7Y&_44On{UOgz zy_F4EGvARvMF#Oaiw~}JK%3Z3{D^Tuo*DJMN}kv*3Ij4GymCv$2dO;aRU8L&qPmfE z%541xYy=F*7$4%6a-FgphvykChmb%i+FaKAxrFjJm&E~{XmiP8<(tdEfXr)anf>os zQ$MGLl=>%c?=|@}GJoVT6b{^1oSzm|&o`Tr4_GKHNbpB*-o z4luNMAotcVIiXp`D?KKi%1c6l(i<^Klm>;Lj7VQwI!s1_fX1(eXw09}qc`pIe%{p= zWb0m<#N^y}7G|*V1g{VkMDJJ$52=o-8;DQNx2*Zn!=z~%BN$M5Wli}BX7Yc+>owmb zo3#+8l;Vj6-Y+elcqNEc_v;*RQYz4#+J%e0S!&1EdY#&d*YWb#PD(}X9JHXbWzi+; zUDs{PN$VEl6{}!!L?8uv)?!7Yme)A$ic$hH*yN~S2v$l4>Z>kl-~5$h{was0(lvh} z7l@9nc0t$3Vyj9l@Eq&u>zY4-oW**i)EJtt%{*wXE}gpV>J`r*nFUQsMctg1doGTh zF!RjPa!M@lZdlutKgg3<3^aXlA>z0l*+9O(ZkPL2EzFZriawNo`BMFb@}T;!&!tZVsBfUIbfCOzSCrLcv!r(~y|>@f&!I%B93X(h4UYpo z$-3c{Po7_CiA?1hUr7h{O%I!T*VaFjm%jEmTzkj|{_7fFyfJY`PvguUto$AK^qtKR z-V+aW)ZYFa8eWdt`|^SRfnWQtM4C%-n%&E9=vl#TT?M9?{IF8Q6bzj>9N3|6nBw1) zFZg#_+hHC&N8bn$zyW>Z^QNLiMYFSJM;65JbMy@^9oWV?6gK6(T0EuoVuqf@Iz0Kn zH+@6@t~xM-&(b%zc%WZ{ZK|JxXf}Q1j&w^$HgJvAso%Ey{_ecc=yZ1uLEV_t+fC>D!rb&40=*+z$|^0uC56tBzk}XtC6-PLpWvIx^Q5JRTME{ip*+rtYF(77xiNAt@0)B zm}-IUQUVhWWLDoVYf2N${7km`D$zhiv??i4kABdu_Unz9JTvqh(P{(&ED)>9BDDC| zob$BbIbwBJHgNB+_p4o_9~LLKH+#@-HWanf`c)(cUGm$x-F*lA4AdwYc5mfo9T_LKZBx-a|?If*!hT30WgotBzJ1ho(RiaCuc3P$c) zCqE-FYHT#kN#`;bAS)D0O9RUTwkH!h^s{ZMGNppI}a#h42IZKNS zs`q@V-_muXS+)3S-*_(wrU%PYw8-GbN#UrPdl0T5DZqi$o4%$f?4-1uePsAe-(;Mk zDvk$QL12JljX1y7cn3bp1O@>l$OYDgl0hFW(~u1AAgQN~7YmdnCE-Bo?vQnLd+yBA z(>$lxmOulgL4yxpJuGYR3J z&>LvV?VfJ|mTXFa1v&#wNkvZGlnx}w4S1`cf}@ZnU4udcrC^Nwfd#a#i!U=qa=Zhy z5YnEC7VtnT=!=h=^%m2%(8HJMiyUyvGPQ2>)i(JZN6{;w4>(rIY8KcO`aP-Z(sTP#)JY zKB7Bl9^(_}n1h4xY>JK-bUTwSZeF(h%zA$^H9G`AeB4*-%978Ksp(Gbt9^Ko9yX81 zFEOn@0!^!oym2zxk}{y2f+Rg-65~JV^iZpiQ%{=oA+{R{OZ7v(J~U zw*vpyvZg)C1JxMrn(pThqIW9_cg;8f5T9n{Uj!F2PH5!{9E5`~)eKHM%CwPBV<}D#}VtFJSSluM--EB>>{n3`4HqFh!rxFcf$iVYx8ya}ieHAUw@9;y&+$ zreO(y_%ze__iDB0_IyIqP~adu&1WndZ=!fYpCPf+=mx1kPDoc`gYNtO5Wa2c9^t1w zMM*!@J*}OKgkG%6HAP13C@e^Rc#x#neBzPZ)6>vYz#tk-q=IVods;Q>d)oS7N-Z;y z8bb%=;CxK*QLx)l=15c=7c_%)Oj-PqFjl(rx#DeKX0gym1hu#ZEwyY$(~P_^n%JLy6;o)_cQNN3m@4kETXjXN^!FzKm`PM8XDjmec z1N=1B1_qE*rk8eDn z&1L1CYtE=-(=lrQ$Lr+ z&RyH%e4~m500BOn((m;DIDE$86ygESjcjw}{2x$e=)t7yI4tFcAp5=2I75BY%S-HRrJ#adpEpVTo&tIQZ`_DE58W3 zbw(eqgbx63s~x`=o)cIK2k`C9etjkm#66%?Ijj1GI1KmW{=%Ogq=&{@tTM4d4AA&x zd-fw8!K2eZ)tUcX{p7lL^*ODP(Or>GXbMtM0?B$cllY$S2rZ3j%BL0CvoZZs5+@+IY?umcjw* zs9A&z9&AoEYw;0av6oU1Sc?bnE5@+SXx-Ywot$~_uw7~CfVGO2Z!LJZ85Irj0JilN z=h!^ljP=#h0ej7;S>!b%XYC4d&MZD7lU{J|AXn#!4pK2Cv=DVvXl)->p1H$ z0Lkb$wRFH*6`!x#s^Gu~@c_0?lYXHs+~%2QSQ(wBg8+DI)hbJ}2cFTYjeI~`P%~9KgQ1C$Ehh?#mtuXfPd= z9WIE0H(b2#>VOsptM0;&OeXtK+7j$2srV<`X7O}YdviyEw&GFsH)7~PU^cmzPbDA` zz`;5hq9|5Td<&Rt{D5_d8t9PA+5v(vBdPRe$OA@{A*hmL9@3;sH!PlgtRK zrN>}{32ataHiNxkth#YV6*nxIykUFTskjiRxAiE^s=sW`ee22?fLeeEIK3=Dhj+Z@ z&IxV+0B-HO3B%BwEv}@;V1o*0g_Y6)YXdX!=!`#~o$R+K7?~CiU`NfHV5KByeU)^; z+7N|u>Um~0*-KBUt?M#v6xeKNpUTJ07zG;nk@~g;=W>k{4p66Ux9xLJ%Q@RtNe8Us zv%1ng%K!k}sWZLMU9iqddIUCH*UhPFB^|If;%Ro>zAiegau5LTDEmcV);VjfqyyGQ zTPr`p%NT7**?_eEiW1R!R+Z6TDd7OUX`&DM_lw=-{4#Wwlk@W*c9t9jB&^en1|S)o zrjZY5r=5LYowJ?eLxc%P+-NUjZH;`?*1FAg)Ay8}*)y|@(Ut`OxV7&v*ve?%Jl1kR zgHS6cD2ueLQEdu34=FoT?xyxzHDf)M@EE8+_GbkZ!U1ZP8w>{-dn^lbtP#;c9k0t| ztfvx=db*$mmCNHQJKECoPX(vmS~}|L!j_zRcNLp@TX!f{i$kxJ(H&X<)Y%Stbk%6T z@Et|+;{?%lG$R_QcC|tO6ifss$5f*WSgv$nJFOgMotX@KILOdBZ2)Tn*pAM!b$#vI z_2d=9DbNN1@Q%jIukUmY1PC}*Zo(fo;K*s^1|R}%qLEVI1_0oW!G)bWr@`@aYVw7mSP!OPf9bbH~Jy{%(=KCKRd$JOax>{9> zf8S948xJ|-FzFxw-gYedvFzTi1&D%|-BcxTZ&Q^i9=m?7Pnq20qY)VaLpZAK*jaGg zYBK2IphzX`i+~1;r#V5TaDZCtvYp&jamE)LlmIX`-dV(7l#YjA>!l| z3af0DL$u)yj=Q#YnZTXG)0 zXPum~#9)l*FF*vtx6Ri9!+lSwjF~kizbI*hAE2h7!08?HS-?q5HT}j+e%ir^KfnrL z;5A@lbd=*{Hs)Y~)qu9Po!Hd~+pvhXTrlu@�NTqACj2x&u=3i#`Tmq#Zfj0dD%` zZ<6cVSP^a<4&2@~)na<1ScYyVo>!F0j1LjX4=Nb>BWh!4U^d_@MA^{Jiuei(1x~NE z{p|Cm`(m@}Ue1~g-N|Ae>zmYj$s|sxB@he5YYefUFB^V$@K0GFm0Vz6_b|mHnyjAx znh8`22I@@@wST!@H5;DNbn^ZK0`;hZ`#EF-`&AcP1o5o8U+1W{b>Ru2!7yx9uQnyR`i~NcSkunWt0nXn4!T0#dqEBLyEy8 zUCD{cT=^6DNkEW$&;2+c7kTwJJ?3;Q=rB9)&EIkRqfqsH?TvAT?GKR9-?;s4+RfR@ zPwiaT{tPB4emL61Ep_4rElzWEhtEi>rs?H?`l4f71pD{1jTpUItE>Z zwx_uYlk@ty;t#7(;!UF#JX2Vhn#2ROaqrjF6sNKAy0G_CfFL*S{fHX57sjrz_tS`= z_iNWA0*j-Xo`ilU9T%bQ* zwxzjfTRc3CV}fGf16lEtM1V0w(7W&YCgB5FVG75X@ue@m9Ewf@I1u~j5HWf^YSDK* z3wCmfRTm`cnSFjh1*)O>Vz+v&T;;&(nJAuTrHS@KZZ@ z()L2pKz-Hz)b#a>EnkoOHg&B?OY=arWMDcqrDNrku#S)CnQ98rKy_-mYlF8pGSyT| z2BuTfUAx;;UKrMAGu0HLfqG4>ztNhZT$GzFF6p=#gPpvIjCDuI)6E(P2k>K^H$NnT(D_O9%8D;P^<)VB|u2#IaA#r*t@Ob0Plg!(aT(FU0?W4L1T+H1P2m zjle+wh1*6U`>vKsq4SxvvD&;~u0A>AIK*;W2rxjyYQib9?;1uTlO{X_P_UC*6rhNg z@}IXW%Hqd(WSZQ@U`EM^joa>-w}+UYjDZ1}&_={Vf1-t%S~A;+!2k^#5J7WvpVRYM znF1mX00NFKzN z=R`7V#f1TxzuPWp5tROax92mI&y&}+Nr-Y@jzqw`;=qWs;H)1cA3+qtd?+b323J3; z3cyLJfO`$K6I(31&JVqlkL(8ZvvL7>T_-1aBy)Xsv*muxpW{l8d!4MIG2uYI=lv+| z7SSp;rDvWud=Wi;9dVcfM*)|+n#-Rz>JQ!QoHFsv7xbVOKi!hvsY5DJ5HNW?U_z;y zxjND(L1P@Gc%a`8&>ejRME+-T*B&F{BY_iXWLx*MCpG2zr=+gp{potcHIg2-N|CDT zN2LS&h6heZIyO8eIii1v>cp^>a6nVfWc6OOTmI~J`V48X)>1Zr{W{CXrkJD6SZ5_1 z(0-jWtalC8nXPx-^pw4&wF%$Kj_7woEe-Lgx3BW>Xktc{^J9pwZd>^V?4$1={gL`s z%e{a4UagX*%-ffY>M~66`X{rlY?xAV6jMC)PzF;<2Ifsyw{% zd-g&yFz;^V9p>31@*TUEkHocZN@}4VL}BphQz#`^wd@E8n7kcj()41ZP2{p*Z2mKO z4s(c&0|Z9*2N^B)H0kv=xzeXqQz!umobE+AZ6ghqKK(w#2PohYw;e^0wN`%H(I8-Q zZ`-wE7mUnU{dYlDLobO4XUSIr(%00qL}kZgFd%cwC!;f>FqNdQ&5!W_0w~-GDA4*) zL>uW1Gs?n(fXGdsh)T7>RFS?0Jw`$UfWTd!fHd-mD$={l7z-B#RId9}{599~^^h?N zLOP%WlcXPmb=bTn2?S6GEI}05@m;gLmY@MNf&It->(#CF2eZe*D~QBR%nZ|~8%+DY zXw>@_0~PDE5#zg}>RoIH0Tk{q3d%G^>(@2+jaT#rE(;EFkcf8~u?!Ic0g*Q%8j!kp0DaZ{>3r|)j3v*e1~8>yK)&Ka`j_F7 z_o@aEgx?1ug?JzFH1D>f^Y?3qJTq>4=0m)Rn-SevEQn8Q=K&E2) z0XlG3EOV*Y5f6CQb$$x+yX5LRN-{uScg<>7^-t$Zf0HLUpc=3$D;?lBx_b6doTi{` zK4j~W45!JJCW+EnL?r|F@6E6NHb?S?eSjw<0_PQr^FmzXVSVPS)X8@UrGx_Qmj*4o zob%J6fIE$X$N_6iKpMb=u9B3(V^tCUtYZa-TeU41h|(Ko!2l zFrttkJhgQd-x5j&?yC-Nh?#s!CsI`<6?m^Xczs=U-qEz=wYIzp%zEyIMt3N~Y^w zNmMo$lMd|HJ?u!PnRI&}2G`<;&?#v^bIunDa-wVTK)>$QT_~S5c(U))0%K~I!hw9t zL+GftGYYN-((MTO+0yC9qHUwGBDA`@|S4W z&Y@>69oRSB`VMsLg9nT2kWJ08&Ux8VQ8nu@zxja=NAK?2=#hu;Rz`?=^n2EFwkFYuvVr>=!wnKHr$^#Luq?Oo8~x>~elb)3TX*7d))k#Vz4CNdO4U^! z06@iGcPWVRV%I+P5(uS73~_ub9pE=za5|km@7sO1;HPiX1L8QkBOdU#82rA!jNzw8 zECcwCd=TLE7X?D?XRE&zAB9&rhJwb=1@DND!mF0QY+L>)PcC>zJmCMKUx`Oz=n^me zhp(ni_A-OdXL8wqyx*^P+vV)>!zYg(i)<0yjE-p%IAx8d|MB0bOOH~ebk*+<0fEwM zf|A%=5u|3--pd;?Srf=m0C9!|mkrn(C?{bl@9&1zd08Bj-txL4Au_}R{2Bvawu|*u zSDFT)m2d!aW!IN0o>C~IvZZXmzQ^h-exj3qa~h%Ad2>GB(8~v2-jeiiZBPLNXrT5w zqbA-2q%>-Lb0OUU50WwR0nZymXoT5d#s-nH0m}_=)n0f9#nKm`2CJ-u1DMx0xR98! zzU)fkZPv;?9sY?ryyRPR5F2)RhJo61V-rQzRl_$nG8&ta5BR&FD}A1Kv(KF^C0`GK z;FuoR9Ys*_G$9Vu?7RzoIW+dHA?IKR(9!{YLuG26>Hk!VMZM(% zPdc_tE<01oSAXWxfqji*pHb*>MRzlZEM)`tI>*hi;5`Vegai3?4>`*?Ka8!#1O1IC zI*l+)>&Yj*wbV#^>p(*wfP-gm%X(LNXOA-4o0bmj*LeMxd%nV#KB*nlybujkuf~y8 zmy9*m(t-UZud$eMHk(WGFT3DYXY%E|;b!+?z~*+qhF+QKf-GR^Tgij%Kuiq8FbhGe zFbe|#7G7T@qM`^r;9IIMItarYcFnqOy)*L}{Q+?R0yucSxM>$V9)YCCeuLJagag^@ zmm(v_l^1#jp|x~i-{d`ET|Lc^NLI^?_+cX-_}<7%@B2Jsc9$Ob4%S@C2JS6hZ}A&B zq#d7Sq;GbQf-3+p@H8(NoYVFwt9^Q?H%dUt2makq1LF5k3&}UnhMOOiM71ec)BFZ^XA~m51BKFNvc$! z;P@63pw4c{ov6q>J$)NM#v-~^r?SN8;f_xwyp6U- z%@U|!`O#2oV^2Az%;bl28OW$b`mo>`dPQBYUTlHSDVtbLYxK-4OL)a7C^!!4QgZC( z)q-9Upd??6WkFr~u;4l9f%FH#mO?=fxyc9*ALr;b=?KK@i#0?S`KR zDcsU7EO_2$9nbOQJt8>Q`<#{Y;|34R27S2NX^Reo1-+w(3YKs5Khd4*`j2#hR-P?s z+D+s*Vfyq+OI4n52m&N-$4Ip6wRagjea+_(3xxq1@5N}Sq=nVR1syi_JzIL*ykE-jx6m7-?RK<(XOt(}W>az3;4v&7SsX23u!YE_gZwB>_neydU#pz(1; zKPn;OTs#9I4)WBS-q%w4fOJ4haY&H76C?SeUii;OrLTM)qNPDVuSSqgQOq) zn?^ z$gUv|3$#9pG@K|(lO-B>>EN%L+;PvnOpfLbG+z`E6h9cCC?A)ai`<<-bEb!z69{^E zpm)R2lfzFWh)dr$in4LV1N^23UPp$G^zGXbcmRNa9lsPk{d+KEWE#Ih5D>ARnU#qQ z6`4G93b}v8s=6gyBA0&gMiFCF*3{gyxOm*g@We!kK_<%j1R{Fr8lFLF6Y~-tJb`o(&x&f zbPNWlydR^YSFTp=LN0S~M(Go-F-8Fth~4vu^%RrRls(e7(}%JFLL34_eEX5{^lG~i zk@Bvk)fujyZ1xku0VThai=vB?o!kWgiI0K?5*IpDx6-Y;rN^GRcG4Hg2HR=?4fOmz zCaO>`mX~vSOU8S%CR-o#FhJ#gL{pnV14@rlM^waNK@CW@hKJq{I$~b6Nv-pj(ku+189QFR<1_A5CZ@SIDK74hFY{B zvZ+^OigYjAI}CSar$2%NN?y|tC2^rb1Tf4nay5-B9~55a)*&95^)-=xN;hs9kPT=# zv7&yf6_t5ne%t>^Baz9KW41U1hhuw1b(!4wENe1HItAFq7^LE9r2qb5}?<06xF3|qF zM5|@yWA|Xg*U9t55KBn~(%(v?cE8~cJvnQ6q*78SaAb|@&7xiM*2+*LEfq+zrD%}o zpEq9ijtnhj3X zX{kVx8dU!__p|P0(4Zq3h|=asf!@vM3^uQX0_X2UOErD9+U)ravv026jUhI`+FtUv z;WJ?gvB3HVRj*~eXx0_Ku9?2n95|?^hhX4oJuaII@1#(cx+$^1dR5h}S(2M<&Kqx^ zG<_J2RL_wOR9(YW``iP}QbQ#cSi1GdCg~#hf(@NnS`UJO_lnY}e1wYMZp|!MBAgLOau=7p|1&)lSI@@~g>>)!ms8Y%@m@@Ko!o9 zav)mCKvcR68ZCz|rBL9=d0+p$+Aip(Aq#6V%=?U7pvhW=V}6EO@eyBoc{&TW>FM-0 zuT};xZw0e@h4Dp(dhzH&>hG^~?~%_RGTzBX=YC^(>+%I5pSxJho#v!Klh%#0i)!>xeh>p#Wl_% zfInjOM%F3&d_qn0+F zXY`=ydcSGt^c(l=>AR?wkIyee0-x6dK2QDFEWHH}5s?tX48+SIERfI7Ktg~)*d`)p z(!6gjHr_IK{x)%uz~@fTCgfMw&BnKo^!V^l!&n?}3GL%~)$ldD{H-G)z~Fkn-&FhA zr+=m^)zva`@g?28OM$wNgt7sAn*&pfCf*(nGKQwd9z*ah!Z-=BZ_Rp0b`lZ+B*-9L zH4)EqIy+3y?|Lrl2ul!hBQ3!oK!a@2qp_|!9%-ZxcO#7y z!-kHyi*sUpE}OL(ECgtTn%GEl;3U%Ho)Jv|02FQojX|>p|1^90v}A;VmJb49Q}oq( z`@C6tM-Q?#g@phOuPKCsEZP(f04UtxP0`iQ{UZwLN#lmvK?@&%rUTL2mK$L{Xe}Jj z*LbaWwHL9Z?{5y(S&9a%Rkl2F6&Vb()YugcXlwE6S5k-=4ug>>i^Yc!pmEnI-js=t zMd?%DNDD+TMu=Ef=`Nn-C1No^#D*z`E!?F`BTIx3Ab^B*M5ai@BWD>Cd;n00ScY|& zt|sy}h{XUA8?Y*>fpf?busX5<>~~RFBr+ak?4m9NXuRolQKw8-J!fHS`c28fPU@k6 z%$@$_TE2QPd$6kdenx>MJ-S255SDzTNM{1MDtg7=LKHB$YnXhg^X5o0=Uwe>0H&{U z1DsQdz<|q}aV{6D_N?-P$@KNi32XoaKKJ5$#GOEoPWqg80v(M5HuvLfq(iG|ip(u1 zedlNbBL@qt-Y~2lzg(ZSD``E!Y&6}u#o726U|}uCD-oW#%4IoGAn}3oFSlIEv+O2SPp_9oq9>j3Q*cb=R^pc;A#Q~eZ1C#d51FZaVKxPljfxzb- zuNOTLhkfPXw76_m%g%dUC;e*gSZ|7eftTN_Y|(~mDX$-9FyQk3ppNXJa6VS0=a!nL zCKnIv-X3HpPN!}7W$5%vhtr5@C~)$v+^RJQdGcDh2LwJgCRCon79-_RG{##mS4=pB z1y;ja3f5&xX^CwV#C?HyZ}w!qfPszcNxg$x^Sclw^kjg*$B$Z-HIaX%!=V14pEqjt zk-#Y4a>R&UL21@>*OL3p5?-8vfmhs%ujqkv?+J+#UR=X~%XK>BDqd`uJ*m1c#eb_M z*Gls469mfW8Gmu51Nv6vM?r-}AIVF65IO`e5kTQ}lm@>ri+S>n3q(c<@HbQg4Nw}c zjuO%r)Bq5mfjgiJ4d?=X%Dvh9a4va0Ew73NJ6tY z=doONZ2$yBZh-d_?J>oJm`oGNSxX@?stGB65PU;jsUWx%4{+C8enWbv`@m-_epVry zw{+x>z%MR&dfnXcLjDN+vgU7%=7tyY$Kac?wO^8az~6+8lGW?BId8nKm%J4QnZDh- z0HXxFU?D#N0sw)C^{+N%tzXC=fv4vkSl7>OenS2TJWUdd!VCF>@VoYG&l9EQt-X>D z_?xufxv6)n=4|#v{wZ=wA$|NaGL`+CzcL6=xD`;Kd>XYEE2f7e1~kq=V+@lJfs?nI zlAVOc0ExSSCMaf^_cGHPGsxtXODj084F?BgZrg93D9ezq4fsKPdeC~HVGIh0+z5#H z&(NlO#{(SPhiLDG@Zu3x+FA5fk-QjTCC6K3?Epa=uiKBFsAdu8(wTLn&nyq9Ln44c zXcyv~86`gBr@*t@g+T$4u(!w}b#>uQXR`Me2M1*C1kEA~t*XEBXHt?EKCIlhjaV2^ zdDDKPEku^-&*sZ&$J5RvuU1*nBW!>KLIb+#+cjSiDWe++11bYHLy5H-ZoXw~M&W?W zeXC8kq3C|;%Xw(U$%}Ya`bb+jV4(H3{V<>v*mLsQxfOnhmBbn*B{J$R>$CmEik@QR zjhCI2hXqo;4uD@_(HuDV0updH41@;DY7L$b$w z3IY_~-_g?ftf$-Nv~NE9V)Lx&+Rd7>IsJRpeYLN;<%}xB2p!R;grF5Q0SnANJjiUn z@wp`*#E=-%xG6NSqrvyZPGqd4X#K_RFZ2h>F+_RhyumkpsR&{SHJsZ zWezBU-Tk_2i_^;+OPTR#RxN(oH{Qea>4U3j0gp$B1AW|yk=c+(KEG-}c9@HX0hPCg zsRUtj@`k;YJ*XN*M?!&8w5hs!Rr^_4N;DO4K;{iw2iu;3@uvHd!wtpE_udc<@!T_W zDCrZuX;dT-wDP*8^Tjh78EIjrt~ihMiQW(o7XbtukD`92EnnZOrH2XQ3^W8NT=#Y0 zhZT*EV(e$5J^xzv`ol9RB8*&;x$`}zE{TuIXn*u~M3WzvE znC2Q}D$O^9xdq&xJbxfOle0{VR0zia{8i@22e_vfHp#HNmIeoQ47&P?IUPy z*Swg~|EJVV^j_^!{Bcg_InSCMMMB~-{lW?dH6>*n2B8bxGAN3?vACFhWrDi)B--T7DGdyd*;h6BNgENG+=@khO17 z9a=~bG>#==tW=sFfAB_@0)p>LQ1i#D-?35sJ*MlQ0dZ}{2N zqE3dPg62Kb4m5U5@o9V{5Xi(Wr=e|GZzfsDax~I79rYX{vzPTr<1SHyW)eGm8$`G&=_-(s_3eE+3rimiwtIr zNQTR@6IA0}mVMp*L{ar$c}(AA8yng!26XXONMUzL{VUeH($7L3=EA^0iVYl!vnm(% zth@t9hy_X!KcpzpL}W(?q4?-p!Vh_HAQti0swBPP!hB;1e{GRKhlL+cC|S|7rhYy< zqd7AplQ;a}IH1BbV~Q-=)qc%)qw;FTNBXZ{{NitZA^vZims*WwN-D%lBORi%s}`51 zp(ByT>C`XiQY`Odg|wrQK!;7iOw*pXi#=zPcM9eKfeahmO&OZG$5V&o9o*x1pvD4g zQ}j}u5@lwTH?R(%K!}YYrj(gtyOC_(F(kwSCA+9iQC(1M9`Q`aFKWl)#z9CBWb0R9 zX&rd8*37$pHH-<02XshRO#KHxOY2ZWf?&Ll!tUl>%d@){>Z1$~)Z)G@eBrZ@FXIn@ z$4BSl%SqP4)WQ{X6OUWyu_k^exlr69amJ~vTkjxIAu1AQoJx=*q7W69EFx|%l={!# zhA9*mXryt?Y&$Q5Lm|yb98igmbmEjl5W*E2=?oSqv8lf4a=n+jH1BFCg8>mXy>&{g z=%%|rP~@H7M!-PoU3bnMmJ>%T*ciLWx~eq*2y*clK&^I*3w9kHt@J!mp%@^*1jR%8 z^S2<2>(AYcJfy!}dqH<6S^E~(pT>m#hI(hog*eCR?8a?8Rw8YlbUwrIprg1`-BlO! zGymVCi4^|Sq!vPtmKBmIVjl&m&y#y~*jy*L$lwVc8MNsQS|xMySz-u1hV#k-$lb_O3@*Eq`6&0_p zyfCm_!TZfQ{mfcAn}W4$)b~xv?~EP`rma=_-^Y78fZV;DMV_@zcT%E_rD$9IK_n1T zeLxnIni7Bd;>DttNhe~o(${r{Xbt0m+#jsA1`CUu28!*x-K_X=rk{?o*q90@!-M+U zlKPs`7`2Pp<4v{gFI&2EOOK|}#D2cxsW{Vj(S=U6aNF1;XrOgFN^7}a^CKDQv-?Se zBo3&&8>K==rYRMcI8(UrUPelf`X+JWfFKudJ~3d@c1^S3fnTBKbI?Fb4W7E4pNRTN zV~u!^^k8&MTLBaZ-KN*IcXX2G@nyA@DY1oxxAblRpK_&NfKph>rpSpSMjVJpFtn z?|1UMiOIvf5k9IRK!MZy=Ce4bu<4Sg2?k*bG2ViA%(ou9Z}@SjWWR3Yj&dRt=xLY< zAM8povCqX1`lWCBZ^RlD-BD*QvyfkM(4eEYj8^^D>c6ANk+Dji0~^`nEvAsbXwV~l zL*;lNTgU?_An+OV+_G4pq(YwCf`L~oYLNruw{-o1wOjtE#o~a?pq2!i&>8jJ<7L3WYq<4V?~re)))P2j^P%afo)>sX%fZdJ^z>Y)s^pu-24mD4c!&oXl1~^4 zJPR@O5W(=ish_7qDj#YudGXpvAJv}00;@r9N+rDkxsW$iK;RRb-AHdDip2-R{Ii<~ zAoz{7;t%yj%@@SWwW7iTtHDwFhpOql`EsFAS|fqc;4Dy;3sqHU7U;r(+n~*dtP0sY zZ@odAe_a2xuPOEm-9sUp=YY`Hpv^z7Pv^M|7FZ3AkWacjk4p=UkP-)M1|#?<`|T>y zfQ2G>2Mx>yt^F@mx8Z?cA!}Da;4`QxSuE^=g*4@$fmy`P7h+uq<26@ScHiz{fz>TD zvV+G=X1-@3eDV^t5jqeqCRfJ#1AZ6y*SHTEW00Y zaKPrKQLJgL^U8Z(B024$kvY&<5&;Zun9_!U_lkCMb~ht&0H5Ro{dH5;pkF!bq7gX& zF93ia=`D1y?$3O~G<$DR5a1B8NLk>)swzG6c5uKZ;%{kpyW4$U_lvHPCkI&9&F*gl zG%$;-zx7X>tuP$MDEs=GK>?H7#>9-(_WQGdNb>%h5j$YH00EDPMs}3<`}6jB;k8kN z0w$4lZIlVkIQzObhXN*A;U1 zTptH)c)L2K6m1%SDzr~5Vtf|*c)00e-U$(r^# z-E(?A%sKkl{(t9<<%t__L|hPo8<*t|awP#gzbE!Rf*Nd=x1u*C8(}|hIT&~;ik)7d z$*v}LK)Tw|kT%Bg8loykiUdc$Fwx4>>zGb6iuYAVr@af`Tl5hiLs^%2J`*na+=NbU zTJK!QR+Qzdlyegv2!8ksfcv$sv&A~)3_yqlS09^Lw$gIBaxUhI-jZch3)41EU7A}!wm;+c>mPIo^sp8tHM<~%Q^QyP6{=Y!|^ zR1_;o>E=HRaqwp6WAGP}uaKoKZ?Jq6?Br8l z)_2T3MVa^`OSSFCzw2!|$aVH;hLE<(W`pUad^h$w?72wT%R57P?CI|g>7>l4{6eI1twInS%mrbh^mdG8cVi`xgEb6(;|dD;&yq+*I*7HUXEA%g0u6jN9UWz zq=kmvtK-yjdM$A(sW6#W#9qSF0dHAkc;mhOh-Q<>%$YEl&kA}5r!%@xz%Mx4PsVKG z(1OBZK76(;%1c`O8gct}Y`r-P2U~d`D7R&96!4vGKOwW$nL~uRP+cf=#3d=&k_ObQ zqTYU%a;-NGgtdGOEq{C{s+om&f!L3;?U#1e`m$&+l@Au>FGaSer?w`OY(hI7SzK-3 zmo4(-z+ma`FBX%@_@qWhI_Urp`$un1$7b{pirQ-Wj9HvUSI9O=byn=ZT*Zdt|ERyX z5Zi$074!PZQk=A0?F^RVVf|wD?0{ZFnouuP_{&COE;Xa~#GcV<_&+(V^Z(p32teC` zz~3V6AXNXUAXIzfrxeJzVEsQ825VD42-nY@a8W9akU*lA2;31iuE2f)7A}9Z#^rD_ zbB@r&SF$RfBa4Kxjcrg7;q9;2c+>kove|sZmqMRc9ES`Hr~k0VsqmuvF@z^!b$5#IHX$Ffg3{trM@ibY<~q zzkh_%Pi^txfL^bgI@|5GZCBQnu61nqb@M^sH+_1e(Y+GCihQsJ4YxmYVs~$_8X#ur z7Mg*d3F3z(S7+ET6&`=$c(fA#jA{d~(uyCITcYALg_j zV7|)es`dpnQ_JN`KD1wn61x27ufCdJuAa@N)Vmy<(v|C{v*EHfo_#f%el?-nfR?MT zsC%`b`%%7fXrU@=|4Ik&?xz1fJq?KT7f<&2v0Fv@hpF)RwG-lle*cJS*TP=fuYdU~ z)+oHFAci;b0RP_v{IBi*xB+-sQ2?$qfe^TPPJ~|WE};7*#1iaG_mXL>LN{JG-JE4b z?$;WCbGK|3IA4l8u6*lNl+CLhz`I*E#V=7dMVwww*$h+R@$Uk8`$$xBv&HG*(}mcE zqAET5H!GC0igHCE9FBi=h2t~2`q8SaUEdei;5%Re?ti!5{Ue(0JX(xr3o+6wj{N^# zeIV92L0JAnOjyQCIr^sCbjCw!4|!(#AJ-io&ke%#FEL?K7yYdX*Z;cia0MM9Y@w3V zrH6zUwBv=bnrs^nZ@VQcqav-;|LasRd1c^@73-+ce>zuDgXKYsu2|IxS) z_21k~x6tK4%npj_MCQM${@ax%koW&8P%HK9BD?ha5`V0y?g??>(;Yi^5~e8w+ET|F=jLgCOIIXhpTxzl}BjGRME_;X8^ zysmEj(2my(Rg|oaOdtfmcJhGy@fG7L9)wpFl(WrTAPhft!qC+#BC@#AY=m?CBYq#p z)wwu;ggY!IVP4Mu>ctfG?ucpz-|C`*xV?%G-)`-I--+!iv{`YIQLI;9I|QL{Sd{L< zVIVTAOm_>piM#U=O_lK>K-KOv@+x;?&%!mworQ$EqP(Y^iOs3b-IrCgOvrl-3Wx68 z2EMFb9tlNZ74wc^Dm=QYdHA+i{hy1ARax<^Vl~ev!rK>4ot;lNdyRVhE|aV4YX=8c z?kX++TBg@`ShQ8KN?U-1OSj(3zrGl)7UPlg@=X;rO8^OX?t0g;T8%?*ovo4C+m@?X z?^?%(U+nx?%uZ%2x&32N>x%ytlln(uJII1Ir%bc6(aL#ibnDqwi^NtxtiKmKfN#^U zSof>N;N>Kvw^RqbtZ%)dV6irKZh3%rGwW*UxgkEEosQ4O&P3VPbMY2vQ{%<}T>k=f zmL=x7UeVept03mv_Tenb#+D^L#;?rq-~1{|Z$UPVUI~X= zv!-MT`EKQ8O15y{L)m)VXTdgiZJB_3Q%hTdu6xl>a69>1k4P-erpCdC=ld^4(-*bI z^u^A_cp^^s59KYoEIS;pA+2X|b;W39i0$UD30tE3wH_T`a;aMV~$?w&Y^q=Tq0uobDUX zD33X}v`3#6Dz;(~;No-Fg*1?1Ar z_K5z6=AQ?rHGi*RJJy0!l;t|84f3bXr!S z7oYiYakij{@LI3v8}i=-)$Bj6(t7gL#D+(pv300167_S1v9jRR)_DEij2b@@T-!$BZ5 zmV@*8%Q5Y9W5qLRYUBv`a8pB6m6fK31%QVSozz&2Ub;_>c9NA0EndW?wuD+(mICS6 zS{&@VPPkX237`EwOcrV>4Xzd6@_oTT)0ia8wm8^UzE>YpoQTHJYnGDadmjNGpXYIJ zzLd8b_8d}lpD9!e1Q_d_6M!?4p-I8j3iKYQrRULhY zM{!woC~))Rm!rY+#ptZ|i2nb#qf7CA5slHs8=dr=7=6Ioj_Bb!vq`Z&8j6{|Y~n1y4U&?|}hWO$n+93W$SzkCXTOLK8o9E<|f}us`DLETi4d-ZfJ3 zoqacL1FEUsvQhhN)VwM9jQ#lJEE zER4m~>6kD0MBnUT7@I|+1j69onjeP@PG(Q@*VI|5iQXz@I9HnFP#FD@5eOM|?;(r6 z{L83cX-}YF>gVQXAydoI^i-T4Wf2$Oe?VJsr8C2Wz4eK!7Ex$1bi8nu94ky*4u#R5 zn0S=CSC_Q|{r?L#-$q~PV)R)g7Q8A{&h>mfi?-A0`sqwp~Q4Wu^u_0q4tqxZo881G%v zVf`y8U1?qQ+E~_@M9=GnO8ur}SpG$^<(|qlGIP!O?b^{h{Xn@QiXG(UCaKQI2G?s6 zNSOTi)#*Z9>~u63(h^%uMBB;5*_m@DAbKJ}tICKgBougpYxX z(!~rcx2N`?2=MR;k16T$barv#G_=u^l*Nf*Bi6Y%^OGaB3ypvaCtpgVXOr20j~!B{ zha$kkr-Af1o6QHbUyS97=()Zt5(JF3KIk^H@$_l6J~RV9J_^K#cO_l){KXZKApvj@ zDj|UcNu4(}Vx5aXa-??Qq{dyI8uA`NmK~z!(27$+i6i{?^cRn(qF7R^aq2#19zBN^ zKy!7lQ6|l&1ua&JG8tmP$LDSw2p_cEKK8abMla;7iwj19mk(VpeqQ)}Y&UJ437#9g zm=Ilz>SKaY5EGu43z00>4YAEy<8u?uC+lzfrFGP^b=_AD)HmAd7l-;kJk%{ z-jcgPO(2=7aO0%XFJ7Hbs84WS+v^-Q#Z=BYEp*BK|N2P6 z-fVaw{>Hj1(W7%v)F5+HB(nD3+qmML#6lGLmVfJT`@XgZk;Qi5nu3hG1 zlIT;RAY5V6!ol2+@KYqKPUZTFhA1Z&D{d@$0vqbwn9e~S3Z{O7pB0&E_gLz*bFWB5KidWEb*2Ei%1}d~Go|ABufDurT{2@`01b`lDB?_Ux1w$mq#^h_B0Jh6GDL z$FGbf8p`NsUhZ7>2T#4{N~0H)fCw84@?h_;@!PfboU9kU;tI&-2Ca(YbNpJznwYB% zSF!O;yly<1uOJ5TWoog|x14B7Q)v`{V8~P&!SA_wK24=jh=M882o-(PiK#S=&>9$w znf`?JUHzX0g)vQkVl58l{wk2sJ#$XXMQ<$tqbSRVfH3HlMCue>M@eKDnDI)Y{VgY! z(w0OA1Vg6rL1L>rU&0ZTrtv8v!P1YB+67;9qA7ZZCgg*e$q7EOVC$#&U6C!f+KS$C z2Eazf1P#`_EKbvH;S@~U*f0#tcv;;3mXmgAv$z9-A+NDv-*ZzfZDZr1V9IN3+;2KD zmA0`7z+mhXbhB`_E9 zi#95iX3D>T6&g+^prh{&kYhy{U> zJbQ{nqw5jq3CW$&+02XL+5uGo6+7V69q{^%iL&QxN~H(gs>H*wHiXG_3f z=rhDDekiS9OefTYm#vbGjo{uMsrp zs+Co5MaSvSYok|l+HowRk7cmv+wWWqi?^%UuxsXp3VtFcm4tg{HhNFwHf9YOR?V2c zz^cC~VC$Jl5H^WazF9z;q+1wAqnaM{^sWEay)qV=v*?`*)Z{6`NX=kNnz4E%9Puef zXT{$hPDTTM0As5>x|LJKhS4kHl;(V?r~5s{sfNR<9HSJ+sdyNL8I8XAU6iD)qEw<` zQ%+W|x9M(?kKVpr%Bi5kteh@eZ+1n=z~VJ}qkJj15)Zp_E~eNnRcp-YR(0uCIY5wM zQnpfSO%BD#ap63txw^Kxip&}Zo13OFH(gdW#Mj7KEm$zSkDT(te(9h6VMGG ze4gd{GJ!-RRM9XM1f$jX8kn z4YG!aW3T4D-mGCP!1g~}oujD>Cn{~PKlbWcGqvpk<~PVF^fRwCUT;Q$1DM{RFpB7A zwcWM#CS=x@c-Y+_UyJX1^~d$*YhwYn<$PG-z(@vDU0QGNR9{?cj#m5#!~WGS*K3$x z_EHeTB5KXO?%s7t)f@Kth~a{QXa7LFG=I$n&%?uRLFLB2KO1^?cvfGzg&e?i!Gx6k z6L*fU`UxqQ4znBNV7lpk!Mk$Tn}Zb}h6`f%@nP#ozi;CexawoqrNeAN?B-uT4dmYH zW7p@yaKT_H|H0YFdBvvs!IA@q)q=V~e4AFQ3Nu6XbwkJjOv}?Yev{09;>Gc@@-{hO z0G7WB_m255#O>M{J=Qf{@rjD>uGzWm0|BUs0LYHUVkws_SK=?~4>j5+Cyt8kjfN9_ zVGV2hp2zy1Uy4Q1Rn076MSx-Wm+K7gKBEicht%8LqjoxEIeKnrW6MD_Ov^rUQDF5k zmXO`(Tb?$zs}AV^x{=Yn(b?c)f)~_TR;bRX1BKDG*?|A1As6DA-RiPI5Dn973!9!V zy8glz0K@Rt>k3In+6PO4B;N56s|W7*-t?l)J&ve?49q?Z=1m*~xL8+!!}*8Xl?ywaDOQ@W*gmoD;lH%>&qQXFHE zQDJp$lii-tzB$@2HxL`iL&;xVlO06EwCvy)B|ZI8UItK9Q$(*pZ5+oTGAzr5vLef} zc3^om`i#)VCKU^|*;EC;V@z53(EtKn!a#`xl<2J;UVkI}sdQCNh$nG0Ocf-QL_JM`5y)>ueR$PV~%cYw~XMN4$HE! zU2pk_-ntpTqT|kUw`aE1nvo6LBp*{ea|f_4XDDqor|?mgKU)mw;^{}vXbXs(jAFUu zW$YTpHjy4OfdI%3=9&P^L;Zdhgv;v)Lf8fZAv^bL0&{mgP+G zy3Ao&c53wK{_s}0gY#kg$|5O##_LpjByv4P()R%Sa&w3s>(p`AvmLdmHSNYScJ#P! zqxdc&!>X4-tRIMLgZa3L8LlRStmkXn|Nh<&{^AGX|NiXNerk}{9W7@Q@oWv9dlmno z{>toEQ~RyOBhuxe5IcV~7K_;eIYd5}#;ita|iG0injOEE5Ojiygm{LRJa zl{zH41~8XbaN$!Sg*`pb-z4bI!lx^1mya)3Ji|xjAIHPB1`8!#a<&7|U zbGJwI*4ud4OmGK^NYJP#Ht5aW_AZxnhvWC+)}Z0`igHJ@Sl?f{<8U~>qTJDs++1%@ zG+aZu3pjxHE6N@H^7|@xHhOcnCiB}-d=0e(xi#p`-I~mQ{ca6+2rDU z+P*kHaSq;A6t_iaxHYp2dFyQbq&23?SbeY2=QTF#qlLk68W_b{KQNib&H)vTheO!S zT$;>sy)F$FE(2ptI%(8Zvmr8<(mqeK@XUH;6^%95;o&+^$FiU0)0NC|MJ1~U4Yyat zF`u1ej;|w*9XwnIdJQa~_S72lTv2bm7!JpQ`8@Wc&{I$q&F2NV@ENFS+4pH{=$tMr zx@56hQB4~L!>QS^leY=^59Bfg^SISbw^#SZT_oJCEmxw4CibX*Pj#1%hwHU<7yaz} zs=GKEZm)`Cr}D5{v&!o(a_r#YdTre$erB!gupC@@-Q~jJcx~N9Kl)zkE{hAFfxcH> zJn8$QN91g|uc+@8!oua+8kSssKQ*ikhEs7l_F_J)4JTu&s%ksq>0ohLI~~!?44>KG zW;diIjCCjLPn@;h&`3-bU6Ucrf+2BNx8<6SVUPOb^HC^{qR&Wi=|CL0w5v=7;;BMY zPE3hacPplPqXn(CQ&xXe>hq_o1OCYjBTntixh~sE8vJnQBhk$fnS|V zy9cAmoK@7@Y{j%dn>n`FFf3-KES*BbJ=&n>KRg!)|WD0)OH^< zMHPCq+a3MsVze}Si`BN@Y@zoa<0zzoAlwe(f_x_-p!H;RAdXm z+=&e4IbCWork>EGAc+6(^#?Iz3BjxL;L#S(qS}G_Fm&6fXjrmSy`^8CS7r6Y|4JUZ zZ5$zR;uxltJvNh?x;rcW@9!y0(g=d`Pum2APVhTD^8fxlg+)0*V8jIkJY7_Kq}o(! zrZ&iF+iX;~n1L3Fvd3mN5DYOwwj|g5-pf_E0qaqd}0l3U*LzQ7vOe(u?3T)(wz zo@K<*3`?pvKA%rUEV=w9*PfDyK1fA)<9*mqiqbwMv`Pwmj8 zZzZ;Iguwkrp4984LM^Esu>X;~dX061Kz;Jvcz#A#Ak>a7|1h45%L!`oLe)8+TaJFN z4YIO8;2%B%Ha^5xV1k}rbgnn)#>N>WnFX#7{73jMKBkLH#PLbiXXz(300Jz0T42Gw zPdxf%N$3WnLA$UY#PQ;S*7(NLvss040RrOUV|Ye#2)>w^U>=T>riVcknh?!n#U=~_ zChoa0LF+zK77M>m8Vgb$a4#9=3#zqG$NU!Xw8>x)FyY03*q2pd3`lvvKXap>x}5XD za`|$$;2s_)O$D0*D_*grgQY97$D$%_6$Jt;c$Kt&^>^AznqTehWk>n(a#dw^Gzi4O zeJe*asaC3umzi54q91vMrdvhZ02uf&eVID7v&E`r{)>*Kh@0-S^V#WzGmwj(TQ;KV zl7#%9=D!>ojQ!Ajff=K^J@ZxuqTlq+wGl^wI54OUEQvcLS<$J^l0?DMPx6qM|Dp&L z)z8&DF0kreRmuqH;%Alx z1%s`EayXgMwaeF54s9BY-T!VfKB4PC&gre;<+3)^|G^UPC^}aOO_gq8b0U{OQUu_g!$$ug+ilf*J(i9Kn^K1VFqn_OqF&L(aCJd7fC`AE3etP( zZ=J^DX0Oj!|C)lObwRr+Y2P-UJnD4!c+kF0fHT72y(@X`PQCkp)0zorS{AG~C9A{Y zaN}IDCcQeQep8|8_3QoSF2keXMm7}gZjfpw%=^mTg^Z4e3-}r z2f%_I`SKeNc*T_{@*xeZUHA?f^`oi^pV0=`PW2WwsFkKV2Lvs2+7GI=zyPpt%gX!R zMt$!ItN0=t`l5Og-mSS$vYHBsEfL?Iu+ZQSQXaFv*Zy1D@Ve6YNn(gmrjn*5JU{pTboObJ8%jQ)&>($wol<`z!Nf?r(OnDl~Xni9weLhd+_V#xoUx^#7L^C;GC++Fs*f z`?%F&nJ4-TmDc|UOE-_m^;~%Ta*fBMrqd^nzNu>qgAxjNKVIXm*WaTO$RaTMgv1v9 zG!_nTi(?w}HpZfMI=IXRCntQJC3;@R$jO8>|1#oXt~Vi`k}Ji*y=yF;)2Xm$eu$%2 zT8$tNu_a%`_ClSO&BA?Scs^J?tMU47C$>6KA}XL-4}p7IeMSrHEK6@ZLxP&!LkLAc z-Z79rGD@R#K#1~3gVAA`4)`K``LGB@CoJ@*)M1g5z`UiRY(8cY7C-$WliNyp5(Gj= z*J^OV80Di&C<5}1=rs(NwVlo(qwGf~z0y%Z$u+^bnRBuoK9t^g8qVb9AWF!FXsv2! zBn#RtD{RO8{a^i-#borNjaGAFGE>T6-gTL7tj1UM;aHVeJ8pfl6T@lA#qs>j*Hy(c zDHp`^H(ys6&q}6lQKv3eXL@x$kuB zygR%_ZOoS9pb5x_!^P!%RTE1uoxNGS8rWM5d${)-mXPt;T87aNt`G+DE<^SX>R#SeK7nC3p(g43Ryr2uvm$gQ>%Zf;R0xBI9sktUNZ);BH zTZV}rbodyO1mzP=87zn6F>UA(2P7wA49BO+{&RGHS5cL$9mD_#Uf$PU=y>0f-ezLK zj?b@tu%QdyE!yEh`_Jh#KQ*aO8g-tY(RF}PlfgCrf_8w~Y*$Cs+Bx;)yf!_h|Iu|N zi{0okh7eN0bY%g&N8_gP`Cw9$%V_-rvBtr7OGM8*Kv981@_^sMS4Cf`LI1--8(lF# zje(7H5PH;YY`G|jwyY2;rG03#O(AWzs|YEi0lf`x#LF6e%4&=nUvhL>^7u8{z}^A2 z+c|FUWxxE*@e$)jkF21_xRyA;AL5JZv)x9s<*o!qZ%&6~fDL`%opA4U9`RI88Ez>K z@LiZx;ofg`I=qgI?gc|I5Nf3k^hfxnLLbyy`XjT&h{@12fmzKyQp7Q<}nk(`PhO01m6gGo{4xR5l! zA2IORc(Gh%6S{bmvEy@mkZq|0e^=m}G%gjpE5*~4g9X1EJ9?%}2%2EK%D~D{J0C7a z^F_i?htz?;9|-k}!GzJ{>$f!l7vg~b(1p`p{6Ait&og?)iB3&06C3YqGj&ao2?qi* zUQEo+&giffGm$PPw0JRmE=pcia3#J5?k!R!4EdZbQGMp-0r_Uy(l7b(HGNSAunCBR zcZ7{0WxW|cbr-#4B6Lil*Mfk&FF&La813dCEO_ch56~ItSuP6Ldj>{z8p}x0Ls%ar zBmsI?gU%Ks9;E1{AeSQ*UCbW`Cwy#N8Y2}w%woiA!SWcP2ntDoAf%30 zqDzN|72~%>+Rf(Y173Wh*P2-tP2`*-0~E#v++S?qj#kpO@Wh-PiI4M za=5nJIXtR&n>||mkh|eo4vs!G4pmie79n8b3w(XA)9z>W-CbIJp+$mv`&$|nHkgw? z#7>(*nmGw`VCRSUjs3NL_n3BOce>fHn4jorJZKmCu|P0%3qNYKTFs+glh69Zciwe+ zFbhT+(A$9S*PE?uzwR76Y9~pETpQRgfo(o$ce)L6Vu5mlT9fOO6Bhf?ueU>-1-*y_ zOP}LcWQb<{X=i@+=%7jGB#!F4Ja;}x5-C9p%zOkh-NsR;OEX0e0_8QnXBEm4E&&$q zaSPe*UUPq+rAz!oWHDdM7s1=r!j(MWKXyXiX}6xxag8pWAP_nExXZIc^c}yDXW3IF zLl$7cmYX2Q)y9dE2mC#l?tR;GtX~WdZy7=zK7q$W;|OB6dEQ(us0$4~{KSL9>uvS*Io*XbysRDc`#g3w-sX?tFO#$U*nlv*cUUo7 z0>J)|85JMNtrvC&FM8k`(NZ5lMovobhJE=Vw2t3?lrcXy_1G+?%WzCJxSZtUD zz<`6h%mK}Vjh#!fqWg7B&`$@A0RP?5Vlkc78ei`;`6-|1m0cyIfR-je?`e?eI`Ym@ z^dQ_PDN&$q0kyZ+ZMKhlyvC2-)e*oMVIc2X$abe+f9Q6DqWfZDs?i4c9Rq&I@@@2V zLx}g#jGXTPv)}IYj*mpQhT)<+xB;9cjnJ7)^Pui5@}P$spG zdwhL9MQRC6fDoqLgJvsvc2}Z4s_PuZO;ECS4}>UCh(4NXD!KRHFIQ3%AT%huop!sv zL(NHpM`D5o#g-0XX=;)B29;nT4J>*j!cwJ)zDHY-T6{NMfp z0sBB#$nwvfU5<<1#pY)nqYEIi&t8KrTcO@qxAA)xr3tc+Ee$MsTYJvQm;}8oAqk90 zyAB;(Bqcy8Q5WUkQj!3rM1ew`xnIE$N@@ax zQg+Z0Crh3EPzg$z(FG8tOnh)m6<2+ip9e@#%4}(15uwe!Zt_M*Y666;-)!}q`XfOm zQKCTI)-`0aebntdpf-Syfupy%_;sYE45*37c0YO7l@8aA z5s_P74`$|R!O$JDz#+X_-&7GYDe9wW{eoq~6p{Fi5CsZZ zzSZ2J*)+yVkma>%07j$j3SdGNFq1u+J7P}(qov3mS{67fBHcasX(Cdn24KD22Sa49HmWA!j!0oq8$@_gp>j$MS((= zr`fTddrMt{EDu@W&@nxv8v&aKPKqVym>OLG(J`e4r_t|pT6A|BE7l1*rnWS&DB5j* zem_Cc)~bLZ4ciUBv!5UhAqyPRkpAw^P$Wo0qYEH<#PmUEY>}WxY$*eZ;@+;JxGPZ) z)v336Uo}B-rwemQ6eyD~J3Ghwd|;6xUn*6=OcZu@dremAl7vf$0+okruimdSR+4Z@ zRlxFa(S=)#l_Xq3)JHYa&xf}=LKLVx3cbEhk|>m_faOuxa^?V&M4=D`Di4>}nkESs zYfkfU9X65=o7x>Aif~ydXJso%6pH0CA4L^q`V22bebmvnyroVODj^D#X;wNk(L#L# z=OT#|%}TBeXr5}lBR;@L5T z^cSHEpcOiI@+wW}?Aa?T<$CUVR+^NPvItvV*7{CNCMf_y6eufXbn!1=HA@pRDGQvb zt{yjeCpblQB{TuT5^Lv(3ZdAd#4==pCDvRRNECt2!$y}5azA3k1VzB;0*J^wYNTHn zk(vNue0^l?$+9;@B^Y1Z(!iSVxwpwC$Smx#Sd=%}MPSL6pu8zjgy}=QULpS)-aHq5 zyxL#o(-jE{y3_;+5!pL9 z_Gi%&M5NIL5XD_I@BPY(yQ2;`%3jaAjyplwQ=&j21$$j*Pe6hcl$rpUFm(^p&z1C~ zsE6v;)2{_kxw5X)M0xA=yIxu)C~uHO$dFp%wE$LiB}gr)2@uMg_@j5{dV=z1bOA(9 zg+}^^_4X6mc*h5j33@8FG_YuT`j7iN&PLM&t$|i`VaL0zMm_l=pH}r??RwuS+6h8- ztW*I*;ii3Cx@UZIqNkpJLpwxAo= zS9D0R-pibW+tJ5%axuBJDF3I@2K4sXYECQ-A=33*zMPMoQ5vC7?7fb29?3RX+EV2j4yph@0|63QWB(FhSZ~H+T81Aqbo2E z237Fh&w2EgB(K7v%eYUInqb{GtmAf3`bFngkIA*ceviIKccx5E=!IyWRike-v52`M zIPcJ>PX~(=_Z8~sD@`m4^uYL>?(KP|3g6S&V!V2GzRU(M=*;rq#ChvI`mO*d%OZh) z3?=~#%zP2}*3*l@f-0+#^SoyCy&8}%a$|8|=S%$NWHNX@`uarPyS~?aK*Pe!+es3A zwFAVNp&}A2ndGv+NYB&ye$pgY5Cb!xAqe;uO`D1PSiHE|_*xk3M}=@OZfpvye1c!V zO0V7uBvSMNX2=GOUppcF!8x4VKurVW4s#E)#{=zJ)e!ItFOIV!?M`>F}SiS$?IUS^fCXT^ma*C z7VsuN`a&hH8n9!5VCAm=BmO!=d^Tk<5O5*>lt0wqB#%gxuT2`U-g^4vabSp(`ywCI zhLbVHm%Oc{mw6}gqwmbHHFcx}Au#cw{R44jitk~Iq{)#%4~h}Auox}pG`w@}?oVqW zXTZXHA!MZs|haZrU-40!=O$CI{a7W*B21VCGE+2x2!=DVE%LD!ed{W5i zqPwn`$|;C~=z$}o-6#lfVCOb|Lw4FUT679l^t=S*TnkzoSUdgOjYl-CTW|4Mm}E(i z%LC5B+}ZCoc+N`~W~B|R9cJ3z*gT{Y9=sY$7Uo{%H50-t``3kB-a$(+Gq3K8PKzp{0mT=z{l-c0^4qi^%BG z5D1yj1m{-H$^3YXUYH5fv@)1?7}Jl>==!XXs%k%NeMNS9jFX{CUbk`y_})(&y$ z*+ts4#)ponxX=dIN>{v*XwRJ{N>@mOiaL*CLTR|hR|XR?N{`*rJ`uiIJVlH`7d*6(er=bch2%9I@~Hf4RzE!A zXVy~WQA-*jM2tS6K8~AdQp6~9!TaERuvk8$w-)ijrClhZGY!OK=Mn#aGLUc5K9OfN z-YNc<*tvPBp)pbo>Tk(U#?v#F{i9dD9ett43DdzeDM9Fga6{7PV+N>~j3SbQzKWyO z;DQ0l#*xqi;r=y=%N3dP^Vu|$|6si6g`r$iC43kG3m@fQA5Ce=VLW}hqUrQ+_ zlLhSq&_;i{pd836)#yQLhzDU1-_>7Qjb8B?l;|yz0h$yA>HYKNi{WBbYkiw}8%?8| zLan8vlIem+af!dTcif}*Tg0UlbAU=1#9KD8>muV@U*+FJN@XyuSoMgBVwLf%SUqmL zK}-~@N*E!$MUQ@pRh2ATPG+lRma#&(@vJVrbv0UuGWC^sapRo!6-?ADqbHw(m$lv2 z9t~C7w19H#OeaV8P-przKKlP$6}+4JlfC1^BL^0}A=H6sNtZ;ogSu-HWl35Rr1y20 z`rZ1G8>r~HA}3JL1nUF(yzw~Ot+)HTbS)>Ja*M9cEEp37?LAHF&;>XAm|gVdPY0zG z!4bKF42WA<8eKjJER$B2BuMWnQnTZ7qIZ__04YIGbiB1Y2XucbE6OF~O)G+<UH+}kLu3*U?o{b(_x7_GsJUbDZ^zn!Md$-9G$rm&(U~iJ)%4HJnPxAAnH7L zEarh(&`Rb(B?!vfWMtp(Sw~MZSmDufAl#4yr>Op)vC|k#-zurfKRr&!>*{j;r5yaf zBmMWi!AJB&2@8VK*0?^c(KF{KBFiZQk6ktIvH7}J8Fh}_&M*jia8H`|(EsaV_d?%ysK zYf29cQEzs{YqPxBEK_f4IS^F3G#-0ZO}TW@f}GOcYqaWo(Xt#x3xcA`3tbfItr(Uo zFHi(W#aX+v>t0<|GBipM6fwr3orRr!T1hqk5me;8CvZNI4KxJ_t0N zx!96&AgKDXo4CGIdSHlIqE1Fnn;g@Pu+6d$bC8&vpLIn+Q|aG3NL+VnK~O}Gkiv98 zFNS5U=0j)luuPATtAeL;f|pF?a)OitLDe^6@YbR2v^-Ont8a2muvBRJbP$8}I?9Dc z%7LI-oj#3j-TU;*wK`A)N0py`myWBmpp@%xC_OM#j(*flT-RtpQ0`NXKI-(EkLi8# zy@wf9ME!Qd$=A`lnXJMZ(gyoO&ZbxG8#HIdA~brpNEi)iknefqL#Kj@UPLMc3*`cC zpt(xKb=s|ud3Xyd<>;FL!(q165pE}!J!-aERpm0H4YsHgj=IfGcJ!djcUqOH6LLjx zM0=WfUpHGSrx``g5%;sYL%4DrD1sx}YdT;1pvjj&%Cy&7 z4g|3(L4R@p<#Lx$gT4xZm+Iw0Amu<1J;H9E7O(djjU$>f;!#zmN61yd6a6*$$%9sB z$7!?5^w(@nuta{Ae{a?Qz#A3ju?lkzlsBNto<)D4z(mfGO5+3Lo2O@vn{@K zY8h4VOlr01l_2M-vC^rfHNg@!sSGkzKr9Z+)Nw`-6tOnZ%@VFnNHM63`0DK*H1@I` z@BY6s@nvg*C32nm`+jquSJ!27oh9j$ntRTTXXQy!5~Mu-I(?cyV%ea4{3%VaM4wIt zR=(Jj(LF@_oi1NrE;DinX@f2Dy8fI8vP@n#f}q?sl%5zJ?=|^gugnUjVi{QwWw;uR zZ?oOwgyDjqM@hN%(-RaS`0xMvgTMHJ_&*Qlo<1ysOX!u#Tmu3Lf?P9d9>ZnNni}5fahGdvr{XDc5(MNuM%Z zyj&3+(QSB?vfCiVpe}~qkL&$@HZCOVPogKp!fMG?pHS(#2GR|QWr zL+TT8&!2Z_yi7CX$bu+R>v77|l44L7gR;S7wH)yyC1nO>S`Gw}LUj87Y`I!w;xemc zvJ~Q~;E50oFBYfc1p}1{k(L8N)SPq^+MG^+F+`af2YQ_GVtO%|BxEQ(n=zWc7%yfe zPk~W6$9zI)tqUd#_2}%34&aPmjI!}5Z?lqwn#;q1 z7|xi8aY9^XIAd#q^%-N$CX?CAYI9|h-z?{ z01Nl=ZDZkdLAjcRJUWG;8FrumFz_M1Yz%mfT=ZF1NQU{W-Sd-xl8SCkWf71#2{ZvQ z@GxDF1Q4-Uk029-JR0B~@Zo_txZM8iP$mSutc^3i<^BdB5^AP@E}^Hsrq ze8?C1qE`uwnhzG*px&I%mg83#3$k1v-N-8`#bc^~z5b_*#P0-2K_kDQn+jPF{zGiP zn-rvfsRZ4(#J_sG%_h^1UV*o@rJAiTAN@(DuhgLbHj(!_^tv6-QqfZ{Rsggd2(Qye zJa)>&d^69TLid5#nYLSZcD+SUyIbxpNjn5Qddh?#FJB_=X}_)eTw$5G*K)RVetlFK z=Z7Zl-y`RT$8?{0%e}BUdfMBH`drcW&o_dV@t?mV{|-@U`_B%Yj%DR4dTPjW4?Wxa zW2Rol`(qRLHy5M%LNr5zF8v1sL=UhbrRz0Y7s0qgx986;7Q<1k+oH>g`*dSCV@7X! zGf_`+&0v_Gm8^JJ~57|mb|XaXE~Ik8RMe!ht$ zaZXeK@csBda&Ea!9sfcfbT9ON^d}Cz0)X$;fL&)(cH$aP$b;?Wy>4IZt!8y#;=HE` zYaDn-F_SxxghB_s9j_uz>_8LX;8Rmtbq&yKJ`e}qo6g>l=*Q2DZm<@xC~)GH1$vO% zc>_3cSx^A*y_%r+sLl^VB(4dhej)uKwO6bxB&JJ!(0N(Rnskp;yV>U(np5V(oB#(_ z?901EvK`t=SxxvYebBAGfckXzpxN5%I`07`>kBvxxbWhj*J$lm83$4ybSn=ifBgfx zxr}etPnHK50S-P|j-O8HzTn+{x0US>oOVk-q?55M3Zm-(Eh?*_A^;rRwZE_%phsV; zT11C9$anM?o1%T_in&jo^3fB30kExIz@1dkAftD}1(;G4q+9w61j_sia-xqi25`ADnD1N6y?vgZ(enodM4=nv(cBs< zuBmuJ7d(^|5pvq!d|2<5+)`f0y`P7T=8Ac99bf)c zfSkZdUGP5Oyx+3$Mc?}yj!gmlZ775^9nNc;L?M*A2%(i*+$Yo$rJs-m%}T%Hc9TzN zCkma^1TN!>iM~Q1kY_AuQ15c8T)1I*HNMvN z3y0<^agdRsR7$g*T|SOXk)qHA@0Jd!_GN@Od@sijX08n8#}>0&f0XUhn_S&G zy>Y~%IC{hqNLs<>1b9FSAM7^et;pgoH-=AqKum&M_baMeyC$d zd?W@c8BL)a^2Cnswfl+f$bff8W3BArVJ0e%M!!dI+tOV_VwE-9biW-NBgKWYp$a@c{s%3dRNqBQW^&SkMTAcz^k)3C&Y{Q#-16d*Vg+R@>`!#!pgfO*QNd17P4IZeXvm+Y(QS zmhJZzJID#JVB$bo$?y(eslCDo7K;N100W=l%lz|<9@Cq#YC3w|62fa-C{5o5H~*y+iSLIh}5PL0zJOb;bW!$lGvMrg0Y*z*sh2+>c;R* zM$u=;gp`S$Tob6<2Gx;?<1DPiw>Tco==#VmU1!_uI#(qmKpI^jKaruNeAjN!av|L- zMtc@Azb1@cH|LQX)Q5%l#CH$sJ?cap@isPke=?&QNe|T6-Q&yRa65mbS@D{vj!KGW;b{6wQm z<2Rlw;+q2-=_&*JaR4iJSn$16@lC=SwvvZ|PeTUiiR>L`Rw}+*w9bMCz{ESsgm)2V z^pyre$5gHzei!GL8nW9wqRYc*^|4FIOsn;c{RZt8advLT_dOhPAq8RnP}^zKD;b?b zveEOhT>KEqG2v(fEsGY#4t-3y{l(V_iF$ zh#n#q`75g*JNtf1rgA_X;bwTCkDy!sZAADw|9F+2h~*@}FoWyW8C5 z;Bw7nKpgNdMCEFKPS2Y3==Ez_$?rOEPDbxJ7t&_*Qp|vr&z7sfswNJ7W#V?o=FV}S z{;Ny--yiaBOZ?id5LQmsAmHPNAs-miIFm{7O%eJ&K;gTyMlc)_S24Z}-WO`)qq+FF6EWf~j-R+}m@`Ya~t`O@ND^ zg;Gb%{XXc@(HT*nxT~4}HEkk!EI13s58a~RKH!r$el!6t{yG#t^k6v6R8S;QOHVVl z^in84U=qJyXKg+X;o$GbVSgDdX&mp!-CV2{`p;<-PfVNSAb1Ma#-06r?+%82chLxe{=Mq{nHt`C?lFj*tZBJ;d7~J<7x)E`IBP7jaS(B$M+FtH=#X)MNR@ zI6*E~qF|XA^zK(k5Q9<^B$LOFoxSJ@@`R8CM~8?Wl%Wd))8+}S>5`h%UFTP`l#aVh zX?mpnofbc3m4GBQebVj$-wu?5Bs6`JdpINoNoazk%Wl@(-|IMgoJyA`h=PUO*YsWn zOA#vZ+L%vjIVbN@kc1{kdHm5^R=h~1h(9R`Rvv%d20sp(B2+>Xq&!q&Cp4=lQiMv1 zf|ZBr(E*RZ6rmED9!ZQCS)dY-q^3`DAID8W5}H2Az565uNoe|{<6iRGkLI%TI?3dS z?xV-a^SRXY!}RDe?~J90J)s#Q@e2dfkn&psP3-mDj%)&w)bzsCbGt1mNTGg9v-hyi z&l;y72~96dk18m+Qqw0@P;wvHCD+vEk7$;e4+Rp`=1SBLRRy)gqhKxZxPp|DnqHV5 zSCCRt(Y9%qx$YBgFc88d!giBi-{+5vU2?{oI-L4Etj?WPKRzdP)pjhzrWd$i~75*x^qG9 zS@g1S&QLW;{_l0nkjI@ytMllZJ+5QIQCs7md;`JubmxM8=fYN z#bV+be|q1UIvtpKv+Nc43lQP&3qStajYneN1f47A4QKq>#XP&Y*-uBDje?_}h8@w4 z(p@@ol0E2lj`=Mx!}JL%d~qP$eHL)n$sW=Ek`BMKA%1tj)v;wjAvb#sy2JQ@Huh=b zEYqiSFO3I{wQ^EOoeIi^?~K{BhLc{G;VTw%Y^xNH^*#GAgTqJy4OGX8Y*4FRx2*+VYg`fpEh>aPv7& zm5h?5z|Q}buv`f{oCH61`_y|R=3#g>ld^q+KG@VxoenN)_2WId!b@&}r@h7i{tC}hRjDyzZEoxvUV&9= zj94&6{mUzol9$0PhS-~@SGcl$dH%9AOae)ARJTEIV0@2G8d+nrMACn?27mR)XS3 zKBTFsL2*$Cqa39NXUW_LzDi7zg(~HSSHW@s##J5!}tRZ{ER?k@8D3?~bCQvH+WdDSBO-e?eRs=@&E4{#! z>sLxS0A%`zzhq+E#)DEWeJoMHWY<9covM=Af`*LQa4>wv^Iy5HK}a2VSy9oDe04Tk zoU`0fuA(xM0KFs1R-n5ae}$=Cw6q`~HzZ`q7dHN-)QDqFYK}ag+bb)d&)&%>QX_1Z z66K;u3nC1%zeIl9fpE}>nlVa;LkI#Q`?RZPG?{hkH?rmWw6-d6vYj|}gC=3y(>&N{+?$_h2qNh(*NLJ^o-qSWX=`f(Y*t<^4|Ocp?yb}t8uX=r+-T-w>H zz{&jhay%t33G<^C1mr%Ab*6*q^s;s~o{YqdZZ?}vE*UWTk`kjSM<(W9oB#*6%;yx) z6S{Vgv7@)M8a2*_HmDTth453uroVl08B?FJqi^|xrbY(=FhIdppJRcWp`!;&P-AE# z4d@+w?LqrE3xqg&9vylNYl(Z{qx$3Oz?L|`_u!Cj^P?rfK$xQ^prFXY%;W*TwHlqz zWiAu{aXRMZI6iAbO_A|0XoGr}_GhnZOF9HV{jyrW(d+N?+biQUmk`uYUmD!|j5}Ut zf4ro%3*KHw_Xwq?kIvOWzsKk(?)DIUi}(%(8`>a$s2W~zv_));qfIp#J@Lefb9@ad zdk8{Oh28wqCcwbm)%aXo)+%01+v#-r-Zdfd2`&T`IUo)09g8bAc+y?>EY#6!V^Yt> zLK)P17WJ@0*U5F-&hlq`LWhEzYlHl8h%BBVWucDV9u*9=p-X)@_`-64jn})hSxoH5 zbgnjuzR)XZBLIPy54ab8Ic;?BtBAgDdd_w($EHvg@o93okw!Q_x5C+{JYL_+3Zgvv z;=N#?eFmJ|wwxT(D?*127XIkId=RgN!F*4CX)sxRH=FXFS@blFgM%hWH|6K2gUgAx zgc3b_;h>BtXNhll!79r#qF}u%&8)ujc1uLhR5+p1lHlB4J(r8?wZ`M!hJ0g+<&OAD zQOl|N*wY5~7O7z zbjt$K%U#Y>Ve!R0NK?WGT;o;FyxZCXR9v|+v z8oWDJJ_;>iMB#_ZRQ`z{&iLN1n{=)^;5u*8QyTpi<)Rmr|j;s>~Vk$2Sr ze_us+qt$92^_qO-72o}KquI#1IDH(0MQ#EdWP$rYhpxSMSnq!8G`P`sVJI=HU1}Iz z0Cj!S_`RQoAv=x&?tr1FPE$ab14$_Ckv~sMb!m?!0AKzG>2;Kg=HSIbHhAe~C$mHNb~ zBqf2-RWV)D;JsE+zAA<)V0sAIZm|%RA3~BK5IQ^1oNpD`!N>xq3opHkLXUCu8ma5U zTo*vytOTCvEnn9=PxB%wGubQPxxIYJYC{$w)0v~guOum-IY4&{X=yCbp(@|`wuFJyBhvg6KmE#&NL_Wnb?)q@?|Vo|7n8p4(Y5;? zIyAk;VUx9J<;$9sL}+xM!=I!n-{;`dGdefQKl-_%d~URa5jI4jI~kK83WX#vy1Ei` zK7PQ;S68_%fV#R8?^Cw<4cg_aD=i9?&K~_{%ejT4eD+Y90O_=PxRZR~ASHp(X(j$v zMOx*$0P2no4fp)>%H=ycMi#h_S9G+1?kZefPKOUhQ#whznl1Y7afA4sWl~j5U=;yi z;S*(HM;(pZ7xzTcVNlOQ{GJroLx=zqA2Ab$Biadc>RE{2Dp6p;(uaZfm4RJ4uI6#$ z)7|A7S>Wyhx1im=jj#M%Xs!$39StnXSMgn6k7-K- zt0TC$OqGvdt_|>~D!dOytKMj}H(CxC<9Vn|N55OAbgeQSM8L)^_4U@^{N!}drzm5c zlKAG^jdV*GNFDOS(fP?}QEAA72+xM7Ln^irK){Ah0IRC8Hy4&q081E1U5Tns9xVpq z+GsE7%U7blJ`CtW*T)$>4_>~|aczJ&U)dc@Cf>c(+hk>zXM{Z>onKr&9Pkh( zAwt+CcH~_cgGuT7(hZ{#2JxPb)&7&CMn-qc?tbeI58}t(ey-u_V7~|U1)UgXL5-jM z3NWRr%Q~LAmyf4lDOIpO)Td2P2dhEtVtAT;lYO22k_9lj3a}+*d9?qKGhpE}_VIKq ztOV~OiM{~J7WR!eB-r_senn3w(AM_ z26EMa4+{h<_xX>ObZGz$LwKzh{qQx{3>YyO*tm0XF+Qz{RVaEEd$*D8wfWjY^wuM( zr^vo?5w+uNhEGQo%0<-UE?@gfM-|GT-gRR5@o#>~>%-^)SYZ@PX>jk!uhAKgM)x6I zpT2+GKko9?%jnLa19r7R{)m$go4egkujA}bh~8ON1kdHczs>pWU7n?*doM*~Aq?hC z#oXV`e*LSjzh>21^c>=9OU?t&b{=i0#D!S~EZOBUVHTTq}E<}OVVe~2%3M`xqOXgc)gZ=%O`kYsGG zk8poXCxI8Er?rD`8&5L%ib|uGb?NvR3w?AWu2q$RA_6>o$~+u*yR>pE9@W@y@@e(> ztf$Dn3(kNK9vAvMwD`&Q(4>nCn*a~@?6}x_($4nkeZIvydh}3~7DgTHPi!`wBdoXR z2;=SnZM$KaA$p3d$N)#c#pkvQTK|@Zb=#s7;l@OC&#uUbM}e2ywil5Tc%2{J#ugb+ z(x85*zb1-gz17Oz8L}-w=PFIKD>mOQNiBVuD5 zXno#0-pS~nECy2K!TqWjYYX%WD{%^lkfz4dOA`Gud{Eyrf;%9r;2S`znK5qUsual z`rzNPQrmyKH+u9|klg$MUz96)4nEsyw(DIU-6_hICGCb(e6;td)8!dEMM!gHFhA4r zVLqYoKFH|cMYGPYqliAK9*F251WtbFIcYWfeR^mrU?%$Ig0*Hi2YyiIh3UrQBYF`i z>-~Y1x)f!etAqVhD=zlw<*|$g-JN6FGMVi)db{1`QNP1Gz0r@D6hufN49-yZ3g2G0 zBSqb7gh9M(#RXln-*39f5I^+u8&^R!;vm~$ZFihrcB-&SVGvQ*2|K^9tOiiZVA|zQ zenRP5b-4?1;0L2T5eFvQx0=25BVL~X4?nl^obe#GLN&V$anQ9#apV|^ehR0c1g^os z-A&7#Qzb>OLKe6nSxQR;1a`)iEY7PwR{o#QN76<-n48f4>m91N5|ar@@GTs++P!Km zI0RVu5YhCwFb<;IR!FjB;QGLSiSN!YCKHh#^yZE1xL`N3>6WXwfSJN z94(f$(JQ)kyGCI+l7H|P0i*Z0%rBLsv9yi^OMfc@#J@<7Le0pZh+TQ`on-~=hFU>Xdn|(gnGpXFIO@`%v*~D_6j<)R3d@#*VP?x+->p{vt zjhpyIfB#l_7}i=rpf*W|9dUEt0bK&?hN1FwU}RYS^#L7$IAQ1n@CV_D3Ci$GWo3UP19*!ax z|Nes?{KXH%|HXs}1w~H@^)k`m?e%#xS9zEUT_7lbw?XpkH`~qLfzv`it2#Lh6;^+_ zfz>8mKXrK2YEXf8ioto+emNSZf3u-!+A*`+r}ja;k_(^Z#z6hE!nxWk6+O>(>Z>2dFfmK>cLvGUx` z(J)=xD6Wyi`Gn~6>LWS_!|>m4W;igVH@*hD&Q#wfg^;?z^~0jRedUGFqa&U-8A{QQ z`%M}Yis2Ni{3;(xF)}P~(i=IVt5BP}&bfffdn1MltN*w`E~Ym9m_|qs#Rdg2Y2Xc5 zS5;@|paTS9lY-a_R&|vZ#2l;5Ui{+E|FA)f>)*MZzdu$T&lVT4`!}1|ebVkbFN~a3 zZdEa1bCX)4U#G1P%^oeK?(+MGE3YLO8J0K6w|$!LqMb0i{2))|`8LPG>?U2IC`;#2NXZ6oV_RNiUw=yBF*vma%4 z@=gO7XCL=9Sa;}g*1v6c9<{?04cB1Zp~Lzn{XRK==2qyH_xlVLR)1L7tc$mlmn<7c zpBLV26-$9&=*NYI&PU7T;Hl&3zgE+~Ff7>mT-aI;Ue%rrrl*t9qDD7VWM`wn>SEzI ziryCIDw`F_LL5xV#B;wjU(Dz_mets?HH?j@jcr*#82g#~V;xi3=oP)lJRM9jHyxw9 zGAQwTF_N0^kT2bqV!)Z>7!@ET*_LT9{S4Id@-1a3qRb8 zPO6Pf3krjB@M7mrT^n3xr=#IyK-UbC#Y|V4EJmYOi8qSTwRo78ZA{qo>^z%N!^fOP zk6|O7f(d(G4mE+Aj9!h0RC|Wvvzi=Qh=$ppx`8#npbs*Yu~}?J_ikpJ0qP~OV2^TBxP0HZS)R2-a^MjYSFPA|^SFEjPBF$-e! zX+0*zu?zzCjSw|DRkaA`>EM9$+Tdi!!WR7=0SPdI5QO^cgYg-ckG}R=C~$ot3BX%} z#Z$RQl7%5UM?i&xAPv|XgT-QS$w<-n&`1dfBSgV?ZLnN1LVSAQ!ERlSgdo)48i+fY zpA9%7KDx9D4+o?HyCGrY84FHyCe|W8iiAN@!I~|2S8BUpk&4d}(ty1=SW(Z2$6zzI zjZ+#Nq-24)F}OG#&t~(Iv8O~hNDG7X=E-0=`t7e7C^|q&gK@MhFt44Qo-jsq&L#m4 zAVH|Vbuyj~mc#LwA)>PYR5%CHfW1jydp3H-Q1LM)HC&L8wJ^)kuw+g<84C>uBV~bk z>qOm>&d18}QKwZn3eteRcJdwX5y$6(@4n^;5`_9&!=uIQZ0y|r*@`Wl)WH`b3}cjY z)?hN4o;ugKMn@YBv7`!zK^m~vhEI9Uj*d1G;0O|g`Wy7&iWko4hD}Pi1QN{|&n~9V zS&@ln2no)RqB-MyuzFUKAtX3Mih}Xl@cfh!;#1=M)X_gRvGlr_pl0&X9VVf`^@Swt zzbQT*@}eGHbtw%GLb43wG+tX_W^)fivcSAMoJ}TFz0tf64^s5#%Mx;cIRMlT>@U0h z=jeqCN34imv-{O=(U0gP&?OIaeBGl}T&9vnaNilu&gWDe(kcYYnb8BiT*m<#c_8l$ zXVc-uf-VGH)zl!9hctTK!`E{xcsN*jkA8YKR)dTM3xD(-T(**n&k+DqwA1YHs})TK zFzgo54jmT?c_69wne*|@7PZg((!r1<05=4HE?i^*iXIYZ5f3ATL3(4jxSaE@Q+#tH zBsfKig7MmL`GSQczA0F~;QAy8^*4ufow>8p5?_T%4bD)qIp%^+J@VoekC7T2qhx`3 zkBT#4YJML*z8G0b0i;H_;Q7G433^+wR0@F=0^s*`h(#fr4|ty;z6=*da1HXnzC|lF zqt*DF_adU32B@%b;*TbezIJ+YUaka?07sBu9u)eJ=Er#bcM#i~4Ucdl7vR8f^&oVcjNQ2Z#`%co;F%ICymd}+~z5|Ha}G&oTP<8 zdhK+~YpCd&mINF^-dTN{K3vg@RTIvLUO_N2E=h|cH23o_4i>{_;}@e$&{@9NxEpD- zz8cKO;sR@X4&8iMW1xVMli_@>`)9nDliCOa!N}d*=rHJF}{F+-4YbU$~*tqv^6eIj7987&?Bpg%cOFkd--!^TPj9`o>L4&0q83o4@ZP0m6 zd)9dI9aZYfAYraBz7})d?o}IKf(A=p7R49cL_~KH@vOe_ts_P>CK*A5wNUA!2~%DL zR95;V306X-PkbR8x($3~r7y?9R46yeZ&8<;)lik?CPRazPffz-rB8mz88~lzWvJ2H zFe3p5L!s;~zoQ;$y!@An>TQjJnNNH(qE2+D`ZnJAY~(h}&0xXK56$mQ+~}`lH1-^@7#da-LktLG zKQ1=*Y$To?Vebp0eVis%>sH*C61B0PJg}D?d%kq6ywUi>k%KLVXayC|MytraCuFBok_6oa3x_nAKrhKSo z-w~O-Msiq)hYw5`=(f6(3qEtb@tuW6WPL;^0?>ENuLwQ&rwBIQg=TcFqH9RVz<6;D z1^|HpD-((^uwsxp6G{NUw@j4P)b)1^z464cQCT1H8UeU986u9bOqcG)`_z*mIRzH1 z8LG3vba+WeXjU_4IVJVP5Cg%86&GShhMxyh$3;$o1*;f}4<~L$OkE5O1O}{`smY92 zK&fY@gg&rV9ynjV2-m`?^8f?Eh*bsCA*7eQ&z`ypRs^7}>_?03fo^*0?3Ysl7Q|9d zCb9>sjZ$04DX?I5OXxAwSK+LXx?93Yuwu0c-jsRj7C{04w&rPHP;cL@l2gyqf&u)E z)7enGcg#{geyK%?@FfB*4AKYohIIF2+Q#LbMgfb#;_@p;jFYYH^#TM3Z;WUsK3@%q zUW}6xjHX1vxT(HCTcK%Hn#bzK^*O@Gq~=A&ema{y_cp>1aBl zvx74}aUPx39kD>ja}XTppsV40il8f{09zvf)_G9Jil+0&B}93@2&xEo@?G(6||A-dre z(s(+*;Qh(yyk}%Qni2=^#@UokCJgy`hxm{w5zf-WAiaGyTM){f7mp7aWH=3fHTmMr zvpH?*=NThGh|R8P96bEt62-3?T`?Yfl%vQjOk|NdjD+1fl-= zQ@W3V#ZtU|QsDYR5`Y`e2Fqt|X^c(@Ey6Gm2I&nN6V3m`!V=wtO9@VqqF}uK?0mpW zVRUo}1x^r>Ibe0pE97_pDR6+01mLC^uGeTnWb9oh7Cro8QXVpgfc>ugL0~Af@suK} zGE2zkIs>8CMLo%~#THSz;#piuTEU`^X#*FbM)=ex)$6H&P70Wq4pO%U5k$j52`f_sCu`g@&< z=xR)hFdBqGdUJgK^w}v7T69~iG#rkU1?IJ}(^rpfR!G1BrgQC%eFqaaw%un_89{FGG1EP2HKT|FKY)mtpe6A(BB<6x)dX7QZ-_L&{ zms0HQ8yhd%p<>Oo!gxsl`3CLb5?y^(4C4!h65%PVg+cnuF&~>p_kG8FU`}$7etS%( z#!l(RPhN|~XI04XfZ(qdkH&Wih7Dq7RmyN4{%Uxy|8Y6vYq`H>A+`RMZH zY{55fM`t)K!a@XLLn2pSuV&w{AVnV{6ABCiRbbwpP?a&HnuD)3M`u1GzszvjdJV# z=v8G$jDsBz9DM5jh$?Do{JhJQH{Sb>D%sVwyT$Hj78AZcbiX5a>ab+r_@LJ|mJ|+d zK6c&cT`|1b+W7R+Hiirlp6nYt`P}tFRqkSR8n_`O`o?2dd0jqY zRCs%1I$ACG+++0grj%giNr{5-+O+KXe-hyOBnb5z)2Y8O6W!!$5l+#3PyIZW{ zNlJv1v@l3-iH8}yO-<3)fIx+@@JADY1f%s6+DXUik1b$I#er#QgzPV8yjF-Fa?f~9 zAUR0ippVM;C$$I5=MYto0q*)lms}zx>NMc`FQxe?4VR>aE6jaAl_A9@uyy*^MWN5 z04e~eZ_pkY=h~;}YFkP;B>O>;8}sK+y{W(WjG#m~M++k~Z_R1aM(k2xc`mvJf(mCr z+Jey`5I2Kw0aGdtOiKgy=6vSO@5h%}slh=?7MM5Yv*nl%Z{xFrkZ>SE6pT0Lb9(ip zWT#(gaEg)z=7zq$m1TwaTo9xNS^y zEv7{rloAGsg0-AoEQY0nrBoc2mImzI#YEHwlaafbFuJp232~$a0QHT<#nic=CAt_% z2~LuthOwm85?+x;Go%D#C{ZwO(8cYGk<;QtX9_LCIa(N`|DU%v?UL+B&NG|BT1!?| z){dnYHfJbGqe-f(o6Y8YkOX2OA)yO609q|-G!wcRaWgZJvEkl`%E~@x{sBLV|98yX z{dIS9_sB|%>rp(1jjD*K_c1fy_jmi2FIE;gU0qtOM#3?&z}&JwNe_IeCvLq=0mkCs zz1yF+vzIcb>)kRMl4NCpd55-^CGP|1^8!mG5Ecc4T*>;@JGjCc2}P`>ze`*A=@G?& z8Np~sjFp8qZ}+rrEFkI`byi3aBniMf{d~O|T0B`oB8(^)?=fR=o$W+24hw_yZoile z-i%{4B*)4I%yN8@oR8G!F{2?dRu-7Mz4?1#@05DABUUOPligEq_uN$-v@pdA5)}7- z-|K&zQMUZGVCXAsDNJ8;JzOqHyco{%U@bY#P$%3!@<^Ru-7| z3A1ialKDmTXaXuJ%1Q(FR{BJ);CK;c6VdvD!zeDX^;rEV#lNP@D$aO>8(oze1I z+D}oZmY0zvnG5L=~>-!{}5Jnv(|XJsMZer^ynLK8#i*L0Mst-p=mhP&bLJ zkTB?q4*>3(ulvo4cPtN$T>*3qX#gpqUac>?WM|6`31w9h&zv-1x9mfd>81>QEfdF+R3?5(HH)4hrO%+e$~xYla7(v}oUHb^84x`ThdPF5<^b4QU-5zl~}x|TQB?oM6HN6fr6 z1OWA&_41;X+oRPp2u4EsXGFnx-~3?uC)wuc%R7sbN={;Fz}{KYd00u(JH!$aV?@EY zWf&)P54tEF`Z|SGSte&0aq#XK9=)|eJC6lXpEa0hg>t3?fcn;Y=xPuNNJ_LC^e#Q= zyiU3y`fAK*NQRY#6Spm9($3`p3VrU|hBDH?y_0Va)#pBbj!F7t9%usNU1FronLctx zBc-q`Fn8!?G`spO66O`?Yoj8>JH1 zBH-~oXJ^;a@?(;Z)F&dORtXLa@Q41N^ecKTQnp0@UE7iIV#b#;-*I5T1N@ui$;qZ#L6`GpekR$de>&fBR*-kXz=|{diUo z03!*&`uReZQC1e1_vt6JjGa8qq|Xsf zB}G|jz}~y;&-fiL;gmkXtcXN8VUX@S(y>3d6;Ix&Pw0BJ=y0ko{kjLjnaihCv|HC$$0NPK9d+&aTi}_OSs=?n<6Nc;9@1$ zr}xWdHsz-rMHZ`?-ktz|-+eX7HnXTps?`vA+Q|a*)~n=_67@7U2}nS6Mag^oWx9n) zT{N9YN-@Il;}AcZ(;HPOQGISH5i6080m>{`ZDzA-7C5n@1pvW<$80toEos~1&u8tN z?lAeD{w(tBnYOG1N!s1Ql14r*IpG&E6gD04*LJsif84&JE$YG^bq{)VWkj-gNCfE5 zGJ5HCf*W7NO`{xhNAr!00137{&26EBhOJzJR_D~4nPNe(#FWauk$abSDwQOXr34Fu zWJ;y^k!{XI+N*u#07haZGFoPD!F~KA`iES%%RZ`l6azIQRW!hJ5Cc;J*lhZ@Jn^1% z_SBgVCRnYa4S@tB4)~+hxOBCVdVWAirThqzvJ3r&UD;Nu#C8y{-=z!8nw8u}pl(I2 zhM+lFVBVv@4_}IOA}PoSgLI32WN&s6Wl23@>t#}!69@0@Kc!PU>fshEND50jz~-Ot ztgikqb8#ZS5b*!~ufO`|+oO>+Vl)yys?!asZVEDzg?Eofc1`WrOh{7)Z$$Iba{5et z)iESZ8;QS2ec-N>qWiTiSs*wfk2tT1)7e~`cdc)ZZZO;I5f*7=ceS+VaHMnlG zT94>b2f0q89=PP+Etd?_cK)FUVsHT-Srz(0t8P#~*&9YwMe z2J}%3rR`R9t~Xi#QO`sav0fVBXEE4ps~Z=5R!{E~;X)n;JmjBp88jCWjq(-Iue7CH zuv2AV-=YjAGWFkUF-cX;dJw)lMjLo!O5RA9d=Q{^GFbg|D-)fTm zP=m!u50<~v^y8^KiS*gf;2T8%jvCqsGhWhJGQKP-yM;r2c#q|5DrCAqzR$m*>n>!s zO+Do8sIvYA!kPuE|`iZu$kWtPc}RSh+m$Eox>*tSCUk!YXxve8lF_ z>yVup$B+0})?(mNvT!()mSEauHllkK>4EG84SQvz_4P5i;&Tyg7njli9~zJO+tX<~ zn@Fbm3OMO(qzc@9{snJd@0!`Dr5Qbur0VXg;0aj(Z}Cs;nqfQ5VoaAhHoZCZ%IDliK@{cG`CDef zwx4gejnARU5~ZHZ)Ej4^u?UXHr#^^XLMyqGMA+9 z$J<<3C@D@I)F+-wO;$^*ziVnUm$HGr@dLw{MuqD}kLBDzeG3b={IvZ2XqCT@q~30+ zGYLpo_7Ij$Y5#qxT&o9ruqV$QF#`OL3VigeMZKoJ&hkcfcogjMxrWESZz|U$EZFiC zvEh*fwKT;$<L_5NOU3oU%%7bM-57DcWZ!8ZbEZE{}9{D}0fw&J=z2+$+VVQ3g`g88- zio#y8RdDK{`kqriYm>8j6?;xr9Lz_^sdiSau&8k3=Y7+5s8omr1vb$5(e`HSx28}P z4B5Gs-EK&Xf;D$x&1I9!BEP6tPK`E*G|;jB^QR-aL`vkh9fr+DtvhHt27`#L3pwrp_UAcZX?P*{s0<9-nG0RJY zK|FHA4et}nnfj4>&Wxl%y<@KSTdt1j0)OG7ew5C41d@<-(*1>1fjSDP)p-7#ra=Ty zUuMccXajrSV`t4}M%9P4NQE?@A*?Uup1(?AB~_pfynipxk_A`&WLD8RqYKWt?g6ag>#a{|u_&q4 z^$mI{tdTgthXS0mVEXlntyEGjBIn6Qn0iQ72GZ9$G&kEfypM7ZwNB8^uvE=GZzfbJ z?ExFKf%OH(d_}dApw_AEyfmObBk?!%|AJX3RiO-|@N=_2KaDh?zEV$fZkAAP^dE%8bKY#Z( z`|{H(gL&X;i$Y?m$9RQG$jO5CK+w!+Ow@bod4a7+s}1f$!7XeBQ4hSff}J?Xh;Jc5 zYs5FnwTQ3%ct7!twc#b=Yror5e1$m3AGm~|N#ez%=_aESUwyLlTFh6M8*^Zap4f@M7trnahrj zdSZv=Y|kpwh1&=GoA&gSpU_H9PJf|Y9}u{pDNwvnmET-53>7qidg~+^;Hx)1VYS+A zI$%ABKcv5yeU-<}^OKRyWTLdFxA1yFn^*;Tu4$;r5C$#<4!=PyBD`TRTR{`1(FdxfPHE zSn$AGuvs8BafemCpTz4)?}IwX2lPuK9^3zjY^@)WSScVQ*_1|K5wJSV$woAKMPg09 z@qdQWjFj^&mIaN{F#32jYfmL|hqAK;X|=(nmM-RYQ`(~|eASO;tzho!$clqZdB>3X z%9!Nx*B$as=B$$i4e_-f?E$>(`fUdogKbQ>{MF;3ZAs`M(JO{66$w zPid>*(9IcMOp={6m?73oBzNU{SFKokad7W>^JvwJo^y}eWp&TbYe`qFGKf$7ugvH8 zn;@(EBTz}QmL$M}hyK^*dwRX>OwO99N8?_w;JB3sJH&g{(Z3R2*NV4Q2JyZ(Zq?b8 zh|^fzZhJN9Dzrg;=6^?1EuxggboEIruPW&&16G8R%(r@<$-OG-vH2FblLj-yyHs)2 ziZ`@D4SAZsInS?!sg11p|5g2ua1PzLsH!2T#( zGj*@4;3G)_bP$7Nm8za4E|S8g8yiY~LU%NwDu?duL>V3)84t~ubaCpm zql<0gYE(VTFTE7HKt9coqfOr=4W)YIz8&n;fxj2<*_+bpnx#NBqJX{6Kge#@R`;X@ z#>fG{MPW^gCX3;#gA!BMHn~<8yf)V(1bO>p}d^w!3oFg*R;{qdRy2yFH%MVcz3roV>!L517%h zxh+Tnb0=Wr$U$H2mN@4=c<`rBrqwF=!;+~#^jUR(j3z+vhZgb&mYXbYEC~$Khd!(B zkI@9^mdyxhc2i#*V`ZZ3#)^QrpwUOtnc76#+T0p3<4?*)q8Z zUtde7c>t<_-2;pcOVDK^!YzGwGp9LO;9RboQjV8bXb-OytY!wH7vh9dH9)KhkjoP3 zdw0XLMEum93mbj(tAAhF8>{&*fA^C=`w9Oa+;YU#Ic?9aOthLQXgOD#49#gjp2!LMSsqrj?OsV6Q9LkYb1x+ws1r#2 zphzOUC|D1eHSUi;r!&R$)X^8|!t_nIW9l*)l=V=o)KKl=xMHzd8bEC zB&e@jcG|HG+c>bt#GGukOXniy`o`0SG{!sGlvdbCSc8`C9(3`bbAHwiSv~7#NOS)p zY4~^)sMemnP$3QK$ARiEmTP7ux7GJO6mk{0U7%cV3oMRn`}($k0$c8fxX{XJdYia@ zKC74ooN|GA+422$qF7a8I%P0Ttxe^4dbXfD5=ym+el{!jRjPxH9M7&6>X91dERrr! zZK{hf*P=RUP*GpfwG$T`IfklHgE?8y9=hCXKenkVywtCp=7}oALH@vzdC&DVO_X{c ze4#QaAYjEE_w#HYz)t;vqFAU!vC&WVP>Q}Y$)CJec=k%@J zk2-WA4?1cqK3_7Xd#bu_NpCmBEkljkN~(kXa~F4dmtlO~bo3I|HThe8!&xEaw}N2N z6aGhZ2Mcek+1BS)@1b;>zB5+PkNEWZGM#szXA6(HG)~r=^u`7CMU7*A(b;J_BfHVuIsE!J=rcu4vRkE-k1Bzsasv z+hJ&61-)~rI?(rkUQNdr$(3U}i~$Q&Ck)^ry)I$yls~6K7~>@C-q_Cx-8*Ss*!$~~ z&2+Zrzq*7>)PcP-?ygq!ObP$5C@t!Kh!wJdjWhweYrmgg^vz6?^x4M9M6aK|dbD$0d^nl1LU zAP%?*ZDEplSZI^E;rrwD)vE1}KmFnlFFyVLpT7BA_@ysbS;;BE0QM4c-z=j9ThA);KZ7cbl zC%HuAU#Pp(IX%_}_o3sGSzpmxH91(HopZ1d2l<{OfAjU1FTVf$Tj8y~X3C+^1@8#F ze=25eeT`8-25C@{u7CXUMG;#gU1M!<51qGvoG$V-)%Qjs*4(?%y7y4*%qMEd!U0=Wc%B_B&m=vscBo-Uc9UlHDFNfs>^Re@vzoDkct$2vk*H5+PjwkYeonf zFP$uC@XnmIPBL~4@1P4FyrT*+eH*uicTN^Gb|feYeXHpm+heM&B)x2K7Eo!}l~6a`%-bvl99dNvvi^MDZs) z>jCluNzUG()u(q%DzN3dw1Pffck)P+KBcdR8vs0iB-m4$3tDXCVP*YV)b)5Uwp&13 zxJARX4-1&F)q*Vj_h5m@0ck3n%$kLKrnJ5Vma#1c<3*Yc>sw$Mu;5{m6SH!l-_P{A zjCgHHm`v$};hyuMWgr4+E;yryq2yv{{WP$QZ5GUymr1X!z6F*63({ObkIu`=pnfhe z2=LQ1Sn(0%J?8?;*lGdYuDW*%3}c%G{faih?>PpRvCRTnxZ8U^v|+Li1qZOe+(st2`mt2*?bynKhI-97Nv_hO zcv7$3cu5m)O*;F9vm8RN4)zf|HQ%n9WV4fgG*R$2NP~*p%kUA6XGMf-0h`UK)Zj zm}n>IRJ`qs$n7IF+Q~>7RHPz*H605#Yowx+Ez;yXS2bF=H0z!#@odCJD>vck*B|mS z4_$bN6y)133jN6%DHutEio9yR%DPuIYVM#6CL+t<^kdmp)QBu}!F%FTa!Th<+HO9w zOEL27`>r#@aSt}t2Osr0-OQY~#x-hJFAO3gO!=0NaPTs@bG61;K&rz_)CcCJYe5-IU)Gjg@*H)IaSYv2K&oJ2WY66SKd}?%mKq~_Ar3OuWX+efD0!010PA=1 z}IoGC%2K*@HHrdi5@b4 zvzM`{7Y6Z}t9SX#GYxC#P}i95{yR&KI_|m?E$(pS1lZssJ*DYTn$SKI1+_|~y)u|S z()>-j`K-oRWDVgWk#;x=C#w-z7)12gDPfb!uSSpEs)FUykj|Ag{LF)JuSyzvWiV0q z74|697~LiN65!#6R_)iL%duR`so`NzhKFcP%r^a}^d>9l;R_M` zD(UTXQ{E-*`AhdY)!;!Fyo1Tf{CGm6>iiuybw{72OjxBRPwr{nX9ylP8*Z?RxN5q>spl9<#E)MV`{BX9U=ax!n^>!5~3bc?1+EXVDz&*hi!XH*Sx`N!6Iia1g*3pXWcBCEOIpE8b|eogSwR!1 z`)m;fbbK*t=`MrhzQ0sIU4iM?U#xar2{)0geY9BZ977wyP>B4XU!w3vJ0 zziw9a;^L{VP+p6>k!_UePUsHMH)R`eH?r+d(^YmI=pN$+T*0=nyQ#FJg0tYW*rVmj zT!y@#xNXP5wtwrh#j*S`T`fq9SYx`1rD)=Lt!(#NDlGl0vZZu6nV(fL_qEE=$mu@p zEHGi^FG^PO8Z;7KB=n6h74@oH3U7#_V8Nn+?2U$aLm8RE!d%_SgvLxebA#AOxl&L?X-Z z<1@e5{VHrP_qyOX2<#|Drfd0LqCBPQM2lAKqhnVuNNBPp5Rj@`mQJ=Dba(*bkc2>Tg_2 zgoXd6WTBb=Gsce2P3W?15@+>|EJI;u)N2cVMgQbwa;ULduWc(0mPPg0w%^JQWwm;2 zI}WyOOrus?2=>sD4Ub@Pe9z?Nu!z~pS2ZC@`>mPw3?)OAU4wKHDOEaX&ZRZVLSIn38P+$9)?(H8nvuPs}`^KFB zB(@Ya1yp_%I56ac{0Gh`k>od?S5cV)5{xNCg_pl&jk%wwSPl&Nsf~(#t-9-v?H@*e zyX<~0%KlAQv|}N2x=}_dl3>jMS|UUx>RLY0SW{EGBuEIh^HsoHYapUiMA4zjJ(ix8B#_udRxFS z)Mc_c?X93^Mr{u(-&VV0CL>>aDoBxC1r986ZHo9s)}vAP^K6V>V~D}P4%g5MJ8Vx_ zWGQtA_(qmE5NvVzoX5Dl*K#&%R&=<9W(l4@|MjnEygS>-4&RMu7-c>;W9TTAuI0ft z7bp8$S65P;o8*p~9aF4qlElCgS3LuGZ5)sA_&9GDaYYo6rR@GDp%g>F1=bd&sR4Ka*sY{+gl-GdE= z0UKP6Yg2`0AK5^veUtIEdbA&+8`rl53ha0s{zZRm&hljWLVXZ0NajWa1S}9a!t^`l z{n=E`rd3Uihyfc!6y_Hkg3KPFb!2!EUH=%5Zf)t3PpVjM49;Wka7BB zV<3M$S})7>)s92Ca(z|CAvU74Mn9EVq-tpu6xeYTN61Y5i#)2H0}gU|NwxAIKMX(Z z>A~2Xt-i=52P~0kGg12m+Tz%PNkW0`|2l!4)cVfFnKe(JSSTM-bqOnMu!SXB!`M)w37SP^-$&3b-^!UTL zosH<6J?#kW=oOU{J{Uvm#mQFXAGD)tK{072KDmwyOCO1UL5qt`dQwf@tr3d3Rbaq^ zkHqg~kVFcp*C~W>!4Q!iKJETo{4;4!A<@Q_6RikDtR4#6Xg5}xSnAG?5X@ub5a2%* zKc`!g?f0@DtR6-S(cFdz13Mmze}aWVky~!OppJGs$FtY!jYxICaf+#{b!AieGRaMXQcr>d8<3sK`|jm0N@{lAM>BGUBK!wUC=AQjXcmMjcrH_T6(QsOurr+j=Fyk z{cyRwF#A!>+?Qy>dY5A?ePO9w;hfon3{bCN*ZJ6)JdaQHY>ic(+m04!qyI{;#YI;3HFnX@fQ`AoEnoGJCB_-^t-iLye;4 z`oBg1;2#G3tlJd&%<7rLAehjDKHx{;w=}7~o(_E`Cdegdr~`aI{IY8&o1vQ(gIdCM z;=n!&KkRABeAd!{h7OY?cdF_K@jihQd;%$$v0kp5*=X6(ekw9Z6!3axB#?p`?n+eL z)EO_t*E1u5z>LF?D9o3`DSaKjEiJ4zptsM)X1_>!OOX0jDbg{C9_hsl%sa*r9m0Sf z7`KR9n34NLJ0gtSNM_%da7uS2{7E)HLkLa|KHMdOJt@0M-UU`)I2yST6jM%qTw*9k z9+Y_K{IPD*ATD)F-Stb{62kEAo}(^LexOV(OObkJDFH$gtox2dH&eA8J?1QF>M56m z7F3J8j@GzDMOlSsRKY`zq+7od--hNCs|XI_xIU**{`oRF4m;GZpbFjrMVen3q>j)< zGMZO+V53BfBthZ`^0R`xRv>$ELn0UyV-BD3ty`vpA~>8<{Aq}3T%!+3DX9wH9pY^k zg?d-LVi={97X;-gSCTz-&8g=%I;H&AcKPAj8_zcJ?6BES_1DQ{@iq#~c#nQi{c2)p z0&+kf@bxYBKcWIrUk&J_Y{M^PK|2C%v2pjt2%>tHxI_%npdQlCR&+-vJIVhQO!e>y zVsKL^mymR)z1*%?4QZ5t{5cuMcibGG(2bquwwuY44k0b5rJeADPQq*TQ3Qy?>uX6c z=?VT7o5cUZS|lt{4FiCvx1r)k(>q z4eSF1cUI0p>S<@_i5wJ(1MG{-48f1xty5gQG@v2KK1;{cN+dSsd>o6~OEq&KO)7TrkM;0aN%4$Tkv z08@dcZ`hd;Xpt;u5gTFv|3v%Ev29yFaR1$aaE4s^9lqmJk9zp`gs_^b1ez7{a zn4CTzozEM&DOkO@20?+0)q%c;U(!V$S1UPCQcp@kOHiFKfCqGpdiCQm|L^ovzA~#1 ztd-&oEK;=qTP26~>%dqQuzSIV)g~!_>e|X_N!N@la7PlC`lm04rC>5K_A!Fe*@hYI zAs0oX4iw7p^p5qE_WPenoVs6-Mb&BoIZ)8>$QvjF9yxl7uG*=Iaf;Fq2)$r|!BXBrgiqze>)e zs@DdSoDg+&@6ii^bekVND7RQY|KuBy;nXb_v`oo*{2jB1|5np5%XsJig&=Uqk;sAeuAAV0~eVJvJU75tn5 zGww|1XXlfS9-?eyU8&B#PRMbCC`k9Gv}L^+|G1%-c1GDb19eltYL1o20{EDJVs^*d z`$P)&b-mCo;0tQ54fG-Zjwd)rbbHt)$~N2`NL9C$O1?i)cUqg-YQqmkz}5+A}}V!X3J&|DHf{&XHtv{!HBvK za&~=KiUm!esBT{!Q`=a|iaQkYsMJNGfSK&kwRA9rE{LgI$b~F`x7j=ThEh({o9a%O z$Q@1)5L1)b>cdtg`I(zxHA$`w^dqv1Zg%9hc{H+r9*u;j>IJW$i25@J0MDMgZ%xI+ zaZXkr)jRcrWWtXLFyLwUwf$2m8}HCa!mGpt$$$|bMMf;>sPWWX3t=*WoHbEjrxS!z zLoyDG`9=6Q)WtrhgA?7=F%5RgHM06Hw4k0?v;_vUxa7N>QYel)bfch_n2{9CC>rKo zjl4~cmtpEfV+#z?_&7wv{LWe9ZcqzRy7L1DO91~4i8d%Qg znWpS~UcEXe=fD^mtRSV$k9ap#A;oUIhY6=LgKQ}_5e0_OxG^(iMceG?(m;`w)n~JV z?lwz+fhlQb&fD-k);u{3X8mRG#3mJ$a@%R)Q(xRCYxvxUh*rD9Fv!*Q#b|9o!o;+^ zaT&8F7V=c(@|Lk+)I0g{NA(CJonYaE#D0WvpLTvhG#Sv_Z`#Kq?Kd z9^q%>O~+e^>DW(l>7M$46BH#lmIwSXe(J8k>&~*;RDJ9Ql7cSvfq#nM`mfDRm9odC z@4dQEmkn?PnD785(9o9Vzccss-J%jb5(n6)yZx@0=g?J zdyJ%7;9~#`5P@IL=h>l!dVz;J&>td+I8~PPJnNc9M%>yZ`(E^&+$|X|g}{&xN``O= zkUbRrnDupbSO(0v7nzYZHu@?3Eo>GB@Gt^$S3?vy^&%$3(gJ6cfs6~AY1yWWQ+bC( zwZazU0gnsY>Bd$v)V>S1s};5w00ZJ2Pfw@YOVRh4<5LI>iF3UF%^q`n!hjiZf=m|_ z50hrH;;)tBoh}p_$1MHg?GRl32v8^zm zPG_nBfg!#_Nx!*lrt9od#5x_ySRH6z*rvTXXqVg(RHv{7ZD4&jYTBC)zKD07ZWNS( z^c5+6L1()Ju}($mgaM3F)%T(WwN|PIb)Y{&Q^_W|Q9?0m>*q2{jb@1gQ=SD=Xg!Ih zzwNtkOL@3Yeg79!MbCNKCkPl3Ww(58s8)8f%0NcdX)*G(YBetoaFp$Q7jiGzE~o^6@g*LEJ4Zz(vb6K|l*J^lz zI?&!@y60=rWN(($@i=G$dw}ME#^cG=zUtl3kPp5Y0vY?a^T(eE1Y%9iZ^>Ywuppn^G6 ziI3*A-H$E;pcmw_yW8rSQvku7MA{|C_H)OH~uYOcC$S0|>jRwO$ z4FB@wZ$=b1zF&~n>yt}y^t%GKB~OManey8=V@isFDYvIR)!1u(phA=q^(I|(RNcwn zNH#*zo09o>bvVk)0`)dOS}FWdZ}m+5VL`}0VtIS3WHTOb=9}!kQ+*NhiZ)yOzeWJy z4+EYaJ03jc;86+LY6JQtf-dKDw~E;zA}84NHQQEpjDQLMx@^Mea=Jd}$Ibav9Iqyd zgg;fcyEm~ZXTrz_!pQuvwtlhc8hflf&~d)VF1pkA9k+A&61@`iigvAt;8%ni?SFan zlRx_j{~zcNL$oK|a&>v0t|{v0oVU3h^Z|by;564w|L&C5k!1k%J4d$RV*(5~3I?3f zC}wpckM-)uDcj&s2l##fPy5+4X*=|DGuyaM9N4H1TD9GL!#hUkt_hLl>eWF40TZH- zuR0p8CbRtYLJoC+qmWZo*Cq$C>V@2i0~`5Ey##ueRgRzP`3rS`qmsR*%MSKgvV%V0 z2O)p2TUny@)1BKgH!A}eRV8$X1#Q5jesXfmwq8{d6JWrtANu9unBSffrAggwGBTzk z5d^`w?LU%5R=tI?014MeSWkG9XjM;)p!9@4s_ThW1m)YjeVyF?y-9=e~}4clYc?NiTb7Pwv*#QW|? z6WU*3E@2emRX2(SWKah42u!<0lO~b`RK4m@f(B_&5!>SJi#1~Fg+V-UhS@FX!bkPo zNWn)Z3)&+=qixq+`r3iM8nQ((E|wMwb+Dg0Hszs7Yu;P59|)iI4M2|10I&f0m@7#0 z&jh+gJ`T!YeiXc>0XtpOPETRrnPh=iuckWTIPiqeA+Y3Lu!Qex6ma#@OBrr-!9xkQ zKOHX@F9otj367*eec&ux%;>q+#aXuBSKVTntnR|bh$X4%14BDXjUywuw!+gsadtZr2D0K)4(5_Zb4y?u~yF? zKvdvU0!;V-zotr_96z2+$Lm52)K7RPveK3ewapsdiu{JGiBPbH#tJTZtidySoFN%v zs}~&;$x>V#23CBW{F9!ZVED>dlJ@`9YqE)Q$rwq4P1K6G$aGUW{Fl6WwnIf!C@^D4 z14`X(`?LI^k{xQ>0#QCeMB@pEqYcFAbL~4clqH~3&OD^9X0lVXj)ztkIBHLIaS z_P(-M0)PR&ed^CQ^mM|doENXtK6zjnyKy4r>ogcp2J&F`r+HK9a(N?V^O+C@ z>(Kllx&=NSd+19pGXgD=1@Ech(Yt77Ie;#}TJhyD$)+#;T&?65S z;t73J*%PA(it~hame%!z1;KD>LLWUBkiltU6mv@Dco8K{`Efgy^NmAO-Uz}IDwdS3 z$II0fp8*jeQ!kJv+1QJM^}b`tBB`#eGfb$_Y!0JBFOy|(#8?nsP_0Q3o3v;2>az4i zJ?Wfy0!@%?yl4-hNS2}TVm%OSyyz2o{m9UG89^|d7q8?lqQPE}9tgI~x35<7Ux`Q! zE%R0p6dS8kI>|2}Lt|wG!MJB~1RW2dIRkq1Re;o^$|QFMRnTnQPG`$xLTG5*tRg5b zZgdBTaA$DbSP%^7Nk=IrAcH+Iil8`8=v0Y-4EBTt!LXj3HFQiyK!$o^6+y9O@@y=V zWN4XWJrJxP=U1zxTv8tDhgAf{*2Q#Ko-QquJ3)rl#n1%Fwv*GIMm)3;R3y#NcG8Q2 zWn;(3Wn|4iG&I81+u6NWf(y) zY^tx8^69yusm^*J*m|sMCetQ4yD+pKgCvD$iN-E9_f zKryuTvWoD8Cj9EYZN_>Ke=w(amH4oF&s#>!v2~Fo>S^JiXQz>Jd7yt5etNc{7hOmE zIs@&=YZrZXrb)ePB4{UO6j3nggYeJn@4Pu8DC!l>AX~I1P+-WT@Gq<(oJ7I~^}=FM zEZSfIz~2i$<_@3$tJi#jRsuHCKt`eOT7F-MGLFfPa{O5@^eF{~yfq(Mexn4c505h;j+eBb@>i%-9_aDmk?7?MUzKrMYM$(`jIx4p`e9@W+vHD;^A!WTVi13rYpiQT3@>#$l>Ck-m1OLv-$Hk7W_qw9r1eB_dVD{_;dSq4_`_$(x%Sq9(2J&KDjtKPdZUG@`+Ui3$dg<<`?O9 z)*8M+7re(V?RXc)s9XT`V~0Em6M4`PS$a7p$)+_TYgNHQnV?ViQ6`)$Xh=uek41gO z`eg#TDQ`pP?bBG+$T!dhk6I~Hcbd=Bc<#^#$f|5F4B}(DooGF!+a$&`$mFvTpLAU# zx2UQg2TLVw{axh1j7RCe`DU67>C{``Q^lec1_L9qSp3&!wvm}^Ke4bJnDO(}a#{kM z(yMLsPUCDs4={xOG<=kf1dtpI?h4o^?6VC@u#!t;LDX#`J!<-6XyLN z>A#PDN|ULVZAU?*iIg_IW^T2YC|*a0$^Y&elPB$r(tVrFKknP+91o+j92$AbH>|&b z9GVhg+6P%YSDVo|yY5Q;B3vq4&Y7MCbMi>pN6tpB#(fi!N{BG+XQ@l4w26f-V{|)U zg=OQty_o8@rS+GSLVXZk4k1zw#-gWtItcN!o|GC z#(@TtK1}~5|A>~z(la0GS5Z^ltrj^L4Eja-580qN8AUErKOvc_Z#7FGVcbvCe@@2p zrJp@rKG4Y{#3y^nUy=v2vT{kCQkwa1$8?`rdOmDFp)fmu&kgq^p;imLB)|Jl(nk<7ojwz#BU{=Qkz0hVZ!gk2Rn+V4$>Nz2g#3GpX@5))GmCunpR~TRh-pTl2Kgua z0XN_7W}eYx$@@kGO}!!`Xa#Y=-{&9FQ5@Op`(%)FMh<{m7Ld;IsP|k5hiLy;G@tu; zu~@Ho`Hl~vP1+I7ho+lu)aN!KX;ZAI4-em3CU=pleM>SQ>p}c&o{1D$VQAJif{?#Y zf9vRaxbAo~qCMB6kwB@BuX!~SHvczh7pb&Fwl}KLE>ahJq#A8dA4XB2Q3X{aiM#6Q zYA=`u*~^3d*#C57Ml@8bq)Dva&*3Et^tA(k|H%J%M3vi&w)D;u=hfxXE2j9M5Bj11 z?P%2gn1I!bpJG@?&)0{fUabIk@NSlp%eKD&IYTQ4eZ|HfI z#Nm4V6E6?8@OarJ;EEm_ZBRvyrt<*_wqnk*;^2x}gzhESYc1mSK^I=ryFL5!+KPi4 z_lTyn!@S*Rk0=6wFZ_O$WwMH?ZN4J9PEu!u2a;`(Yb<#^E&ap6fp}aQhbw_hP^pca9n6A~2iR8f! zb+Mi35ZqdIv6BWf^ik;xGl?pwwfd-D9NbVln0;Jd%hTPpN(!`ds++SF&eozr8`L{K zSStmg4QiNQ^K-d^TWfwTsDm8& zYe%nwTg_jmU7*@Ab5xrwY=uCdZ!M(IdH zPZ88=>Bz$1g%Jr4;P*HpiR8f!y-7@O3x8|%CcQYgQH*J*E11<{%);P>zFl&nx>nzg zWWfqE6ntcfUa>!)CePQ`nxTmGK@TOS&=ILsVv>GH6y5#woM)lu9Q-SEd20EW^mxKL zlRd^lZ`#a~S%X?TZv+5o8tUA%!&R%!jr&^>E$MDmqeZ=~kav=Ib8D4MlFj2tGxMU- zspT2#f)?sHYPe)mS*wmS!r+B;qsjQac*nXqjb`EZLSx+$O}o=d3b_p(LiA zn_5wg`Zk-t`scUknJN*=!MnssFF4a5|MAnWzy18PKm7h1K~dicxOAr!=)XY`oO}G~ z=l|`?@4x&0lkflVogk_2(2PluCRm5e`tplUzkc!kmoNVC`DX&Az705r#iF3ywKTRP zK@E!FmtQzVa7+Zh{NlSW|KY_aUnQhL5sWm!I=imOmDg}a|yiX?3snF!Cz52LMW{w*Rm zW4?4m0Mti%A_trt2ppmD`D7}`ghM>AYS6!J^iO9^@{p>!#*ADTpIbdJtPg2deV7k% z2i@wY50?$oXEoT*smzD)lIfNqsqExHFdk$#z7O)is6n4=Cv&5GM^A;zyI_XYPLU)? zCO^>&u>90?yz667esX$XaQiX#msG@*A?-&{1jqP7%i;6nqP;=BI6W{PkS~+=<#gPR z+6A4c8+@-9>Dj6ETo=rDnYoeor2hx)Da4pVTF`#aYCji={~w2mKlkcfPWTc5x#}^b zoLDtj&n4Y_BFo5-lJ4X(f(-v)LP!D5wFa78JvAiPLJwXb9po~}&~ylkBS?prb<=_5 z;DIO9O^26xI=rl$4y+e@ahi7zhU6wEmk`p%dmtfhy*VWanl|49332<)?ZqiyM#~4< zMa49vy$FgTRufv`l!u51d1B>2;M(g|yOj@ky zDs0*yCAUBgN(-+D4v&&fdwWP-L~F<>$qPz~X}D!gHH_i}K`|wyXBUMhgYuP?1A*&v z>aq>Jc7asT_poZvx2Zw;FHhx2X;_?`ASl+0w2TjFl}=5K0ezEqX=aNLmdoTGly|)% zIL435W+sdIAU}*6^m(?2mQ_b5xbQXZLJyhk5u%{ocQo!pjIvCuzRNYrV~h)`;CnA-WI@SgAkz<DgzJ#H$;pAht&;sn?mZaNDnTz{v}YAZdc-h#V7N%N$=;%YkzzRz zT%_ous*y5!DI>jneqd^}tOtgRRGJtABgJwcxEk=RTW;twn_f;24y*x#C}`YnP;M|^ z$mVZIyAc$@;aMK~l%I`mUdr{{A+tP@BuLzzn~%?uyOV~r=UxyLm!DT@Mi`jaj9$j* z{~`FWL8E(7y3%YlGMrHG+k#0*|dp(I*$Q+mlY86gZ=O^G$(k1H`WTS@nG ziB@c2iE)Z4r|r``Hk4x(b52@s4(AkV&c1F=V>x)@@^b3Nz`Pv$;OdrFd|pT-{lL1# z3c?SrEBV!tLZv*Uu8br>;)qRq@TGKRKlLcecYnG}QcjhfW2IU_SO^Ew?UBvdm}Mos8n zq-AbUN*FchbG;bw2u+POs-G{k|*`d7yKODqM6II(QgTL zYJ%yd0p)o$1065t^W}p7D6)k9bVdmqi37}&YcaT^*FEKXy}QgN8b#r;LtA;kedOvVv9_ktEXlqu#mUXLst9B{KP8dL+vhAxCjrlfxa+;t{%0}W_z%QGmC8-HE z;sE;sM8n@^O%LIUoLr{>dFc|Ao;%tX)Jm72^Zh}sG@!oFPz zXLNf=JdW9A!aoOE-2yJ{JJiClE^xj|nD(dBUI2sGLXKKqu%p;oW6Wqr;_v1MJPvC z6vcW_Bb`C%{o&c3pk5kKpQ2rxGwY-%l!5dq+Ebq|s|e}@*GmKHyI=ebcYZT)o$i;A z2V8iZZIP(wu^65Ewxp-!DY-gTr*gNt@X>d_%*T_C-s=;ErcN&?5(hX0m;Fp17O50m zNCV2#23$n59Y{l_4ZI*IJZN2|&wmaXRvIy=^N^cAko#=cNyzsaIXyRQOsR6 zT_bm*>@q~ppjH;d$1%~kyh-m>*`-gMQG+zd&pf&7Oje^SdfM(~Bli^O?+XlDNNozH z>fnborW+Z2O2mD`;b|NzgB#MAzTHO}dsz@e8q-%HA!1jDr?HR*nOiBF3Rly1CVP!T zTB%qQEbbZ6!q6lesSoKHc|lNk0)$+xzmZ*tf@bRC^3Lx#^#;|1WqDY@qYO4J-T)q> zhm0~(T`)~6=e9D(tU;|@vNalvbXVC>M!cAMvJQ*>f7Q zwIwKm7~ zNy#6lm~+w+GcczSCoVHSYAI%L)MAP&nKd`9QpnOxtMpOo#lW&3``{v#5B~;6N^V*; zkyfd$Kt+Q_DpnB0O zBHejbFMZHc4Jj8vQF6Hd zRhI)raCl~qcM{27_K=x9s|I~89sX2yTqO=E9bOO=&RcXUB%8_|lDD7-21jZ$Z~A)c zcvem5XC4emiH(?x=CZL_WEIGevfrLS}+mN(|9vCLA zvki8G(!!`gpKIF7CfSZKq^31uP-pA;gI|k2$PnwTTB`q>s`|h2Ed}RPCMM&{Avx8_ z!2`}i{87zAp3nosrg3uf#IQ6bF{qm~&X#)zrLj?izDWcAq+WmAEGLKlIPELwo6Tgp zq;oB1U%$vrJ52orH8)EiJ`fukXxdnQGoQXnHc9_i{Vi)jvPicKME5?;kJHBNW7?&@ zqAj4wsd@GMyi+saOc~5O?i<>=Ef0gL59t?hMiit2_XFB1lCsn*Jq4DN1?`@v(S%E~ z{Xsp8Tf|vi@E*9|^zDxux?QM!o}`}oKJ5ZC)&>`T_Uq?-Mo*NM8h%0-yhHf8e!ixw z9pufB!oe{3u2az>Rm=9oKXb}-Wk`@B&^|`7Y6a&)#T)OB?l(z=72S9F}Gq6 zKQ!XYem$Dg6}`#uM;|>wiBy4mk8yN+lgNbX#z#2AYLLI<Sgy zI~ZdWfjM9!s8>8%cj+Dt^;)6uCujn7XEhyP%v!pVbS@{L^mV)yvUx2M1?g@?l4D1G zZY!h03k~p!Z(|YJp@vsRH1&!8yi})q%bbuX*Pa-`*)ok$R5=)P&1k8qi1h8GkdKuee>3 z9Zz*1ABq{+%LD!ZKV^6!*6MBe(96(H9N;JTA$3JN@3t)5`XW}!V+jBT_^_Mr>52~8 z_ayOk!YT}sc*LNu)CAmfzyd%&1p?TSiUMA&BpUKNiFP?K})06SuxLzFG zkG#J$jk$R>;$U>s6ROacvMc&e>Qx1k?t5G2O&$XMAh2uzw2M@F{7+`?id3Tw zYRK1gmxM&t%GX91ypXREWYJ*N%GX{T+DbE=DIbr#_Y^Jio70j8=jG3m#_{Y^KRx%38HG3@`xjpQU^^8z(y{ z>Zw4lDl2Yhf@i>rpZVXrUr=9W*3R1n-(`?gYyYEedL$%Rl*Of^M>YD?mdbJQ3|R3r zjSIDInGyQY!j|G;Gbj+S;ip?{808aU|99P_ah5m`>m{}`rp$$Jn z`*S&6{Q7y;m8;eM1a*+9PeHvm>f+^-RXg-4oRq6_V`1D3BY~9sMYo*){na`dZtgG= zxZZ?-fh`ZcEoOx?4}*Td4d-Njj^x4qu)zL)nTO%O>6@ow7=j6)z>>H4mD{+=Qt!t& zrPm<1%i|6@#joZbt!NwiVojI7a#m+H`Mz`c8=;Rd?)uy zy~2}bPR@?edR4dNeX`k-n0_t93E7+(slu0gtMK7?Esw71gSUmo!T`Qc*DdA`C8_t~ zu!?mGasb@nuXwnf-s`ANBf)?oFt_+yv;SLUaCI#uAXX2EyQ|BIx!0X$C*``O`j9*; z*>J^@If!=n33n=hSTYBt2R!z*Kj{>RsRc$H)T7nacy`j!Jps+cPS*?1^=+G#bIep4)JGYW-v1F` zedp~uFsp-o@Z)AlRWd!+Nw0Lu=|pvVBK>XpM^)w zYWSHvZ3aK>$9wWqh{MkZb~onZHjXmmqlG8JZTF?gfz0WN5(a33+RG}y3htk z;A+%`P8PKL_V361ANv2~9dz|{np2DG`=AUaJfy27)7_{wJan?4-ElV2OA>PGPQB-> z;G7W!2{i)k=G#w=;Dtd%-t5mer>DtON{ze;UGR=v2&n5td1W(eLO z+$`w5hE5KXYIq4<@SZrcUM?4N+M?c<>N@o>rr>I-4?gPo%a(RT%!*ZQje0(j2mN-} z76)$X@ipn#dLZb5af`ld=~}Pk6>#-jM1*j1Ag~v_fi4}t5AgzeVBB#G-asYlY4s_& z$Pb1XK~U~8g|Y$7A0~_X>S>i2;}yYqpT5l*>aE}r!>Yylt4)`*FhlgM8uU3&^)2t_ z5@|6cPdPadI70T0;J6Pk!~?4a{dZY^BcCb#58CPeDE_Pk?f0y<++3wTv>?U9HvdOF z~8+CVl)HY=UrIhFtFvB|0kSyT)mG@Xq=IhX7%Y|B0hI;dw7nLDM5U}Ax|8xF>FRWSXrrsLhb)^|O1(t+p znBVZFvw0(1D;fy`HazfFcP(ujr!8%=r=gz-DmQLH9pq4x+dHUzN@UeUt(v^Vfi zqqTRwGkUu@wc5EN2=;^;lut7@oAnX~iLz3w2F)O_BlJM{C%*j`M%3zoNCGSfDI>l| z#~>a&)JmBm2=@FtUt*%4aSy~5AG$f4hL&wVI$tj3oj5;KYVK~rg|(ptyjM zwSWao*_Kt;(k-*}TtgnHnzkeu*dogpO)z$}cR9DDX895j*b&mlY$5Y0lr=}SVp71s zmbbHQN9w7UWIK=%ggjLxtByCecCFjlHOheM&CAeqZEg_&18D9C-zVFv^b_SyDZ!E~ zVARp-mz!?fnw>9v+%G-SyF*9IDLQIFA9QNg!?zUl`BW~o?9i-lV>|USdDD~UqOqt+ zw(20?_datfrylDUE)hW)ZD@lUB26`4fm_Sppbj!kpz*f#q3bYNk#(ZLyhE2wCp~oa zRB6gEiU8cFD=t=7yho5O>EL6zBERU@evO(k5AGC~z_)D@UD~qPf*RCvDoX?U5I zu#aJ&{c6+AcyF;Nw(7k@-hqN=MieAO(f&?k z%o=_@GkAV;LB~OmAsT|cKQNrm7GtJYUGstbh(l?w6eWu;il zQzKj=@=hn=W-X!-E)nTM_5Jv0gh4!VsY!EW7o&VosPCEOi5W?Q`k|xpf{VGB=4H!I zPtpXPT)9*)x;WjqXqFhT<5^?}E#J;<^$Bzs9UU%1laIFWCIOY=nA4@DAdah zTZ~8$u;PjP`IPtEwtUSPS-X&_q3=58nIY8&|Dog0n~N4%LXsR!QE{f*z?oW9+5YMIqFHy>&%fDSaSet=2^|B z?;7SAud}kCJ$5u_i>ri$&+6?X1)mdn(0}3S+tMgr0Z`wfQZ!^62{!#aw@D^cY?69G z=X#SQ2o|9qb$LEbcDvQ+M_JXtqME6h9XGVuSMG(-v#gSBgJM;%?)UanYMJQH_<6F? zK)o5=sl~jYTwvPYi>zLW>6F2|>nvL}o1u@e7ksp;U_AtDeQp-iFQ&=-gTDR9lW`S` zgZv~R(_gbkH}oy%b~yCGf8_WyE*)J`>q)C+r*hwhewr(%OLef3lj++%<>a6YCQ_Q* zHV@Tyo0aUD*GOq04)OsaZNei8kiLZ~gxJc0b`)s5+cP}`s_&T>iI4_0iY`}86MiH@ zcv>mCK^)|J!QTw3pFAu&YjnYTAbHcp=~6hVAIENG8f|b7d)i0C8;JS8>HFb3*Q9QFwDNA`wxP4}JQTVXO<@ zVZR(-wCm$ffB)S-jK2E(g#hYjT&$S&E)fRtC?%=gZj)-Y4MSc z)Y9&)#e&vN(i;o)^A0&YC%}dSXTvF7LzQ$G^tDh9cCw(|k7)flt$d0w>-(Q&pj8I* zfn!qrMAa=_qcFIJ&#AFCxJX_4ZqlAMo7tLMyX8hUq%~4EC%}e#!S~Z2Cvt9GUvi6n z8(r`o1>QNmzj1QK5f^E!?}Zkrk@{A4_9$Idws@rOY3etBo8C;KU(vtDbpYUfl*>6b zneY16eJfme9&!2eeU&b+4Syeph||?l>*Y!QilTnzrs#4k4|Wz4dTI@otz)X&$;bt6E~o8R%N9utx;BX?jX~UMFY|(cD1+I8fEy2+JT%umlw&^D6v+x#HwFAFe}s!=*iJ6 z)Si2CIRXBnouyywt$mNR!NvH%R#BpW))*f+S7mDpuS7b7tkb( za87+uV7foZN&<1vyGs`7>cwPAT0dO(w=7E00*h*0;Z+qDi-PrG|Kp6NcYbXy(cr_+ zBi_ki-T@F`^+65j+F|>42n;#IKX9XHLDyHY4w%r*_}u&cOCZ|?U+p{MNBT~9;odx$ z$A6L)(@1;12>QZ`YhZ}QGyKD_*f(ib>A`gUR)SJcG6an9Im7>gQik@fr)Jd283hOo zdDi!{v&bU)ZVsv1gxMx93;=XQCk0_lMFWcRFyJmn;M-4L zd^V!txPYo_Iacysdr5%qc~HK~T3_{KC@TtB@Txtl?iEV{^w@i~>f6m^S=d6ZA6;k8 z32mScJ({c4jjT`fovIA#RDm-^#TFBqs^Y9l+rF2J78o>eZc$&r`tpn4e=j1dZv|M$HUp6) zICsJM{nww#brgLb&Ok;pBYpSxU;P*1QU#LH%t@dA!h1i$(ETUn-Rcx6Pv3SNEt z`9FvN*2wFu2~zOtyRSc$0j%Mb5d|xF^~Zmd0j%K_Yl39G;=>Wyv4Nppc~P*8SJN>~ zsGcun*Hqn(q|*vi&b%;i&$u8@d-{UjprMV6%f)m&nzxOdPgP%-6RWQ0v%iS{E-0|$ zF#1J?*Uw=`P9=CF4(gGhPUx;yQ9AU!)$6!M9^?-)^5~3CW3Q5_B>k@G*ID2(u;fW@ z$@%n5-VLcgMe$lQ3ROojXY!7%KfPX*Y=Z@=FK)184I=BxbZqaT1P+>dT13;%-#&2;P z(}lj5%PtuktLt|s<~q|-7(^=F`~_W=vpSyARf=Y|vH6wAW;>K_uNlEJ#H2&3dktF)l5jV5MfMCs*m`F?Z6qDyZCS@z0 zzloF~2x3uAndiS6ji1YS>?dU$2-a+giL_)tDMRkUielX{{^~5 z<~26_%^R@cZ(d`=Z{L6ozkQ7jfBOb(_}kam@Vhr)!|z^W!{5CD8~*Nk8z!>S+)LRc z#T)|3K*NNlk}R+W3QBGi@KyWG&_IkcEO&W@n( z(z|3a^lOAL{C?nww2a@4>=8^+3iN9o)`J)tYlBPE(Z*9gj3R(LOvf0Z7-&R6qH&5R z(f+=*JmI6?9FY5G&g&axFloBUFbe_I@0-biP8KwzAx_ZJW_}UU8fh47gL_D?F3|qi zaof}7Y3arm{fIk=*|ZFQH{zf^j;ZG@?YPL;`k98n%Gdz`3!Y{c(7ygvvbA4dSG>*! z2Z0rjA}eTpt6+kD{J-6VKmh+k$>&k|hOVK^0-?Xf;94sL2e#acY@yo&2j>3meAWi@ zt$rhmnfkq*bat2YAbz{wESgPzpOk*F&gi&I?InS^8!)GGU#h+uE`dlCsCRmr8tp{N z485t+DgtoSU(HS5;TV4qFnxUlIU79u&5MKkxWDR;NA`IVe&>R!Bf4Q)u=N!%Njhvv z8|a4??OwJx?PwFXT)fw}ZW1h&fwdk_+LH~Pa-YqXV=j{tJkaAz8|YsekL@nFS$o!u zuP$lR`tq_r?aeE%=?Q85SYHI-dJv2{Fh)@gX;MI>ynY=^@VzEb4;XbqCk8K8v|FDR zn37w}^?k&cmk0xTpP}5yn!Sx_i1i(s7%5}{JY=A|u|0E9zcnJ}#j3#FWnBAeOufTX z**nx%w=v600(8%TTDn9cO*wsqo1h>H*!vci9NkyH5ymRMDr#Sm8~{)FE6SmxroUQ@ z&**klc1qR*JJh-nt{@Kh2Y`>4wCJ|x2U~d8OWMTfk9o)LGC$Xc3Gm-kfwW0%aza&M zZU0m83{G#EE~m7?mzK6)w({J?;NbH^sj)cVk6iGnof}`63pidj60P5>pTu2C1B{Tn zU2DZEf3Vl7IN+x4r7SU-E$POL(^+#S^ZKy5HxUN(r!LgI%Ygo9HrMk5^ljHIJIU8i z)Fd(A!hk6#a>>uq_F!<4E9k=nQ-M;XXw=ES5>4%}3N#W0%ye_;bN3zeYF{pqz1gMCc2fxgWd%tTcVg7tTg#2M8I0zxA# zg7owp7TuOM{Zm>2=&u$KETIdesrc!H+Wz_)1#!Sl#mC?0eS!EsykQkzSsx~t7MFe^ zo5h$uti{cw0XB^ueY>AVFA)aRRP*#*{c1iE1%7PAYoKDZoSi$~rbZ*|#<745XBL08Xhvd9CTGeY=FzQ*+DBA2J ztkF;5-oP4$zznWfa(n3)vSX*;yXj@ON5xQJNRmi=M=tlT-b5nhEEvUAPZXW(Eg1dY zPOn!8i+B?z$shckxtu|!OWphtK@b6+-%BDOE!d^Wae`Yy5YD}GlN-Zl&6=<079~W# z(Bd^qd?4We$B7A7G;Olrqe@wSYL|JwYXTubFy}*QPEU<7os;8AOs0x{%kOnj5g3>f z)g06jTUmQgHq)8ha9*$GNGUKRDk=6!R~yxl+gR*JqAKEO9H1}%J5ny8U5d^GKf$8=WZdJj=j=5QL;R%YdJ3} z(Fp=JJfQb2xwYjXmHVUcTs@%$Jx9;P0lteLa$XZib=pEnAdM_wAJNp+%DDN0D$L3E z^tWZ#bXQ-b^Em3-(+gYpH5l0PQ~yuCTP>Hf>#R{XEM8h#Qv|`D5E~zs&!#jUSuZ>J zOiiuW6fm&miFd&NC`%&s#saS?gCYsA;GzFD&#X{#rWfR@JAPhJ;v;#mANik#FHc0# zP{)VhCp8*qD&S;V4Vz6xbJP4UrhMV zBL3gs*#SE^vcb$KVFX~T{D$6zrLB} zCv!;5A*C{q_h@&aL!PF`!qmMpXeC4=3?Rid05`qtjn?wo$J?QU=P*W(GO2(KgwwMrJP1HHzTNn{!Gxv&0<75lxEX~ z>^<+$Y8Ar}>%)SN6AM;rN`whr1va5YN|6=SE0kNJK!@)H1C~%fDoTm?S4l0mLkqSg z9KjGmz>e(^p{)vgj|ekh3AN{OM9!PV8EsIzl(Pgo^rye-*46|9+0boOtE6h(Wn{GktRzt^m9NfH+njt2=!{QLI;};?p6S^*MOzT;z>1aOf z%^fi!BL5ZLlKvxNtXA|(2Oa5;V0 z1|tqOwV`nwmK`;+g1kddte7)s0+pq~l{sR{BjWYwv}^nG(qrqjazu#(i#`;QaK9`( z{Jz5|q!x#`Aqsk*srQC45o;!@ziBH8DdEgLE#baJJk+LR+E>ycW0 zjsgbu$X4IHX?Q|5C2u&?YV~7%SRl)5*Z#Pn84DSQTIJP?gDt(MP5GnAa?I%<3T-X# zV|`d4+co~hW-+D7io}Fk?V13<2HDHtpU}RS^AT-AY?6wzR=+D{z!F(r`-|y{!a@7h z`eI+SR(UOPV3Ew7Jp9diJ+*SD7r%y`&R|t#vpCqYzh_L_WNQVr`g@T)_%!Z*wdReu z$CGx_CL7mwXhofv>tji2Fb_PF8g;o1b%(iyBGCwg7ks3C#J+rV(qPi;lryY9=ewol zq|FX<3q?1f4QhxiC#k4hYem)wgZIR~twqE~VA-H-aAn|Tb9HEk~Pe-#Lr z@GO`xcBfzLC&GJuZ`e~4BN7PAco@v!%RAeS<~M`|`o?XW1wp?6r{3ylnq~5O@SqR) zi*n~;r?EorePNVm=Rv{xWmV^$wXOgL5%l%qfyQ9e(5 z$NCzST?tMZ7=*!mAesC(QElj_zPCV)GN_Mp>L^)5*Y|j?0kb&RvBy-L_T({?L5)3j z-|ffaNE~dJdoxc5=U$Pf4^5hK{cJN@b~aAmo0BP;NW;53mOIbfQ*Y8YLZQ5zSxIp2 znXk=YDMP7GSR|;R3Yztb*7(u_In*mB36AxO?f|7n(dZsfQTB&=6;wg9HJtxEEdfJo zI3X;Vbk6V8b`Fy>TYXf{A;38Gu66I7c4CFI|q(iAxGR$ge@xZr! zcAL?x8iHJ6z={KJMYd0NH?MQF*eQGDdH91!U;Rj`?5-DwpEhT)adhI?{To5nPd${$ zkv!N>%uEEonnqjr+oq#c(Ck=+e&(-h#;wt`3GM$X5HR6sFoEV;>9_PI4Np>t5a{!o zhbA^i28?)=8?ly~FZEL}ud{#v1w5biY1Z_LwH!p$!$$z%KMdZ7Z|Po>^z^iTfpuF9 zG7L=l`F2xAbQ6HwmaRUv7{rrYk=kQfFzRvmckYKXdiX(PP<_|J?LgfC&$?7$gNmKRNxH2t?&0g0JWT^}Kl0g9m+h{z35Ee_1FT>N8(KHpz@B1%^bG zl>N!9NpfMmS|S1fAC&_8ZJr0~m4cW610IBk*{_ovsBb5?o+f57kkNpDF^HI z6`%7R=Z87;vk4?+D-xjz)NP0AnoCh}>8I-w4hsTuNSpQ7biS3|AMVeam0Xe3523A? zbt(}C@s1<%;7|CapIXgnMieCY#vjs-Z#hq0!#6Js;t_mn&uDu@w&h8`ELZR_NSCRr zWikS)M>W!*-h;1aMw>0~By1WZ4(TY&Kll=tibJmXJ$ zdOdpZ=DRIKrwt!b&W(@MNG2yzYm~T18dT{mQ)L%hKfAomTdNIjNYUj&W}iAK%BmSF zt5d45j4D|7k$d>l?CnwgcAP>qy)u}nH7D&EfPPD-@D_UN*%dnfm4i8FQqO< z(MN&Dr4u!hi8M;n=qh z{{`HLuNX&N_*(c3F8EL@c#2{rWz+(L@tSFc_zN`zi)izw?&6k6qJtYHh`y!M<8Rus zJ*uMwIb?96H%i|uAKECHP=*DYm%>E+t>_G+3{iexUkl+@l$-iJWZ7-&_{=js!TE;W>+8inb2V>5##R zUT-nfou_zgR!6T_qJ!Jjlz205JvBw+f)CzwBv&Bn@TLR_7R*qDo$5MfDEuBZJR3cW z2c30zHVcfDA;0L0s3TEFegQYZ7oD=KiBI8z55A3b%;cJC9dmRV6Eu$EE+U@+QRHWOo!T58$MrVC|pOaqa2aE`K$vH@JA>bhwa#YfWBF9;W9X)8UqDN2VQw9>Pqerhm!DQ1% zOo?fTTGHpB!HQlsNf`w$yN+JAfdw1tpne=X?mFtAj}2b*ed)Vte?W^z2f^^Yj=rw| z2Q&Ji^yQ3t7kjh){iTn0#qL$2gBw18zpcOB*QnsSW7-jV`nDJkx}BmJ(^MLTE|L9! z{6iGU)J7c8;ni0eJG-X(`p)_zk4X*~YhpUKOg0~*4ODgba=k4J_QP0BPybSbCAtE2 zjMW@6IMD}D-_Rbw;e>bp3*tKZAOSqstxqDaJKm?GKfzw3T6~g+4PNW-4~w@enggaC zjDQBKElZJ|7GPR^gp@IvwgClaq({6Rt4u=d* z_!(}vM4hO^&nQqZ+0-SQ$XZfok->@FoAzm!s7PKNxu;RVg|XGN;H6&KF4Zx%0xtN_ zw^G}hf7>1@;uL(SDuP7N&BP~+eByTOpEjvB8~ z!G+$pzA<zDF>UT>Z64D#gZ<71owS@h zpi5i(d$S;0^Np*3^=|kRI3Q$A3$a%q3j^o3oFTcx4G4$5w-kYll3g>Q!v*10okCiS zqe})U^k_tyKMDv_DX~F(iHNDbw4V3g?$9rmPAFp`Uwz#F{^)mq^*jC_h|e41PI!Jd zzaiBr@L3fon64Wp-XcbS_ICN|cbTR6!@HO>fCu|E!#*rDd3?KIeiIOrOLTC5n&RH= z_Nc(O!(nFr;j&Xycs$U<^_UAqLD#5qfO%2c@)u2F0TvjHw<$Dwr=WPy?Pp6tZ?u&Uts4MaeD2U0Hk!n^&0 zzU;1KA9MBLVml~&P=DgTOS>@WBA5xS^-%=>utWU+<(@wFks}om6$D-Je?}XnUI)XC z?63kpUL?a1fLv6|qyBhY&;?SWOx9a1Ed>Ou`)Z?G>9boVA1z9|f(Nni2SX0IGYIEf z>-7hY0}_NkP_f2?qmT9a12BO878y%joYCsN8&Sj1>po6g8Dh>Rf-6-nYB5jjr=!6`{ z10h^1z2DINh8?-~ym*Z$%N@-D0j^%E_tlrJXh@%ZJ+e$z!W146q;O*y+M;zd8%+D7 zV7_>FfyUB9E|p`+An8s@k`4tUO70@9cNIZ~3UcnIF8x|LIp%&8C+hKiLy_YLr1O}vum=zB>$5Q(klbt0bk(G%|GWE(oK(pU6(k^a%9A9}a6|k+DIpEABat1E zPGFXc7}(W|E8-Ww%!*)gG{2ttiH;R$2H4yZ0}7;1 zCp#&ZDr#-rKHZX(YM6`$!Q9viG-wiNkp7D#&W5oi>h@nA%?UbUYpg_vw8vf2#%(>{ zg-W-Kw)STIL01h;gGq`-TNnWQULDT_87u?8ikJAT{kV7+ZjQ(w0m+1>^mtTI1J4RI zW{xFgq3ocXf$39<0y?M)bBzYKhdlpxpCCn@UPZ16vNA;^QGpmo16oAtXbavsAl8QCY(6q2@`kBPK=tiI>} z{DUx8_O&qqk4B7HzNww%8#}ggY5BHxmTwa*f2y73PnPBVH#Afh_}PI@_h&=3dOgwQ zSOFqK&cEpm-?S)1V7P@Yd$XPbQsv8s1kX*{yUOdvlNN zfQB3H1$9$|`6wi054$ay!WCao4xPY0}DwNI9Mr9ts4Gfm-bnT~lvCFFc0kDBJ! z>O^|MO4#5o_ta&vyc<-9L-Rw`= z6yxn>Z-1b7tcFD^-;>0doFsvgJ4VT);mJa>XQdNmJjDSWm#mK2QD}tx_A)lYBia?l zxZp!6=jU<0*HOwHGB`g&8sCj*@7JT@oBp^M9?^NPZFQPO_Dr%@i&6$JBZ4A$^2fAp zcNm(z4o_}@!H9f*N*lvN!aDL9xFO#Q>M5*(54hk%xiZfKKUPP%a>(GkYO?-6X1($8 zli_|5CN#e<7FQqv4(8iFbGaAGpC~BdmlRNO*;f%)=InhLiJGKRFMYVMy80@}?Aojj zaHJP?Xq(20VOG~shky${c!}-aG`4OXUcv%{5jl!40?XEsqaHL^FH*)&3OXm-dKli! zzDO!H6gqhxF!-)nzGoDjv3<~sXcy_zrf7Y9uydbFzq>`3Dr|GQ#SkKYXbe1=WQPvs zdv7NPbVO&rb*Q&MPiW1t-QA^`O>Pi{i0qB97J7O#_|kqz@<7g~cuh}o?a~mMPA<_} z#8I)^9?2<^{8kxB_4SkxLD1)EK}YJ!FeOgdD0_hh@H(H2K&i>+f~-&QyBWoEXpv=T za;(kAtafMPzEG6CS`B2OC`kh`xA7D8)&Z?pPj)AC>Mn>mo!@OuC|@F^g|Rybv_2?vDQrTu9X#N>d^3GTOP zf2{1}W^cPkD&vAu!Uk!w@JZ?_(m;$YHE-xJ4o5?1nLmP4 z<@J=B1PO$E^6qHR>J~>lWw`m`*%O}R=K+bT*2`H1$SSAsAxQ%<*YOs`n(nixcsovZ za}YubHIfH1?uNfnGV~Blm?XRKhQQ@w3>zd_%Zz4&LCux{q!5FLItL)bT1I?br)2VgOb0_B=G)>Sk zoT9M;%UL1r?;L_JZfjh0s1+q&{e%vvjb~~NT1b7fa;a$z5Z*`&-=6K6bO^PtSFYA0 zhQ!-xiU0ZRsnFJ4xi)5mC{=IcazU>=*%Y$&e+yZ}31N5A*6PlJn+SU=*QF>StE8Oq zhI^_Q;c5ESmotwT5`UkzoO_e6!Vq~|tlWkHIi!A;mfD{f_a#*RymFO}_cVdD?IrGk z{00IoF9ep<-&ox0>#yt(e3i~xw2!;I5p^=6o54jMPgb7C2?4O>r)kM_Bsi|w{gn%~ zw2=43$?~FFee|12RMe2E`Zua9j3<1mzCCR{;+P7icjoU;%I>m{jy0g|(UkK*j>=T| z+7_Q!8*ixfO;P%?XK+r@BZwgADre)Q{jR0vQM59lB71TTfYvG@I;bz=O~oomv*(5Z zB}g?c=xj>W<3#?~lTsfY)HflIOu-WlR1znh@bdTU;s;QTC{iBsK*%5P8~XyHaH;66 zyEMx>4t(H3y?)N}lVl}XAyW0V7{Q8E2j$u{d=P~sdlx(sf08ms1v#ptEac3FiR}B| zi}<(G>|~iBh70j{)M?T6Jv5$bac5A@Q)N#hN^IEUH1|Z4ecZXCV-CTQrtEc= z1bv7P{wwq@ZJh13XyVrVDJop{G9mDg_7EJz7k=gA9c>OW^UZxhnSB^RA!$Az6HFJ? z_Z(=8b}`F>n;qvbpt7LgS{Gatr9z}EyNN5IV_YzPtQp6hz>3*NEkZ7ZXjo=n&DYfT zI*?do$LtWf0htGjbX^JfLR)5URw$+PtT~&X9UcE!N51?&fB9V^q<9YMoS#R1F6xo>8_(`@H!;Uv2S2k+iv8j9FM z$e>*V?T>Veau@_RJ3e_t2~^NgDvyVqLz)Irf9&#~!l2pxTMKBC8pDJ8wtBT+v>xoy z92VUy^N0@gO`nE05ofPf8rUYC2OduOVq;jHq$JrO=(AEmTLoMqFFvH3Y15|49(0~!D#-*P)=d00EhW);9$tS_^<-28x7=l~fIt$VP7Au> zRAycoCA0}6r4{9SL6dRiiX0Ji+_IU)+tYg8?cPy)bV#vVMdiw#}uRk7$`xWvZ}3_S!Ziq%$Pqf|`r4gsMD3LVj<` zl!-VaG&ndff%EZKc(QLBGu0q_119)D{L@Yf3r327j(zRah&Ar&`c*J zS+YQcZAhtlsSDcDtwVNj7YMOAAGBC89Tcr2Ba#(9dr}fY(iPrvfZbN~I5QTmbBXe& z(LriU!b{o`>>31rMXBbNM-oAYEezYVOwG6T{YHf$rh_8u64H%ejV+KP0JrtO+wu0} zx;>$x0QEK00a{z?wU0Qrf)T{Ro`Jf{gebkCV1b5DQW|W1@yq7Iz3kJpST<-1?D7-e zj3ifbR$v#y0u6VpU2ON&>a4{oqh#;Zb(Sp~6xpV0hZ^^Kny$E;ps>Ms12#~$Nqek? z2Ndb_2TV}%1(e|5iOrQ38HxuN!XnvQSqyH|!*!!m8WNts3ypf9OdWU%^i4ZMDCBrh zXcrqOGoX_az=Qjq(kH*9>o8~!_@oz{eOauDIZ1^_1U z&<(Ct@peorbwQpi*0hvJ00H{X9R}?bpUUuM?U>Q{b0{$FF`;BJ=vy(BIcIk>Hy7Nt2%z}dFgE*>ib~<7X z7aHaA-mmvt5C7{vZHHD1hQX@_@w(@BYNk)*4Ja#LLg#H(uoY4$W^NGgy)d*0CU z@__KY*~?EMok9f7Wx82|Tv&VD+Ax0zvg~2Gg;Q3wpDZ|duiLMF*m?HUe(g8?*}lU< zN^U^_{=4>N8ckBl#Y?`5>@z(USgJ_Slxg9q{f$&^)T>3%K#R*4@wIP}y7EO3fd72w za5jA1+Tj0+l9;`Cp@DQJc$gsisB_e9Z5+vitJ#eQgJ=qa2KbvCjk5KGH;vGQ0PR_! zxw%OZRORd*ivrbrCGg&S%!1yo!M(jR9)_Jou{Oc_9U?$|EzPTN!AH3~Fkz6$)g00dWzX936!ikd%psa2 zy9bs60w}A!Z)qhcoKeZ1cJ~2ee!~EIYHb|-i!ph+UUxIR;W~R##|Moh_$-hivf&kN zqK`Dxn+=wtRKU~lEK~gg6a@rO#d8_K^2jxXr@pd}X8V{?K6oS$@u~jXC zsV@?4Xz1iF%Y@jGpada=-3x#GfQ3EbJ`#m86J8>F15XHDuFLXOkQJJ1)v}lmvZw)d zWl34}ZM#qLA_GfhFW!c*X-ioy$hi~#?jeo-6U94wKU#>J)Z>vs(5>)?G-et^=E**k z5TYjKSSpB#tg~S=Pn7G`SjQuSps4iF0AxxHW6%p&P3du5C&(EWbnas)tNp6vfU8ta z+B>dBj^l!ys3`x?o*e#0McGn8OjL5nVIEC>><6)OS7RH;1v!yztpE0hF{`QOmg;0N zVJophF@6IPS%xCI#rd=vF_sFJ5nWJjt*8e+3cEhpt67ztF_<8Q=00S@XmD4addYF9%AOug_OPj(nLR!?M zT4{1EW;IQ!M^-B6CGE=@Px@hxY&C*BG6;$sfVH7to>t=kEEU9vAuu}t3X>?hK1+>1 z88BITm<1B9hvjXX?yHwGyxAK*L&&rU#RC~p!BwFzW6!*ra^jIeknqhWnp$*Q_EOms zS;c38jLW_)yX;^@`B-2=%DMT30LBOPM|>D?(34@%vzHWt6;@z^gxZ~9XEq-5LEwG0 z+jP=;^sd*TTjS-_+X5aw0yYVbo?AkwqV8PuQerP`_TIz7Xg z7U=MJX^lmt8KLeIp^lE8i8T1NVS%yNiMm2ADEgcfO=&fnPj2Ik5Q*YP&)P!@J1qU$ zBBcuOFcvq*}JxpE4qIB#Cr*nBF(K<3wgm{);<>5^gk;pL<4S5J3@b@P{OV=~}^@0#Iz+TRT6=hvW^+`xhjHE8QN zB&(waX;g5no0O$1PX5-PIB^acoJilRA%zDJWw?&?X;g3_=YHxBLu1yFa|SkK+uh*f zl_F_%uo+met(m;reM~pXZUu3^vTw97V7{}pz!BpXZ?+CxK`o2`2IEzvaa&y=8rwC0 zdrn+LcYSa$qvUjUqg~&1uS zA17*G9sXK?gZZ*)DfE|7TC<~cCE7y|8mz8v&;{E;P>*`bs>TJM^Q9A7&e)YzzaGzK zfWe3!VrQ2w4~Qu1=pi~}a5}5bRJ-L*tJPywjSD_kBWF~1R!~P2EZAHg^5ejv){}<@ zIL#Qi)cP1bpDNQBIMw^kg3*@<0TO*vWSf^c66^7)Kn^)a$Ga4- zGn|92gVP~{^9HT7PUs*i&()9G-PR8MyI05s-uxA1jj0E!X?*Zs>XcTPF$@Ufi6TCo|Y43JoGQvL3tVJq=-sG4j3+1w6jMHfD;LI*b(h3+PD+jw;o!D4chmk-ICc$_A;u8!UOuH zF6}$uEjF9+{)7BJmci17l)xZd2jLHNwKS880+U}zQ%cJ zM)K5m?;82S{tFnHz0$3m6q@Cd;F2m7NInS)Qj zxAyqa?$M<0{t|jBZ^^aLWqM8^gg)PlczxC%(0s&kYtQ^4)K%VCS6N*|2W?+j2xq(S z<=y+!;u|4wziR!l=%<-4%?Xt^EDoupFlebFR@s+WtWr%L0~Fk~ztRdeseFz5dsGX9 zjR%#3_E^A^WC$8)xn+N=#>=TQiri*qtpq-j9ih^rZJ|1EbOEmGcRKNo@SGz@rueNV( z_V#86FK5H>Om6-ZhXK?LQUV>+YnHm`?2rVJANd`{B&|UP<@JE_ai4o`f;fAc4v;dv zn%Ll%(I8+@eR=J%s_G}96U4yY%;fecEU;uo{&Xg1wA>~&tR zB)=uTrKd3e{XvVT+9$m!$AaO1MRCjC(0JH(Z41Nof%!#N7^mo>rB8Mk9nxs&ZVAb5;NDP;JR?{SfcW&z|uRfSw9T z0sc??*Y)+uCt^fihkd10i2H@}Va zNCTAr^@+;Wg>cb^`O$Br*|9@yx(sj9!f2vYthx+)w9t1aY0d8`DvaDQntk3ciCgZW zG$T}*Zo;8*+186`i@od}@PJaDa#^sO5D=8h3#g$pT^64`dG_c>4u6oW`l~LBF+0?z z>pb<#>C!^lSI#H(`Nuk~qGPz~I$x#%%D+mMrfqUfgPv*I5~{~5uJtK?DE^zI;#Wf| zx%#YBHzD|!6$?(#L$C1zM-;@Hy5y}#JXUz7KZuf$9Wq1P0k~cb!y`cjIXC3bxL8sd zk)xH$(?_z?1m1)cO9L6#0~rZ}RGxs8DrokVZff}Ee)A+bh7M|sw>jdiH55XKuKiO> zmo1k4zX|}YkfCpM`ncQP7d(>-G zQn(){lq@*tO)8Nr(Ba#Jww6%!Vw*hSzl4%HZ4&Z8iy7D|^(cC*=2@a>FE~z1S|-H> zO=dKrHO&T7y4Zd^RW^EtPr^>wp(ed@5SHm9Fa&(iW?CMlZCDKD>(7f}TH)bhjy!3( zlUbqDFY7$Rs*=My|Agi0EbEd5I?R}ta*#s2>RFS=ydb7A#!`*~`ZgE+{f3 z-hWFsy$MZ~C*Gx3I$4uogDR6>zN&qQ(AB=Ygs1unqWWaVN;cW7 zA^qwTkU#@UsQ&s9cL)<#4KG?k%VhXGP=eghze$K#G&jmb7z*&8>kVf|tw;19kpmmq zPM%@3j(?$$TvC7;F+~Zgfk~uE=S`aeiPf4n z3J|He#H*s6qY+)NHl}|BQT8q*U@7C_g8>HNRes(d(jrmoG5z&~{}Qa(D`O7O@`m^z z{~$g~n;q&U2nVMTL2!4Ucg0O<#=%BTdW4IFTKdcS)S8KypBYX9Ip= zr8e*gK!0Ul-A6>15w#whzeMu0xBWXjodGdCsL$<>i(h-ga5*+Rl8xL+=|I8r@&1%% z4fa}(ceX^*vYoQQ(dlxS;JM^@c6Xj`3$E;wU1=_b3%;Am-%xd?~=kRDtSr+K-aMil9wBYE1O~^H*x|LI)R=*MnBxd4)OzP$dB$LIy~JI-?+Z1P2QrXTGO7_xo0 zkEyu*2ObGTtZ_e(*mt%lxZQLnGdw%CfC4kL5*B=S)GM7qpQEWVEiLv9>1biNt1Ww^ zv|0gOlO3acSY261-YT5RfAm_UN zRZ+a|_kQL(B-LMa7{x+*TI@4J0~IEBg0KHAh(5ERMJ#H$5N3iFlR@@ZT54i6mmT~$ zFm<_{U|jb_@I!kni!&`DEPF0Jz)uNFal&Gs1ixp0s;w60VD`LKfSgh$*`O)R#iu`! z`(b;9l2(z6f((j23)1qe__a^B-K14z@6`&xQ-+ENq3ovjV>${!3lCaUZC=0}v?!y2 zj;rE@X9cyE@=Q{8k3ay1Hkq^x1^91^*Ge2)szkZfb<}pj+-&EQs6b zgqG~e=ui_{JQB#DQsCPqae5(p%E}=oC8*;Opug*0W-HL)zY&dr5{Ag0MRdRk6_N*H z0$U_h)N2bv0QygyWVXe#-n6~do*pK$B)g4u$O&TvM358I7?$#ANIUitdg`q)Ark}z z_Mx$3F&lSMwWePC1VoT?#~GEgYr9NL_Ndw6CNfLVK+2cyCr9nhAzy-c+BPFCz7=#N_+O^Ifq@U z&7*>(FWk>ONotDuNh(jXx3D?xv zAnEtcz%B!I{Vgf=*~1jaP@07iA>@7KejLgh&^EFXi3i-Zp8WaiuSdr;H$QCgO+nMc z9-Ua6wED%@z2Vn1VNRp4uQB!QSWb}`kV59)Ishk=VuyE&w-an4PgK(Ey<3i^RA-tM zLT@_+4pq>4+Ws{a^*?*_mV*t1g)9(qqpy2Wt%n>f<-z!1c0_Z`azZ=5BV#bNhBN^L zT!sLe$Jd+Eg-6IA(4@E>c0{|~KN!*!{#edl*F)>DLHizswiM}mm|I1Hb#}%B_+{F9 z`*6m$w$L?BFQQ$q`2(fGjFTeR6ywXEw%UEU->(iv1Dj-|$(ursLTh2vut~=FKw&M6 z8aBn4SQ4*;G1!anF_#=Zefs3Za;1}SbftHANYy#|j@yZV;z4c&@F)zN&yXnh%P<%? zFnmJfPllawkDX+D@VxhSK>cTZI93+@>{VYcS>+7Sae>~ZYswOd&EB`;@j68CoTqQM zDU!$VAjq}sO==#E1q91Q`jYo8Cz6vLipb;fAi=b5nSL76af)Cj>4znXq9y|>_^#8w zc767@^XpQ4_@*MiiOlQ&3^P5AmFAHK%4d`P*^*-$vAtPgab`Ta2ya3SmAkZ z`nDLq7LKM~D}W&_;JcM)gJpmKnGN4L6Zs{f)@<-NAVOxtcQBGKq1J4$3=pvX^MnQg z|F-?&dCFsE&z37RRRAO0m{FZ;4(fXyjKBrs`vW?uDvEY?4^M9CQh5LU{_paam;bCkXcuQRPD zM-4CtuMbQy*3Tbw+oP}~W$$|iq%g3=2feLDytsrs@N>83TIAC}gEawli)c+Pr6PNV z+L|C)mn9K&{66{-4eJ}A&w5A2 z_&B92J0?Yhoz^88q3nz3*Uxtzy`iDs(;`_T4p&qoVpb@;7b*OYS#M^WYTuV-&lg9~ zY10Wp=!)}Hz4nwkM;u>EbdXk+r;-uMVm}8T=l5}Z!>!8CrFfw-uBqG4e%qSr^FdXd ztJ?(yv`g-yT2-z}#uJnsPfBX(%9II4DEr%}8tqVUf^I7F{X$o)$d#0mL+_W7-k(%x z>TX%}=&wj=f)*OD4t_mqx1Rpjvj==mc1#OUg>)&|QM(nO_HPMj@LspPJb+CyXJ3qx zU>4xuzG%5QBZLFZK4X#KRG^lNPyW*VL9|5 zuP7-P&1M0?ar;Q^FWOh(wdrgEZ#GKo`^cVH5wM!Oln7cb(me~jllWnONWqFln)A!A zhSJOe7Hl6Iwv7i51y%NWUxVXQF(!B}frnx%kBepd2ywDFnknOg4_4fylfH!vm{Ern z4J_E!P3ku3vJW~C9AsO*n~T%ukiiLyKJLZaQSy6TF(YunchjWtWt#%EJ)BLa#W0Qm zn%|bh#1Vm0pdxXNiw=2wUd(vd9*_IM>_GN*VI8l_f$9=m!UQRe@K-R&lj{}Cd zWqNS(8G^2dKU8yc!Zz6_0z$~77R>`0_rl-&TR|>=Z_rZ{Q9@4k^lAv5lq2~d>st8R zr!;3H)MT%6gosHsiUuNXhCkWT6;$Y0O;raIq(r49&Ysnj7R^&C<7JdDtC693AS3cE z&i(jxc{RSpaY4@Au$<`gcX1YFAAb&klV#RtgQPFRUv_Nlg;sJtJ9`x%BuGk2u|neS zLj-fnhCYFux?`iCJ82g(BsC^!A@Yk5LcC42^quS+XRqCb_@_(Mq^ApfP8*Xaqj1~Q ziUm4S2rSR$?c-tR|3WtVv=ABfq(&4^r}bb$3h8VVb;E?qUrkRcqJ+4}+o?CVNTE=* z8gJ*gAm{wBHyw9c>c2uj_GnE5sS@vFg6P6POctF` z&YqeFT0|%gD6dg?#XSnZuOep-dhdievj=Pd)0_daOQ-pQxAV~wzbr%f=`?79(?Wyv z5~Mv>uZv`6Z_xpkpftcBT*pfHPm8jJ1y^zUrEul&JH_R<^RB%{R!?K#)2KY;(e&;pa*1Dzsk?W1wQ^W>K6G>d~t($jV4fP+AF}qilV06gf zq%_iM6rBg6D>~_Lu&`vlYfxAwi2@dMS4Xc8)Y;f4MUF-o9`41nC1Axab`JP84%ZCNo+Aq9Qm!=T+i+Fl7+nZ}JWyBB{gje+!R9K2}e|j8~W_z57 zRAPhpynZhx%SI6q;c5C~XwizG2R3Ah(X8Se+sO*{o2lEH?WpK4q_OL^4 z+t7f(zcB8N#@twkGVlY^_5Xk}|H=XoHr82S)%sSA(9+CqhZn^jWU3s3QF|woXIn+Q!Kmr+F0i_7V z=^UxAfC>so@GPNiuwqLDB#?34nGOQ}y(jww*+WYQ8RUk~00HlX_cdh4mXJ=K;edU4 za@ZTZ>9rnCx|@63^!L7SLD|y<22Q6cf(Gji^V;Sfcj<<-&=pf>&le=9LwxXGFz?2! z*>g?_R*ed-^OHkb8EC2h3fpG)Lo|>vt-}P-2NSx)OAcK(b0-0UzN$t9!S%_}bkuEa z_V#A#82EM^nK!%tuOW4slIS46qTl2l$h3s3*HHcGmHd*b=sact4cawLtERQ0#p3*4 zNyzDNL3mjc@osjn zeb#^XWGISj_TF&;8>S!NJ5kfC&EHUyBZH>TMPhV- zgA+K(o9*oZKKpGxN zs)0dx9)vH8Wlyf9*ccU5*CrF%Oh|K*)6L$bGw!S1G@@P3@6{2aPF)Hb#21-ZM+tfO zL_v^Xv6eE#g4 zqYNczbnxErc(->Ryxe)U_2l_u*&^jHjFhwc9MEuSa(p!9lWnbyK|3&he%S_=PB%Vj zWH4T~jF0(F-q6M7_oYB1Ni8^d*DUY$F`e08a*MYGldJ|BoY(AY`imX5v?$>D6Y}Zg z`uJd9o3_VlcgIe9tb)S$&2)C=0!$?sAAp>qjJ6}yMyZfNxjyX;=%578=IyAzgnhG% zlS9)94Z%U%;M*=*li7$jnzbGc-}J}DkYkDe*dBjBYX@OIv(Nu2bfe%Dp0uKEQpVww zHpcDAA#F7vmBKJ}DN6A`(Wk;j>PlxS#%(0+*|3>4-J%*UxOnU=dBJN#KM1@)VOa$#eSIEuMqZ z+z~p6@3=QlJe8k4ckOUP1!X7kuezVmuqkl{KR*L(vI7kcA9h%CEhyIa<%^o!yB+F+}!S(T!mZ)g|Z)-=!b;uqu14mOiP!L_k3)4Qw1{@5EV5%c~ z_l*xISbYZ2U-#eE5o;b6@}y_>$j66_1*oVv%#oC^aoFp;<`4j)G}SA?aX`W~Uos6( z_lnR6*_*+9#K;Ji0s=%S;Mv14{!_iB01QcbI#w8EK)v)}0R1iBSoEddCKhHveqY4Y zHZJ#376=*$xtkP{h>w*WR>cP{*Aj%x5~YF!?~HrW%hsMPiXmx@NAGy#n$DSetr0Ro zj&M~hCO-UHub*%nkZ{}2#&Ub)59v-Ssgeg$)`b+hU_&^}?7iJST2wxH#?`v(%l@lB zM4lqQw|-LEH9pcTO2CuhXf}N@9LT+@^_Bp~0SPz!)IV+S^#*Y%%pbI#WCD+*T*PC( z=TVe^6^PIz5Fwm47lY@;wD+(mWPhn%r!8n8L=;H6OFQTr)>|MoKBz^%A({Sq`wf-? z0z`4ttC7!o!`TW;f=2=oH~l)X)gJb``W&xNkw2|;Ql;=&AVYWun&6*}B2(1s9UKQF zT=6ZT+e%@C?2r&XUgVYy0mwy#+@5yRz4>}8q@aNiQ6YC$+(Kx4P+#&577X3;$NVRi zKmrG;Xo{mgTD?uN=%9((PrY0kR?zNod9PKy?SMyu)H@$Iea&l#d&OQbfLz=M5~3{i zK1EUhd&s@85vo^!rGNnE|41G!o*wXY|6W^8Q7rENQbzDuAj4HV`o;G2c-aLmTa{7* zG(Mxs1>CMT3oHc$ILAw3f9iJ+=n#-U)3~_fO(otCfc*M&OmXa}?7!)a+Xp>b zRiVf-a``-eCSO77!k{~LzTaziUbj?7aC=71CWzvk zpUW&;VLINJA|Zi}lXqUPR)U~_gio9mlzCX}qj#NNylF0b$Am);Y>^;>oLlNgM?7uV zX>AsC>%fqPi(wZyzs=`tF{n;ViUvZi_(BpA@+;s;5)1*zFAMT$D3m_}IFVc7gZi3J zy*+G?CWnP|J&VQyv{)uXe8F}2pdy`jsp^I3mZVfW`AFvw#=Uu zsU$=3K#C{{JN$cLiF!+d#s{^?2=x{F20>qMMmP>g_+UDtja7nj$%qLW5cn6Tv+T7pJ;ccj;K6JtS^)z7hPlk9JsQ#W92#)EJLXGm z1Yv&ZK_TW>X*uKb$V0fX|oen|%`ccG&FaYTMUK1^_k z4)QBR&byl*?9q~XyEEMmMlkuy_!vf0J!r758CE*(-yc$K7o3Y!<1lkAFc^`}4Q^B8ea&^G(}M;pa+H_WDW$<8 zL>)Qmkim(%%iqv8##FTWMLcw5VF?d*m*R0j;U0&wX{aZ~KnCX}lqT9u7>;uDw;aU< zc*Ed=4_?^>ciQX+M>6X0%04!DFPL<0@)3SfW%BzGaVj+`xXyzsOkDn6rvw#)f(a$& z@woW4Hw;_2I!cT~4ms0JTOFJZ8JsAk>YHFNUPmbfF8JVMf1n-aQ3G0skF~&HL{3tp zdNlblyj`<2$(GB9*ow_d8~Fq|yQ>8N<#&ZH#`u0BNKUT(Mc}V6?zUBWi!NOjk$k zSD;`*tuS4F;nnJ>6~F}_e7AWXmC`zVw~q~8w93zBs%HmTerc_vRSw|6&ciltz|Gg& z+<*+1o(78@dx#Hy^uFx(ayGP%-j@d*vht{{yA#cV)xqjPhpaDqwDL3QheyilVD+HE z3LlZo+B$rM1qS2Crc8w`cK#AmT#gtMJm~do(_IO26}ygJk46O-yaOMbq9a)o8g~ni zREKx)vB8TGFTUd;lVq-A)G5)y4c~xoX|3FbP}tkJ=ZwtZ*mSQN$q_%k{RG-9IZE|Iu8dJ#Je z3MTX-_#vI}6l8VuB7h4%v}ZrI2NZBF>O|Dx<2`7wo-+pT%Xo0ZQzmaD^@0_dwbRoZXU_@dloNFwnhi@P5UN0 zDP~WkJbPWEFHZqSYyo+(M2Bs)5$#7~$cNeOxP(JP@( zQRdt1j{GI9|EbGDo`s6CV;f4`gd#x&8{M9b2OL>K-}pyUrnJ*8QK_>xT?tq%rj!U; zJ{3RmwZxtI{0#HyPZp%vpz4-TrLGH17%0ECpRC8{fs%V=N@DY5M-CLwv3Wc>Cs}8k zVl$`Ogu1Qc^Q5igy|H@hL}bwPH^!`E9WmH0LQ_QJe&@k#diVovD-Ulid7T^aH6ZbG z?^I$a{VD*#a`|TefSUO-se=_tjhUhKPN0?JL#GUxeKm4`n=+)&1wHUvF!n~9F5P^* zvz5}cw*rfWe9#rziQ}K9G_Ar;J{R<$t%03NOqAd9X;%u^RJM6kPy=s@pFM65JIAjm z(gwvx3%Zlp(P1kTq<{{p!aUdb zBc`)Df4p(JC*iUfP(oc;clp&+?ykb$`drWxwoClZ7R5k(OYy*-9mo;$D%z!x54u{3 zT=aDP)Sn)jg35QF%LDl16_vS@_@VpnPS>q273AKMmt25+}%@=tf|-mwK!yirS*% z=aY&*c%TFG9QaMTE1VsYCP-bXB045$32Wi2;p<`Xc9_biRn)?O4yvp-rIXlGHDNYx zz2v{Srl^q>Z^=5zJHSP?%B}ts<1r??V7$D&*ygljj zuCv{Vx?i>R)AsjIOcyU@o$RR*u;_YiO46y65ZS=b<6k81y~>^e2Kp)D3>8G(!q4cG z&7j4dxKy0-{Kh_2%_0hjxcII+<^|X-I@BIaJ7;%q43x5hgazB0dHiZPiutnlxF+~4 zFc?35cQj~qi=)mE2J5dIc|vZojvbWcMo8f&3) zR*3uDAtc1HP$4jTb<)A-2~^Aw*>EVnNHsoG6URbh_F}I?uc*-@hQzxL#FzLVycJ)l z%bpK(z!lYLP6#W>V76~+{I~iH_L(8_GnYu;djI+CX&rL_4!oiT9WMla=`ccp255LH44S*mU2QsuwrPPzJnm+b9rFxDxm92-Qb=88oT z0$;RDS2H}AQWS%|*|ax#LL&-ct?nY8g3%4MFjpxfw0(h8rQUqL9jRNWxyn&zIH6BD zT4}o{LyB<3-KKWR(PnRsfB{Z6UrY*xw#YdPs@U7x@%>Z_SA^5FQ8;l!2UWL`ET@WY z)rsPxWDf%Yd$J->L5=DS$y_9N@lw?VQTP}3_9yFcWKeXC?K0}LIs?8ay5(%6TBe@`mE3qd?&#kBx zPGOrxM$jH?LXOV_F@G>(CVKLV<|w&VZEc(|1GdQUm4z7!U)U+E5c!o9xmk3o=v-uk zc(TqDh#@twC;j68f<4PvA(9(6FQxW%T|h)BT%0MO{uPWNvzII^kY3_;AMIbnVA4FBUm6|% zxx?2nAL(V~|MQox<~Q0L%C29ucG{EIEox$Sr}T$B!k@k5WiXozrInSiAUkf0?>n>c zn0jDJi70^Ct6irE5k$~(d5>Zkw8!K2ach5E932J`1+v%QC(|ySTSlD77#zG8`Kw8i zGkb|3=5)Z|YfwMNM3kGfCIyY2INFE`k=xomYQL6sKYN_wqpPauKSrd$+UeW)y(Mi?Tm&ioK0&~eX7wtsL1O_hyoM`00TYbY%~5%hd! ze`NpQ*IefLQ%l*SYKwV-B1Z*H*X_^jAGC!})SK+s^%ki_2@`<-j(yqwK>=XtI)Pvi zo86>XxDpYT1xjw(U)Vq5T9duXY_UpY$eQzoeck>sn|8_zNp^qP!j{O1*kGMo_Lue# zdN(X8*~5GbR<6e{Ef>4A$4)u;*AyX6l+q=eJPC|c-|hBk-xD>nouaE7mR*ictgh@3 z?AaYL2G(glfdMiu?sKG|RkZXH7<^ypZYS?|IHE(69M1JvZM=BgAM(ues69R0Jq)iI z%APfKEXoq@<0+(&`9D&>*dlF4CT*YV?jET?*CMmB_p>{mQlTZZkeak;_?yY7CvUD; zg+-I3koos6r7jP=U-T(J|Dey6cDKW)XJr-4K0o8ws@OFqhwRTCklMiWwEgR`js(-% zr&!`eFe{twH647Qvy2VGKI;!TQ>U%%{=u+KVfl>{p-akD{0&hov!~zyu0@@~1WA|Z zUT@_|cGd7fD99c<%V9%+490sD`DQ#V3R>Uma1?CK&JUwtt@$Rf(Ao(0V~PoaZWVh! zbEfR>_9-;e?qs&72D!Vt!Wfl1>9k3}(pea+}1J_;!4bscvn?oAMiDW;|T{;9@%&M?Kdu`ettEr-$_LwJ%T6}<8 zFlUcQfT)=9LBNCjruQw+v8W=rHrt= z`PBAd=$<^gy(- zN(-qMX;ki|z@HCUa(pL&Z2`GNCj9fLyGQd=>grgY;r^@7g&DHLK@yy9{~d1gb35Vj z0d=5*ORlmvkf#_lEDZU6dwd`Zb@mCNBnhK}8K)shkoYgsx2np_t-QVWZQ z1b`@<=lS!8gX>lDLopN|TPRAtxxG#Q}5Mk%8`h{NC-jha$skiqp4&1yt_ z`s|9EN*92ArqLjn(yoh10fXuNE}du=8C6S7QmEkgkd{)y=;_(Pd{bsKxZrvJus4t^ z5w)a6p@QQ>8tE26MBQ4_VsOE8mPVU2f(*K=wUld%46gToo&_s7wb)IeT8^lfTMLIm z1;?3SL)7E!v0kESBTV4GKMW&n*OCT>3XZ>$1-O>hd1O;?W+dTju@GTG{rkUA9N_xB zi9!X(M`K=c97~#7d?SFt^x?Qib6V0n)>79EE_mJ>&m>89jD(bPWKb}CsQbYpXKG1_ z!3EFzlW9+uuv%(}LIuZ%)3{?+OIi#rcs`o(!S|pqTT3|uFqqEKodNwx)ZW+9V{*`7 z`+)9N>&vYJwe&bOELhIWWI3qC(-0=`KYV-0mtogmq75#1K6rabv!8;d7Her(!!n!G z$gun8&QZ6}H_h`n?c-*%JscJ^yqEOZ6KJD;=k=hcXQ>lLyD^sWv6-GbXROp zI#YAk+37sRy5K-MsUYo>arfK7^mKMoQQ^a+;(61BW%-ae!)eqytBGKWhKrRw`)op& zuzgKMWk8z;!eoi@;)P~YkL;RZeax;LC)7ue0=c(li4$7{vfGf;xeW{GFA_a%rWj5K zbbFfYZDf;styE}h@2jR8s8K2E(=wQFf7!F%+J}dP`l*ITT8S`A*JzeDD^V}i*iMe=W`va7PN4+Ci zVpdg79V0zlWIAhCnWOHSPpUhreG^Wh&ir&#G+PcJAsN zFnAQmS1L%{-iRdD>mFt{U&%ep=(uuoFN}kdJ+_?CM$5=O&@&Go2?QzsM5MB2QiTsv z@&(jx?-fD3mlgV2c;AVSHvU7c0Pb-SqdGFC;JSr<#P5L&+#c*nBCU@%1|?a=cnkD%?!RnWh|^)?H8B82n6gwu1a{!{0N_Hv)gT ze#Ez4KED&V_2j@ii+?UTyEf0hwa>Z16C5OM@%N^DFwA^ES{}|m!d01FQGxhFT2TyF zrnCJ{YBH14X|Tcd5v^fFWZ8js%E$n2*k<#yy!nV$F^>Mi`;OjgwOXPS{ZmyhelRE| z6LRA^QyH-7M%wS+pBCQ;+<#dDSAoG?@BQ;X|Fb~;^Ww<1tbe?_yFcS2&B3|Z2a97j zHK3(9x4SzT6w^t-@UKfSC_GDWwY^6NgJ`QtgD2V=>KL#vROJGk$XZ~lNxY`UMvk1N zLOtX7vx047iG*1|P<*0dSsjjxVKJLf>?YbS|8Cl#Q%>!JV6Cz8LUk&U91YBn(1ea6 zX@Ue&bj&bFIpB+%qbRbKw;!A)!oh?7Ghqq)eM22Vr|1A84=NvztgNGHc_8Sz5Tw2i zS1BvE-KWX0=qHeeHmH}J(LsKWR)clWYGL%sbD^o!T0}?kw%wmbCu)`=v4|jff3LeQ zhb7CnYXt`A^AswJT8T!~!d33BB+R5S_2w}Uo#oT0(YeoMypRP1g$j;0q3u7fdkq~A zL1cX8j&>?V9R5xrHw`jKKZqUqGHpiSx;sU0OaTz(NNyRUSwQHCS)#F42Dg9th5L$uq>w^fJbCh#>j6+naR8 z{ZZHeEmIIYNJo>tnsX@{2ML-r4kD&+0ByYK_hb~kW$KZ`Z7N(4p6eDJ>c56t4VKCy ziwKhQ-C5^#lOmFaG|RL`J|>9X@3r^kbkZ^{ssaP_$GvyzC`0JAmni@qBxu&Dhus_U zs&6B)r?~RbsDvl5z|CMA@!5Ua*Atb1Wm+Q(h*X{Den_hEUZwyrX4q`6tA}M>g=NfV zfkVmfGf~CnH0}HydwwdrJWtS=pVY_n` z6b*CsDy&k=jF^Fqb6t#$v|Tx9kN0Tk>O~g1cy2+Pb#NuN?1tCP5OSXJ!q(~0c2pB*K5#m02vvj@~UNuOyScUC?RWnJ_+#J z3OIY%o*YKQ-DRr11wm_Ig%744RZ>^1=clEo3l0q7Zh+mT^fA5hUjk1f%~(F7z*DFfPF~+sc@dNEPb^ zcPu1ojH@bc$HF!DaNL+2&Zbddmt~x+2i~;cNaI;M3Fo`kr3wWblIIL1ML3RHn!=yE zyFh!@)Bd{hcCkcO5oqkI*Xik7iqqb(v)aDlmT4XgaMJ?AfFBO%s7P0CGg_u6Xy5?< z{$TI8zUe{*=Ags)h|Bn9agOc^f1(~29|S+tBOBp8m+2iaH1)WAXr$;v4q6zv(53Q1 z!vX%IBRY{Dy3b|iPJjo3b&59FR&5Q<;YQ<&Wr{BYs|JTAauqNr&+#|$wC6I7f`6V${A=`gH7Z zz@OLfjVR9dGHt5HY${9;y>~R0`+t_{>M|C9KT7q~mZ~|X=LdrG>Q0%4x>QDZnq^F+ zFq;|^MCbV7WJKpQ12-asRR^umx%JN3E^IuJRM ze9JV`8nmfFLA5sQy`|}=W11d{UC%NTo)$M)HvcfOgtSZr4c3i5f-U{t#xlhlcre(x zQF~0~jyi9mAS_er93n_mfN!;-p_^)cmML{S)KS|Rx?%hCF@M#d4GqDWzGY@u6`O{X zX;aTuk~W1Lrftootr6XNu}m>{32Z7{q*BF&FI_WTrvIQAd4@Hd2>nP6DT77LrHVce zQN8)QtD}O>ebEz|DY2bzzn(2Kap)#n$tr%si4?qnFA(hudUa6aM=m)q}CL&i;= zNX{}d=N7i9U_rNLFL9vJP8f!2nL=W5X{f`v9^t`k&>kl{2FnpD+^Ab{cGCN0#5z(DLH9Arvo)0iUnVAv7`16pL3U1&@mgPPCR9WU5hT}WwUzefG=G^Ds+S!vzAiJ3 zD8R9@3+ngzT2PU+WhQzQ7@)7vVJJSZOvRo0-W;?`?#x+cqQ^ovEi`DazG;v9Jde4G z)kI*YRuiwj>5r$>!cdQu{wjviR@`NJBL^F1^E9jP~frQ#D_7Ql-kj>`g#kzl{tF0)a8E=*U@cuV6I+aDK@>~Q58l6y)`TBnA zo0bZAsIcbi4?3^uQoup4d!YQ~``^}**l$lw?8W`X^23L(V^Y;?`;! z>Tk2MX_C$fK6n35diF_XaODAcECF!yFP`__{;~0dCWk3TK=+Tz&@U1s2BrjIuCLFAr~WpCbM2rRJP+N*eaLgG@ApR zf6Xk7X5+zZS{zZ&qubb0L8Kb@8`Glk4RwRNJ-(G`I2lkJVH(JhvX7NAb>?5Fs@#iA ztI~k;k6&>=ufZHlcI~@wn|u9fv)$=X5ZdOre{eXJrmx&6f%a{GIPM*2z`RxB`lB?0u&GMCY_f4Ay zom~nNyf-^I2nPX`dpx=#@qLYkHO8IaeqbIpHWe8))Z4R>3g<}4zCy>%DM%;pn=q4K z(wkI1^kV9?K|}Dh1p55b2bL0br9q2Y)P-pL&})yl-q3YWbSQAKys#yYA&glR+WhnH zdFvHzuX-`!qgL!zw~uL6;Ha_P8^573vubEAF!$Tt_8#3AAkW)Y&K4_Sd_WV?6BB7l z;WiB}I->89(-7&bJS$~et*_k%Hl&v@=T{!m<)Xbdb#rxU3%bvZOnZ)YD7Gnh=z%<` zQMuJ{v=iDNGwAJ3rbkoD3+VZ04@?kx+O442cr4MdV{awpBDDe~HK4K;Py?pp!sNBU zoUiLb&w2fD)*o~oagU;lcBAq4a>NdEzWxaKrVGKwzr-oFcO%LIUbz#KOtJ?$|JYu} zXbLou_J^Ipj1B>avR1iUoTRjn^NUY3I`#Sox)Pn^gi_ZzSaGd9bzVZqc=HR?@g7re zSDz{&tDa{vy=W!Vm)RjvdR-|3;`~d~qW`h6LsJcUeDf05+cq|M22&aOD(j&7q2@GG zA?7PDG9{BABF}FIBFMq(u=ZpVRk!d9X_e)QxWk;U2mG#X(M$UBUs2pDFVWDH=9Djy zo_tLfB`lXG4w#zottSnuK)W`wKTqJu^e$KEG~WCJmG#WRmTm8;c_AJE_;ZENtM)o| z{t6(QMh~01!jwiHPCt0~r17H;oyVO8l5v|he)nl4GCnp%pQcXf7(Mkeg`~<+nh%S& z)8gwvp?V`mOew?sOFb&F8q7fmsv8rU88$jd<+=8_b4VNV7oFvFEvbQlGN8^s-K6WK zsS@&zDQak_BcbeNX-UL2E28POg?`3W?&UxaZ)WV9I6X=9`Lzd-5H!H&X`PSOAt(%D zV3f>qN-!{n!<+wMOC#IWMD4Ejxb5RckZ!7{0S*_S%LJf$C$tBIHZ;F@D>peFV1m#Ec(Ow~8*17kO5>gX&ll zoj8pTgd;FLj31RQLS) zgR;KrITf6s(e25wYn4|uoPu;dQ@jZ33h)1Aes2TEbM3BTX5}%SnQt;u_Ja@&wMt>| z`AuB{NLqtF%R)d|!q2%}iY%#Io2wW^q0etQ8F4kxK{Ub`8?sPVj^yDqb*WLIY1bZH zJSR3LncsWh1^S>yNFD5MJk!xcl$TvocCx`Pq_72yl@x}9MC2`Q2t`kLLp(Wm(=$`4 z(2Jc?NM(1WJ1*QOqTVs;EZYXC^P5V58Q3?r)e0zu!%+&>l`&`mgKt9O!J{ZTm1{G6 z2hcnnKK9(wH69r{@|)z+NH1cu*mGWXx4kq>C*Q-wqw&)SX)e)wrC~K$2cV4iX^C*X zVlHL3S0@{E^S?=pwng3S5K!80Dee7&HZD>~YmQV-*R9i5D5?5?RaGqt0HJn!Z@e;) zqM0`~m|0KVD`wSAq)UcqR)S8Wj+9It5{G{eA53?jOlf=PVXr%*l{HaZvuA8!gIH|| z+x#mU(9!Z8tvZ;92ez9%B<19htuQLsI(!aWgVrtRUcA9zkES$*ft8)uOw!Df zY5qSp^>vhLDz7sekJ-5Vj_$s&q+MDz>5aeoTkgSV*KGwOjY4sDNLv_r+Mc{liM1^A zmT?MyCch2y@?ILcKbt$sQ|kTrX<)@yfUc%(`OvxaVA)~79bQm?J%aglHHF1z=jpup zzV=`Jg7vs8?~!VnPL8Ah*Pi8qX?}52e{N`I(sbTSlgP^KuAv7MF94PElJ@b5 zs7w2XZsSwCNz`-a?QQ}`FQ7H|`1ou%C|$S$MqVytnSZGl%o^Zz%^f>DzK>;a%m&mU z+sIGQ4S9p2Nhjb2x}-<`t#WG}HXzC}v42Yv&OiBqbu@lr9iC^K6va?GwtLpFzF;^R zQ7N+5DFGe(HzC%N%|Eqn&X;Xl6gDso=%`CX2IkqHU?H{gs3J6Jl>Y{N{?SuC$HdIG z2{@V!rZkkGo2jB1`O3ZbQxyax^G~V6u3dcRSak=27f7J>up=6R^0h>K{!&)ox;?C9 znt!lC&8F7@q-+}X=;CKuuj4X6eIM$27v%iwDOXXpm5|MEY-tq@RzV|Fs34=+-X683 zQyMuQ(Y;1`!O@>{Te$yZD=Su=OzDl-=IdKVKm!6uogNji8OO!6px_q5aM@A2QFnkQ zT``{0Oz4)OQ+a89FYUab$!@ySW&^0ZXnhQlq>WclVdoHpgSA%t{ZusW$t6V`gZurfjlG%@!4&NltS zGYS1))n+iN9(2PQ$8k_~96j~sv@>eAE7a`QQA+{M7&8Gbh~F zG|@3t2ZdEN6qG6(y3H)cJX;km|uP3=o()==a>hozjaY*8K~uy;1;$ar4;3U!@D-=bvoMCY192uRNn`*&BwP%yG>=$dbjE>((R5m*6HX>qcA_wZ-5qj7vm?k4 zAANp-jxiLLj4bg%o2M>>6>4#$3YCnnCPrKv!^VGa@4IgWVdcG3NGBgF>X_*)27|}E z$Wz?YBGoQGuR2~-L6UjCko*$GVdlTIB_;O!>OEVz~vV3Q+ z5v0zpBw1M0q?b5Yb6veovr+owf?ivYM^&n=S7Uhy$^LW&0>4^eU zY81bPpI*?W-}m3P^L zoR03QEx>;28Fc=gq1`s8`_1O?X0zGg`#vUrRR6TcRldj2V9*x zS*oql>6G#e?);k3xXF{a+n^%_AJeb8yF>2z3iDL<(0)C<+DUD{eji)0CF0-gSB- z-sLK5OtwkfStwIURpz*-v?qhlf=%gw5_NPeCkeT$h0wTIoo&-y-IRT@$6u-9lBSv8 zW-F2FqI3QO70Q8n+dB8yR+o*$*b5`m12QDzpz7O zekmrG!gX3T&Z6vA?rxn_b~P;3U=$RlS8d5h#)}Bf$|vbcIJKYn3;A>7F<#h1n+@(! zP?z+N6!!Ix4JtES3eFl4vZhpSTTXK5S^zcNB?m~)Gj(CczP{_)sOm!XCSry$_0t2S zEmT^7pVc4GQQWrN%2+v*T~gzjDh;dMlKR^XW!cDA_r}Fr>ZGZS-($W7W6{}3qa9XgIF3uEORO6(~QVCT1t0PP0DUFG6!+G{RqX5~(fDV4D?bmAD7`m)*( z?hzSbUGvlSOEZEL{FSFv#Q{7ja>Z+^A!gDeVwnGvR>J*i!)njnsTFa$;cYaVsx$61 zojs#%n3yuaEJZx$4ZLotcxtG+{`&6*}ps)8khzyV19t}t_{~; zR~n`qWKqs3R@UIoGIMIC{LyJJz_d<54VjuHb<}JQyqn+mshoV{ zGJ$32@e$CJ1N5lzfG3aqw*MS%l9k5KKGsU5&@rH*+Y1$^w%n z&#=)FQ0PaW=N7_X;6bbcdw!30Qw^tl?;b}|XH}ENW5-Qda*?euv8P4-{HR<#Q6*Ap z>`|vrH9NN|{Ff>P-i!+uj|)l*^3Ru2d1&B@hL<@LK+Z2}5ii`T(|Pp^s;1qZbkEsw zF9<-F2On{MPnU?VbxZmZYm^N--$+3sIn`G>wCqLKhN%6k`_s4Wpz~F^TI{!f3701l z(DT+$H0`Y$*#4w(*dBNPUpnYc$GRx|AVa^*6*Zy>L;^Is8_Vd)@ zODWU*<_3#+yt9>9gt@|pe(b?XI@Q;g_iI${%-Bk3cbvj35&rzzivcZQHx4OqS93ty zeg@plVnkHAzv4!V!QO%Ze17K<9Tw0{Hon5)JQj12A5uZp-5gO+o>wh@ zw$BpP41qoWY(sxWs6yLdHulHGQDcMke875SqfxoNbT)Czo~RKD)jOlGrg)m|iN07w zGG>>D#PV;5kNSAF(;iLejHYC)JgCsV*I=OV8Nm734PcWcFLY>HGdby%>2(>$F!_iy zT}vN*KX9&duv9E1)GmTCd=?MZyTBB*k})IqdMrw7<<=|7Vj<_(H)zF@H{tBj$dn>& z8!9sBxel$~9?(%fIWDU_ePG9f7RRL0!p_g>Q6N*Ox-g*43nG=3y9=%^q{2Ap>t5!U zH<-YS+MvgN>f2_=>_{Tt5kwEFJX7FAgieZi1BUq>e-D(>(CDbqhK^o(UCYwljHdm@ z@4-~w(Q}HhkYj$^4tuBp*O%qsMrF#U^PMBwZkh-bP`RSnGI`WBWx_+G_V%djZ*)+6 z=x+JxUycumn(u|{zFkp+7CGLOf&?CQ9%|7~8;fU;&*viBEkjaQaHXi)^Z)u*KWd@A}f0>Fnd6bT?P5+9McXfrZype9=$U=0=a)e&cUoaCY?j&Mi??| zkO(V6uWMR#b`6FRdBHlak&gYoj(C~&Q>4L#<_oYGgU5yFImbX)BU z`70;K_24Az{4Q?@G6797Rb*J*QHnIk%2h-5=wP%WkbB0AJ zM}9%QOBZ_ehx>9`wQ`j?X-9!TpMU#6MMCFY0(3x6T>-_kywF3l6g(t5E@or9(?D-7 z;9A8cn19hc(lHN(nJRB0tRfTy^X4mcAxax!8|E7wqml-1anMx%<#2$eEnxXQywJJ7!0GJ7E;==}N) zPpoKtM8rYFs64Y#xHY6M@JyEM%B_NHrQ>Z?7I}UH^i1S>D$IX_-_mQ`9Lk2mv8ao7 zgdHkRQPU+Fc4U-9oqzp(Pw$5L|9N}Y#<-3fO?Wo3b>&re$+u%WiJcj@6j^qhcz0%2 z*2UI4qQr=FJiGJGXq#k{>WE}_x|@>d-%ua3|92k%g{s0i)l?m^m3)ZBW)nc6P$(3x z2xpI|eknyy0`8-qBw5P6hyo)KhtX^ zOmU491yib8zo+UQH;%;Qet(C#q0c5%kRGsX>vTh6Vi$YNZeE*HLKYAh$!n-5FSIsF zxo5SnV64G~mpLG+*4EP-4&o*WRZ`0{7;$-mtr#k9r*gEu%HnbVqH2q4iO^1$qRCVb zF(SsPSD5uyCFMroA>3lr^o8Dg5CyPt@Vp-i+s#oaz7+IIA`!kW0K?HS(A~+T2n@bT z{^eh~GqRl$^nj_>Qv-+l^bRBb|1cAl7)Apo;wR$n(0332aqi_eJKiXCva|_ZDq*l2 zn1bN|<5#sQzrAW&XN@1hr5YMCG70@EV^8UVAu$?cEzH(WADyvcAd5|;c;fyTkMF4ms{heufw0RdN3VRL2zyX%E~}71LVDl zzgJLtND{#A+>?-%!E;EwrZ~Mh+&#e4_`u>W*0qVB$kvQTxbCXvV%!TUjumB${nI~* zuHw<@xU^VV8W|`iL-g#Xhve69;bPzcjZ}w&Dv+V05R+T|7LhbB!7Y$98rDh@i!XFa z-;>ECoQOt0da`^1pTNdNqzQdbR#$YIwYTf_oAsNp*xFGQZf?R9D!fCA-rj;sfdzP} z_3`90`%-KPzn%*U-n|zn@j0fPR)(|zZv|i691SRD32zoudp0Mw_+5SkSveetj3&5A zgsjzaVsmsjoY=Ql>r6X=p)$ho@c3lF7=$-`hWg#KE^}^k{DR93_!*d5cdg&zfaKAp zAg8=F@f9CwwHo7iSOZ9R%G(nDt_Hg8Jv2h=V(_0uSp4+SLtvJf0Ck_-#Yhu82E`c| zGY2d9VPJN_AHu}^(Lryf{@UJbVTIOAgLc6Gcc*IolIV!&<>lj|t^I|c$NDZd`jYu$TMa2Sz%9X>8OMk6kwi0=DH5ih}0g#}#o3!scG zYBdqhm0@aeQo#{S&7eTCgU1`s3>g7e5~|E$H$)Yu;=G0^ivhMGXfnr`Ncv@E>fK=G}q6w`o~&fq1=6gbU^W)XBV`Iv*ZvV<> z#4pv{t$V>_Xqk%0UAZqbR6+yV4k!)ak}4c{(|edRHAM@~Lg6$qxMi3C5IzskdgU)^UQ0S>VJ=8CRnuaJnkVxHc1@+do%v40~ zic*`?GP>h5Jb*YHEXkCov)J(l0{8n>!C5KJ>hr2H-h zwZ)FIBP2jcLbz*HEqd(gc`uJh200kzT1XVviyVR50C#gw7*{kce(PzV-gW(L8ac!j z{TO$<72`Zjo!py&l|Ck0yP=hd<(9b-KHLL}iD{ z3_F-XQXA7Uix+$ePR$4Q)+q*ij8LXYiR7uGDUKo^aeN|VcX};g!QoX^M`wdxE!ha| zEL2?sfm>Rq9yBRV(4&$>ZedihRs-IxubwUZpjZ7d#*x<*N3lj=xnLVMXeR`A$EauyuBzI~a|zr_y^kze0H2Ff(;IWr9r>P>wK z8?1qVpR%vCEdZo?(f_s2##tPq&?s_^4C?Mrr0g>*O={GeQk)Eke{RD^5p6rnm-S{D$~BI!2a@ zNeRxm8+6Yh(M^XpdrD+R5B2`z;SBauQp9{cdcnzRo7RSEuGBt@#ht$kntz~zH=B&Q zL|^A#$2nEp`g%-z4m2RUB_e{5rMizPpvz0sbKRB#N^63Mn3*S1(pup<95YTQxaAfi4G;pyfNH$jC;sk}e#$%^<$ZDW+Nd6@zjx&B} z##2mIeO&DAwuZxS%hxgmaPB>P#!XKtdEBRE3oUSZ0P~W5mE0n@t*impIzOO6K>(}H zj^%(5?sQZe)CRy7-#@C9nivCIx2!8g&49;+B`>0GzrTlQ2z(Fpb~5^)wH4rj>DF7w zZV{F;;Ygoi0l)v#w}4+E4(SIF)pUImN;3%{fbN3N^H zR>>T)r>ylwoaI0bL9I?KtbYvWXSde9Xg2Ft$nNBt$B`a3ohq7oKW2khA-fBhBF^R2 zl)C^ui?mH>7Z3p@C+9Lm+*2yrUwb*R51`$JKOOXup~JN?)jB5Xz;DP6-iQo@5K%Bc z?z}{5kd=bg=iq0kz;FmGTvfKe-0E$cBVMe~qj^sxlkBFY(*zc0&4;|}&3Qh+ue+E* z&aY{dSk$uXQ{K0ZOwyI;D=k8)!_ny6dv}GLX*vB1{_mek7M$3>WthiDsyV2Vu)N-oNzR1C=3fuk6QtXaue?9w{& z@j$PFIu`f-U7piQpTkY;vHJp4zT!N2NU}u*qea{bg)T_gK|LZy@Zx*sEEPMhRlf=t-&kZC23P&`4EprJ7&Ij` zP%KSo;P$TI61?k!A!UmhqKdhsL?wW9uOei6mxZ6Ib&RNB_P|7a0aGC#w=4DyC92<{|&C1MvXE9g=*JEDu)%+05@C_)sD|Q zG}Fw=XR&Gx>oyav2&sqaE+?o7k$n^5i@77(vhf+=^E^)g;#A@%=p&kGl`wj7tIyLn zLTO8?9NNnqfPo8&-a>W@cNtgOqj15a&#k+)yb-KAb_E=eCu?8!e*kTb1IhDX)73v} z>-%Zo2Qdk3REr?jf}J3gDcD1`fk#V~eg2P05KnCNM^CqHFzsL35;O2s(16teEPalE z;iJvHVfHR)&2SoD4q&?71~8IK$g*T?(h8H7c8cy@WLes?U0k@UCk$3K6o%sU5Zy`G z&=hzeM012l+c6kLQY_Tbj;Gp4O7x5f17!E<-2{=e70Fr$=Td?o74;tH#m|cr&JBjs zB+J9cyDKHm`yN-gX9ny0YXpqzKRaD?Okw?i4%paMs{;SCRQdwE8%>|=bX3&O2XA$` z1*mn45W>~*Oy_$6Zin}R%s;FVsv9$$(=+=9gu(@hKsv2C@=;jQM5U*QH&ecZKc|!h z%dcWPFRTkYIT>MNSVz|h2{^dV52LGoQ?0WhgV|L(JOBrpT=%jmUByBlfYe1xRx6O* z7k8)2RrUG9-cEP(u=0s)oIUw*fQxO@t=88q1?X%@XlthOHVvb@oQR!&=T>)#7ATPS zvlNR3Yd8Dp+agwxxpN7fYaFrg)>^XTkREdqianZPokxlwizm2pn}=}*Nu`^MWPzoF z*mfm=>&QzVN3}~i`-ZsU6ukiLNaAXkFx9$RL)TyQ1oLIOL>X>AJs)I#8+uwPUta5x z^e}w)VPFhT5AScIHky9Z-w$W@%of^)Aw!{$nJlRqD|ST2JF4buig4W-x`;VRgr#PQ zaFSapJ7}c%J$Mvm1Km$LTwB>I?<)_Vtlps#b(@%S0W^_c2>0NNE;Krl)@uX3TIc3@h=HCacuafu*t99@vXa3< z(V*c`sj5-VWNC=7-D#GK26hP$*5Adm!5(3|(-IscJUE~v7R)0Ujd(ZG#1kVH?K3t6 zp51^1I6Peu69`xg1jrv6?8P_ek*xO^fa~sHa~<-QzQr!q@Kc3eEib-UQI$~P;k%2T zmivq^eUsKHLh%a@nc>S!De~|GMex@H-%%8e4)*uoCPf~8py&zXODPIcle_3_URmT9f8AP?2*ng$B@n;!-*dBPKp9KBEB_3~RfMkDXd z!OlKaHZY;#MnYVxgQf{D5m~iF&gMok;Q#M0{^7s<1O3m<5v30%6$Ny?wdvLKAT!f? zHgc|z-P~iwQQhC|?lAJ8h@@2~MmTLge=En{!gm)R^W4!pf-gPxmsO6u@kuuqJtB>A zZ0$+TicuYdyY8*qAIFFdev6r);D!+;^s(sTeTbx&`$Q7%wo4gukp^L?Eq*c_c`6fX z34!Yr5F1W|m9+7oJ46wMA#yg7rjU^+;cD@)K7{990wpkZQkI0-D8~j0_u)^3wTi-kfsyir zgSRv«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 literal 0 HcmV?d00001 diff --git a/docs/html/.doctrees/index.doctree b/docs/html/.doctrees/index.doctree new file mode 100644 index 0000000000000000000000000000000000000000..f837bc5172ad65e2eb0efa1c8441307b078204ee GIT binary patch literal 4924 zcmds5-HIeh74Dgy`tARoomrNh!Cc(k=~<_`x_4cWz7g5Ik;WE8cJN}ziOP(sh^fqs zoQTNosta)!9GTVtmCY5r(^v2bLQZd-ZHBXw9RXayo(*v}f~FJrFtG$5f@X(yVC#EXg2RC+@m(Fa~2DbY0a z2GeeFtKQR$2VHuCh@(Ikhu8P4zqMV7?5Br>Cnk^CUJD4Qeqj^P9;@Tp3^)tEloyt zN6xzJHd{9xzv4@dQL`f9>-|j0zLG&7%c{?lkWLPz(z&@2@r355jcfpXTFL?@k{Ofj zi!62rSZrvnBU)QBZ$G3F7(*>rD!$%Ri;R7%z<$rX`z6AE`}EgW#OJpB053Xb@3M7v z?~L6)gE`sjupxT`TzV6qyZC$spSK?68GDEIA^xBcX9w*5Y0EvSZ7D6XB&=P$coSQL z^$Mj6TbEO`OkCQpJW3#s)>hgUl$laQvG<)_yHHoVN5)pS0ByI`L> zf#pY$8043x$#@tdHe8ymQp;?jon-NVN*d;;Yo_b$uS60}A=^cWsa?Pht5et~)*K(R zd(I3UnB`l`wlh2B%X=4+q$!m-SvKc47tIOt)0z3rS1$_Wds_4=65(1rE#&caT|EIt1(S zzh@7o%Y@0H=ac zYimeTuj(E^qPl(^hu2`*f37;cj)N8c`^$u{;xJDRRn)JdxoH;BF*n!VbBX##HRp4& zbRo6u!;fqv?;(=+%1A!XB-Ls?&accH2+*spRu)L?z?$Hi*$y&kt2e)#KQo)vj0>q} zrmd*fh`uQN_iVazh5S&uw2tuD{Dedqa?dRG_RmZQL6=IRh0HMsQL>{#k5ddbier#B zk}-zea+t{oqb;Op-`0S36~{Gfx}WA|e~2F3iV0q zm)(Ve$~TJ{8d2MCDF1?M=2w*{PAoT+r70dSX(}Z08a=0xtz^24M6+ST?9mB_tu)b@ zs)QP*5z;|6!g1R+XxmH$y_Ce5>1c@();06xUjU@?AkXd z7>dC}kt@r$B9e?UGNQ0}h*WkRHJ!PM7D&j@M=gk~jbm)VcxIYtn}&EMEW$${_56@e zax@RyB-6s5Pnqi+q}mFzIQ3`5gJInSM=2>25?O^iZU)v(l!bpjl`5Kr!bkf6sa+&h zp{QTq=~xnI|C}pcP;|!+xw0h`9#Y=2RXGGZFq?Rcf(sNy9#~U~`Lp8pw*7`f(4^S1 z7YJKzAt2vCnK~PSqI=e>z?@_RB1Sw$y8q7ZJ+qzC)VDPNd=a4lH%HNvg73Jybq?b( zty6W!Wi1b6D+J{yn$> u+6_1seuGdBd|Z8h7D*PSH)hig%#E^N1w}{phm3A$gIyUHY{8Tb4*vtI#$Y1= literal 0 HcmV?d00001 diff --git a/docs/html/_sources/index.rst.txt b/docs/html/_sources/index.rst.txt new file mode 100644 index 000000000..a67f664a0 --- /dev/null +++ b/docs/html/_sources/index.rst.txt @@ -0,0 +1,20 @@ +.. kittycad documentation master file, created by + sphinx-quickstart on Wed Dec 15 10:15:30 2021. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to kittycad's documentation! +==================================== + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + + + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/docs/html/_static/alabaster.css b/docs/html/_static/alabaster.css new file mode 100644 index 000000000..0eddaeb07 --- /dev/null +++ b/docs/html/_static/alabaster.css @@ -0,0 +1,701 @@ +@import url("basic.css"); + +/* -- page layout ----------------------------------------------------------- */ + +body { + font-family: Georgia, serif; + font-size: 17px; + background-color: #fff; + color: #000; + margin: 0; + padding: 0; +} + + +div.document { + width: 940px; + margin: 30px auto 0 auto; +} + +div.documentwrapper { + float: left; + width: 100%; +} + +div.bodywrapper { + margin: 0 0 0 220px; +} + +div.sphinxsidebar { + width: 220px; + font-size: 14px; + line-height: 1.5; +} + +hr { + border: 1px solid #B1B4B6; +} + +div.body { + background-color: #fff; + color: #3E4349; + padding: 0 30px 0 30px; +} + +div.body > .section { + text-align: left; +} + +div.footer { + width: 940px; + margin: 20px auto 30px auto; + font-size: 14px; + color: #888; + text-align: right; +} + +div.footer a { + color: #888; +} + +p.caption { + font-family: inherit; + font-size: inherit; +} + + +div.relations { + display: none; +} + + +div.sphinxsidebar a { + color: #444; + text-decoration: none; + border-bottom: 1px dotted #999; +} + +div.sphinxsidebar a:hover { + border-bottom: 1px solid #999; +} + +div.sphinxsidebarwrapper { + padding: 18px 10px; +} + +div.sphinxsidebarwrapper p.logo { + padding: 0; + margin: -10px 0 0 0px; + text-align: center; +} + +div.sphinxsidebarwrapper h1.logo { + margin-top: -10px; + text-align: center; + margin-bottom: 5px; + text-align: left; +} + +div.sphinxsidebarwrapper h1.logo-name { + margin-top: 0px; +} + +div.sphinxsidebarwrapper p.blurb { + margin-top: 0; + font-style: normal; +} + +div.sphinxsidebar h3, +div.sphinxsidebar h4 { + font-family: Georgia, serif; + color: #444; + font-size: 24px; + font-weight: normal; + margin: 0 0 5px 0; + padding: 0; +} + +div.sphinxsidebar h4 { + font-size: 20px; +} + +div.sphinxsidebar h3 a { + color: #444; +} + +div.sphinxsidebar p.logo a, +div.sphinxsidebar h3 a, +div.sphinxsidebar p.logo a:hover, +div.sphinxsidebar h3 a:hover { + border: none; +} + +div.sphinxsidebar p { + color: #555; + margin: 10px 0; +} + +div.sphinxsidebar ul { + margin: 10px 0; + padding: 0; + color: #000; +} + +div.sphinxsidebar ul li.toctree-l1 > a { + font-size: 120%; +} + +div.sphinxsidebar ul li.toctree-l2 > a { + font-size: 110%; +} + +div.sphinxsidebar input { + border: 1px solid #CCC; + font-family: Georgia, serif; + font-size: 1em; +} + +div.sphinxsidebar hr { + border: none; + height: 1px; + color: #AAA; + background: #AAA; + + text-align: left; + margin-left: 0; + width: 50%; +} + +div.sphinxsidebar .badge { + border-bottom: none; +} + +div.sphinxsidebar .badge:hover { + border-bottom: none; +} + +/* To address an issue with donation coming after search */ +div.sphinxsidebar h3.donation { + margin-top: 10px; +} + +/* -- body styles ----------------------------------------------------------- */ + +a { + color: #004B6B; + text-decoration: underline; +} + +a:hover { + color: #6D4100; + text-decoration: underline; +} + +div.body h1, +div.body h2, +div.body h3, +div.body h4, +div.body h5, +div.body h6 { + font-family: Georgia, serif; + font-weight: normal; + margin: 30px 0px 10px 0px; + padding: 0; +} + +div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; } +div.body h2 { font-size: 180%; } +div.body h3 { font-size: 150%; } +div.body h4 { font-size: 130%; } +div.body h5 { font-size: 100%; } +div.body h6 { font-size: 100%; } + +a.headerlink { + color: #DDD; + padding: 0 4px; + text-decoration: none; +} + +a.headerlink:hover { + color: #444; + background: #EAEAEA; +} + +div.body p, div.body dd, div.body li { + line-height: 1.4em; +} + +div.admonition { + margin: 20px 0px; + padding: 10px 30px; + background-color: #EEE; + border: 1px solid #CCC; +} + +div.admonition tt.xref, div.admonition code.xref, div.admonition a tt { + background-color: #FBFBFB; + border-bottom: 1px solid #fafafa; +} + +div.admonition p.admonition-title { + font-family: Georgia, serif; + font-weight: normal; + font-size: 24px; + margin: 0 0 10px 0; + padding: 0; + line-height: 1; +} + +div.admonition p.last { + margin-bottom: 0; +} + +div.highlight { + background-color: #fff; +} + +dt:target, .highlight { + background: #FAF3E8; +} + +div.warning { + background-color: #FCC; + border: 1px solid #FAA; +} + +div.danger { + background-color: #FCC; + border: 1px solid #FAA; + -moz-box-shadow: 2px 2px 4px #D52C2C; + -webkit-box-shadow: 2px 2px 4px #D52C2C; + box-shadow: 2px 2px 4px #D52C2C; +} + +div.error { + background-color: #FCC; + border: 1px solid #FAA; + -moz-box-shadow: 2px 2px 4px #D52C2C; + -webkit-box-shadow: 2px 2px 4px #D52C2C; + box-shadow: 2px 2px 4px #D52C2C; +} + +div.caution { + background-color: #FCC; + border: 1px solid #FAA; +} + +div.attention { + background-color: #FCC; + border: 1px solid #FAA; +} + +div.important { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.note { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.tip { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.hint { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.seealso { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.topic { + background-color: #EEE; +} + +p.admonition-title { + display: inline; +} + +p.admonition-title:after { + content: ":"; +} + +pre, tt, code { + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; + font-size: 0.9em; +} + +.hll { + background-color: #FFC; + margin: 0 -12px; + padding: 0 12px; + display: block; +} + +img.screenshot { +} + +tt.descname, tt.descclassname, code.descname, code.descclassname { + font-size: 0.95em; +} + +tt.descname, code.descname { + padding-right: 0.08em; +} + +img.screenshot { + -moz-box-shadow: 2px 2px 4px #EEE; + -webkit-box-shadow: 2px 2px 4px #EEE; + box-shadow: 2px 2px 4px #EEE; +} + +table.docutils { + border: 1px solid #888; + -moz-box-shadow: 2px 2px 4px #EEE; + -webkit-box-shadow: 2px 2px 4px #EEE; + box-shadow: 2px 2px 4px #EEE; +} + +table.docutils td, table.docutils th { + border: 1px solid #888; + padding: 0.25em 0.7em; +} + +table.field-list, table.footnote { + border: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; +} + +table.footnote { + margin: 15px 0; + width: 100%; + border: 1px solid #EEE; + background: #FDFDFD; + font-size: 0.9em; +} + +table.footnote + table.footnote { + margin-top: -15px; + border-top: none; +} + +table.field-list th { + padding: 0 0.8em 0 0; +} + +table.field-list td { + padding: 0; +} + +table.field-list p { + margin-bottom: 0.8em; +} + +/* Cloned from + * https://github.com/sphinx-doc/sphinx/commit/ef60dbfce09286b20b7385333d63a60321784e68 + */ +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +table.footnote td.label { + width: .1px; + padding: 0.3em 0 0.3em 0.5em; +} + +table.footnote td { + padding: 0.3em 0.5em; +} + +dl { + margin: 0; + padding: 0; +} + +dl dd { + margin-left: 30px; +} + +blockquote { + margin: 0 0 0 30px; + padding: 0; +} + +ul, ol { + /* Matches the 30px from the narrow-screen "li > ul" selector below */ + margin: 10px 0 10px 30px; + padding: 0; +} + +pre { + background: #EEE; + padding: 7px 30px; + margin: 15px 0px; + line-height: 1.3em; +} + +div.viewcode-block:target { + background: #ffd; +} + +dl pre, blockquote pre, li pre { + margin-left: 0; + padding-left: 30px; +} + +tt, code { + background-color: #ecf0f3; + color: #222; + /* padding: 1px 2px; */ +} + +tt.xref, code.xref, a tt { + background-color: #FBFBFB; + border-bottom: 1px solid #fff; +} + +a.reference { + text-decoration: none; + border-bottom: 1px dotted #004B6B; +} + +/* Don't put an underline on images */ +a.image-reference, a.image-reference:hover { + border-bottom: none; +} + +a.reference:hover { + border-bottom: 1px solid #6D4100; +} + +a.footnote-reference { + text-decoration: none; + font-size: 0.7em; + vertical-align: top; + border-bottom: 1px dotted #004B6B; +} + +a.footnote-reference:hover { + border-bottom: 1px solid #6D4100; +} + +a:hover tt, a:hover code { + background: #EEE; +} + + +@media screen and (max-width: 870px) { + + div.sphinxsidebar { + display: none; + } + + div.document { + width: 100%; + + } + + div.documentwrapper { + margin-left: 0; + margin-top: 0; + margin-right: 0; + margin-bottom: 0; + } + + div.bodywrapper { + margin-top: 0; + margin-right: 0; + margin-bottom: 0; + margin-left: 0; + } + + ul { + margin-left: 0; + } + + li > ul { + /* Matches the 30px from the "ul, ol" selector above */ + margin-left: 30px; + } + + .document { + width: auto; + } + + .footer { + width: auto; + } + + .bodywrapper { + margin: 0; + } + + .footer { + width: auto; + } + + .github { + display: none; + } + + + +} + + + +@media screen and (max-width: 875px) { + + body { + margin: 0; + padding: 20px 30px; + } + + div.documentwrapper { + float: none; + background: #fff; + } + + div.sphinxsidebar { + display: block; + float: none; + width: 102.5%; + margin: 50px -30px -20px -30px; + padding: 10px 20px; + background: #333; + color: #FFF; + } + + div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p, + div.sphinxsidebar h3 a { + color: #fff; + } + + div.sphinxsidebar a { + color: #AAA; + } + + div.sphinxsidebar p.logo { + display: none; + } + + div.document { + width: 100%; + margin: 0; + } + + div.footer { + display: none; + } + + div.bodywrapper { + margin: 0; + } + + div.body { + min-height: 0; + padding: 0; + } + + .rtd_doc_footer { + display: none; + } + + .document { + width: auto; + } + + .footer { + width: auto; + } + + .footer { + width: auto; + } + + .github { + display: none; + } +} + + +/* misc. */ + +.revsys-inline { + display: none!important; +} + +/* Make nested-list/multi-paragraph items look better in Releases changelog + * pages. Without this, docutils' magical list fuckery causes inconsistent + * formatting between different release sub-lists. + */ +div#changelog > div.section > ul > li > p:only-child { + margin-bottom: 0; +} + +/* Hide fugly table cell borders in ..bibliography:: directive output */ +table.docutils.citation, table.docutils.citation td, table.docutils.citation th { + border: none; + /* Below needed in some edge cases; if not applied, bottom shadows appear */ + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; +} + + +/* relbar */ + +.related { + line-height: 30px; + width: 100%; + font-size: 0.9rem; +} + +.related.top { + border-bottom: 1px solid #EEE; + margin-bottom: 20px; +} + +.related.bottom { + border-top: 1px solid #EEE; +} + +.related ul { + padding: 0; + margin: 0; + list-style: none; +} + +.related li { + display: inline; +} + +nav#rellinks { + float: right; +} + +nav#rellinks li+li:before { + content: "|"; +} + +nav#breadcrumbs li+li:before { + content: "\00BB"; +} + +/* Hide certain items when printing */ +@media print { + div.related { + display: none; + } +} \ No newline at end of file diff --git a/docs/html/_static/basic.css b/docs/html/_static/basic.css new file mode 100644 index 000000000..603f6a879 --- /dev/null +++ b/docs/html/_static/basic.css @@ -0,0 +1,905 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +div.section::after { + display: block; + content: ''; + clear: left; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 230px; + margin-left: -100%; + font-size: 90%; + word-wrap: break-word; + overflow-wrap : break-word; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +div.sphinxsidebar #searchbox form.search { + overflow: hidden; +} + +div.sphinxsidebar #searchbox input[type="text"] { + float: left; + width: 80%; + padding: 0.25em; + box-sizing: border-box; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + float: left; + width: 20%; + border-left: none; + padding: 0.25em; + box-sizing: border-box; +} + + +img { + border: 0; + max-width: 100%; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li p.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; + margin-left: auto; + margin-right: auto; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable ul { + margin-top: 0; + margin-bottom: 0; + list-style-type: none; +} + +table.indextable > tbody > tr > td > ul { + padding-left: 0em; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- domain module index --------------------------------------------------- */ + +table.modindextable td { + padding: 2px; + border-collapse: collapse; +} + +/* -- general body styles --------------------------------------------------- */ + +div.body { + min-width: 450px; + max-width: 800px; +} + +div.body p, div.body dd, div.body li, div.body blockquote { + -moz-hyphens: auto; + -ms-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} + +a.headerlink { + visibility: hidden; +} + +a.brackets:before, +span.brackets > a:before{ + content: "["; +} + +a.brackets:after, +span.brackets > a:after { + content: "]"; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink, +caption:hover > a.headerlink, +p.caption:hover > a.headerlink, +div.code-block-caption:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, figure.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, figure.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, figure.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +img.align-default, figure.align-default, .figure.align-default { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + text-align: center; +} + +.align-default { + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar, +aside.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px; + background-color: #ffe; + width: 40%; + float: right; + clear: right; + overflow-x: auto; +} + +p.sidebar-title { + font-weight: bold; +} + +div.admonition, div.topic, blockquote { + clear: left; +} + +/* -- topics ---------------------------------------------------------------- */ + +div.topic { + border: 1px solid #ccc; + padding: 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- content of sidebars/topics/admonitions -------------------------------- */ + +div.sidebar > :last-child, +aside.sidebar > :last-child, +div.topic > :last-child, +div.admonition > :last-child { + margin-bottom: 0; +} + +div.sidebar::after, +aside.sidebar::after, +div.topic::after, +div.admonition::after, +blockquote::after { + display: block; + content: ''; + clear: both; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + margin-top: 10px; + margin-bottom: 10px; + border: 0; + border-collapse: collapse; +} + +table.align-center { + margin-left: auto; + margin-right: auto; +} + +table.align-default { + margin-left: auto; + margin-right: auto; +} + +table caption span.caption-number { + font-style: italic; +} + +table caption span.caption-text { +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +table.footnote td, table.footnote th { + border: 0 !important; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +th > :first-child, +td > :first-child { + margin-top: 0px; +} + +th > :last-child, +td > :last-child { + margin-bottom: 0px; +} + +/* -- figures --------------------------------------------------------------- */ + +div.figure, figure { + margin: 0.5em; + padding: 0.5em; +} + +div.figure p.caption, figcaption { + padding: 0.3em; +} + +div.figure p.caption span.caption-number, +figcaption span.caption-number { + font-style: italic; +} + +div.figure p.caption span.caption-text, +figcaption span.caption-text { +} + +/* -- field list styles ----------------------------------------------------- */ + +table.field-list td, table.field-list th { + border: 0 !important; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +/* -- hlist styles ---------------------------------------------------------- */ + +table.hlist { + margin: 1em 0; +} + +table.hlist td { + vertical-align: top; +} + +/* -- object description styles --------------------------------------------- */ + +.sig { + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; +} + +.sig-name, code.descname { + background-color: transparent; + font-weight: bold; +} + +.sig-name { + font-size: 1.1em; +} + +code.descname { + font-size: 1.2em; +} + +.sig-prename, code.descclassname { + background-color: transparent; +} + +.optional { + font-size: 1.3em; +} + +.sig-paren { + font-size: larger; +} + +.sig-param.n { + font-style: italic; +} + +/* C++ specific styling */ + +.sig-inline.c-texpr, +.sig-inline.cpp-texpr { + font-family: unset; +} + +.sig.c .k, .sig.c .kt, +.sig.cpp .k, .sig.cpp .kt { + color: #0033B3; +} + +.sig.c .m, +.sig.cpp .m { + color: #1750EB; +} + +.sig.c .s, .sig.c .sc, +.sig.cpp .s, .sig.cpp .sc { + color: #067D17; +} + + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +:not(li) > ol > li:first-child > :first-child, +:not(li) > ul > li:first-child > :first-child { + margin-top: 0px; +} + +:not(li) > ol > li:last-child > :last-child, +:not(li) > ul > li:last-child > :last-child { + margin-bottom: 0px; +} + +ol.simple ol p, +ol.simple ul p, +ul.simple ol p, +ul.simple ul p { + margin-top: 0; +} + +ol.simple > li:not(:first-child) > p, +ul.simple > li:not(:first-child) > p { + margin-top: 0; +} + +ol.simple p, +ul.simple p { + margin-bottom: 0; +} + +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; +} + +dl.field-list { + display: grid; + grid-template-columns: fit-content(30%) auto; +} + +dl.field-list > dt { + font-weight: bold; + word-break: break-word; + padding-left: 0.5em; + padding-right: 5px; +} + +dl.field-list > dt:after { + content: ":"; +} + +dl.field-list > dd { + padding-left: 0.5em; + margin-top: 0em; + margin-left: 0em; + margin-bottom: 0em; +} + +dl { + margin-bottom: 15px; +} + +dd > :first-child { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +dl > dd:last-child, +dl > dd:last-child > :last-child { + margin-bottom: 0; +} + +dt:target, span.highlighted { + background-color: #fbe54e; +} + +rect.highlighted { + fill: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +.classifier:before { + font-style: normal; + margin: 0 0.5em; + content: ":"; + display: inline-block; +} + +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +pre, div[class*="highlight-"] { + clear: both; +} + +span.pre { + -moz-hyphens: none; + -ms-hyphens: none; + -webkit-hyphens: none; + hyphens: none; +} + +div[class*="highlight-"] { + margin: 1em 0; +} + +td.linenos pre { + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + display: block; +} + +table.highlighttable tbody { + display: block; +} + +table.highlighttable tr { + display: flex; +} + +table.highlighttable td { + margin: 0; + padding: 0; +} + +table.highlighttable td.linenos { + padding-right: 0.5em; +} + +table.highlighttable td.code { + flex: 1; + overflow: hidden; +} + +.highlight .hll { + display: block; +} + +div.highlight pre, +table.highlighttable pre { + margin: 0; +} + +div.code-block-caption + div { + margin-top: 0; +} + +div.code-block-caption { + margin-top: 1em; + padding: 2px 5px; + font-size: small; +} + +div.code-block-caption code { + background-color: transparent; +} + +table.highlighttable td.linenos, +span.linenos, +div.highlight span.gp { /* gp: Generic.Prompt */ + user-select: none; + -webkit-user-select: text; /* Safari fallback only */ + -webkit-user-select: none; /* Chrome/Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* IE10+ */ +} + +div.code-block-caption span.caption-number { + padding: 0.1em 0.3em; + font-style: italic; +} + +div.code-block-caption span.caption-text { +} + +div.literal-block-wrapper { + margin: 1em 0; +} + +code.xref, a code { + background-color: transparent; + font-weight: bold; +} + +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +span.eqno a.headerlink { + position: absolute; + z-index: 1; +} + +div.math:hover a.headerlink { + visibility: visible; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} \ No newline at end of file diff --git a/docs/html/_static/custom.css b/docs/html/_static/custom.css new file mode 100644 index 000000000..2a924f1d6 --- /dev/null +++ b/docs/html/_static/custom.css @@ -0,0 +1 @@ +/* This file intentionally left blank. */ diff --git a/docs/html/_static/doctools.js b/docs/html/_static/doctools.js new file mode 100644 index 000000000..8cbf1b161 --- /dev/null +++ b/docs/html/_static/doctools.js @@ -0,0 +1,323 @@ +/* + * doctools.js + * ~~~~~~~~~~~ + * + * Sphinx JavaScript utilities for all documentation. + * + * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/** + * select a different prefix for underscore + */ +$u = _.noConflict(); + +/** + * make the code below compatible with browsers without + * an installed firebug like debugger +if (!window.console || !console.firebug) { + var names = ["log", "debug", "info", "warn", "error", "assert", "dir", + "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", + "profile", "profileEnd"]; + window.console = {}; + for (var i = 0; i < names.length; ++i) + window.console[names[i]] = function() {}; +} + */ + +/** + * small helper function to urldecode strings + * + * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL + */ +jQuery.urldecode = function(x) { + if (!x) { + return x + } + return decodeURIComponent(x.replace(/\+/g, ' ')); +}; + +/** + * small helper function to urlencode strings + */ +jQuery.urlencode = encodeURIComponent; + +/** + * This function returns the parsed url parameters of the + * current request. Multiple values per key are supported, + * it will always return arrays of strings for the value parts. + */ +jQuery.getQueryParameters = function(s) { + if (typeof s === 'undefined') + s = document.location.search; + var parts = s.substr(s.indexOf('?') + 1).split('&'); + var result = {}; + for (var i = 0; i < parts.length; i++) { + var tmp = parts[i].split('=', 2); + var key = jQuery.urldecode(tmp[0]); + var value = jQuery.urldecode(tmp[1]); + if (key in result) + result[key].push(value); + else + result[key] = [value]; + } + return result; +}; + +/** + * highlight a given string on a jquery object by wrapping it in + * span elements with the given class name. + */ +jQuery.fn.highlightText = function(text, className) { + function highlight(node, addItems) { + if (node.nodeType === 3) { + var val = node.nodeValue; + var pos = val.toLowerCase().indexOf(text); + if (pos >= 0 && + !jQuery(node.parentNode).hasClass(className) && + !jQuery(node.parentNode).hasClass("nohighlight")) { + var span; + var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); + if (isInSVG) { + span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); + } else { + span = document.createElement("span"); + span.className = className; + } + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + if (isInSVG) { + var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); + var bbox = node.parentElement.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": node.parentNode, + "target": rect}); + } + } + } + else if (!jQuery(node).is("button, select, textarea")) { + jQuery.each(node.childNodes, function() { + highlight(this, addItems); + }); + } + } + var addItems = []; + var result = this.each(function() { + highlight(this, addItems); + }); + for (var i = 0; i < addItems.length; ++i) { + jQuery(addItems[i].parent).before(addItems[i].target); + } + return result; +}; + +/* + * backward compatibility for jQuery.browser + * This will be supported until firefox bug is fixed. + */ +if (!jQuery.browser) { + jQuery.uaMatch = function(ua) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || + /(webkit)[ \/]([\w.]+)/.exec(ua) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || + /(msie) ([\w.]+)/.exec(ua) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; + }; + jQuery.browser = {}; + jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; +} + +/** + * Small JavaScript module for the documentation. + */ +var Documentation = { + + init : function() { + this.fixFirefoxAnchorBug(); + this.highlightSearchWords(); + this.initIndexTable(); + if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) { + this.initOnKeyListeners(); + } + }, + + /** + * i18n support + */ + TRANSLATIONS : {}, + PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; }, + LOCALE : 'unknown', + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext : function(string) { + var translated = Documentation.TRANSLATIONS[string]; + if (typeof translated === 'undefined') + return string; + return (typeof translated === 'string') ? translated : translated[0]; + }, + + ngettext : function(singular, plural, n) { + var translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated === 'undefined') + return (n == 1) ? singular : plural; + return translated[Documentation.PLURALEXPR(n)]; + }, + + addTranslations : function(catalog) { + for (var key in catalog.messages) + this.TRANSLATIONS[key] = catalog.messages[key]; + this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); + this.LOCALE = catalog.locale; + }, + + /** + * add context elements like header anchor links + */ + addContextElements : function() { + $('div[id] > :header:first').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this headline')). + appendTo(this); + }); + $('dt[id]').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this definition')). + appendTo(this); + }); + }, + + /** + * workaround a firefox stupidity + * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 + */ + fixFirefoxAnchorBug : function() { + if (document.location.hash && $.browser.mozilla) + window.setTimeout(function() { + document.location.href += ''; + }, 10); + }, + + /** + * highlight the search words provided in the url in the text + */ + highlightSearchWords : function() { + var params = $.getQueryParameters(); + var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; + if (terms.length) { + var body = $('div.body'); + if (!body.length) { + body = $('body'); + } + window.setTimeout(function() { + $.each(terms, function() { + body.highlightText(this.toLowerCase(), 'highlighted'); + }); + }, 10); + $('') + .appendTo($('#searchbox')); + } + }, + + /** + * init the domain index toggle buttons + */ + initIndexTable : function() { + var togglers = $('img.toggler').click(function() { + var src = $(this).attr('src'); + var idnum = $(this).attr('id').substr(7); + $('tr.cg-' + idnum).toggle(); + if (src.substr(-9) === 'minus.png') + $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); + else + $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); + }).css('display', ''); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { + togglers.click(); + } + }, + + /** + * helper function to hide the search marks again + */ + hideSearchWords : function() { + $('#searchbox .highlight-link').fadeOut(300); + $('span.highlighted').removeClass('highlighted'); + }, + + /** + * make the url absolute + */ + makeURL : function(relativeURL) { + return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; + }, + + /** + * get the current relative url + */ + getCurrentURL : function() { + var path = document.location.pathname; + var parts = path.split(/\//); + $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { + if (this === '..') + parts.pop(); + }); + var url = parts.join('/'); + return path.substring(url.lastIndexOf('/') + 1, path.length - 1); + }, + + initOnKeyListeners: function() { + $(document).keydown(function(event) { + var activeElementType = document.activeElement.tagName; + // don't navigate when in search box, textarea, dropdown or button + if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' + && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey + && !event.shiftKey) { + switch (event.keyCode) { + case 37: // left + var prevHref = $('link[rel="prev"]').prop('href'); + if (prevHref) { + window.location.href = prevHref; + return false; + } + break; + case 39: // right + var nextHref = $('link[rel="next"]').prop('href'); + if (nextHref) { + window.location.href = nextHref; + return false; + } + break; + } + } + }); + } +}; + +// quick alias for translations +_ = Documentation.gettext; + +$(document).ready(function() { + Documentation.init(); +}); diff --git a/docs/html/_static/documentation_options.js b/docs/html/_static/documentation_options.js new file mode 100644 index 000000000..3996df633 --- /dev/null +++ b/docs/html/_static/documentation_options.js @@ -0,0 +1,12 @@ +var DOCUMENTATION_OPTIONS = { + URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), + VERSION: 'v0.0.3', + LANGUAGE: 'None', + COLLAPSE_INDEX: false, + BUILDER: 'html', + FILE_SUFFIX: '.html', + LINK_SUFFIX: '.html', + HAS_SOURCE: true, + SOURCELINK_SUFFIX: '.txt', + NAVIGATION_WITH_KEYS: false +}; \ No newline at end of file diff --git a/docs/html/_static/file.png b/docs/html/_static/file.png new file mode 100644 index 0000000000000000000000000000000000000000..a858a410e4faa62ce324d814e4b816fff83a6fb3 GIT binary patch literal 286 zcmV+(0pb3MP)s`hMrGg#P~ix$^RISR_I47Y|r1 z_CyJOe}D1){SET-^Amu_i71Lt6eYfZjRyw@I6OQAIXXHDfiX^GbOlHe=Ae4>0m)d(f|Me07*qoM6N<$f}vM^LjV8( literal 0 HcmV?d00001 diff --git a/docs/html/_static/jquery-3.5.1.js b/docs/html/_static/jquery-3.5.1.js new file mode 100644 index 000000000..50937333b --- /dev/null +++ b/docs/html/_static/jquery-3.5.1.js @@ -0,0 +1,10872 @@ +/*! + * jQuery JavaScript Library v3.5.1 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2020-05-04T22:49Z + */ +( 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. + return typeof obj === "function" && typeof obj.nodeType !== "number"; + }; + + +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.5.1", + + // 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.5 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2020-03-14 + */ +( 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.namespaceURI, + docElem = ( 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 master Deferred + master = 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 ) ) { + master.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( master.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return master.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + } + + return master.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 + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + 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(); + return 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: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, 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; + }, + + 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! + 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"; + tr.style.height = "1px"; + trChild.style.height = "9px"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; + + 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; + 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 ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + 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 + if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { + 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( " + + + + + + + + + + + + + + +
+
+
+ + +
+ + +

Index

+ +
+ +
+ + +
+ +
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/html/index.html b/docs/html/index.html index 98ef3ed85..2bceacef5 100644 --- a/docs/html/index.html +++ b/docs/html/index.html @@ -1,25 +1,111 @@ - -Python: package kittycad - - - - -
 
- 
kittycad
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/__init__.py
-

A client library for accessing KittyCAD

-

- - - + + + + + + + + Welcome to kittycad’s documentation! — kittycad v0.0.3 documentation + + + + + + + + + + + + + + + + + +
+
+
+ + +
+ +
+

Welcome to kittycad’s documentation!¶

+
+
+
+
+

Indices and tables¶

+ +
+ + +
+ +
+
+ +
+
+ + - -
 
-Package Contents
       
api (package)
-
client
-
models (package)
-
types
-
- \ No newline at end of file + + + + \ No newline at end of file diff --git a/docs/html/kittycad.api.file.file_conversion_by_id.html b/docs/html/kittycad.api.file.file_conversion_by_id.html deleted file mode 100644 index 67f8ddaa2..000000000 --- a/docs/html/kittycad.api.file.file_conversion_by_id.html +++ /dev/null @@ -1,43 +0,0 @@ - -Python: module kittycad.api.file.file_conversion_by_id - - - - - -
 
- 
kittycad.api.file.file_conversion_by_id
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/api/file/file_conversion_by_id.py
-

-

- - - - - -
 
-Modules
       
httpx
-

- - - - - -
 
-Functions
       
async asyncio(id: str, *, client: kittycad.client.AuthenticatedClient) -> Union[Any, kittycad.models.file_conversion.FileConversion, NoneType]
Get the status of a file conversion.
-
async asyncio_detailed(id: str, *, client: kittycad.client.AuthenticatedClient) -> kittycad.types.Response[typing.Union[typing.Any, kittycad.models.file_conversion.FileConversion]]
-
sync(id: str, *, client: kittycad.client.AuthenticatedClient) -> Union[Any, kittycad.models.file_conversion.FileConversion, NoneType]
Get the status of a file conversion.
-
sync_detailed(id: str, *, client: kittycad.client.AuthenticatedClient) -> kittycad.types.Response[typing.Union[typing.Any, kittycad.models.file_conversion.FileConversion]]
-

- - - - - -
 
-Data
       Any = typing.Any
-Dict = typing.Dict
-Optional = typing.Optional
-Union = typing.Union
- \ No newline at end of file diff --git a/docs/html/kittycad.api.file.file_convert.html b/docs/html/kittycad.api.file.file_convert.html deleted file mode 100644 index bcd9ab5b4..000000000 --- a/docs/html/kittycad.api.file.file_convert.html +++ /dev/null @@ -1,43 +0,0 @@ - -Python: module kittycad.api.file.file_convert - - - - - -
 
- 
kittycad.api.file.file_convert
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/api/file/file_convert.py
-

-

- - - - - -
 
-Modules
       
httpx
-

- - - - - -
 
-Functions
       
async asyncio(source_format: kittycad.models.valid_file_types.ValidFileTypes, output_format: kittycad.models.valid_file_types.ValidFileTypes, *, client: kittycad.client.AuthenticatedClient) -> Union[Any, kittycad.models.file_conversion.FileConversion, NoneType]
Convert a CAD file from one format to another. If the file being converted is larger than a certain size it will be performed asynchronously.
-
async asyncio_detailed(source_format: kittycad.models.valid_file_types.ValidFileTypes, output_format: kittycad.models.valid_file_types.ValidFileTypes, *, client: kittycad.client.AuthenticatedClient) -> kittycad.types.Response[typing.Union[typing.Any, kittycad.models.file_conversion.FileConversion]]
-
sync(source_format: kittycad.models.valid_file_types.ValidFileTypes, output_format: kittycad.models.valid_file_types.ValidFileTypes, content: bytes, *, client: kittycad.client.AuthenticatedClient) -> Union[Any, kittycad.models.file_conversion.FileConversion, NoneType]
Convert a CAD file from one format to another. If the file being converted is larger than a certain size it will be performed asynchronously.
-
sync_detailed(source_format: kittycad.models.valid_file_types.ValidFileTypes, output_format: kittycad.models.valid_file_types.ValidFileTypes, content: bytes, *, client: kittycad.client.AuthenticatedClient) -> kittycad.types.Response[typing.Union[typing.Any, kittycad.models.file_conversion.FileConversion]]
-

- - - - - -
 
-Data
       Any = typing.Any
-Dict = typing.Dict
-Optional = typing.Optional
-Union = typing.Union
- \ No newline at end of file diff --git a/docs/html/kittycad.api.file.html b/docs/html/kittycad.api.file.html deleted file mode 100644 index d7cbbe011..000000000 --- a/docs/html/kittycad.api.file.html +++ /dev/null @@ -1,23 +0,0 @@ - -Python: package kittycad.api.file - - - - - -
 
- 
kittycad.api.file
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/api/file/__init__.py
-

-

- - - - - -
 
-Package Contents
       
file_conversion_by_id
-
file_convert
-
- \ No newline at end of file diff --git a/docs/html/kittycad.api.html b/docs/html/kittycad.api.html deleted file mode 100644 index 05ad564b2..000000000 --- a/docs/html/kittycad.api.html +++ /dev/null @@ -1,23 +0,0 @@ - -Python: package kittycad.api - - - - - -
 
- 
kittycad.api
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/api/__init__.py
-

Contains methods for accessing the API

-

- - - - - -
 
-Package Contents
       
file (package)
-
meta (package)
-
- \ No newline at end of file diff --git a/docs/html/kittycad.api.meta.html b/docs/html/kittycad.api.meta.html deleted file mode 100644 index e15bee581..000000000 --- a/docs/html/kittycad.api.meta.html +++ /dev/null @@ -1,24 +0,0 @@ - -Python: package kittycad.api.meta - - - - - -
 
- 
kittycad.api.meta
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/api/meta/__init__.py
-

-

- - - - - -
 
-Package Contents
       
meta_debug_instance
-
meta_debug_session
-
ping
-
- \ No newline at end of file diff --git a/docs/html/kittycad.api.meta.meta_debug_instance.html b/docs/html/kittycad.api.meta.meta_debug_instance.html deleted file mode 100644 index ce7f9dee5..000000000 --- a/docs/html/kittycad.api.meta.meta_debug_instance.html +++ /dev/null @@ -1,43 +0,0 @@ - -Python: module kittycad.api.meta.meta_debug_instance - - - - - -
 
- 
kittycad.api.meta.meta_debug_instance
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/api/meta/meta_debug_instance.py
-

-

- - - - - -
 
-Modules
       
httpx
-

- - - - - -
 
-Functions
       
async asyncio(*, client: kittycad.client.AuthenticatedClient) -> Union[Any, kittycad.models.instance_metadata.InstanceMetadata, NoneType]
Get information about this specific API server instance. This is primarily used for debugging.
-
async asyncio_detailed(*, client: kittycad.client.AuthenticatedClient) -> kittycad.types.Response[typing.Union[typing.Any, kittycad.models.instance_metadata.InstanceMetadata]]
-
sync(*, client: kittycad.client.AuthenticatedClient) -> Union[Any, kittycad.models.instance_metadata.InstanceMetadata, NoneType]
Get information about this specific API server instance. This is primarily used for debugging.
-
sync_detailed(*, client: kittycad.client.AuthenticatedClient) -> kittycad.types.Response[typing.Union[typing.Any, kittycad.models.instance_metadata.InstanceMetadata]]
-

- - - - - -
 
-Data
       Any = typing.Any
-Dict = typing.Dict
-Optional = typing.Optional
-Union = typing.Union
- \ No newline at end of file diff --git a/docs/html/kittycad.api.meta.meta_debug_session.html b/docs/html/kittycad.api.meta.meta_debug_session.html deleted file mode 100644 index 237a0a514..000000000 --- a/docs/html/kittycad.api.meta.meta_debug_session.html +++ /dev/null @@ -1,43 +0,0 @@ - -Python: module kittycad.api.meta.meta_debug_session - - - - - -
 
- 
kittycad.api.meta.meta_debug_session
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/api/meta/meta_debug_session.py
-

-

- - - - - -
 
-Modules
       
httpx
-

- - - - - -
 
-Functions
       
async asyncio(*, client: kittycad.client.AuthenticatedClient) -> Union[Any, kittycad.models.auth_session.AuthSession, NoneType]
Get information about your API request session. This is primarily used for debugging.
-
async asyncio_detailed(*, client: kittycad.client.AuthenticatedClient) -> kittycad.types.Response[typing.Union[typing.Any, kittycad.models.auth_session.AuthSession]]
-
sync(*, client: kittycad.client.AuthenticatedClient) -> Union[Any, kittycad.models.auth_session.AuthSession, NoneType]
Get information about your API request session. This is primarily used for debugging.
-
sync_detailed(*, client: kittycad.client.AuthenticatedClient) -> kittycad.types.Response[typing.Union[typing.Any, kittycad.models.auth_session.AuthSession]]
-

- - - - - -
 
-Data
       Any = typing.Any
-Dict = typing.Dict
-Optional = typing.Optional
-Union = typing.Union
- \ No newline at end of file diff --git a/docs/html/kittycad.api.meta.ping.html b/docs/html/kittycad.api.meta.ping.html deleted file mode 100644 index 31eff1cc0..000000000 --- a/docs/html/kittycad.api.meta.ping.html +++ /dev/null @@ -1,42 +0,0 @@ - -Python: module kittycad.api.meta.ping - - - - - -
 
- 
kittycad.api.meta.ping
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/api/meta/ping.py
-

-

- - - - - -
 
-Modules
       
httpx
-

- - - - - -
 
-Functions
       
async asyncio(*, client: kittycad.client.Client) -> Optional[kittycad.models.message.Message]
Simple ping to the server.
-
async asyncio_detailed(*, client: kittycad.client.Client) -> kittycad.types.Response[kittycad.models.message.Message]
-
sync(*, client: kittycad.client.Client) -> Optional[kittycad.models.message.Message]
Simple ping to the server.
-
sync_detailed(*, client: kittycad.client.Client) -> kittycad.types.Response[kittycad.models.message.Message]
-

- - - - - -
 
-Data
       Any = typing.Any
-Dict = typing.Dict
-Optional = typing.Optional
- \ No newline at end of file diff --git a/docs/html/kittycad.client.html b/docs/html/kittycad.client.html deleted file mode 100644 index 69f4c4eaa..000000000 --- a/docs/html/kittycad.client.html +++ /dev/null @@ -1,171 +0,0 @@ - -Python: module kittycad.client - - - - - -
 
- 
kittycad.client
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/client.py
-

-

- - - - - -
 
-Modules
       
attr
-
ssl
-

- - - - - -
 
-Classes
       
-
builtins.object -
-
-
Client -
-
-
AuthenticatedClient -
-
-
-
-
-

- - - - - - - -
 
-class AuthenticatedClient(Client)
   AuthenticatedClient(base_url: str = 'https://api.kittycad.io', *, cookies: Dict[str, str] = NOTHING, headers: Dict[str, str] = NOTHING, timeout: float = 5.0, verify_ssl: Union[str, bool, ssl.SSLContext] = True, token: str) -&gt; None

-A Client which has been authenticated for use on secured endpoints
 
 
Method resolution order:
-
AuthenticatedClient
-
Client
-
builtins.object
-
-
-Methods defined here:
-
__eq__(self, other)
Method generated by attrs for class AuthenticatedClient.
- -
__ge__(self, other)
Method generated by attrs for class AuthenticatedClient.
- -
__gt__(self, other)
Method generated by attrs for class AuthenticatedClient.
- -
__init__(self, base_url: str = 'https://api.kittycad.io', *, cookies: Dict[str, str] = NOTHING, headers: Dict[str, str] = NOTHING, timeout: float = 5.0, verify_ssl: Union[str, bool, ssl.SSLContext] = True, token: str) -> None
Method generated by attrs for class AuthenticatedClient.
- -
__le__(self, other)
Method generated by attrs for class AuthenticatedClient.
- -
__lt__(self, other)
Method generated by attrs for class AuthenticatedClient.
- -
__ne__(self, other)
Method generated by attrs for class AuthenticatedClient.
- -
__repr__(self)
Method generated by attrs for class AuthenticatedClient.
- -
get_headers(self) -> Dict[str, str]
Get headers to be used in authenticated endpoints
- -
-Data and other attributes defined here:
-
__annotations__ = {'token': <class 'str'>}
- -
__attrs_attrs__ = (Attribute(name='base_url', default='https://api... kw_only=True, inherited=False, on_setattr=None))
- -
__hash__ = None
- -
-Methods inherited from Client:
-
get_cookies(self) -> Dict[str, str]
- -
get_timeout(self) -> float
- -
with_cookies(self, cookies: Dict[str, str]) -> 'Client'
Get a new client matching this one with additional cookies
- -
with_headers(self, headers: Dict[str, str]) -> 'Client'
Get a new client matching this one with additional headers
- -
with_timeout(self, timeout: float) -> 'Client'
Get a new client matching this one with a new timeout (in seconds)
- -
-Data descriptors inherited from Client:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-

- - - - - - - -
 
-class Client(builtins.object)
   Client(base_url: str = 'https://api.kittycad.io', *, cookies: Dict[str, str] = NOTHING, headers: Dict[str, str] = NOTHING, timeout: float = 5.0, verify_ssl: Union[str, bool, ssl.SSLContext] = True) -&gt; None

-A class for keeping track of data related to the API
 
 Methods defined here:
-
__eq__(self, other)
Method generated by attrs for class Client.
- -
__ge__(self, other)
Method generated by attrs for class Client.
- -
__gt__(self, other)
Method generated by attrs for class Client.
- -
__init__(self, base_url: str = 'https://api.kittycad.io', *, cookies: Dict[str, str] = NOTHING, headers: Dict[str, str] = NOTHING, timeout: float = 5.0, verify_ssl: Union[str, bool, ssl.SSLContext] = True) -> None
Method generated by attrs for class Client.
- -
__le__(self, other)
Method generated by attrs for class Client.
- -
__lt__(self, other)
Method generated by attrs for class Client.
- -
__ne__(self, other)
Method generated by attrs for class Client.
- -
__repr__(self)
Method generated by attrs for class Client.
- -
get_cookies(self) -> Dict[str, str]
- -
get_headers(self) -> Dict[str, str]
Get headers to be used in all endpoints
- -
get_timeout(self) -> float
- -
with_cookies(self, cookies: Dict[str, str]) -> 'Client'
Get a new client matching this one with additional cookies
- -
with_headers(self, headers: Dict[str, str]) -> 'Client'
Get a new client matching this one with additional headers
- -
with_timeout(self, timeout: float) -> 'Client'
Get a new client matching this one with a new timeout (in seconds)
- -
-Data descriptors defined here:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes defined here:
-
__annotations__ = {'base_url': <class 'str'>, 'cookies': typing.Dict[str, str], 'headers': typing.Dict[str, str], 'timeout': <class 'float'>, 'verify_ssl': typing.Union[str, bool, ssl.SSLContext]}
- -
__attrs_attrs__ = (Attribute(name='base_url', default='https://api... kw_only=True, inherited=False, on_setattr=None))
- -
__hash__ = None
- -

- - - - - -
 
-Data
       Dict = typing.Dict
-Union = typing.Union
- \ No newline at end of file diff --git a/docs/html/kittycad.models.auth_session.html b/docs/html/kittycad.models.auth_session.html deleted file mode 100644 index e02029336..000000000 --- a/docs/html/kittycad.models.auth_session.html +++ /dev/null @@ -1,113 +0,0 @@ - -Python: module kittycad.models.auth_session - - - - - -
 
- 
kittycad.models.auth_session
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/models/auth_session.py
-

-

- - - - - -
 
-Modules
       
attr
-
datetime
-

- - - - - -
 
-Classes
       
-
builtins.object -
-
-
AuthSession -
-
-
-

- - - - - - - -
 
-class AuthSession(builtins.object)
   AuthSession(created_at: Union[kittycad.types.Unset, datetime.datetime] = &lt;kittycad.types.Unset object at 0x7fd2cbf1ddb0&gt;, email: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd2cbf1ddb0&gt;, id: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd2cbf1ddb0&gt;, ip_address: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd2cbf1ddb0&gt;, is_valid: Union[kittycad.types.Unset, bool] = False, token: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd2cbf1ddb0&gt;, user_id: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd2cbf1ddb0&gt;) -&gt; None

-
 
 Methods defined here:
-
__contains__(self, key: str) -> bool
- -
__delitem__(self, key: str) -> None
- -
__eq__(self, other)
Method generated by attrs for class AuthSession.
- -
__ge__(self, other)
Method generated by attrs for class AuthSession.
- -
__getitem__(self, key: str) -> Any
- -
__gt__(self, other)
Method generated by attrs for class AuthSession.
- -
__init__(self, created_at: Union[kittycad.types.Unset, datetime.datetime] = <kittycad.types.Unset object at 0x7fd2cbf1ddb0>, email: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd2cbf1ddb0>, id: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd2cbf1ddb0>, ip_address: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd2cbf1ddb0>, is_valid: Union[kittycad.types.Unset, bool] = False, token: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd2cbf1ddb0>, user_id: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd2cbf1ddb0>) -> None
Method generated by attrs for class AuthSession.
- -
__le__(self, other)
Method generated by attrs for class AuthSession.
- -
__lt__(self, other)
Method generated by attrs for class AuthSession.
- -
__ne__(self, other)
Method generated by attrs for class AuthSession.
- -
__repr__(self)
Method generated by attrs for class AuthSession.
- -
__setitem__(self, key: str, value: Any) -> None
- -
to_dict(self) -> Dict[str, Any]
- -
-Class methods defined here:
-
from_dict(src_dict: Dict[str, Any]) -> ~T from builtins.type
- -
-Readonly properties defined here:
-
additional_keys
-
-
-Data descriptors defined here:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes defined here:
-
__annotations__ = {'additional_properties': typing.Dict[str, typing.Any], 'created_at': typing.Union[kittycad.types.Unset, datetime.datetime], 'email': typing.Union[kittycad.types.Unset, str], 'id': typing.Union[kittycad.types.Unset, str], 'ip_address': typing.Union[kittycad.types.Unset, str], 'is_valid': typing.Union[kittycad.types.Unset, bool], 'token': typing.Union[kittycad.types.Unset, str], 'user_id': typing.Union[kittycad.types.Unset, str]}
- -
__attrs_attrs__ = (Attribute(name='created_at', default=<kittycad....kw_only=False, inherited=False, on_setattr=None))
- -
__hash__ = None
- -

- - - - - -
 
-Data
       Any = typing.Any
-Dict = typing.Dict
-List = typing.List
-T = ~T
-Type = typing.Type
-UNSET = <kittycad.types.Unset object>
-Union = typing.Union
- \ No newline at end of file diff --git a/docs/html/kittycad.models.environment.html b/docs/html/kittycad.models.environment.html deleted file mode 100644 index be9615223..000000000 --- a/docs/html/kittycad.models.environment.html +++ /dev/null @@ -1,76 +0,0 @@ - -Python: module kittycad.models.environment - - - - - -
 
- 
kittycad.models.environment
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/models/environment.py
-

-

- - - - - -
 
-Classes
       
-
builtins.str(builtins.object) -
-
-
Environment(builtins.str, enum.Enum) -
-
-
enum.Enum(builtins.object) -
-
-
Environment(builtins.str, enum.Enum) -
-
-
-

- - - - - - - -
 
-class Environment(builtins.str, enum.Enum)
   Environment(value, names=None, *, module=None, qualname=None, type=None, start=1)

-An enumeration.
 
 
Method resolution order:
-
Environment
-
builtins.str
-
enum.Enum
-
builtins.object
-
-
-Data and other attributes defined here:
-
DEVELOPMENT = <Environment.DEVELOPMENT: 'DEVELOPMENT'>
- -
PREVIEW = <Environment.PREVIEW: 'PREVIEW'>
- -
PRODUCTION = <Environment.PRODUCTION: 'PRODUCTION'>
- -
-Data descriptors inherited from enum.Enum:
-
name
-
The name of the Enum member.
-
-
value
-
The value of the Enum member.
-
-
-Readonly properties inherited from enum.EnumMeta:
-
__members__
-
Returns a mapping of member name->value.

-This mapping lists all enum members, including aliases. Note that this
-is a read-only view of the internal mapping.
-
-

- \ No newline at end of file diff --git a/docs/html/kittycad.models.error_message.html b/docs/html/kittycad.models.error_message.html deleted file mode 100644 index 9a84898ac..000000000 --- a/docs/html/kittycad.models.error_message.html +++ /dev/null @@ -1,112 +0,0 @@ - -Python: module kittycad.models.error_message - - - - - -
 
- 
kittycad.models.error_message
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/models/error_message.py
-

-

- - - - - -
 
-Modules
       
attr
-

- - - - - -
 
-Classes
       
-
builtins.object -
-
-
ErrorMessage -
-
-
-

- - - - - - - -
 
-class ErrorMessage(builtins.object)
   ErrorMessage(message: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7f36b5e59de0&gt;) -&gt; None

-
 
 Methods defined here:
-
__contains__(self, key: str) -> bool
- -
__delitem__(self, key: str) -> None
- -
__eq__(self, other)
Method generated by attrs for class ErrorMessage.
- -
__ge__(self, other)
Method generated by attrs for class ErrorMessage.
- -
__getitem__(self, key: str) -> Any
- -
__gt__(self, other)
Method generated by attrs for class ErrorMessage.
- -
__init__(self, message: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7f36b5e59de0>) -> None
Method generated by attrs for class ErrorMessage.
- -
__le__(self, other)
Method generated by attrs for class ErrorMessage.
- -
__lt__(self, other)
Method generated by attrs for class ErrorMessage.
- -
__ne__(self, other)
Method generated by attrs for class ErrorMessage.
- -
__repr__(self)
Method generated by attrs for class ErrorMessage.
- -
__setitem__(self, key: str, value: Any) -> None
- -
to_dict(self) -> Dict[str, Any]
- -
-Class methods defined here:
-
from_dict(src_dict: Dict[str, Any]) -> ~T from builtins.type
- -
-Readonly properties defined here:
-
additional_keys
-
-
-Data descriptors defined here:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes defined here:
-
__annotations__ = {'additional_properties': typing.Dict[str, typing.Any], 'message': typing.Union[kittycad.types.Unset, str]}
- -
__attrs_attrs__ = (Attribute(name='message', default=<kittycad.typ...kw_only=False, inherited=False, on_setattr=None))
- -
__hash__ = None
- -

- - - - - -
 
-Data
       Any = typing.Any
-Dict = typing.Dict
-List = typing.List
-T = ~T
-Type = typing.Type
-UNSET = <kittycad.types.Unset object>
-Union = typing.Union
- \ No newline at end of file diff --git a/docs/html/kittycad.models.file_conversion.html b/docs/html/kittycad.models.file_conversion.html deleted file mode 100644 index 1355e6a59..000000000 --- a/docs/html/kittycad.models.file_conversion.html +++ /dev/null @@ -1,113 +0,0 @@ - -Python: module kittycad.models.file_conversion - - - - - -
 
- 
kittycad.models.file_conversion
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/models/file_conversion.py
-

-

- - - - - -
 
-Modules
       
attr
-
datetime
-

- - - - - -
 
-Classes
       
-
builtins.object -
-
-
FileConversion -
-
-
-

- - - - - - - -
 
-class FileConversion(builtins.object)
   FileConversion(completed_at: Union[kittycad.types.Unset, datetime.datetime] = &lt;kittycad.types.Unset object at 0x7f6b204d9de0&gt;, created_at: Union[kittycad.types.Unset, datetime.datetime] = &lt;kittycad.types.Unset object at 0x7f6b204d9de0&gt;, id: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7f6b204d9de0&gt;, output: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7f6b204d9de0&gt;, output_format: Union[kittycad.types.Unset, kittycad.models.valid_file_types.ValidFileTypes] = &lt;kittycad.types.Unset object at 0x7f6b204d9de0&gt;, src_format: Union[kittycad.types.Unset, kittycad.models.valid_file_types.ValidFileTypes] = &lt;kittycad.types.Unset object at 0x7f6b204d9de0&gt;, status: Union[kittycad.types.Unset, kittycad.models.file_conversion_status.FileConversionStatus] = &lt;kittycad.types.Unset object at 0x7f6b204d9de0&gt;) -&gt; None

-
 
 Methods defined here:
-
__contains__(self, key: str) -> bool
- -
__delitem__(self, key: str) -> None
- -
__eq__(self, other)
Method generated by attrs for class FileConversion.
- -
__ge__(self, other)
Method generated by attrs for class FileConversion.
- -
__getitem__(self, key: str) -> Any
- -
__gt__(self, other)
Method generated by attrs for class FileConversion.
- -
__init__(self, completed_at: Union[kittycad.types.Unset, datetime.datetime] = <kittycad.types.Unset object at 0x7f6b204d9de0>, created_at: Union[kittycad.types.Unset, datetime.datetime] = <kittycad.types.Unset object at 0x7f6b204d9de0>, id: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7f6b204d9de0>, output: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7f6b204d9de0>, output_format: Union[kittycad.types.Unset, kittycad.models.valid_file_types.ValidFileTypes] = <kittycad.types.Unset object at 0x7f6b204d9de0>, src_format: Union[kittycad.types.Unset, kittycad.models.valid_file_types.ValidFileTypes] = <kittycad.types.Unset object at 0x7f6b204d9de0>, status: Union[kittycad.types.Unset, kittycad.models.file_conversion_status.FileConversionStatus] = <kittycad.types.Unset object at 0x7f6b204d9de0>) -> None
Method generated by attrs for class FileConversion.
- -
__le__(self, other)
Method generated by attrs for class FileConversion.
- -
__lt__(self, other)
Method generated by attrs for class FileConversion.
- -
__ne__(self, other)
Method generated by attrs for class FileConversion.
- -
__repr__(self)
Method generated by attrs for class FileConversion.
- -
__setitem__(self, key: str, value: Any) -> None
- -
to_dict(self) -> Dict[str, Any]
- -
-Class methods defined here:
-
from_dict(src_dict: Dict[str, Any]) -> ~T from builtins.type
- -
-Readonly properties defined here:
-
additional_keys
-
-
-Data descriptors defined here:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes defined here:
-
__annotations__ = {'additional_properties': typing.Dict[str, typing.Any], 'completed_at': typing.Union[kittycad.types.Unset, datetime.datetime], 'created_at': typing.Union[kittycad.types.Unset, datetime.datetime], 'id': typing.Union[kittycad.types.Unset, str], 'output': typing.Union[kittycad.types.Unset, str], 'output_format': typing.Union[kittycad.types.Unset, kittycad.models.valid_file_types.ValidFileTypes], 'src_format': typing.Union[kittycad.types.Unset, kittycad.models.valid_file_types.ValidFileTypes], 'status': typing.Union[kittycad.types.Unset, kittycad.models.file_conversion_status.FileConversionStatus]}
- -
__attrs_attrs__ = (Attribute(name='completed_at', default=<kittyca...kw_only=False, inherited=False, on_setattr=None))
- -
__hash__ = None
- -

- - - - - -
 
-Data
       Any = typing.Any
-Dict = typing.Dict
-List = typing.List
-T = ~T
-Type = typing.Type
-UNSET = <kittycad.types.Unset object>
-Union = typing.Union
- \ No newline at end of file diff --git a/docs/html/kittycad.models.file_conversion_status.html b/docs/html/kittycad.models.file_conversion_status.html deleted file mode 100644 index eb624a391..000000000 --- a/docs/html/kittycad.models.file_conversion_status.html +++ /dev/null @@ -1,80 +0,0 @@ - -Python: module kittycad.models.file_conversion_status - - - - - -
 
- 
kittycad.models.file_conversion_status
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/models/file_conversion_status.py
-

-

- - - - - -
 
-Classes
       
-
builtins.str(builtins.object) -
-
-
FileConversionStatus(builtins.str, enum.Enum) -
-
-
enum.Enum(builtins.object) -
-
-
FileConversionStatus(builtins.str, enum.Enum) -
-
-
-

- - - - - - - -
 
-class FileConversionStatus(builtins.str, enum.Enum)
   FileConversionStatus(value, names=None, *, module=None, qualname=None, type=None, start=1)

-An enumeration.
 
 
Method resolution order:
-
FileConversionStatus
-
builtins.str
-
enum.Enum
-
builtins.object
-
-
-Data and other attributes defined here:
-
COMPLETED = <FileConversionStatus.COMPLETED: 'Completed'>
- -
FAILED = <FileConversionStatus.FAILED: 'Failed'>
- -
IN_PROGRESS = <FileConversionStatus.IN_PROGRESS: 'In Progress'>
- -
QUEUED = <FileConversionStatus.QUEUED: 'Queued'>
- -
UPLOADED = <FileConversionStatus.UPLOADED: 'Uploaded'>
- -
-Data descriptors inherited from enum.Enum:
-
name
-
The name of the Enum member.
-
-
value
-
The value of the Enum member.
-
-
-Readonly properties inherited from enum.EnumMeta:
-
__members__
-
Returns a mapping of member name->value.

-This mapping lists all enum members, including aliases. Note that this
-is a read-only view of the internal mapping.
-
-

- \ No newline at end of file diff --git a/docs/html/kittycad.models.html b/docs/html/kittycad.models.html deleted file mode 100644 index bc4a7e757..000000000 --- a/docs/html/kittycad.models.html +++ /dev/null @@ -1,29 +0,0 @@ - -Python: package kittycad.models - - - - - -
 
- 
kittycad.models
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/models/__init__.py
-

Contains all the data models used in inputs/outputs

-

- - - - - -
 
-Package Contents
       
auth_session
-environment
-
error_message
-file_conversion
-
file_conversion_status
-instance_metadata
-
message
-valid_file_types
-
- \ No newline at end of file diff --git a/docs/html/kittycad.models.instance_metadata.html b/docs/html/kittycad.models.instance_metadata.html deleted file mode 100644 index 96fca1eae..000000000 --- a/docs/html/kittycad.models.instance_metadata.html +++ /dev/null @@ -1,112 +0,0 @@ - -Python: module kittycad.models.instance_metadata - - - - - -
 
- 
kittycad.models.instance_metadata
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/models/instance_metadata.py
-

-

- - - - - -
 
-Modules
       
attr
-

- - - - - -
 
-Classes
       
-
builtins.object -
-
-
InstanceMetadata -
-
-
-

- - - - - - - -
 
-class InstanceMetadata(builtins.object)
   InstanceMetadata(cpu_platform: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd00a5cdd80&gt;, description: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd00a5cdd80&gt;, environment: Union[kittycad.types.Unset, kittycad.models.environment.Environment] = &lt;kittycad.types.Unset object at 0x7fd00a5cdd80&gt;, git_hash: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd00a5cdd80&gt;, hostname: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd00a5cdd80&gt;, id: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd00a5cdd80&gt;, image: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd00a5cdd80&gt;, ip_address: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd00a5cdd80&gt;, machine_type: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd00a5cdd80&gt;, name: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd00a5cdd80&gt;, zone: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7fd00a5cdd80&gt;) -&gt; None

-
 
 Methods defined here:
-
__contains__(self, key: str) -> bool
- -
__delitem__(self, key: str) -> None
- -
__eq__(self, other)
Method generated by attrs for class InstanceMetadata.
- -
__ge__(self, other)
Method generated by attrs for class InstanceMetadata.
- -
__getitem__(self, key: str) -> Any
- -
__gt__(self, other)
Method generated by attrs for class InstanceMetadata.
- -
__init__(self, cpu_platform: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd00a5cdd80>, description: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd00a5cdd80>, environment: Union[kittycad.types.Unset, kittycad.models.environment.Environment] = <kittycad.types.Unset object at 0x7fd00a5cdd80>, git_hash: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd00a5cdd80>, hostname: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd00a5cdd80>, id: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd00a5cdd80>, image: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd00a5cdd80>, ip_address: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd00a5cdd80>, machine_type: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd00a5cdd80>, name: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd00a5cdd80>, zone: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7fd00a5cdd80>) -> None
Method generated by attrs for class InstanceMetadata.
- -
__le__(self, other)
Method generated by attrs for class InstanceMetadata.
- -
__lt__(self, other)
Method generated by attrs for class InstanceMetadata.
- -
__ne__(self, other)
Method generated by attrs for class InstanceMetadata.
- -
__repr__(self)
Method generated by attrs for class InstanceMetadata.
- -
__setitem__(self, key: str, value: Any) -> None
- -
to_dict(self) -> Dict[str, Any]
- -
-Class methods defined here:
-
from_dict(src_dict: Dict[str, Any]) -> ~T from builtins.type
- -
-Readonly properties defined here:
-
additional_keys
-
-
-Data descriptors defined here:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes defined here:
-
__annotations__ = {'additional_properties': typing.Dict[str, typing.Any], 'cpu_platform': typing.Union[kittycad.types.Unset, str], 'description': typing.Union[kittycad.types.Unset, str], 'environment': typing.Union[kittycad.types.Unset, kittycad.models.environment.Environment], 'git_hash': typing.Union[kittycad.types.Unset, str], 'hostname': typing.Union[kittycad.types.Unset, str], 'id': typing.Union[kittycad.types.Unset, str], 'image': typing.Union[kittycad.types.Unset, str], 'ip_address': typing.Union[kittycad.types.Unset, str], 'machine_type': typing.Union[kittycad.types.Unset, str], ...}
- -
__attrs_attrs__ = (Attribute(name='cpu_platform', default=<kittyca...kw_only=False, inherited=False, on_setattr=None))
- -
__hash__ = None
- -

- - - - - -
 
-Data
       Any = typing.Any
-Dict = typing.Dict
-List = typing.List
-T = ~T
-Type = typing.Type
-UNSET = <kittycad.types.Unset object>
-Union = typing.Union
- \ No newline at end of file diff --git a/docs/html/kittycad.models.message.html b/docs/html/kittycad.models.message.html deleted file mode 100644 index d22e47175..000000000 --- a/docs/html/kittycad.models.message.html +++ /dev/null @@ -1,112 +0,0 @@ - -Python: module kittycad.models.message - - - - - -
 
- 
kittycad.models.message
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/models/message.py
-

-

- - - - - -
 
-Modules
       
attr
-

- - - - - -
 
-Classes
       
-
builtins.object -
-
-
Message -
-
-
-

- - - - - - - -
 
-class Message(builtins.object)
   Message(message: Union[kittycad.types.Unset, str] = &lt;kittycad.types.Unset object at 0x7f4b3f289d50&gt;) -&gt; None

-
 
 Methods defined here:
-
__contains__(self, key: str) -> bool
- -
__delitem__(self, key: str) -> None
- -
__eq__(self, other)
Method generated by attrs for class Message.
- -
__ge__(self, other)
Method generated by attrs for class Message.
- -
__getitem__(self, key: str) -> Any
- -
__gt__(self, other)
Method generated by attrs for class Message.
- -
__init__(self, message: Union[kittycad.types.Unset, str] = <kittycad.types.Unset object at 0x7f4b3f289d50>) -> None
Method generated by attrs for class Message.
- -
__le__(self, other)
Method generated by attrs for class Message.
- -
__lt__(self, other)
Method generated by attrs for class Message.
- -
__ne__(self, other)
Method generated by attrs for class Message.
- -
__repr__(self)
Method generated by attrs for class Message.
- -
__setitem__(self, key: str, value: Any) -> None
- -
to_dict(self) -> Dict[str, Any]
- -
-Class methods defined here:
-
from_dict(src_dict: Dict[str, Any]) -> ~T from builtins.type
- -
-Readonly properties defined here:
-
additional_keys
-
-
-Data descriptors defined here:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes defined here:
-
__annotations__ = {'additional_properties': typing.Dict[str, typing.Any], 'message': typing.Union[kittycad.types.Unset, str]}
- -
__attrs_attrs__ = (Attribute(name='message', default=<kittycad.typ...kw_only=False, inherited=False, on_setattr=None))
- -
__hash__ = None
- -

- - - - - -
 
-Data
       Any = typing.Any
-Dict = typing.Dict
-List = typing.List
-T = ~T
-Type = typing.Type
-UNSET = <kittycad.types.Unset object>
-Union = typing.Union
- \ No newline at end of file diff --git a/docs/html/kittycad.models.valid_file_types.html b/docs/html/kittycad.models.valid_file_types.html deleted file mode 100644 index ba855fc93..000000000 --- a/docs/html/kittycad.models.valid_file_types.html +++ /dev/null @@ -1,80 +0,0 @@ - -Python: module kittycad.models.valid_file_types - - - - - -
 
- 
kittycad.models.valid_file_types
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/models/valid_file_types.py
-

-

- - - - - -
 
-Classes
       
-
builtins.str(builtins.object) -
-
-
ValidFileTypes(builtins.str, enum.Enum) -
-
-
enum.Enum(builtins.object) -
-
-
ValidFileTypes(builtins.str, enum.Enum) -
-
-
-

- - - - - - - -
 
-class ValidFileTypes(builtins.str, enum.Enum)
   ValidFileTypes(value, names=None, *, module=None, qualname=None, type=None, start=1)

-An enumeration.
 
 
Method resolution order:
-
ValidFileTypes
-
builtins.str
-
enum.Enum
-
builtins.object
-
-
-Data and other attributes defined here:
-
DWG = <ValidFileTypes.DWG: 'dwg'>
- -
DXF = <ValidFileTypes.DXF: 'dxf'>
- -
OBJ = <ValidFileTypes.OBJ: 'obj'>
- -
STEP = <ValidFileTypes.STEP: 'step'>
- -
STL = <ValidFileTypes.STL: 'stl'>
- -
-Data descriptors inherited from enum.Enum:
-
name
-
The name of the Enum member.
-
-
value
-
The value of the Enum member.
-
-
-Readonly properties inherited from enum.EnumMeta:
-
__members__
-
Returns a mapping of member name->value.

-This mapping lists all enum members, including aliases. Note that this
-is a read-only view of the internal mapping.
-
-

- \ No newline at end of file diff --git a/docs/html/kittycad.types.html b/docs/html/kittycad.types.html deleted file mode 100644 index 29a61504f..000000000 --- a/docs/html/kittycad.types.html +++ /dev/null @@ -1,161 +0,0 @@ - -Python: module kittycad.types - - - - - -
 
- 
kittycad.types
index
/home/runner/work/kittycad.py/kittycad.py/kittycad/types.py
-

Contains some shared types for properties

-

- - - - - -
 
-Modules
       
attr
-

- - - - - -
 
-Classes
       
-
builtins.object -
-
-
File -
-
-
typing.Generic(builtins.object) -
-
-
Response -
-
-
-

- - - - - - - -
 
-class File(builtins.object)
   File(payload: Union[BinaryIO, TextIO], file_name: Optional[str] = None, mime_type: Optional[str] = None) -&gt; None

-Contains information for file uploads
 
 Methods defined here:
-
__eq__(self, other)
Method generated by attrs for class File.
- -
__ge__(self, other)
Method generated by attrs for class File.
- -
__gt__(self, other)
Method generated by attrs for class File.
- -
__init__(self, payload: Union[BinaryIO, TextIO], file_name: Optional[str] = None, mime_type: Optional[str] = None) -> None
Method generated by attrs for class File.
- -
__le__(self, other)
Method generated by attrs for class File.
- -
__lt__(self, other)
Method generated by attrs for class File.
- -
__ne__(self, other)
Method generated by attrs for class File.
- -
__repr__(self)
Method generated by attrs for class File.
- -
to_tuple(self) -> Tuple[Optional[str], Union[BinaryIO, TextIO], Optional[str]]
Return a tuple representation that httpx will accept for multipart/form-data
- -
-Data descriptors defined here:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes defined here:
-
__annotations__ = {'file_name': typing.Optional[str], 'mime_type': typing.Optional[str], 'payload': typing.Union[typing.BinaryIO, typing.TextIO]}
- -
__attrs_attrs__ = (Attribute(name='payload', default=NOTHING, vali...kw_only=False, inherited=False, on_setattr=None))
- -
__hash__ = None
- -

- - - - - - - -
 
-class Response(typing.Generic)
   Response(status_code: int, content: bytes, headers: MutableMapping[str, str], parsed: Optional[~T]) -&gt; None

-A response from an endpoint
 
 
Method resolution order:
-
Response
-
typing.Generic
-
builtins.object
-
-
-Methods defined here:
-
__eq__(self, other)
Method generated by attrs for class Response.
- -
__ge__(self, other)
Method generated by attrs for class Response.
- -
__gt__(self, other)
Method generated by attrs for class Response.
- -
__init__(self, status_code: int, content: bytes, headers: MutableMapping[str, str], parsed: Optional[~T]) -> None
Method generated by attrs for class Response.
- -
__le__(self, other)
Method generated by attrs for class Response.
- -
__lt__(self, other)
Method generated by attrs for class Response.
- -
__ne__(self, other)
Method generated by attrs for class Response.
- -
__repr__(self)
Method generated by attrs for class Response.
- -
-Data descriptors defined here:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes defined here:
-
__annotations__ = {'content': <class 'bytes'>, 'headers': typing.MutableMapping[str, str], 'parsed': typing.Optional[~T], 'status_code': <class 'int'>}
- -
__attrs_attrs__ = (Attribute(name='status_code', default=NOTHING, ...kw_only=False, inherited=False, on_setattr=None))
- -
__hash__ = None
- -
__orig_bases__ = (typing.Generic[~T],)
- -
__parameters__ = (~T,)
- -
-Class methods inherited from typing.Generic:
-
__class_getitem__(params) from builtins.type
- -
__init_subclass__(*args, **kwargs) from builtins.type
This method is called when a class is subclassed.

-The default implementation does nothing. It may be
-overridden to extend subclasses.
- -

- - - - - -
 
-Data
       FileJsonType = typing.Tuple[typing.Optional[str], typing.Union[...g.BinaryIO, typing.TextIO], typing.Optional[str]]
-__all__ = ['File', 'Response', 'FileJsonType']
-__annotations__ = {'UNSET': <class 'kittycad.types.Unset'>}
- \ No newline at end of file diff --git a/docs/html/objects.inv b/docs/html/objects.inv new file mode 100644 index 0000000000000000000000000000000000000000..b6dbc91493850973f9c33de7693347d4c9b37362 GIT binary patch literal 263 zcmY#Z2rkIT%&Sny%qvUHE6FdaR47X=D$dN$Q!wIERtPA{&q_@$u~Nv+EGel>PD}xc zg+b)46b$qX^o)T5AsML(MX9-onRzLxMGE<83MCnt#R_SeIjIUjIypbLpeVJtI5kC~ zv^X;_U7;!`Gf9uD;+D7n+0$pdJ=X?k=y`5D<>}*fHt>RJh(~+ZtJEn^o@rDx&4}Sh z)% + + + + + + Search — kittycad v0.0.3 documentation + + + + + + + + + + + + + + + + + + + + + + + +

+
+
+ + +
+ +

Search

+ + + + +

+ Searching for multiple words only shows matches that contain + all words. +

+ + +
+ + + +
+ + + +
+ +
+ + +
+ +
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/html/searchindex.js b/docs/html/searchindex.js new file mode 100644 index 000000000..de84abe48 --- /dev/null +++ b/docs/html/searchindex.js @@ -0,0 +1 @@ +Search.setIndex({docnames:["index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,sphinx:56},filenames:["index.rst"],objects:{},objnames:{},objtypes:{},terms:{index:0,modul:0,page:0,search:0},titles:["Welcome to kittycad\u2019s documentation!"],titleterms:{document:0,indic:0,kittycad:0,s:0,tabl:0,welcom:0}}) \ No newline at end of file diff --git a/docs/index.rst b/docs/index.rst new file mode 100644 index 000000000..a67f664a0 --- /dev/null +++ b/docs/index.rst @@ -0,0 +1,20 @@ +.. kittycad documentation master file, created by + sphinx-quickstart on Wed Dec 15 10:15:30 2021. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to kittycad's documentation! +==================================== + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + + + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 000000000..153be5e2f --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=. +set BUILDDIR=_build + +if "%1" == "" goto help + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/pyproject.toml b/pyproject.toml index e6bb9fc7c..1586d4484 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,15 @@ httpx = ">=0.15.4,<0.21.0" attrs = ">=20.1.0,<22.0.0" python-dateutil = "^2.8.0" +[tool.poetry.dev-dependencies] +Sphinx = "^4.3.1" +flake8 = "^4.0.1" +pytest = "^6.2.5" +sphinx-autodoc-typehints = "^1.12.0" +pyenchant = "^3.2.2" +sphinxcontrib-spelling = "^7.3.0" +toml = "^0.10.2" + [build-system] requires = ["poetry>=1.0"] build-backend = "poetry.masonry.api"