python2-pycodestyle-2.5.0-lp151.1.1 >  A \/=„i=@Pˍٚk +!:8DN"T;v^bħ& ]OH|tB5>ڒ(^oƝS,l;X rYc9U G߷z2sMz "oi9n46unE%b.l[&Z6>'3~_pSd$BcA>"IGƸ5֪64cYZ~&2)PK~IÉoU;vsrؼH*zrs#Q^&.f5ܢ/n?}StqեRljdvEm(JM[xMAǒ.>%(Q # C+_!dT ?߰S(bXT4G~TP"Fw10{HS*A[CVd/>pAPH?P8d & A'04 Nk   \  LH`(89: BJFJ,GJ@HJIJXJYJZK [K\K4]Kt^L|bMocNdNeNfNlNuNvNwOHxOyOzOOOOP4Cpython2-pycodestyle2.5.0lp151.1.1Python style guide checkerpycodestyle is a tool to check your Python code against some of the style conventions in `PEP 8`. This package used to be called ``pep8`` but was renamed to ``pycodestyle`` to reduce confusion.\morla5^openSUSE Leap 15.1openSUSEMIThttps://bugs.opensuse.orgDevelopment/Languages/Pythonhttps://pycodestyle.readthedocs.io/linuxnoarch3 dHUH@A큤A큤A큤\\\\\\\X\\R@\\\\PY&\Z̞8e8580fac534e8620f483a6e71b34c4c351aa3c3ff4aa138e300e5e70e66da84d9040c9de5c6dd82d53571bb8b3cbe36777ba2252e28d7d45eb371c20561de31d71c7657705fbe844ce63d118bce147b9359ad8d067bbb9931a500b1b93c135201ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546be8953fed2029a42f773014908b5fd0c43c04414ca0e9c80aef569bf6afc7c5ca01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546bac76c81225e6bec274d7a98570b55c17f77e74a80fdd575f381e8259b8af66e8f93f0021a77176c148352aefcb11962059124506c5e3003ccea42bba8e1737d20c62edb523a1fc22d9f833f437e24987a42753dd56cd0ab9ecb9580aa5d739ae3e736b90e1b01b3de041393e8f807987512cce7d736904ded28241f6074ba210ba5d463866ffaacb46d998f0f860d7f21f615b0a59e4396b60e430818b5ea89527fc602e898175e97b952994878c0687634e4c7af8d32f3e9596b47f51b7d1d8rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-pycodestyle-2.5.0-lp151.1.1.src.rpmpython-pep8python-pycodestylepython2-pep8python2-pycodestyle@@    /usr/bin/python2python(abi)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)2.73.0.4-14.6.0-14.0-15.2-14.14.1\R@[][j@ZY X @WV<@V<@T-@TC@S\Sl@SKRi Ra"R].@Q@Qm@Q*Q']Qh@O@OF@O@O@N{#@NiN@MJohn Vandenberg Matěj Cepl tchvatal@suse.comarun@gmx.detoddrme2178@gmail.comjmatejek@suse.comtoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.commcihar@suse.czdap.darkness@gmail.comdmueller@suse.comtoddrme2178@gmail.comdmueller@suse.comspeilicke@suse.comdmueller@suse.comtoddrme2178@gmail.comspeilicke@suse.comdmueller@suse.comp.drouand@gmail.comp.drouand@gmail.comdmueller@suse.comsaschpe@suse.desaschpe@suse.detoddrme2178@gmail.comtoganm@opensuse.orgsaschpe@suse.dealexandre@exatati.com.brsaschpe@suse.desaschpe@suse.de- update to version 2.5.0 * New checks: + E117: Over-indented code blocks + W505: Maximum doc-string length only when configured with --max-doc-length * Changes: + Remove support for EOL Python 2.6 and 3.3. PR #720. + Add E117 error for over-indented code blocks. + Allow W605 to be silenced by `# noqa` and fix the position reported by W605 + Allow users to omit blank lines around one-liner definitions of classes and functions + Include the function return annotation (``->``) as requiring surrounding whitespace only on Python 3 + Verify that only names can follow ``await``. Previously we allowed numbers and strings. + Add support for Python 3.7 + Fix detection of annotated argument defaults for E252 + Correct the position reported by W504 - Removed comp_w_changes_tokenize.patch as it was merged into version 2.5.0- Add comp_w_changes_tokenize.patch to make tests more stable (gh#pycqa/pycodestyle#786)- Really run tests - Drop devel dependency - Fix provides/obsoletes for pep8- specfile: * update copyright year * add README and LICENSE - update to version 2.4.0: * New checks: + Add W504 warning for checking that a break doesn’t happen after a binary operator. This check is ignored by default. PR #502. + Add W605 warning for invalid escape sequences in string literals. PR #676. + Add W606 warning for ‘async’ and ‘await’ reserved keywords being introduced in Python 3.7. PR #684. + Add E252 error for missing whitespace around equal sign in type annotated function arguments with defaults values. PR #717. * Changes: + An internal bisect search has replaced a linear search in order to improve efficiency. PR #648. + pycodestyle now uses PyPI trove classifiers in order to document supported python versions on PyPI. PR #654. + ‘setup.cfg’ ‘[wheel]’ section has been renamed to ‘[bdist_wheel]’, as the former is legacy. PR #653. + pycodestyle now handles very long lines much more efficiently for python 3.2+. Fixes #643. PR #644. + You can now write ‘pycodestyle.StyleGuide(verbose=True)’ instead of ‘pycodestyle.StyleGuide(verbose=True, paths=[‘-v’])’ in order to achieve verbosity. PR #663. + The distribution of pycodestyle now includes the license text in order to comply with open source licenses which require this. PR [#694]. + ‘maximum_line_length’ now ignores shebang (‘#!’) lines. PR #736. + Add configuration option for the allowed number of blank lines. It is implemented as a top level dictionary which can be easily overwritten. Fixes #732. PR #733. * Bugs: + Prevent a ‘DeprecationWarning’, and a ‘SyntaxError’ in future python, caused by an invalid escape sequence. PR #625. + Correctly report E501 when the first line of a docstring is too long. Resolves #622. PR #630. + Support variable annotation when variable start by a keyword, such as class variable type annotations in python 3.6. PR #640. + pycodestyle internals have been changed in order to allow ‘python3 -m cProfile’ to report correct metrics. PR #647. + Fix a spelling mistake in the description of E722. PR #697. + ‘pycodestyle –diff’ now does not break if your ‘gitconfig’ enables ‘mnemonicprefix’. PR #706.- Don't provide python2-pep8, singlespec packages should use correct name.- update for singlespec - rename from pep8 to pycodestyle - delete shebang from pycodestyle.py - update to version 2.3.1 * renamed from pep8 to pycodestyle * removed use of project-level .pep8 config file * updated code style, added new warnings- Fix update-alternatives implementation.- Implement update-alternatives- Update to 1.7.0 + Announcements: * Repository moved to PyCQA Organization on GitHub: https://github.com/pycqa/pep8 + Changes: * Reverted the fix in #368, "options passed on command line are only ones accepted" feature. This has many unintended consequences in pep8 and flake8 and needs to be reworked when I have more time. * Added support for Python 3.5. (Issue #420 & #459) * Added support for multi-line config_file option parsing. (Issue #429) * Improved parameter parsing. (Issues #420 & #456) + Bugs: * Fixed BytesWarning on Python 3. (Issue #459)- Update to 1.6.2: * Added check for breaking around a binary operator. (Issue #197, Pull #305) * Assign variables before referenced. (Issue #287) * Report E731 for lambda assignment. (Issue #277) * Report E704 for one-liner def instead of E701. Do not report this error in the default configuration. (Issue #277) * Replace codes E111, E112 and E113 with codes E114, E115 and E116 for bad indentation of comments. (Issue #274) * Report E266 instead of E265 when the block comment starts with multiple #. (Issue #270) * Report E402 for import statements not at the top of the file. (Issue #264) * Do not enforce whitespaces around ** operator. (Issue #292) * Strip whitespace from around paths during normalization. (Issue #339 / #343) * Update --format documentation. (Issue #198 / Pull Request #310) * Add .tox/ to default excludes. (Issue #335) * Do not report E121 or E126 in the default configuration. (Issues #256 / #316) * Allow spaces around the equals sign in an annotated function. (Issue #357) * Allow trailing backslash if in an inline comment. (Issue #374) * If --config is used, only that configuration is processed. Otherwise, merge the user and local configurations are merged. (Issue #368 / #369)- Added "Requires: python-setuptools" to prevent "ImportError: No module named pkg_resources" if executed.- update to 1.5.7: * Skip the traceback on "Broken pipe" signal. (Issue #275) * Do not exit when an option in ``setup.cfg`` or ``tox.ini`` is not recognized. * Check the last line even if it does not end with a newline. (Issue #286) * Always open files in universal newlines mode in Python 2. (Issue #288)- update to 1.5.6: * Check the last line even if it has no end-of-line. - update to 1.5.5: * Fix regression with E22 checks and inline comments.- update to 1.5.4: * Fix negative offset with E303 before a multi-line docstring. * Fix wrong offset computation when error is on the last char of a physical line. (Issue #268) * Distribute a universal wheel file. * Report correct line number for E303 with comments. (Issue #60) * Do not allow newline after parameter equal. (Issue #252) * Fix line number reported for multi-line strings. (Issue #220) * Fix false positive E121/E126 with multi-line strings. (Issue #265) * Fix E501 not detected in comments with Python 2.5. * Fix caret position with ``--show-source`` when line contains tabs. * Fix a crash with E125 on multi-line strings. (Issue #263) * Report E129 instead of E125 for visually indented line with same indent as next logical line. (Issue #126) * Report E265 for space before block comment. (Issue #190) * Allow long lines in multiline strings and comments if they cannot be wrapped. (Issue #224). * Optionally disable physical line checks inside multiline strings, using ``# noqa``. (Issue #242) * Change text for E121 to report "continuation line under-indented for hanging indent" instead of indentation not being a multiple of 4. * Report E131 instead of E121 / E126 if the hanging indent is not consistent within the same continuation block. It helps when error E121 or E126 is in the ``ignore`` list. * Report E126 instead of E121 when the continuation line is hanging with extra indentation, even if indentation is not a multiple of 4. * Allow the checkers to report errors on empty files. (Issue #240) * Fix ignoring too many checks when ``--select`` is used with codes declared in a flake8 extension. (Issue #216) * Fix regression with multiple brackets. (Issue #214) * Fix ``StyleGuide`` to parse the local configuration if the keyword argument ``paths`` is specified. (Issue #246) * Fix a false positive E124 for hanging indent. (Issue #254) * Fix a false positive E126 with embedded colon. (Issue #144) * Fix a false positive E126 when indenting with tabs. (Issue #204) * Fix behaviour when ``exclude`` is in the configuration file and the current directory is not the project directory. (Issue #247) * The logical checks can return ``None`` instead of an empty iterator. (Issue #250) * Do not report multiple E101 if only the first indentation starts with a tab. (Issue #237) * Fix a rare false positive W602. (Issue #34) - remove no-tox-test.diff- Require python-setuptools instead of distribute (upstreams merged)- add 0001-reverted-fix-for-issue-204-added-check-for-214.patch: * Add fix for regression in 1.4.6- Upodate to version 1.4.6 * Honor ``# noqa`` for errors E711 and E712. (Issue #180) * When both a ``tox.ini`` and a ``setup.cfg`` are present in the project directory, merge their contents. The ``tox.ini`` file takes precedence (same as before). (Issue #182) * Give priority to ``--select`` over ``--ignore``. (Issue #188) * Compare full path when excluding a file. (Issue #186) * Correctly report other E12 errors when E123 is ignored. (Issue #103) * New option ``--hang-closing`` to switch to the alternative style of closing bracket indentation for hanging indent. Add error E133 for closing bracket which is missing indentation. (Issue #103) * Accept both styles of closing bracket indentation for hanging indent. Do not report error E123 in the default configuration. (Issue #103) * Do not crash when running AST checks and the document contains null bytes. (Issue #184) * Fix false positive E261/E262 when the file contains a BOM. (Issue #193) * Fix E701, E702 and E703 not detected sometimes. (Issue #196) * Fix E122 not detected in some cases. (Issue #201 and #208) * Fix false positive E121 with multiple brackets. (Issue #203)- Drop old tarball - Document no-tox-test.diff- udpate to 1.4.5: * When no path is specified, do not try to read from stdin. * Do not require ``setuptools`` in setup.py. It works around an issue with ``pip`` and Python 3. (Issue #172) * Add ``__pycache__`` to the ignore list. * Change misleading message for E251. (Issue #171) * Do not report false E302 when the source file has a coding cookie or a comment on the first line. (Issue #174) * Reorganize the tests and add tests for the API and for the command line usage and options. (Issues #161 and #162) * Ignore all checks which are not explicitly selected when ``select`` is passed to the ``StyleGuide`` constructor- Update to version 1.4.4: * Report E227 or E228 instead of E225 for whitespace around bitwise, shift or modulo operators. (Issue #166) * Change the message for E226 to make clear that it is about arithmetic operators. * Fix a false positive E128 for continuation line indentation with tabs. * Fix regression with the --diff option. (Issue #169) * Fix the TestReport class to print the unexpected warnings and errors.- Update to version 1.4.3: * Hide the --doctest and --testsuite options when installed. * Fix crash with AST checkers when the syntax is invalid. (Issue #160) * Read from standard input if no path is specified. * Initiate a graceful shutdown on Control+C. * Allow to change the checker_class for the StyleGuide.- Update to version 1.4.1: * Report E703 instead of E702 for the trailing semicolon. (Issue #117) * Report E226 instead of E225 for optional white space around common operators (``*``, ``**``, ``/``, ``+`` and ``-``). This new error code is ignored in the default configuration because PEP 8 recommends to "use your own judgement". (Issue #96) * Lines with a ``# nopep8`` at the end will not issue errors on line length E501 or continuation line indentation E12*. (Issue #27) * Fix AssertionError when the source file contains an invalid line ending ``"\r\r\n"``. (Issue #119) * Read the ``[pep8]`` section of ``tox.ini`` or ``setup.cfg`` if present. * Add the Sphinx-based documentation, and publish it * Fix false positive E124 and E128 with comments. (Issue #100) * Fix error on stdin when running with bpython. (Issue #101) * Fix false positive E401. (Issue #104) * Report E231 for nested dictionary in list. (Issue #142) * Catch E271 at the beginning of the line. (Issue #133) * Fix false positive E126 for multi-line comments. (Issue #138) * Fix false positive E221 when operator is preceded by a comma. (Issue #135) * Fix ``--diff`` failing on one-line hunk. (Issue #137) * Fix the ``--exclude`` switch for directory paths. (Issue #111) * Use ``-`` filename to read from standard input. (Issue #128) * Fix regression with continuation line checker. (Issue #98) * Add E902 for IO errors. (Issue #87) * Fix false positive for E121, and missed E124. (Issue #92) * Allow ``verbose`` in the configuration file. (Issue #91) * Show the enforced ``max-line-length`` in the error message. (Issue #86)- Update to version 1.3.1: + Explain which configuration options are expected. Accept and recommend the options names with hyphen instead of underscore. (Issue #82) + Do not read the user configuration when used as a module (except if config_file=True is passed to the StyleGuide constructor). + Fix wrong or missing cases for the E12 series. + Fix cases where E122 was missed. (Issue #81) - Changes from version 1.3.0: + Remove global configuration and refactor the library around a StyleGuide class; add the ability to configure various reporters. (Issue #35 and #66) + Read user configuration from ~/.config/pep8 and local configuration from ./.pep8. (Issue #22) + Fix E502 for backslash embedded in multi-line string. (Issue #68) + Fix E225 for Python 3 iterable unpacking (PEP 3132). (Issue #72) + Enable the new checkers from the E12 series in the default configuration. + Suggest less error-prone alternatives for E712 errors. + Rewrite checkers to run faster (E22, E251, E27). + Fixed a crash when parsed code is invalid (too many closing brackets). + Fix E127 and E128 for continuation line indentation. (Issue #74) + New option --format to customize the error format. (Issue #23) + New option --diff to check only modified code. The unified diff is read from STDIN. Example: hg diff | pep8 --diff (Issue #39) + Correctly report the count of failures and set the exit code to 1 when the --doctest or the --testsuite fails. + Correctly detect the encoding in Python 3. (Issue #69) + Drop support for Python 2.3, 2.4 and 3.0. (Issue #78) - Don't package empty TODO.txt- Update to version 1.2: * Add E121 through E128 for continuation line indentation. These checks are disabled by default. If you want to force all checks, use switch ``--select=E,W``. Patch by Sam Vilain. (Issue #64) * Add E721 for direct type comparisons. (Issue #47) * Add E711 and E712 for comparisons to singletons. (Issue #46) * Fix spurious E225 and E701 for function annotations. (Issue #29) * Add E502 for explicit line join between brackets. * Fix E901 when printing source with ``--show-source``. * Report all errors for each checker, instead of reporting only the first occurence for each line. * Option ``--show-pep8`` implies ``--first``.- Add python 3 package - Clean up spec file - Update to release 1.1 * Add E901 for syntax errors. (Issues #63 and #30) * Add E271, E272, E273 and E274 for extraneous whitespace around keywords. (Issue #57) * Add ``tox.ini`` configuration file for tests. (Issue #61) * Add ``.travis.yml`` configuration file for continuous integration. (Issue #62)- Update to release 1.0.1 For more details regarding changes since release 0.6.1 please consult CHANGES.txt * Fix inconsistent version numbers.- Remove %clean section - Require python-distribute instead of python-setuptools- Add Requires on python-setuptools.- Removed some unneeded macros- Initial package (version 0.6.1)python-pep8python-pycodestylepython2-pep8morla5 1552591542 2.5.02.5.0-lp151.1.12.5.02.5.0-lp151.1.12.5.02.5.0-lp151.1.12.5.0pycodestyle-2.7pycodestyle-2.5.0-py2.7.egg-infoPKG-INFOSOURCES.txtdependency_links.txtentry_points.txtnamespace_packages.txtnot-zip-safetop_level.txtpycodestyle.pypycodestyle.pycpycodestyle.pyopython2-pycodestyleREADME.rstpython2-pycodestyleLICENSE/usr/bin//usr/lib/python2.7/site-packages//usr/lib/python2.7/site-packages/pycodestyle-2.5.0-py2.7.egg-info//usr/share/doc/packages//usr/share/doc/packages/python2-pycodestyle//usr/share/licenses//usr/share/licenses/python2-pycodestyle/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Leap:15.1/standard/08676631cb1abb12b02d8978f2046851-python-pycodestylecpioxz5noarch-suse-linuxPython script, ASCII text executabledirectoryASCII textpython 2.7 byte-compiledUTF-8 Unicode textRRRR_0tW &utf-8a6147e70f78ef9bca86efcf8f894cf90d1dd5c9bb6599c5d7b4db5f4d9ff6288?7zXZ !t/] crv9u@ A5i* 0$.)$wwsQ kudĴWk{niś?&GZH:!9PƕB/ VoO J1:B ?b!j敺AfY3*,Yͨ$.ǬNU+@n0_IbPmǰiFOCx 'cvj3X2{TR[1m;n&nw%12ߜ,%Ar9oGSL (HqY_UD&Ɩm xVV288~N(õJ=6$5tg57_ǰ2,)-GB!E~ڌ?9(qHn\b9nS W(JX>A z.h8w7dNۖǍm-+BJ96G OeR#n1 uݼxqN<<ă7y ,]8Ot+a3zQ^¯d[)巏rZ?t;RcM"lx߅ ƭlCA b ~$? V4h 3y:0QGb Eb+5'8UEu@M[ ;+buwI1) gR &v E }#~g%վŴ\Fm\ 82/tywWsm[ܕcc(>{橒b|QG4܋MӑPIѝP6nEΰ^j  v'(d_X$#~ۯ@U@P&` cbxƳUOq7.eì}`ɫ#ӻqRh|\Qu!T"ZPC͈oI*2`9@, ?'̋fo) Iid=GqI[HYI܆53Դ,yr{.:Û8+k3A<ܥӁŒB%ш`?7pP|)"|^ܐG_` dcԭ%V2O~ѳ|ķcP{c mw9m\Y)iV1]rq֯<v7G?Z)[<(ǓG7ݠ.Br+R-"tu#U%EB-Br.S ;%$[2JʭtyfZL/h1?PGKH -3Tz0n DƟLڌl<&Oc+qY]׵ˡZ% G.sWs{Z#A+2ڠbsȒGG]lQH>er_$sxf`euFZ0 >𯉅y,;EAwa;ڽzs8U>?#8椤8 _XKf3?SUy4J$ㇹ ?p.hd!Z#U#3u!0}FojfJKW:6 f KCGS#[Dt~{"l 8Le;yt-=_*߸BY:~'"]̘[D:'\F[ MfG,^eIVA'48Fb_$8PW$VxA QU+]CM+?(' )qphq=jA@rO0fJ HK ^vyCsWs|_K(7nfJ7)qUzqĠ@lA~hMe2O(5<920k;!&q,l*3xǎX$u '-HAw> Nn 8&##đLQ`ٿ{ $K'mOevyJ+=9" #`k:ar;-b|]rWW%ݩMadąRq9ja|ۑ(u,#+r߲S%y^|pw UvKGGhgC\;ŅG2 *k`hQH,A 3R&^_cmt{сfW| 3eЇ.7m36IX죐kf$[&;݌OdksxkDd &&aQܐ -*ouxDR0BIr?/E- nmEb.Nꨇ[.㗸eA념X"~wkƲ >ƞެ劎`+"= L~?<}ϛb`}aqF)pr"iV?1by}4 kَQ[W&ӊŤ#U9,mxHWr1{qGMV1}kOպZqjЧY4"Q7no= nVb'mErX\FpU7y^Nͣ I>#3T}EOu u7 jc:cS3s t*ʊ۷9UL19!b$k0T 5+:*~Z5t>Ypc _)Q|kxG=|R)HTh|*^.҅(Ƥʩ.'H`ߧyIOS]?#MHLo.ad `{?踖ʞ J2@I^E6x{Kv]^L䵞omMvV)JUzŦWruTf=OufD&9%o?dIxrCeQC͏i T6;8Vxb)"K"+sѓ_ժy7{Dy(4b#$P*o黳rm䗦슡1%0#1Y[w,cy>əٜɅ:fJRb6-)+-!{SRߞ6ʀ\E IπH0,H5oh\vUzޤ.9E:!Dsh""4[el6l(p g(.%{j X=MMj5L{s(M&k.}:ek_WwH.iI퇨ab-226*r4'4^}dCQ, a@DBhRm(PW / (I/,9ޗ$#Q~ :-|7hn i1G9 ^*E\Q@+WWyZ*nB<8<fe8QlY'ңe{G.HjT(]5ɴ3F$,0ͱXԚڞIĬJ3>D*M ,Z:~u.)<8n5c`m>DH. kF U [#M ĎbN~>Sd cs=DIEFuׅndIFȵъ ֈƒW:9OM22$S>圪-THRg;98Y~^Blf)>)d;{$Or7m|VKڠ J8ujNK2ȻJZ\KV .ӯ:T &^т o5-%5J)D^:,z=::M!&rx˞ ^Z$QIL J[~}n袲|.` 6f3ʭp:u_q &0V[{ W$ Y tv͐#mRŝB4bз1$tAaWَ_F^9m%`ʪܟI!w+!} # LI(}W Ғ9U 5\n=4t"eQ¿Ager'Ow$qCSW P6Vk ]`=9/T0! u>(1d$~e3E7\)в(&9.Zg L EQ7/_xsO?[ϭ1_@9?EhsIT3轅؁SP=V9+z'r֖@,[E /#H e\~@}3nAÇ}dMԃќ(FGȞj=  N Vƻ VA? _!V%T+ _o_Wj"m!n$ ӔCݳLh~R:/`_PQzJm(4O~l EJICOS\aahqmVDZНFz>nmcū`/2]3SBG83% P; ^C({&:j.Fː|RK-J)3ʣF:|x8u jK5 m.cQgE8de F.d82uHvQٮ $E=4a oCbFLTNj5LߠK-WQ=)֒~BoM6H.}xWvyU'Ơ`{Н-W1zQȾUԑ3{ hӏu"䝆6Ued Wh$)nU\N>u!:#Anj 19iK{!V$X-,_\x-urfE&r(s4 ʊ 6|SGVgnV*s %AYJp>VtZ]𬹳?,#`<ÙN3 f MdVQCbS(NG|ʖ0ugGzww$5%O̩B$œQEDWRI[/`nr:Ĥʮ[?,iLVn`Mǡhc2&FY}./ICPvs 'PcWvRH5 WT( MF][.컅ю\pJH{vV]G]}\ 6L,̩5̍Sܨyqs*hD{LX*Mobgm5{etiXw柾d V=WwݹO48HiL9dtB7y5ǃ4]frW+&xćܖh7 ? * =k !ˀ*Hp'e4hjq`W!^Sw1!fYlԃkIO4$~M>haxy[cMqˬiT,8@UЕ=G9wV#hup34;6Yu8'19~ #*G%lT6D]/V),E8\ =(雌 K8$Ƕ7M4x2%{X!Q ^D?AeףW3tH|h/L~MV̉]F(gka70dB dL&UH&پ4ބ K޸[Iz~"\+={EB;47UZ0͢4 \,cv8o@+dxdIfĿj ~yT1e\FA cmOhEj?>4WY$glXXe {7t,G/2>DZ'Jo)(YuJy/хVOԕ3Xy;IJdücgsϷFہ2HR}cowAl<@F7q\hrUpWj!$6&+G%J{FxN-8N7ޞo* 8 D zbV}kAX 0^IR1^Zk^b.&{2I% ;u@QmHҽޒe?Vtf~XĒj^r;klJ:> #Ps(?z~d=mqnzz hP-K0~Q1C}(<WjL禭R!G A%]U7&w]8x*(Y#μwT/Du@!mhفC5E?f糯.֎"ɟLT!V/ǟ4Iݲ.qaw|QlwrL}L~2h<ƓH؞9<,"{PFѭ]zn%a'^cU'8޼0.T _z[7$4fPFnΣ}.pCffa|nGqIydD)ȘX7Z2SΥ.w#@;*=Iڶ<^A!>^9bT5\J /Ɇt{ ֊3Ʉ\V}F5K)sBw]i"_<j"NFnQs}!G\/Wpۿ H "WfN\U+6" H[`kV >?M w3K9A_S%T[LNʁ*<2UK 2C@J+-Ch1ӋibfNs_a.: bK#bb4QeVvGٗpN- ㊬96΅Y$Zƭ}sb=E. tAU8ooxTٖl#v A 'iɡh | @G| #߭EP}=$("lvM ai2*bI%]Ux5OW A8dr23Fp714irSO %w6RAaP6t38;hWEPGnjra*e}0J%|t˶s ?X+6'rE'Cwg5xP?kJϠ/*5^HonV ftm4znYi]9J4 .!p\PTEFA`x6FN)$ΗO tGza?HΎ]}iU8U+aVǷ^ `WY?8YP7u O6j @(Pa4CbLXQFܟ{3k \锏9szAq0h(zw̔h KXobW@ZEuʁqaWќ:5w{2M}8@!/)o+h ~e_S6 -ILzbc'%%daG0&Pې Ey&$•l1;CV2;۔6HgHa;5n~ٿR$Ӓ]Zݧ!mpºb䜗QYrRZxto'jORjXD1TmAZ'Җ4S 7tE8VVB'W ߧP;(K} OGT\O`ɦ J`r|Wz( y{kI zL Y}h\K ujjxlsf9Xu%,DockP MZg|rq?x-’17@mXPAC9(kٳKWN.āu_@O,ΰHN{W>W婎2Dd'o`KX'@Y@qq\ ] d h!̇#|lur޶"l߷_7(n Sc/m*;Υ&TEϮR=;L=s_H/uHtl) C` VlmJD0a]<2ӮAqrydK|h蠁@ +(zYNbƗpQqZfVWsTvܑ$rVOTcyvIQrNU˥L? ,U|FiK!Z ܢ/78Ař]sq8.J 6K >dE>vr ]ܕׁm=tZ8I\2 2;zE19w}/b+{;-nM :[n9@88aQ]M6,+h .TD=3hGD΅9r}K]]SDhI8̟tl;ޣ&6{YձuDa-30}!)@*{zJi;]"hJlvZc7'@}X70w=7|ѶAޗGJ0eI6J W[q$~< 4GǬblv|Sd_##fib'qu^yxWbPp4avbQ߀U *v9Yϫ.0l]NK]Uj|9&kz쬘2*Y#/jhz5/|ZY7<{'5t=DߜZ?բjt+ҙ~KTHN[H隥N] UPT]ժ@bʴ6'כaFg't'_#yύFMh&+ԖNitH?%^=*(:kPsjŸt9 eih T ׊:|) lkϵaƠSCqFu})ތZ.AOdi¥3$"Mf\QmqS_,`~G)CIpuM&)6'oCr;Sժɳvc؎&G ې:s-U%&QEdwOE7~dk<&gl$_bDSUW?¦bE;Kϣ)b"F!vF&%ﷷ e/½ 彟jL3ZH=G 'xJNE5f?rԤ h TG~sϑ+Jf `mar=W:#8<+m)Oc?. M7fk|U/qL︔,-T Ao?="g-_c-U%f*i|htR!&u熧)@(%VxƞDcKƣ ɯm\)#.qSeviy\g;3s(qm$:;ŷI+c#J?<3[&(lt =;vKpnSgqOO b8X-6KC [3b. J=/$M#۴QMTH M3E^rZ˥cvٜ_\l3KeBo+Ƶzidx[O2>8)1XɁr99:!.I^Qc߇&s9U}wpD튁v/ UގӚj݂Х{'&"3ZA+XSA9B&KU5{V` b=FR4'WvA)we1L'nq4IDBq }7M1wZ.Z_h1ȋׯZNY-h4gg&ڲoh~h? H%//IaiL@)ȉ(W5DT}%oj[Uc+BJqy|tUў3T";DD8_DԒ4 B\b7A'tVn8 1OMʭP-xyȴTHd8.gg<ʲ4ImnS]en05PS̻}zXyT ]/W.PڞX|8j+?Iu,jtY#hZs#(Ye" s:u$Q=8!H;b"bMG67cXIW$ΈsG *^[+'s>h'F>ƷZ͸ }pE]cSDDkR*IxGºR'fKCȶ##4E_=9"f383*hiZ!  )+3LXUZs͡qHL9 -0[&X>uVx$> >zq DIR8[qrK[4Q:clG9[IX"6(nls Z=4Np[pgdqs&fᲽ4Ux&x b`4=cz5Ty 8?Ԫ\axouWkZvڳ3>e*^C*1Qf%4ٴ}B^A*u49~_aQ˗MƒK""UܛsO8 ^HEe$RbcaW=:*x .n8P%u&ƚR:\,U2te3"Im4l5 3"ܠ@4tk5"MCw;s\hMM|)?v&3ψzUXcIcvjOogRu]6F,},l6#d;@+[^(ʭ85̥^SO,IzmߙU6|6V5(p|#|&z S_r5pgc$u l4E73tkP6/)m@ӻBsRPSwϏ4d\(ʊSޞΊ])`bm5{" (qkxMFK7ܘIkLo.[ xciETr<[baky `D|Җ$kÿ_R4] _ ,zw)42u)!l=ICJ8ֆ#:e5lՀ)nh'ޛu9+xԀb9BM#=Ab.i$xǎ+EHX'%`?AUIo^uھAL<Yp%qZSr׎++hY_Hj F\οg'S';*vL.aH :_3ƅ9kiS&WlroifCmU~|ZKű 8N5[>Bs)ExpaxPBm!T{F4vcMg]*mVsMq[iD$u7 ( fĞ/2#I`/S5 .Xfs({~}DWl-[A_^|WpuӻHHrGnG2JѳFSGc܂͌U SlSSwXB~Z|sZC]Ӳv:!P- )K+ꔓ<"V{nQ-0lHP}l]WO3{QxX4划0|ph;G$E^H()Q@t4ssf+PǑ-IŞ,( %4i)`"Vy6MVtM0DA-*b s-~.!BCHNh5hJ|6f/3|oNI5eEδ LyZlل f4-]dF -zr,Cn8g#ؓspkjhAy28r"{'9/Xw퇅88kYau2`~ ^梃1 (۱h=v8:e2@ЋX|{oI-EaB$U!A3Kl(ps):AUG!fKU.9ֺ.(m(- ŽDU+^%xK"56^pߎf5\)*wk _$td{kf$Pں@P\*JAk\p?ٿšhS[G7=Jݞ?C)#<ǴwT`+Ӑ_⬳hw{繟yhFЊU{0E!ɐ >~c^֘Q. i?XD ʳۢuؼN""0}&1c^vn*Em~AKMvzzx+5W=DzKZ<"f}%鄆>dĴ_:ZUrwY@sl2ֵėR[Gb(YXzKۉ.)Jd!MtK gT2!/Rq,9z,w}?)+WE_a?N_\.vA~|qUq8Iā6Dc'|yU9(QtNK3cΟ|Ȍ/,P\+ YTҺ q[~fz8Z, D`aI a`am4/'AC%̅&SoE*R%x)dFo~1B-Ic_&FOEZjR-BZ)^V uA͝i/'"vu|触's@w[c14f-HPolo߇2u."@bSfX/ξ =uNw4a`n|=hJ[Uyw/{Pp`<ĢS2H,؂˂BK4 `pN;ME?.&|&7?D]^>j) |(s0Vͅݵxљk0U,R81#tۭp쩘vDN#g*yӧ4_GS1ƒ{a8Oƍe1tĬe4Vs9s_H!R%әf1YpYnfOpi&9Ƚ-+5Bv^qXa;H8_(Ie{r^Cc}Ur]?T1LI.Vpnؖڵ`a( t۷0%'(-E~͎wvI~% MGEl$J r*09%KQN$*Adx]bLLh&aX?qa( GiRk'`4M94] A, }TPcfB !.~ޒQqP了*ޙ_M߷èSL׎<=>l:>SJd6*z˨ˏ5h%4P,OrXZ0bbrj3i`iP]TqFQR3ZE ^ G2KۃcJ8P{ɒk{hYp, Ȭ(Ǐ #"yB/iȼ4^ڝ6rZĪpG}D2bO:i c<JdŨZ'V /W@!Է$P~)9 $goSr M_F(.TV?â}ǎKTDA'iLt+ \MR]Ezr NKxH h:O}Â7jTL\x-i\qD{j;&Q2=18Es#ݳKl#: H<OB9#_CP;e<Q2k!hWVD) ';hfw4j}ca __䦙这ӷB8і=O%ɦ')3.|tNl#=I;Ą{V{2IOh1:b:-HDM)+|uH8oXSnqT #5ãNU)]NQqnJqWQ?,SͺT.#~͚$=F3X =4K;|7$9CլK8l)W؎ʲdlc1 KiU$KS!X-_25A)tZ1Pǁ-GEC*n P.m13B Ա;Qe o{w -%e,`f{\" RzĻYVIb}abLa{ @Ыw %WnTɹ SK#K{ X\}!Vn2{/>Ʈ9a`"P4ons1Xsރi.jW<$HrvtRIB{-m<WJC$~3U?:!|LT#>/M6\;̡4gH2%YJo `eywȸE߬D+i[B8DmF [_-6B:lbᾸVc ҫ*&S5?+ҝ9#J噘Y<&ǔm y,Ff% ,JԴPhƓV=)sXBes1*6BGI2fQd8c:Ayth8O=]a-ZXCyYSO;xb*Sx`dQH+7*0~D76=(i蜽?|~C2(^aF?K6BO_@WF.@#(xڬr?tRК#Ag77EDuM=T U))=di ؒ`>"D8p( tV0Rp#^Hͻ n7@we&rš[I&>?.=j7  jލQ?S=kG̮-QWD{NiIEH60Pe+fܾAH:Yǘ"3lbVFy~2L~d\lԺg2geEz i:L#\FgODr<.Fmf:R+S k )ۀA蕽Œ8uWy!ϝ9}%!9TR^:$]'4#] l5) ې+ MpN7hK'Ac)9ҷparyJ>5B( o]YM>XQLcUK L%2ڷ\rTskLt47PghSrLYw $<q, }|M-KA~x"^|\qPm u)y%Qn;DAJ jI jT^q#D%Ur#|G &)ˉlbT)#KȉuL>'IW=$4xR1g{ȅ FP.(Ǘ/=eC2[n]c_8X4,s^ڬ7`n풍i%KbvWn JLm8pFF<$Mx(IM|hB..o"ɋ(8E[ q!먁p cJP0sŲqXD\ukr)+E?]3g?S~*S3"Ԗ$ayD ~vcܓhhǯ{r+YCfk2H t5fK1<"88a/eㄚQ$kpnWYMy'UlR`thSgj^PܰctAWqA^H^>]k)KB׎ '>t`#/ʤuG0&fJX Vϑ)g РUJX㾤3D}蒌JcOoikM4cYNOE :q7+aXڟT8*5U"Esx9Cb0)L?[˄q-'lz 4 X^f'[b!wHA7 ))z~( x>Ajk6^{Sbj#\X5`]@ڇKf31N/V8n!%o4'ShJ ϘYj)8΂L .ÍO cv".ZgȚ\R}3)=6]JzEw-o۔ J#J3I,'p;XLWj%,/Xx8ܿ0䦮hhVJH^<c ~yċËG cmvjt ;FƲ]ӵ|Deςuٺ Ÿ́ɶJw$WxT{]ĻW3%Rx}FewL2WaR' 0:Fu!M ›,wR6awy·O.;JrfN?9a{FrU(U&(>2"ܠ"CJ&2鿨}D+v8$ z| ȤQE|1eV0 0c@՘[tӪؼ0&>z/k濮`9EOp#~Mz=],V W`<S"9FKxIgOM߾ E8 cQ(d5&D}1dZTˢ#owq7(ɔqvd[4@cv0>(]D*Ol2 e5[22EHꠚL4|h_b*D'He#V$5 MFjvTi06;~#2D ;<$ܝ娙U.dplZʗb4? URN}8.h:7:0<9oҀm .Աb7IFNiL>4 9 Yor.rE-Th<.@x1[<^X3T(63\:}Ͳ!I_qf ?mz/$bT9%Ysv=΋q-<P &)z\T4`= a>~o딸EKxk-R ( C^EӎpQQwN~do2wtqTsX>6ܐx@a:4;P q;Q }N#ϖ6B&®[,vVYP2h`^#mlS5j ! 3fj5,Yv>&W{Ӌ;vNi:ʡsőd0vjFhC|fY6OݻO%|goпZZHfZ+ 0|jO̹X꫆NLcNmV.>CyM8ZplxϢXL5ԻWց>Oe4{K_h=+Rݿu][oݑ ;1- qk»HWAIhHkW"RExvH2 t E2Xid%n- K`ۢL(h7i1YѴ5r|?- A7(VN _.a%@u>LCG.gPץQTT]thU-KlxPAE_ Z"8at;;Hfuh@oKٜs>x`V~?5н#td^LZ*ɣ{)}Q|6c9hm4XQ6 Qyf:@j7P};f^G^@Άs*v6] }r`FFڀc ")[JA
    mg-%%2 >kNMA|+txy@ۡY!6ghBH1pkѤ)CЋZ[9iD7IyGL-$S1CP*3$[ Y{:1AR @4DY+A&ڼGƒө笀 `؛fvc c\U@Sm9_ޑi:R}0{\z㝣\Yd:9OTug 9:0@I87 osY9{Ϡk#/YXIu-%aiڿSF&+wڲ2/R: J}L죦PT 7lV8ϯ>;Ab=WXqPnPC yYSrT1.9K)M}8uYAQVE|'P@OjL ]oo_`8#*4 zqBFFGCt Y@4iu=JTeNrkcݟGNN`fG r0?7){R?"ZT%+|rO=fha1'4C]rGKyvotmUNpV-oCawULGay|N%Of9yRj1q+2aG+qKFvhvo ),OE2Jӽ]ۺJ6%1f-+4dB j0W|OU4,|BByYQ:@ٕqLoNQXJ((L tB5zGuۜ#>h/v^d຀;'UFrtX:28NƖ)qӘhԁ Faj a~7{$ vm%/lU'ϲ\{F5N&?^=bifˢ mczcLtHnjJ1D i/ 1%׍YƊ$AWBLORƏIZc: U(-yK!|;ɕzHd0;8p@|f#9HuZ$~L[-tIEww˳ͭR0'?ZWv8ER7HPHqP% dK/h Q;<Nm6tL݀_5#/#bW~QKڦA̲$KAl^ho7Ȃ˘N ~kϐOSg4{S?ݪ_Y%-Q]S3v~XVś(S먊y&_J7Ժjy@e@D nG{W3 %% tuW@[BXyإdܭICQ?<}e^]XsEkkPЀR[Jqkx 2ުЈo}X{Hd\{`J΅5bbx!QLRFt/gf6Dg14i$kS-irE!-Eq>,&Ȑ'KU_L?GB9 gn0vtK $ŪLkwugCnp#! R[=?ǴbڰCZ ޣRRFHϣwb'(L p  :`!>yBJ+|s]$TJ/) r>s֡3QA\us#i ?U{gjNLp+E T‘aj;.\>PГdW> m<ҧh7^h#߭ C6DWMgdEA8#I,ͫПJ^SPk@0þ8:ޜTQ)o0[T4^@k:O5gJ3}1MNh4"y(Gq;y[VOC7&7@guh ~CMpo_"[h-FJ%7# %59=.g4^{ohm{X{HrNԳO{>ȄsrlsY=mA쬢f*S5_TpӀilп-ɘsҨ_/1bẼ+K-a῏:NFwt +G [V"y߲sZ>n(XwYq8 .#To<&g1:#S@g68l\.ΚCPIzFD3+4W2PQĻߵYakH-+ H ɛbg1d˒ҵ~2w5H}|ēYF%hA㐶jfQSAvاwZq 'ɱnu\ Q5!S`l*{㏷,NITV<[u(ٌ2Iݿ :]i.XRM_Acm7o [:ۈlkö_Iڴehh'߲Ioq:?JK]SMsEXb|h5R XʚksOa8sdxdݙ0=i\4t6.[m;i .Gi1z%ܑm;0 H,>S@Rݡۓ, ,ڇ1wftXY./u\>ӕAO͓rJNUʿ3%f?c+ܦ!u 2/5o{0xEҿ_eҨ4!ǞO,Y*l"<Ȉ5`&s2np1#6;ɝ褳iYNU;b6S9ˣ >qj_fpBY?3'0P_@x2UWOl)^z Rc<䐥O)͆^xqlm)Ϭs픺"|—rŘ]-$ !퉨,/9$Ckr(e674/n#Wpdˉ0LX ȴz؇q v_3t/&YR*5 U-da\\r BnyeƱK,d])sf Z״/Fw>K PW1oŵ@o}Rg"c::Kj38QwKn aU1JךPYd)znP>\Q4:zƺv Cc4P:YՇQNW h -w+#|Oxz"Y&Qa~;BPխu"kvwe8zh|-UL4EwWeQ+EcS%E߭X6[+ZJ3Uw U*iK8IP^84@.3Pĉ5qW~ GA;"rF.1HEUqEpu6WuX<4L?;bPNpxSs˥2mJإ_Q|mJT*&(QAN FE0WZ:{[6`}ĸp%gYZYMR˽,)'.%0#,pTtlnD}T&` m2'Vo0M@ۨ 8O,+& ҄`,sUT̰wV,Cի]Np"K J|B|cxgK>uO !?3c>k YF4=N[xMxt$fp2-AB,2s|Dk0a<[5cmSLo&9eu@_eMFery7 /jm?ٴ[bĩ]8?+]q|u#͠ёԹjdw7{cY4F,i6 Zx C:*ya;Z-(NA`S 9s$.5WE PHiH(q@Ba1^qF-d, ]86 e1^31sm͢Ѱ*9_|{3.¡ܧͯt0 OZ@f}m5ضx2 ((U}d,٘LnFb k˄gAĊ ֝JSn)RzԸH ^vŰ5zyj/F|bK2s!lgios<hwg3P,I'U(.iD1;ތ}=p- Kbݺµ Ӑxܗ{#7Wk pv)%H%BsS]7V2]Fv˴kbw}1oNo/,wV\^3q|ћQZSOϪ5t>X+t}"h#ܟ}3l@F )B'y#RC'O/NbRO <@c*y}"yNήoՔ\EfY[m5 'T cbVt}7챴Mϯi_y>fA>#KH8VI% [3[0>닾SI6ZcU[kx=#"ubȵ??*U㝞I ƞHxLճ\b;^S%Z Vޠ'k+s06nÁZ'#GRcݱqPD@ R[&2=D"IU(u ,A&%7QR օV3V'dϹ'7 a/+w>`DY``&9oT8J.]5z+{ȫ.}2WaxZ1լt8i ;`=PCeW0 FdUg=}`ŪjDLjhM('W2>HɬMOoU:N74Me?`/gQGZIfe{mr3Oi9W_Xȗ_%*Ǿ8~1?Rjaٺp򙌏g <=tA8PKBٹ)T  6IS+sCp.22D,LrTq LQȆXVnBIޏg!r$ _/1k84.+H2+p: [*L|!?4s /qjZx?|o),\jNEI1nrrw㎩vP4 7`zsL3ݡVנ3}NwB0nP}NFkpw I6UA,#S4l;˩D!3qyFG;ʚR[{@-Y./9PŖ=U0cDYPV[N솭҄!qB}^ [E7IX]XTbMM.xk3lhx:ţ/aL.ՄdrNȤUrmٟg裞/&cȆ"+.r]I~WH5=Rqh6`I-cuF61BD(܌>Ѯ5OoJ~駄$\()f` laeMy)aڥܗpˠ7V`}CTF1^Ϫ# GsX3,ΐɎWP7\}'ڀ^,-QcXY;ö9;t<*=DGy@\XF:MDLeC^S~X_OέcA=7loD;Q,Xͅ*P9tQGhs=  '}rpӤwʀ`xSXntO]Ax F7įaN0B~y8{pbVI#0)R4 F?~wp};[ !M2<b|Gm*>B;&۫\:z1MU*ESv=X* rELV6=oԫCdؾ5B^B}^ ̭c5u_(("o13k^E{iw6hMĹnrvfT-bd2s)"*_CEd4|O?P(v?TNUjHoˬ.Ң<^Sq$q$mRۮ\fk xMy(A S!޶25O]ym"S\ /i} onR K&ԩ‡6ń"mV'r]ѯ *Z"X0VՒ+,̂Z~QVi(ump,u ng*=)CO.Fw&nIIx1diuOЁI8&bE@6p!\y C|ΰ8P5T1a>H8o"*/} L:nm`Ma# 6*XhWؽR0,Jԧz;/ޤeSӶWVH:<R2͝A ȝW&9M +Pr"~@/ ~nN-zpKgFc,?A_VР&ė>W"GUgٜގ[P# t\g2ZUgxD-q}/Q{1?ﴟ> F?P$E ˈ@0B)( JH3{˂l^#O>R+lw mpR߷8f=i%!C?Ũd<6}DtE7eK?[O8(V.V@L)[QrsfKv&Gރs S.Z?y\4ԕȼ\'} Zri>5y\GhEY!m'RɄw -ЫV[y2HNܛ$J;P}L`k5pFS_x Yzu/뛥[v3pC&|0O~hۑ} 2\_1Xdg(Ivʼnj|ĵpN!SQ1!+݋7~Ύg/vuh("ǪPlo9y_`BϞ S/B^?*τcuxhLy2Y ֗o49tN+JxJiJ_4 R7%0xWjd(h+-R ( ]i!L1@e0v*a-*h*A|ỂPy m`C;.5Iև7]tȉxVF߲b4CT҂R 6Ř W6p!Cg]@'nBYv&<ƚ%_bRGڜq{ϣ[r|[ ! *++:|!Zޭ6q[YWCNA'yId㉶/_9h~/@J~) i2Cqʗ]2r*?Yb#VȶGoDkf+WLPXlqs8%ox共![]6s^ʢoW!<ӍKejj`ZݼsǍkY']ǓUW1 M]jV 3+cN#\qhP}7xN;<> =h3.z"Nw״l#*xF& lY[Xۖ+pk0 h|0~#1f vJ&_{iP)=,>-556ֳu+-4Dϟ&i!Еd5,J)ʒtoqy<^HbSx9Yƴgsɓѐ?O]y*䨮]w Me:b]l&ܹEwpU4м@ 6 be{b%0 48/DI#@zFܳ}Աk# HeFQ]FI TJp1 LLOҫ7d~ #ZCoarltWI đBr PD\)sYM SVHSSMzRf%zŪEg&:OWD9ɒ BƗZ<ƞ3ϏJ^m㹘u1m lC`Q7 g"V q<7+g+Y4b*~,&]_c"ќB굓F,{JQ,b]FۉLyi'A$[6٧L ~kNu/|teWٛ2(Fgq2Ԅ""oɇՀ`+hF;GO=6SPѺMVA\I.>Pp$>DkeBhrEЯ_=ڙZ i";<_rplmsx=MxbŞݥ8]hIKk }QFD\tpUdZ{4QВw=CHmuԛDĆIH$9b 4+>2if9M5GoPM&R`+cn 9L^g}J,Y>c'#JdJW& <}{;!"gI7^@Rfۂ<|K:-'R CK$ϵA6c?g`h [ 2hZHURO(syT,FLz~c,an1!Yr]m MJH9:AT*mJ}8#Z_y,0;ָ{[g]{(.F9D \|J! (Uf̏a</›;U-ZI1%r迊z_$b# WU gmv4^ R+]XOE7G#^EG LR!uL6az3[ ~hbx9NU෇ͪ&QX=*=v xm(P@$AIdUe.y2 :*&iKB -D[|,x!ei8uz|'Ú`^5BY5=nը%s8NrHK"xR乤ee(Gݏh<ꪋQceƳ`gIk.Sw%v(C礃j: GATh/нl!uU]IE63*F n_~K%8јIyYJ}RP9)|<~y77&\jz+E$gsȁ9NH(g {kRgN9Fq@ z N9VwL02hb x@cWA3Diʱa #bGBEx_{qDa6/0[k[> "ڥ)u|'׮j"Y ~\I8PT~$*Y#$EAR<'OL&#?Sh,gh6"⋧H슸px寷$Nդ<е; 3*ʼ1\ &e(^("uvm6A-^ =+jA"y8!j~<~Z^Rœo7o)7M;͕\$1VGb.ݽf|,*~s A4|k[+*}x<ĕHxuǼ >0/{Ëw,t&%tz줽(z)Ys09y.>jQsZbHH7콒0-ٸAHOB#ţIsT3Fk9y^@Q j3DyvʥgT@1F̢Z,mc icdwW,wv>~USm/SwAw^ME42WҳLn 9"ESvуs8%Q`G-2"hml*`.? l)5󀗷dxJ7;%I$IU6#|oǹV,Ek/ 4\,U;ŗ~H8Ҋɫ)bִnn6T╽nw.JfX\9|^5 v>pa 0xZ-0tU}gtc%<ᴴ,N.ӶsY~ k'60ftyrz[k56?W[0xR;B@j '؜#/'x(~CL.ͅ&У+Gw9;xS c,IS.}yzCT)L>Ա&TH1X2iUORaMhk0\u\En@QObGp\֮2gf0RqrKNRjII٧ &u u{g9Wy!+W#/:i†].a`VK'qOQ#rEIzT||-^nw_ 儌܎n9iX1y +p _1Cj9{1kl$Oo8Xfn"U]:W;#:Q=MQ Ջd"2deƿf)A*>9ℼINL"5l^6;`|+ܲi4Ȁdꅘ7WYйtn7]F\waN)6m=]㕚ڴ1B6lt=JܗXYmFZq_#Yб,wpTQl(JD0@_CdpВE;a-i$m\Tto`%7kF5K%E$P&Ԍysa| kE5L.נ$ 5xyћd 3ע׹$a̽(yhy-LǸ$gulUeoQl_:b#ŋx,2pzKЖ> u_l|M_빱} ,ԁͣ.5،ydsLZ9-yRE lT'Ya;L՘3i=@nHy%[,2RٱNy_TjѶ֒8uU0q!#5(pGduG9d ٩f4lynX:v,cPmfpizR`fIY kPuF:KŘꚜߒ@If!9ews6b/m+75WP0IʟB Sq]&grVW؝Z]_jX}sT$ \abhRD</S Ix(pE2V(D8%'.fj Y4W-qdA_JwYY+wjEg%:#Ĵ.z-+(L?N:")&,iMy1LѸDa.i)x衢ΪMӈ=F.ܮXG읷&[J)1WkV&YzPO(cz4Fm' DkaF*n-Y8Qխ,)Sy%Jۇ9ZbkPP]bΥe#a[ ҋ[WEqt~ 1WSv%.)7[INF⩗wGD>az4+ DOxCKeշ{A>@"4 %o<XnLڎ|Mu{zEϺ_ӏ:S{6³#0C06˳̗k2z-9 =.\MBo(6.3Q uao'@6*4e$q\$|w$d7tQ_D9fH:fcm?jj2ʭ{MN" a5!^ i3B`]Ru=^Ilc`֏Snm0Sxh&UhRGU<*M;X--։ܓBo9nNW{PR s @#RV[¶|/;j0p 58#6z_2 |EC6%,|*&j5zJ}dwtv[{3=>ur.wmqWJe-x] , L)3~ ZZ鱖{ZC-k]*ZXˡLxWlœX^}4y&ZCZ>6WbĜb.Gxu&a Ȝ=DWRX0:>ҹږ!CZeԭ8Y@{w]I20aC[W2Gl<ėvE]|WKWHalÝ1nEX[2)}BhDBtt=Qf/cE7hS)+]lܸn?3,dq}? /L Z)nO/4p2v wo#A̻ɿ<}ig#K ʟN"I clˋLm n 7wݷ9#Dp!l~Y̸n`Q3JT*bf8xG@],- Vm&hi&fxEVc wXʸQc!i%(M ~_XЀ0,-M{eqx*gf>VP5>J癱d *7۽_q%XoJdM=N3r$jӏGl<\,s#s[ Ż,)sB}/mϷӠɚ'01;=C9 vh}DPac96:1[@fW/k6XY{:Su Xz៵CIP0˺fc*mpƨ` hcs:=-p-H5m]"yP0mJ$R|vï\S]{g-u4f9 X=OT#sm.W,=c?2Ih G9L$a_z>EK?#kW~,ߟ)ᒳ2hnalQ_k ˌ!s5$6_QS`bktզ}\yiԮ:^pj8Ѓxb+ڰ#]rcWpv tNpbܽ2ɑ>2o^Vr ib|ۀٍ[.|@ys&:E&5.N # d<&N<}lѭGn23,X/Av,oHRy}kI'a,9 e+ ([[).FѓpVRӵ1>A4rϒ9ƕoHgBHu&.ImU3?Nb(.I_q/F 6Q4J5N^|J6E=_}9s'x'h]jޡ~L;h70]gz#C=kZYJ$>n\:P"@ v3R#f%kn$D:r jh*oƾg>)ǼwfR_'Mda&m(9l܄08!{bXmhw#7Hp-MI7b2}*ll>ƒ I4d7L_^FEWC1lMHz\Qnj|jZ<[Ilõ$0:eT8M~dmP8zHm 5gcxDY;$գYTڿ9 p1 Nvu0LP1!jhQ$MB07-?|( #Kssjn*az|]ibWV=Cb`fZլF17_?AOG)b0!lK^F'5;pȄ,%9ӶL=D5K:)x0(PS8kfӬ\\Lߴzʕ-MܠVavMjyYVgٺ<*XTc|ϱA5KQAI00C ;\} NċBuH9=zwN8蹈a}\7*m l7}WFaQg31{T}K _` {Qn&ţ6JhQnx9Vy/u"HBlD8O=[V뮷:8'FPM*ΈqF4{Н\xְD2@BX$߯iCU4(B TTكBDYUTlJ&Mߴ{>NM/ XKB̭4Nƕ1|Ud)d3P;N" x﫯:j۷ Y-# 2aњg?"fC €('龦0jFpka捉 U,~:-#83yA9sW0=2-P]^jt^).;,3se2<׿C23¯Gba>_ATnƑ]?20&lH:اՔ&(3)zt#Exב89n7L{O̞8&7㯾u=4j,\pg9v^a힧~xvom,x\eʳLv ;q!J*I(׭Ź|1"23([*HQ.jn+ေ%J JJ%LF%s >KgD9e9:?R/ҷhv(r~&0 7퀴RIMW@״;,#-o>*7`bZ0cE̼&ѥng~2zO1VP6jXJ٧C1[jzAcj:v+~a+`# ZAeuE->ETLXv}$j} 4,op%OoE?ZmLM!3d%sp܅M,t?5;lnOzk[鷋߀؃W DL, JNtHvI0gOR,8m;A|2h_>8ɶ\pꊼEszT"mn!Wx}6YC) ׂa4_5eHnBmkL>O!rW^NƑhiz<3[q{^>QC"baY?_SPPENlx|j^c>KOG!+ÊH~Eu'|OJ͖9J`fp=m5$tsٗpfT1,26\ORZnfjw{F7QR rfGǃ ,k` < 3bCCN*2{jU1{{*@[:wu e&%,4rHz~>::W{UH~[ !; :-Hf<"Iprܱ\jEZB x $7G~'׉^z_@.98 5$y ۴mzRjvVUa͕U$L3 V9jgI ֳ=;Ic$/Z!]M%Fgr͕`zWF\-aHW6qpzӽ]?5.^!9#ޮ7 3>݉|i6Zm]Ȫ8ZB.|-j$*!$G *Ĕ`4Ղ҉7iit~mUìR= $%y3@ӳ/( y@g30 ɰ. 'x:  X2(ZUðiA }_)kNLk)&FeP-UW}-WX8|*_L I: g=tIjTҙm)N1F4%v_H1|e:nt=Qhq2~C: . $W .Ҩ{ 1C<=*V1A۶Cr<}˹("*a,raXG/1aR /Ui[A?5-KmV6rFyvQiEd\ajڱv@yz A $;Fўj#3wud x8HoʄW:L~{QcC) PC)'CF8&ۏHm|!)ޣ*HZBW f.KVdknobaa;]F;L4ΕP<{A+B{Ȅɮ;9G#DC7tcr7CE|":;wqA0ĪBieN`Vz?M;9$ =V$ܡF 'T qq \Aߠm;;BmCw:7=( ̈{.ӷ?l`d@GR: n O4\nP.91rjؾX:F1IΆHhfWl]h2; @|?t" i\&Mi\j0NB~Ч˘w@!%`n*p=S;V$qOъدqIO @g%q0slgu ۸)Dn=Ik-2'Fn{'(/&k9^x}n[EUώn"2*.\sXʷu;4: M@|3kƤX2vަ&pR}Q`R% S>c(uPY3 sAfR)ES 'n  *&hװPRgMAnoL!Bbxvԣε3huO " 9ؐ|usSI\ZAm~&F,L(ۼ^1t㵰 )4wL0VVDKN$c<ljy;p{pzA;mLv f?v _=);M<9\I w}R= wBr `䋸 1.0ha/e69ǛHpq\;;6MI~^F"_ p>30о/d -Wi< `-ZN~j@ETTu5Άl՞Y-çqP_IyxvU)╲p JDB_n>;L{gyoeWag%\c$=N67-@kN Stwa?ux>zbGi =Q0=|e%IEn Ec8;6!h$0?!\5 Qn?{t߃gbQ p@78A5+:O7 8|bbT;+5͸a KmMHY)ϵ'ˎi}ʯ@ A]'bghIADDua'G 쁖CDr/pp~$R6٘M фǴBH_y d/D ^l Ćoe~^#-eT%@0jb>7j BѮ;a< 1 |#z{cVLg-@8bT}&{y-V OT"mcY%3_Or'Jb"4%M6Hc<_-@y̩iU2bhG {?7e,=[Jh~0;${?WBT,αwt%#rT18-}(J_hp >b.VoHԄk=2l=Kh`q`ĦͥˋvR:`26CxۅvWש-]D6Dśa Yh$AmeSg`[:^{UV&]55o aA==iϓ_ulV6)N.&=l͟ۄ@rk(޳tpj_z>i`ϰ :-hb %):PNŷ 6 ֘(kqϮJ؟~}~R`XGMӻ{Q6ѣnDXcM$J&4:%&a%Vbi,43k^ӭ*- ߪ`ɃuOJxw)~{.3W-q'/A\ZzRG$`ɑR:2\ͽK562X#IgՔV>U*M qZDΧ`f 7yHPذe gF}# &;'c]Gtz<94($Gq|tDvԻ.ܿ͘AmkBcN_&{JJq֑50,? eʓ\qf&C^ǰ(ŻיٹjSO5GsS #n[a >m|ٚ&(F-®7 F}@TdiQQ^0L$V`8w&hG͕ Y&+H,ކ_ Z}0|)n-3CHĔK!{뾠QGcc/(XNy"qZ]b62&+qu24Zhw"a6kfY/\q/hmߗ1:jSftUvLlxka?Yma n%׶aC+(V:_!>/.G rV}1K=a<8 v,ѻCMX>D>lԒ(M-g\wݪHF3i7t\oÐUr:^GwR!GmTW8 !{aez9ztMN7WoW˘IBk.HJftމ }jG5s v}B픧7t&x(3B%CI-}G6f⼂YHkjK^`\pEhT3??35>zl/ɬ_ $f1+ |t٪O }ljoB &mو`Ix˚#ǎ]([w'kOh8S>9 w (@~1u00fuGX#Y ;BO)f;% 7 P{o-yl^Zj5CYW^W@Sfv^!vok᦭&ج?\H<(/m\3(~BkJ) ~0 52?5|:})W0PA&e|.GB[Ύ<ǧFPɅ 7:|/}v(ϐਪa !?(@upJ+FM^(QXVM3e 0ăD)ەir]d1ڣ/c+$G#, ݀`),jOn<` euQp2:.lD/E2Tz QTCcebXKU A9uN<9==>2 \Ph*-[ Q vꯤr0Wn^h'}]`P!񶭓WPՙZyn @.Юo,\k"$r_a1Q}m $DnRBZı‰ي(<%BD_f 1T_:։w7,!jKd`o\<ūNl=gF̃͟0l#r2Ц9@Ӎ&VpbҲy J)5፾2t(kX:4:)|CK0ߛ=4pUUuJ(9 Vwn%a ]/4# +fAgN4a2#^jP*JMZ!N̄ɛ4F N[Tw+dS?P85ב\Ng%b7Z@qWWЂb CW x<\B۳ S=&v&?*\593=taFGʋF!%:6Xk7꛾Veƛ;>kIYyu2݂ޑO貢TZ`xN}X\“!/\t(>nVIGqxtp#G[$^oPUaØWG;=+ Ic(1|D;nzg˖l}|T4n!RŒSt=6rw}Fz_?h(كc'h5qAv dNAU 5P\V ojӓ9^x)&6h_+as%5.$r|'>+Fu[nlaK-L '"d)B{Gxۢ:SE3˰Xwh%͓.`h$GO"{>Ƥ9o _'gY(o^L+3 ^QOUn+ⴐCt ptZ܅a 1`R+̃+jܙ*SC_R)j[j֠wܫ/?JqW܇J/I8`uA*O83:7nWy*f7GA? 1^c9cRl;<˫7u kԝ+#?y x`sǦPmK&:vvB,DS'ܲ|辆a7-MZT}; 3p߬wTDexO*o1;Ò8ϐs領`GccӏMԡ;}>"SfHې"C]͚`Fp84R>Eh~rX-=}7ͽ6>H%͡%֯+j`EŻI.HEz+rMs|C | )l#5ϗg`Ҕ&Ŷb7B*,7Ѷ쩓Ujf5dljC^$KFr'@vL%o$Z9bs_qY0hNdu g]]f6ha, u95\Ej%Ԁ(ENP622\J̆EA[܌<ۼ&өXq|ĨumVBJL;ҝ˒_Q V&-vSUCG D9@7{Їpo%gTbIdI@7qW]u(V%< <`eׅ &if?SRi ܝ/`(,Y輎^.U8g׸0{;mU=KW>3ljU-Y&bye6BwO^"wryzaL\6hF JgyXfEQȣ0 " [!óPz|!TlMȱ)6ʄk *6:qh. _zS[Cgr]!7 ly*p ?Z/S\Tyˬ!+8P*BKy<']B! nƪ.w- k%JzT ڡ ,EUԽaKzhnd*,iw ^;_%Aԧ*؊3y G|ES>6](Z$ywGڅ ;Sk(xUi=_Lom_M ͯݨA wLǟ݋HJKuh0pĢHmRNLjc94e}< :gh2͹wtLF8-y/BZ7_IFA/S>{˛Þ"ы۠誉w*Dq>5WƸ3֘r˃Ĝϱu> ᐲ֗{"8,XVʌӗȩ vRoq"gfII 1yIR&++lL($)6_99Kt\a.jO8\=Gz@ath6LI.VIWqV\$st2"ctᏱ fsb5g\3-h/kR!فa*EBX:y4Q8+Rn=K->kʖfk&4eL Sd1F8 cKS LWZsl&(?|["a/msX1VU|"a T$>.yG"M1sXnf"2hcD}{ȺF8yŁ|Tjt p$y}K 5̿g !"I lO/oSWu >O'\.yK@<ȘmEF׳cgkclk{ԗH˶ YZ