pax_global_header00006660000000000000000000000064145064726350014526gustar00rootroot0000000000000052 comment=3adc0011a38e38497ec4311795811532065bc9b3 flask-wtf-1.2.1/000077500000000000000000000000001450647263500134255ustar00rootroot00000000000000flask-wtf-1.2.1/.editorconfig000066400000000000000000000003311450647263500160770ustar00rootroot00000000000000root = true [*] indent_style = space indent_size = 4 insert_final_newline = true trim_trailing_whitespace = true end_of_line = lf charset = utf-8 max_line_length = 88 [*.{yml,yaml,json,js,css,html}] indent_size = 2 flask-wtf-1.2.1/.github/000077500000000000000000000000001450647263500147655ustar00rootroot00000000000000flask-wtf-1.2.1/.github/ISSUE_TEMPLATE/000077500000000000000000000000001450647263500171505ustar00rootroot00000000000000flask-wtf-1.2.1/.github/ISSUE_TEMPLATE/bug-report.md000066400000000000000000000011151450647263500215560ustar00rootroot00000000000000--- name: Bug report about: Report a bug in Flask-WTF --- Environment: - Python version: - Flask-WTF version: - Flask version: flask-wtf-1.2.1/.github/ISSUE_TEMPLATE/config.yml000066400000000000000000000005431450647263500211420ustar00rootroot00000000000000blank_issues_enabled: false contact_links: - name: Questions url: https://stackoverflow.com/questions/tagged/flask-wtforms?tab=Frequent about: Search for and ask questions about your code on Stack Overflow. - name: Questions and discussions url: https://discord.gg/pallets about: Discuss questions about your code on our Discord chat. flask-wtf-1.2.1/.github/ISSUE_TEMPLATE/feature-request.md000066400000000000000000000006561450647263500226220ustar00rootroot00000000000000--- name: Feature request about: Suggest a new feature for Flask-WTF --- flask-wtf-1.2.1/.github/dependabot.yml000066400000000000000000000002471450647263500176200ustar00rootroot00000000000000version: 2 updates: - package-ecosystem: "github-actions" directory: "/" schedule: interval: "monthly" day: "monday" time: "16:00" timezone: "UTC" flask-wtf-1.2.1/.github/pull_request_template.md000066400000000000000000000015711450647263500217320ustar00rootroot00000000000000 - fixes # Checklist: - [ ] Add tests that demonstrate the correct behavior of the change. Tests should fail without the change. - [ ] Add or update relevant docs, in the docs folder and in code. - [ ] Add an entry in `docs/changes.rst` summarizing the change and linking to the issue. Add `.. versionchanged::` entries in any relevant code docs. flask-wtf-1.2.1/.github/workflows/000077500000000000000000000000001450647263500170225ustar00rootroot00000000000000flask-wtf-1.2.1/.github/workflows/lock.yaml000066400000000000000000000004241450647263500206360ustar00rootroot00000000000000name: 'Lock threads' on: schedule: - cron: '0 0 * * *' jobs: lock: runs-on: ubuntu-latest steps: - uses: dessant/lock-threads@v4 with: github-token: ${{ github.token }} issue-inactive-days: 14 pr-inactive-days: 14 flask-wtf-1.2.1/.github/workflows/tests.yaml000066400000000000000000000021161450647263500210500ustar00rootroot00000000000000name: Tests on: push: branches: - main - '*.x' pull_request: branches: - main - '*.x' paths-ignore: - 'docs/**' - '*.rst' jobs: tests: name: ${{ matrix.name }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: include: - {name: '3.11', python: '3.11', tox: 'py311,py-no-babel'} - {name: '3.10', python: '3.10', tox: py310} - {name: '3.9', python: '3.9', tox: py39} - {name: '3.8', python: '3.8', tox: py38} - {name: 'PyPy310', python: 'pypy-3.10', tox: pypy310} - {name: 'PyPy39', python: 'pypy-3.9', tox: pypy39} steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} cache: 'pip' cache-dependency-path: 'requirements/*.txt' - name: update pip run: | pip install -U wheel pip install -U setuptools python -m pip install -U pip - run: pip install tox - run: tox -e ${{ matrix.tox }} flask-wtf-1.2.1/.gitignore000066400000000000000000000002351450647263500154150ustar00rootroot00000000000000/.idea/ /.vscode/ /env/ /venv/ /.venv/ __pycache__/ *.pyc *.egg-info /build/ /dist/ /.tox/ /.pytest_cache/ /.mypy_cache/ /docs/_build/ .coverage .coverage.* flask-wtf-1.2.1/.pre-commit-config.yaml000066400000000000000000000017471450647263500177170ustar00rootroot00000000000000ci: autoupdate_schedule: monthly repos: - repo: https://github.com/asottile/pyupgrade rev: v3.10.1 hooks: - id: pyupgrade args: ["--py37-plus"] - repo: https://github.com/asottile/reorder-python-imports rev: v3.10.0 hooks: - id: reorder-python-imports args: ["--application-directories", "src"] additional_dependencies: ["setuptools>60.9"] - repo: https://github.com/psf/black rev: 23.7.0 hooks: - id: black - repo: https://github.com/PyCQA/flake8 rev: 6.1.0 hooks: - id: flake8 additional_dependencies: - flake8-bugbear - flake8-implicit-str-concat - flake8-pyproject - repo: https://github.com/peterdemin/pip-compile-multi rev: v2.6.3 hooks: - id: pip-compile-multi-verify - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.4.0 hooks: - id: fix-byte-order-marker - id: trailing-whitespace - id: end-of-file-fixer flask-wtf-1.2.1/.readthedocs.yaml000066400000000000000000000003231450647263500166520ustar00rootroot00000000000000version: 2 python: install: - requirements: requirements/docs.txt - method: pip path: . sphinx: builder: dirhtml fail_on_warning: true build: os: "ubuntu-22.04" tools: python: "3.11" flask-wtf-1.2.1/CONTRIBUTING.rst000066400000000000000000000147741450647263500161030ustar00rootroot00000000000000How to contribute to Flask-WTF ============================== Thank you for considering contributing to Flask-WTF! Support questions ----------------- Please don't use the issue tracker for this. The issue tracker is a tool to address bugs and feature requests in Flask-WTF itself. Use one of the following resources for questions about using Flask-WTF or issues with your own code: - The ``#get-help`` channel on our Discord chat: https://discord.gg/pallets - The mailing list flask@python.org for long term discussion or larger issues. - Ask on `Stack Overflow`_. Search with Google first using: ``site:stackoverflow.com flask-wtf {search term, exception message, etc.}`` .. _Stack Overflow: https://stackoverflow.com/questions/tagged/flask-wtf?tab=Frequent Reporting issues ---------------- Include the following information in your post: - Describe what you expected to happen. - If possible, include a `minimal reproducible example`_ to help us identify the issue. This also helps check that the issue is not with your own code. - Describe what actually happened. Include the full traceback if there was an exception. - List your Python, Flask-WTF, and WTForms versions. If possible, check if this issue is already fixed in the latest releases or the latest code in the repository. .. _minimal reproducible example: https://stackoverflow.com/help/minimal-reproducible-example Submitting patches ------------------ If there is not an open issue for what you want to submit, prefer opening one for discussion before working on a PR. You can work on any issue that doesn't have an open PR linked to it or a maintainer assigned to it. These show up in the sidebar. No need to ask if you can work on an issue that interests you. Include the following in your patch: - Use `Black`_ to format your code. This and other tools will run automatically if you install `pre-commit`_ using the instructions below. - Include tests if your patch adds or changes code. Make sure the test fails without your patch. - Update any relevant docs pages and docstrings. Docs pages and docstrings should be wrapped at 72 characters. - Add an entry in ``CHANGES.rst``. Use the same style as other entries. Also include ``.. versionchanged::`` inline changelogs in relevant docstrings. .. _Black: https://black.readthedocs.io .. _pre-commit: https://pre-commit.com First time setup ~~~~~~~~~~~~~~~~ - Download and install the `latest version of git`_. - Configure git with your `username`_ and `email`_. .. code-block:: text $ git config --global user.name 'your name' $ git config --global user.email 'your email' - Make sure you have a `GitHub account`_. - Fork Flask-WTF to your GitHub account by clicking the `Fork`_ button. - `Clone`_ the main repository locally. .. code-block:: text $ git clone https://github.com/wtforms/flask-wtf $ cd flask-wtf - Add your fork as a remote to push your work to. Replace ``{username}`` with your username. This names the remote "fork", the default WTForms remote is "origin". .. code-block:: text $ git remote add fork https://github.com/{username}/flask-wtf - Create a virtualenv. .. code-block:: text $ python3 -m venv env $ . env/bin/activate On Windows, activating is different. .. code-block:: text > env\Scripts\activate - Upgrade pip and setuptools. .. code-block:: text $ python -m pip install --upgrade pip setuptools - Install the development dependencies, then install Flask-WTF in editable mode. .. code-block:: text $ pip install -r requirements/dev.txt && pip install -e . - Install the pre-commit hooks. .. code-block:: text $ pre-commit install .. _latest version of git: https://git-scm.com/downloads .. _username: https://docs.github.com/en/github/using-git/setting-your-username-in-git .. _email: https://docs.github.com/en/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address .. _GitHub account: https://github.com/join .. _Fork: https://github.com/wtforms/flask-wtf/fork .. _Clone: https://docs.github.com/en/github/getting-started-with-github/fork-a-repo#step-2-create-a-local-clone-of-your-fork Start coding ~~~~~~~~~~~~ - Create a branch to identify the issue you would like to work on. If you're submitting a bug or documentation fix, branch off of the latest ".x" branch. .. code-block:: text $ git fetch origin $ git checkout -b your-branch-name origin/1.0.x If you're submitting a feature addition or change, branch off of the "main" branch. .. code-block:: text $ git fetch origin $ git checkout -b your-branch-name origin/main - Using your favorite editor, make your changes, `committing as you go`_. - Include tests that cover any code changes you make. Make sure the test fails without your patch. Run the tests as described below. - Push your commits to your fork on GitHub and `create a pull request`_. Link to the issue being addressed with ``fixes #123`` in the pull request. .. code-block:: text $ git push --set-upstream fork your-branch-name .. _committing as you go: https://dont-be-afraid-to-commit.readthedocs.io/en/latest/git/commandlinegit.html#commit-your-changes .. _create a pull request: https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request Running the tests ~~~~~~~~~~~~~~~~~ Run the basic test suite with pytest. .. code-block:: text $ pytest This runs the tests for the current environment, which is usually sufficient. CI will run the full suite when you submit your pull request. You can run the full test suite with tox if you don't want to wait. .. code-block:: text $ tox Running test coverage ~~~~~~~~~~~~~~~~~~~~~ Generating a report of lines that do not have test coverage can indicate where to start contributing. Run ``pytest`` using ``coverage`` and generate a report. .. code-block:: text $ pip install coverage $ coverage run -m pytest $ coverage html Open ``htmlcov/index.html`` in your browser to explore the report. Read more about `coverage `__. Building the docs ~~~~~~~~~~~~~~~~~ Build the docs in the ``docs`` directory using Sphinx. .. code-block:: text $ cd docs $ make html Open ``_build/html/index.html`` in your browser to view the docs. Read more about `Sphinx `__. flask-wtf-1.2.1/LICENSE.rst000066400000000000000000000027031450647263500152430ustar00rootroot00000000000000Copyright 2010 WTForms Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. flask-wtf-1.2.1/MANIFEST.in000066400000000000000000000002211450647263500151560ustar00rootroot00000000000000include tox.ini include requirements/*.txt include CONTRIBUTING.rst graft docs prune docs/_build graft examples graft tests global-exclude *.pyc flask-wtf-1.2.1/README.rst000066400000000000000000000006671450647263500151250ustar00rootroot00000000000000Flask-WTF ========= Simple integration of Flask and WTForms, including CSRF, file upload, and reCAPTCHA. Links ----- - Documentation: https://flask-wtf.readthedocs.io/ - Changes: https://flask-wtf.readthedocs.io/changes/ - PyPI Releases: https://pypi.org/project/Flask-WTF/ - Source Code: https://github.com/wtforms/flask-wtf/ - Issue Tracker: https://github.com/wtforms/flask-wtf/issues/ - Chat: https://discord.gg/pallets flask-wtf-1.2.1/docs/000077500000000000000000000000001450647263500143555ustar00rootroot00000000000000flask-wtf-1.2.1/docs/Makefile000066400000000000000000000011721450647263500160160ustar00rootroot00000000000000# Minimal makefile for Sphinx documentation # # You can set these variables from the command line, and also # from the environment for the first two. SPHINXOPTS ?= SPHINXBUILD ?= sphinx-build SOURCEDIR = . BUILDDIR = _build # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) .PHONY: help Makefile # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) flask-wtf-1.2.1/docs/_static/000077500000000000000000000000001450647263500160035ustar00rootroot00000000000000flask-wtf-1.2.1/docs/_static/flask-wtf-icon.png000066400000000000000000000114041450647263500213350ustar00rootroot00000000000000PNG  IHDRbboiCCPicc(u;KA?%ZhHba (&H 5y,$ 6 W?VUEjD;& qqfe Y#4G!wt,B/] ǚL$;>hR6zh_M94  O]KpVm9 ?+NW]=Nױ^F  EzuT~~VjHfIFY\"RYc_7CA<-JHﰨE隒j/KI7OtA˓ @`˞uy|_?D/״neMw| z,~%Li)t.B -WsrsDװ?g;C pHYsa(a;IDATx^$Ew%眑] ܕE2%("J b `@`Q xDQOADA׈a9' (UMMM~3{^Ouwխ{nTLiKK-Z h)R@K-Z h);p\pᔩS.W}|O[PLDF À%3zT&0 >?` { |_޽W GC#1~\*`6E\;0VNJgmf{$~9_ FQ<Ϗ虦V ~<1G>b-8+`7#3 rt:oN>OdBE^!h6 ѯ')\`kcQE$,' ૂ M_vxQ,22vHb?IVG1O >!Xij{붚X7#7P 6b_|^pƇraW8xXuZ<'jE, !k~`b`Q"r>ER.-AcOmԚt}jc FM$Sm58´yfuK9K0H ŒOLuu'YeKomڭ:a'qN_ ,z^{ ֲs<P+PcmQ2`0*BA%%q`\7C7D-Bybj}[eI!^35LqqPb n/4Ў>.XF9Qfma2 Fn:ojda|gu@BLnxG9¨zd1Ïwb[Gzicf~C2#rlA.>p#@lTeO-3^3Œ G ;cŘCz˧M،3sE~X[ca_Έג~S0' utlwf1CX=CcDJL1])' #}jiб*c U7UG뿖aNu@4z鈈 '/nE+l 1{+ɐ@n fpY |%xRC1rJYE5U0&1dH7*Lt,^sj5xج*TsAʊ@[zN\h7/=3? HŃ{(1_D}\nQ#@5ǬKld~Кrq]fïKAXUJ0=;{ :C չnVJ*K#0OO6}&.M5ˉ tK`QnvB#nЪRƆN+*YlЏt|f`zUBWH`Jh%v J*zG]EG,3MX)xJeeI7x`!3bxB'U$a3bOf?N2`NƮ'D8Zu]*T*+2clNK6}L=ʊ  Z g \ &]-X5B06Xnn> uBsɠ,4Bc8*'2 sx7Hh][隬7ʷ|3u/ Ą`[mX1F`-FF5p76⅐$K\&H YvF2cYu VII.nl0ׇN*G"Q njA@a#G$7 u%oS)ԔXq0##N1ED~ i.]~/ߏ rC6[i3!,zÜx5I!c,!I$&#0"z?'d|L`g12>GK2m?GȽ_~λ:NR^o - uF83@D 0yo^OKX"CL9;l]Y $OXݴРaMh2oL8!{:jg4"t DG+ M%Z61.azbSGfڸ댂A Urг[ }PO۝$p 3 b%4*EFZ^kFs aO"0I8cyUf.)2IUkHy7Ch1OSN+ߏ ƪ7 ʊʆ="D)Gא{V7P»lxcg "s6(-+U7`km!eTs%HZX- Qrbѳ #[vx ֮ &S1JdE\Sf)F ~?f-X 7@(B`U(X-~Rަ{C{C&ɖ(_3B8SE<{!:J :CJDRS3Hih/Yًі}1@H+` g3htEJK3%"e3;pG3 B|B,B!NUׅ~o-`)4*|L>gp`7## Ttn"n?Dǫ[fƖ `5LV=R{/* zvCs8#1S|ZL5)v^j{3b+!\0 uydL 4D6H΂Z9#!I~-6t4x"%xlnkD>/?VΈܫpiJy:,a G0"SI~\)@QqL*3g4˔#y!uoLC!s9o>ً`S8J<(D ]~NGuHT ©Ⱦѥ~䨋 BlrTHKS2}#L=,TxJN*7tg\'d<{7uQ칈M1A^!Ru 3߯ǥV1z<4l]cM#|Rړ񻕞`Eq3m׎e ! XȈfÀVdć<<П^ xj-s'=cO WURt1*{N6oaIqFb(,8-񝍲TcV{ O"Wp2_G&Tr]5_{as-fx0P8[MTŊ3s: `LUOǖ>hN֭7Q1}vtd6Ez:P(I`6D>UMf`^aDo1ӮH|ԞgvŖCF2`6q5%ed`D{*X-1B)zȽ`H3J<6S1uaf }wu hBӉ~FB Xi89P]heWOv:Ǧ>% 0M$az3= ?ZUfV(  a&?Iw6d2yA eѷSA=\ Sf(J W." M kvWɵ?+3#ŃSbhm7 'ep4N"l@BEO2 `Y/j_}L3p ޾iVAzN8 ,/jDȘ(bUF FUǠr:]l08 q!}!m;N6Ԩ{8~הOl6Sn؄mGw7Lod#".q UYKg,,O;`/󿇈 $j;}:fv iQۏvĀc=.zi.yc %Ȟ\M֏^OwJR)eOV7 X8x]zڡb,_;C'd۹I,+iNXBJ62 (sWăw0rZ^tp|sYM6}_Ƅ ΪLK %l.36v 'aXT4 -3ij o$8S@(ۯ?3,n_ 1erS+i/φ_<^=[`S ^ j ]SE "1^R͜J:;OsK-m!9"b0b%"qaMI_%n_i.hMC$|: R4ztl oI1*C ; 6U<%$4˾4/-il|&~`FdG8fiC@(#am!HbvwcN"ɺ?FxڡB"(fˠ Yu]Z͵3'~DJGm?{l bDtQ~KM#IؾpHҬ5$r_CqHm_l-BU;| pu@(:y!lii?t?- 艁 i)bn%5 Lr XpwV8~x 8 pK$-Y]]qlGJū^o|8(+֞^S>D^jMZBoi6 %it0xM'BIsҼ G<F)0p{&юB ࿶Yۋlof$fK"hI?N]Lm9ф(Ҵ5۾@-PoOʲi\ }};Sqw=&r.H`JB ,!ifl 4_ 53C^nJp8lwNlKR ȲZtV<͔H [&QRwf4Cmw.X:"FMc%Ԥ幅$J pxHTONYZ:ÇfJQť7RLUT]@Čx Wi4Bw žm]DI%ʭX9' MuKLSlOT! :8n4k&62C* n.hsi,Nc%<)-p'i,AqLd4T8- u<RG@<˹/$d+ؐTOx?aYݒ3mQD)@.Sq:e0mM$ƒp*n Hd2nJ 菁p0V-)IiYz(f/v^>S Ҳ0牂XϦ?Dl٫~5Ĺz0_%x^)IW!r]7&ƧvxM@(1n{62gEҟzn+|H')>_I1`x2r ph EQ D c S6$ !p$M4ZJ,LG)4CU{_tӈh0~lmdE)!\g3V=l IH:}K丷{USqq>qЊQwS@șRYXx8|XX06 ^"RT\ EGwiCæBpO2H"FSf*Lg{lSMI?}KCO'Qabtg O ^_sDH:v?pbU6XfI7Zے /a4֫q-ʔ)8Aҕ@,ҧu>zۜx[e+8^V$vĠ`-閗z EbIs4l=Z{ XR/: rLRBi{Lv!~@TBAA=+D̈́:; 5mIޏ:}[[cTB1(46]vFb޸娂}[G #"(^V/~}ϷqMMTjlRPoM`.4`tFDʅ |Qe&Ǻ ظvnC78'`~QV&a!FvNSl*qevµ x\)l;.24BI_!+7ۧ;QW3AI0'mX߮e} پ5Z+qmibo؝Ike=? 1S{2p83)@4e pJ"=p=. 5-db6==ֿO0Sz=`9R{=& fjQU8Qecb"IwYaAVJS81p<\ Fa۴9BG;F]uїBHځ|TZN P `bZf:ˈ{wa1 L۔A·ll"쒚߶Ǫ"Cx"WV8ۋ #˩SKmLs=u8Xl ?ik.drw 3dpTۘb NdTslYM݋7xI9ml_H I,ڃd`ubZ\ε xbi_*<[Hz>KY}6q"<2}]/Iђ6#"+ML)f"KЌGDAQ\8GRlۯ&a#mv8#&RX+ !23p}fn F7ɒd]cR` jNV D &t_a,p|ΐ4;Lu6MPez^۔<񜺮4:*8UcKEJSQED3u3kY5dݗG% ">{^@4(1IxmZw׮sr)~9,DxG`3=, шWKDf#mnTZDw, -ܠB<H-a$}8KOh\BL3"8߆x`YTG.JÙs~y*F: 0+ Z'>IL jzB?@Rk IErI-C"Ϸ}lz12='ou 'mp(a$+mIoo Tb_I :O.d  {;}.,Igԫq>6nLLñ:1铧%g0d`]&U_ l=hʱDZW?Y_$F!iBф$Zi]I+O%i `ʴH#14SSCHܾlR%ls6>^h#1!mmƹ.01}YYfK3*88 mz4p QrdLh0D1Ͱ!pU^2L63uQPy(Vv}+iV9KZȺP4pOJL4JS_&!jֿNxL9 "2STtFrϻ0yXֶv}F=V +* KNlP|g7\2H@VGB^,?oz}8\@6 ~v(S!6lv%Kھ3HO1aRӉsPh:8G)QV(H vA [x.Pn=kHBKZľtM4.U4PX ;,zEPWlj͹۾)Ne$ ]-Y+i#BsI:H6M)4Bo]bTwSN=Qk .NF]#F߷2~+}s~.4. #PiҧDN#Ci:d8 I0i IDAT &< SحSX Ѳ2@'BrE9ZR75wth)mhIPUm2-ohIGrEųX)+K otV"8 2H=`kR IsKmq;aX4>M%dE55%zݕ4Svam [DjNJ7H#^Vö%ɍwIKVG$&/Dj:h#ym纋nػyZOtsnEJ:k=p.pf MI`u;xh~y2+^^!Xx`l9B0e L~MꇕQ4Dޓ.mRlwl<`u sB)q"$QWS$񧳀wBʏku~3&h&gii(IU;LҦ]_I#IߣV ޟD ܍)XHn=1y[CCl?B?ڊl d STzՆ?ؒtBS~4kI۾[֯z{NiIb# / nԽmЪv+KTfNŋ nx'ST@],\v*T" /]=:-γTumؾk>U+ tFC+SeYb9S {oշlo{5؉oF(> .AI$Ucrs{BNN^Ah{A۫>S[Gjx_t:|HBը h6Z&4Y76@50IKU'$m*i'5֮8:1G|;93p[,d'mDR36P0ZJCH,sLfJl^jMO,`~LmC%g0ʵkU;'k?Ѣ_^+9灯} }fu=I#z:ioM"e/BzYoפo7Wi|!j9seښk `>^_"”V>m\ӯZWkcKhgu``Oӏ~$ziqx(`վgVpLݗ/4pkGBw!}Vu mGգx#ne&~OY@cD!W{ 5FzhmB^չߥkt1_c޲D@v(_G\y02Oӏ}Fnn8{Sk#>g:bj"/M 13>}"bu<\Lҗc/#qG9j1?H;Y^!%}Wޠ%:8(Mot`+a\o" Jjr`Yx>MCۤ@!KYA09`p2։B= ui$-N\T>ȱ 2 ;e[ mZ*!˼~=O":ude탈@< )]ǫVھ ]]wŔ$b$Pzl.uTd QfH擒ft*x 8FiK@Io_u)z"Pۇms8`$޴:1"})-/WV"gIu^}K$a?tZjoelu 7JZ ؚPڼvZ&`1~C#''&텈ij^{0+˝&ݰ8YOby6RmZ3X~}O=¹5 Pfȫhrzc$\#4&]NTp-e%0#QpR63#UZ=^NXi6v j4zoŀnTHP-*jhϐ4\jFdDu=$)@؍P'vTCTiE(d2HBIe)*L(= V<;p{F)Ku`؈lav"yF:E3]B_}rg2L&3)3HdU*Xf H&3ld2L&Sz`R Ӗ\BKu v$4_!ҺN}c3L&LIΛne^ET ڞXV3L&LIO T~