python2-pyparsing-2.2.0-lp151.2.1 >  A [pO/=„b7Q -ێ}#UEl,U,*mK_(9J7j'UfYǎmwRϥ{"酹y:вaڒD5P3}Hm !;n\2)2EW׀*LN*k0HD:^IHTUϊa$٤-ؐ!QI[1{~˳ mf v_CjpA? d $ Fhlx|  L  d  |    8  D t   H|(1889:ByFyGy Hz( IzX XzdYzpZz[z\z ]z ^{b|8c|d}He}Mf}Pl}Ru}d v}w~@ x~p y~z~~~~Cpython2-pyparsing2.2.0lp151.2.1Grammar Parser Library for PythonThe pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The pyparsing module provides a library of classes that client code uses to construct the grammar directly in Python code.[p7cloud124 openSUSE Leap 15.1openSUSEMIT and GPL-2.0+ and GPL-3.0+https://bugs.opensuse.orgDevelopment/Languages/Pythonhttp://pyparsing.wikispaces.com/linuxnoarch ssw A큤A큤[p4[p4[p4[p4[p4X[p3[p4[p5[p3[p3[p380b1e317287ee2e353609cd6d6e86d3d42e80d85163cdb3d25f0a1464fe15c78a53da553f1352adb4aa3402eeb4702bf8ecb201daba7993e1a9ab70e7210c0be01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b7943a31b3255865437592dab140cb698ddcb5ffec5293339192274e237e72e656040e69cedd4a0b936aba7486b8f7f9eb4e36e00b598dd05b9175c25a446b1e3bcdbffcaff5d51b4ca5d5f9e7adfd2c9870507e7ff397867a17fa77f08f29561bcdbffcaff5d51b4ca5d5f9e7adfd2c9870507e7ff397867a17fa77f08f29561fc45c4f9c43a245082583ef6184c56e51b6ebc1e33c7bdc9a67fbfe1d2786c1010d5120a16805804ffda8b688c220bfb4e8f39741b57320604d455a309e019720a877cd123305d2e1eb551082b066ea2d78d08fd6ed9f82b011107c42732ee5crootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-pyparsing-2.2.0-lp151.2.1.src.rpmpython-parsingpython-pyparsingpython2-pyparsing@    python(abi)python2-baserpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)2.73.0.4-14.6.0-14.0-15.2-14.14.1X@XXAb@XVHUPTa@R@-@R8D@R8D@Q@j@P@P[PPe@NYN e@L4l@dmueller@suse.comjmatejek@suse.comtoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.combenoit.monin@gmx.frGreg.Freemyer@gmail.comhpj@urpla.netspeilicke@suse.comdmueller@suse.comdmueller@suse.comsaschpe@suse.desaschpe@suse.dep.drouand@gmail.comsaschpe@suse.desaschpe@gmx.desaschpe@suse.depascal.bleser@opensuse.org- update to 2.2.0: - Bumped minor version number to reflect compatibility issues with OneOrMore and ZeroOrMore bugfixes in 2.1.10. (2.1.10 fixed a bug that was introduced in 2.1.4, but the fix could break code written against 2.1.4 - 2.1.9.) - Updated setup.py to address recursive import problems now that pyparsing is part of 'packaging' (used by setuptools). Patch submitted by Joshua Root, much thanks! - Fixed KeyError issue reported by Yann Bizeul when using packrat parsing in the Graphite time series database, thanks Yann! - Fixed incorrect usages of '\' in literals, as described in https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior Patch submitted by Ville Skyttä - thanks! - Minor internal change when using '-' operator, to be compatible with ParserElement.streamline() method. - Expanded infixNotation to accept a list or tuple of parse actions to attach to an operation. - New unit test added for dill support for storing pyparsing parsers. Ordinary Python pickle can be used to pickle pyparsing parsers as long as they do not use any parse actions. The 'dill' module is an extension to pickle which *does* support pickling of attached - drop desetuptoolize.patch: this is not needed- update for single-spec - desetuptoolize.patch : switch from setuptools to distutils.core for installation, as this is now a setuptools dependency - ensure egg-info is a directory (distutils would install it as file)- Fix SLE 11 build.- update to version 2.1.10: * Fixed bug in reporting named parse results for ZeroOrMore expressions, thanks Ethan Nash for reporting this! * Fixed behavior of LineStart to be much more predictable. LineStart can now be used to detect if the next parse position is col 1, factoring in potential leading whitespace (which would cause LineStart to fail). Also fixed a bug in col, which is used in LineStart, where '\n's were erroneously considered to be column 1. * Added support for multiline test strings in runTests. * Fixed bug in ParseResults.dump when keys were not strings. Also changed display of string values to show them in quotes, to help distinguish parsed numeric strings from parsed integers that have been converted to Python ints. - update to version 2.1.9: * Added class CloseMatch, a variation on Literal which matches "close" matches, that is, strings with at most 'n' mismatching characters. * Fixed bug in Keyword.setDefaultKeywordChars(), reported by Kobayashi Shinji - nice catch, thanks! * Minor API change in pyparsing_common. Renamed some of the common expressions to PEP8 format (to be consistent with the other pyparsing_common expressions): + signedInteger -> signed_integer + sciReal -> sci_real Also, in trying to stem the API bloat of pyparsing, I've copied some of the global expressions and helper parse actions into pyparsing_common, with the originals to be deprecated and removed in a future release: + commaSeparatedList -> pyparsing_common.comma_separated_list + upcaseTokens -> pyparsing_common.upcaseTokens + downcaseTokens -> pyparsing_common.downcaseTokens * Fixed Python3 compatibility bug when using dict keys() and values() in ParseResults.getName(). * After some prodding, I've reworked the unitTests.py file for pyparsing over the past few releases. It uses some variations on unittest to handle my testing style. The test now: + auto-discovers its test classes (while maintining their order of definition) + suppresses voluminous 'print' output for tests that pass - update to version 2.1.8: * Fixed issue in the optimization to _trim_arity, when the full stacktrace is retrieved to determine if a TypeError is raised in pyparsing or in the caller's parse action. Code was traversing the full stacktrace, and potentially encountering UnicodeDecodeError. * Fixed bug in ParserElement.inlineLiteralsUsing, causing infinite loop with Suppress. * Fixed bug in Each, when merging named results from multiple expressions in a ZeroOrMore or OneOrMore. Also fixed bug when ZeroOrMore expressions were erroneously treated as required expressions in an Each expression. * Added a few more inline doc examples. * Improved use of runTests in several example scripts. - changes from version 2.1.7: * Fixed regression reported by Andrea Censi (surfaced in PyContracts tests) when using ParseSyntaxExceptions (raised when using operator '-') with packrat parsing. * Minor fix to oneOf, to accept all iterables, not just space-delimited strings and lists. (If you have a list or set of strings, it is not necessary to concat them using ' '.join to pass them to oneOf, oneOf will accept the list or set or generator directly.) - changes from version 2.1.6 : * *Major packrat upgrade*, inspired by patch provided by Tal Einat - many, many, thanks to Tal for working on this! Tal's tests show faster parsing performance (2X in some tests), *and* memory reduction from 3GB down to ~100MB! Requires no changes to existing code using packratting. (Uses OrderedDict, available in Python 2.7 and later. For Python 2.6 users, will attempt to import from ordereddict backport. If not present, will implement pure-Python Fifo dict.) * Minor API change - to better distinguish between the flexible numeric types defined in pyparsing_common, I've changed "numeric" (which parsed numbers of different types and returned int for ints, float for floats, etc.) and "number" (which parsed numbers of int or float type, and returned all floats) to "number" and "fnumber" respectively. I hope the "f" prefix of "fnumber" will be a better indicator of its internal conversion of parsed values to floats, while the generic "number" is similar to the flexible number syntax in other languages. Also fixed a bug in pyparsing_common.numeric (now renamed to pyparsing_common.number), integers were parsed and returned as floats instead of being retained as ints. * Fixed bug in upcaseTokens and downcaseTokens introduced in 2.1.5, when the parse action was used in conjunction with results names. Reported by Steven Arcangeli from the dql project, thanks for your patience, Steven! * Major change to docs! After seeing some comments on reddit about general issue with docs of Python modules, and thinking that I'm a little overdue in doing some doc tuneup on pyparsing, I decided to following the suggestions of the redditor and add more inline examples to the pyparsing reference documentation. I hope this addition will clarify some of the more common questions people have, especially when first starting with pyparsing/Python. * Deprecated ParseResults.asXML. I've never been too happy with this method, and it usually forces some unnatural code in the parsers in order to get decent tag names. The amount of guesswork that asXML has to do to try to match names with values should have been a red flag from day one. If you are using asXML, you will need to implement your own ParseResults->XML serialization. Or consider migrating to a more current format such as JSON (which is very easy to do: results_as_json = json.dumps(parse_result.asDict()) Hopefully, when I remove this code in a future version, I'll also be able to simplify some of the craziness in ParseResults, which IIRC was only there to try to make asXML work. * Updated traceParseAction parse action decorator to show the repr of the input and output tokens, instead of the str format, since str has been simplified to just show the token list content. - update to version 2.1.5: * Added ParserElement.split() generator method, similar to re.split(). Includes optional arguments maxsplit (to limit the number of splits), and includeSeparators (to include the separating matched text in the returned output, default=False). * Added a new parse action construction helper tokenMap, which will apply a function and optional arguments to each element in a ParseResults. * Added more expressions to pyparsing_common: + IPv4 and IPv6 addresses (including long, short, and mixed forms of IPv6) + MAC address + ISO8601 date and date time strings (with named fields for year, month, etc.) + UUID (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx) + hex integer (returned as int) + fraction (integer '/' integer, returned as float) + mixed integer (integer '-' fraction, or just fraction, returned as float) + stripHTMLTags (parse action to remove tags from HTML source) + parse action helpers convertToDate and convertToDatetime to do custom parse time conversions of parsed ISO8601 strings * runTests now returns a two-tuple: success if all tests succeed, and an output list of each test and its output lines. * Added failureTests argument (default=False) to runTests, so that tests can be run that are expected failures, and runTests' success value will return True only if all tests *fail* as expected. Also, parseAll now defaults to True. * New example numerics.py, shows samples of parsing integer and real numbers using locale-dependent formats - changes from version 2.1.4: * Split out the '==' behavior in ParserElement, now implemented as the ParserElement.matches() method. Using '==' for string test purposes will be removed in a future release. * Expanded capabilities of runTests(). Will now accept embedded comments (default is Python style, leading '#' character, but customizable). Comments will be emitted along with the tests and test output. Useful during test development, to create a test string consisting only of test case description comments separated by blank lines, and then fill in the test cases. Will also highlight ParseFatalExceptions with "(FATAL)". * Added a 'pyparsing_common' class containing common/helpful little expressions such as integer, float, identifier, etc. I used this class as a sort of embedded namespace, to contain these helpers without further adding to pyparsing's namespace bloat. * Minor enhancement to traceParseAction decorator, to retain the parse action's name for the trace output. * Added optional 'fatal' keyword arg to addCondition, to indicate that a condition failure should halt parsing immediately. - changes from version 2.1.3: * _trim_arity fix in 2.1.2 was very version-dependent on Py 3.5.0. Now works for Python 2.x, 3.3, 3.4, 3.5.0, and 3.5.1 (and hopefully beyond). - changes from version 2.1.2: * Fixed bug in _trim_arity when pyparsing code is included in a PyInstaller, reported by maluwa. * Fixed catastrophic regex backtracking in implementation of the quoted string expressions (dblQuotedString, sglQuotedString, and quotedString). Reported on the pyparsing wiki by webpentest, good catch! (Also tuned up some other expressions susceptible to the same backtracking problem, such as cStyleComment, cppStyleComment, etc.) - update to version 2.1.1: * Added support for assigning to ParseResults using slices. * Fixed bug in ParseResults.toDict(), in which dict values were always converted to dicts, even if they were just unkeyed lists of tokens. Reported on SO by Gerald Thibault, thanks Gerald! * Fixed bug in SkipTo when using failOn, reported by robyschek, thanks! * Fixed bug in Each introduced in 2.1.0, reported by AND patch and unit test submitted by robyschek, well done! * Removed use of functools.partial in replaceWith, as this creates an ambiguous signature for the generated parse action, which fails in PyPy. Reported by Evan Hubinger, thanks Evan! * Added default behavior to QuotedString to convert embedded '\t', '\n', etc. characters to their whitespace counterparts. Found during Q&A exchange on SO with Maxim. - update to version 2.1.0: * Modified the internal _trim_arity method to distinguish between TypeError's raised while trying to determine parse action arity and those raised within the parse action itself. This will clear up those confusing "() takes exactly 1 argument (0 given)" error messages when there is an actual TypeError in the body of the parse action. Thanks to all who have raised this issue in the past, and most recently to Michael Cohen, who sent in a proposed patch, and got me to finally tackle this problem. * Added compatibility for pickle protocols 2-4 when pickling ParseResults. In Python 2.x, protocol 0 was the default, and protocol 2 did not work. In Python 3.x, protocol 3 is the default, so explicitly naming protocol 0 or 1 was required to pickle ParseResults. With this release, all protocols 0-4 are supported. Thanks for reporting this on StackOverflow, Arne Wolframm, and for providing a nice simple test case! * Added optional 'stopOn' argument to ZeroOrMore and OneOrMore, to simplify breaking on stop tokens that would match the repetition expression. It is a common problem to fail to look ahead when matching repetitive tokens if the sentinel at the end also matches the repetition expression, as when parsing "BEGIN aaa bbb ccc END" with: "BEGIN" + OneOrMore(Word(alphas)) + "END" Since "END" matches the repetition expression "Word(alphas)", it will never get parsed as the terminating sentinel. Up until now, this has to be resolved by the user inserting their own negative lookahead: "BEGIN" + OneOrMore(~Literal("END") + Word(alphas)) + "END" Using stopOn, they can more easily write: "BEGIN" + OneOrMore(Word(alphas), stopOn="END") + "END" The stopOn argument can be a literal string or a pyparsing expression. Inspired by a question by Lamakaha on StackOverflow (and many previous questions with the same negative-lookahead resolution). * Added expression names for many internal and builtin expressions, to reduce name and error message overhead during parsing. * Converted helper lambdas to functions to refactor and add docstring support. * Fixed ParseResults.asDict() to correctly convert nested ParseResults values to dicts. * Cleaned up some examples, fixed typo in fourFn.py identified by aristotle2600 on reddit. * Removed keepOriginalText helper method, which was deprecated ages ago. Superceded by originalTextFor. * Same for the Upcase class, which was long ago deprecated and replaced with the upcaseTokens method.- update to version 2.0.7: * Simplified string representation of Forward class, to avoid memory and performance errors while building ParseException messages. Thanks, Will McGugan, Andrea Censi, and Martijn Vermaat for the bug reports and test code. * Cleaned up additional issues from enhancing the error messages for Or and MatchFirst, handling Unicode values in expressions. Fixes Unicode encoding issues in Python 2, thanks to Evan Hubinger for the bug report. * Fixed implementation of dir() for ParseResults - was leaving out all the defined methods and just adding the custom results names. * Fixed bug in ignore() that was introduced in pyparsing 1.5.3, that would not accept a string literal as the ignore expression. * Added new example parseTabularData.py to illustrate parsing of data formatted in columns, with detection of empty cells. * Updated a number of examples to more current Python and pyparsing forms. - update to version 2.0.6: * Fixed a bug in Each when multiple Optional elements are present. Thanks for reporting this, whereswalden on SO. * Fixed another bug in Each, when Optional elements have results names or parse actions, reported by Max Rothman - thank you, Max! * Added optional parseAll argument to runTests, whether tests should require the entire input string to be parsed or not (similar to parseAll argument to parseString). Plus a little neaten-up of the output on Python 2 (no stray ()'s). * Modified exception messages from MatchFirst and Or expressions. These were formerly misleading as they would only give the first or longest exception mismatch error message. Now the error message includes all the alternatives that were possible matches. Originally proposed by a pyparsing user, but I've lost the email thread - finally figured out a fairly clean way to do this. * Fixed a bug in Or, when a parse action on an alternative raises an exception, other potentially matching alternatives were not always tried. Reported by TheVeryOmni on the pyparsing wiki, thanks! * Fixed a bug to dump() introduced in 2.0.4, where list values were shown in duplicate. - update to version 2.0.5: * (&$(@#&$(@!!!! Some "print" statements snuck into pyparsing v2.0.4, breaking Python 3 compatibility! Fixed. Reported by jenshn, thanks! - changes from Version 2.0.4: * Added ParserElement.addCondition, to simplify adding parse actions that act primarily as filters. If the given condition evaluates False, pyparsing will raise a ParseException. The condition should be a method with the same method signature as a parse action, but should return a boolean. Suggested by Victor Porton, nice idea Victor, thanks! * Slight mod to srange to accept unicode literals for the input string, such as "[а-яА-Я]" instead of "[\u0430-\u044f\u0410-\u042f]". Thanks to Alexandr Suchkov for the patch! * Enhanced implementation of replaceWith. * Fixed enhanced ParseResults.dump() method when the results consists only of an unnamed array of sub-structure results. Reported by Robin Siebler, thanks for your patience and persistence, Robin! * Fixed bug in fourFn.py example code, where pi and e were defined using CaselessLiteral instead of CaselessKeyword. This was not a problem until adding a new function 'exp', and the leading 'e' of 'exp' was accidentally parsed as the mathematical constant 'e'. Nice catch, Tom Grydeland - thanks! * Adopt new-fangled Python features, like decorators and ternary expressions, per suggestions from Williamzjc - thanks William! (Oh yeah, I'm not supporting Python 2.3 with this code any more...) Plus, some additional code fixes/cleanup - thanks again! * Added ParserElement.runTests, a little test bench for quickly running an expression against a list of sample input strings. Basically, I got tired of writing the same test code over and over, and finally added it as a test point method on ParserElement. * Added withClass helper method, a simplified version of withAttribute for the common but annoying case when defining a filter on a div's class - made difficult because 'class' is a Python reserved word.- update to version 2.0.3: * Fixed escaping behavior in QuotedString. Formerly, only quotation marks (or characters designated as quotation marks in the QuotedString constructor) would be escaped. Now all escaped characters will be escaped, and the escaping backslashes will be removed. * Fixed regression in ParseResults.pop() - pop() was pretty much broken after I added *improvements* in 2.0.2. Reported by Iain Shelvington, thanks Iain! * Fixed bug in And class when initializing using a generator. * Enhanced ParseResults.dump() method to list out nested ParseResults that are unnamed arrays of sub-structures. * Fixed UnboundLocalError under Python 3.4 in oneOf method, reported on Sourceforge by aldanor, thanks! * Fixed bug in ParseResults __init__ method, when returning non-ParseResults types from parse actions that implement __eq__. Raised during discussion on the pyparsing wiki with cyrfer. - fix end of line encoding of every file in examples- update to v2.0.2 - Extended "expr(name)" shortcut (same as "expr.setResultsName(name)") to accept "expr()" as a shortcut for "expr.copy()". - Added "locatedExpr(expr)" helper, to decorate any returned tokens with their location within the input string. Adds the results names locn_start and locn_end to the output parse results. - Added "pprint()" method to ParseResults, to simplify troubleshooting and prettified output. Now instead of importing the pprint module and then writing "pprint.pprint(result)", you can just write "result.pprint()". This method also accepts addtional positional and keyword arguments (such as indent, width, etc.), which get passed through directly to the pprint method (see http://docs.python.org/2/library/pprint.html#pprint.pprint). - Removed deprecation warnings when using '<<' for Forward expression assignment. '<<=' is still preferred, but '<<' will be retained for cases whre '<<=' operator is not suitable (such as in defining lambda expressions). - Expanded argument compatibility for classes and functions that take list arguments, to now accept generators as well. - Extended list-like behavior of ParseResults, adding support for append and extend. NOTE: if you have existing applications using these names as results names, you will have to access them using dict-style syntax: res["append"] and res["extend"] - ParseResults emulates the change in list vs. iterator semantics for methods like keys(), values(), and items(). Under Python 2.x, these methods will return lists, under Python 3.x, these methods will return iterators. - ParseResults now has a method haskeys() which returns True or False depending on whether any results names have been defined. This simplifies testing for the existence of results names under Python 3.x, which returns keys() as an iterator, not a list. - ParseResults now supports both list and dict semantics for pop(). If passed no argument or an integer argument, it will use list semantics and pop tokens from the list of parsed tokens. If passed a non-integer argument (most likely a string), it will use dict semantics and pop the corresponding value from any defined results names. A second default return value argument is supported, just as in dict.pop(). - Fixed bug in markInputline, thanks for reporting this, Matt Grant! - Cleaned up my unit test environment, now runs with Python 2.6 and 3.3.- include examples in -doc package- Update to version 2.0.1: - Removed use of "nonlocal" that prevented using this version of pyparsing with Python 2.6 and 2.7. This will make it easier to install for packages that depend on pyparsing, under Python versions 2.6 and later. Those using older versions of Python will have to manually install pyparsing 1.5.7. - Fixed implementation of <<= operator to return self; reported by Luc J. Bourhis, with patch fix by Mathias Mamsch - thanks, Luc and Mathias! - Changes from version 2.0.0: - Rather than release another combined Python 2.x/3.x release I've decided to start a new major version that is only compatible with Python 3.x (and consequently Python 2.7 as well due to backporting of key features). This version will be the main development path from now on, with little follow-on development on the 1.5.x path. - Operator '<<' is now deprecated, in favor of operator '<<=' for attaching parsing expressions to Forward() expressions. This is being done to address precedence of operations problems with '<<'. Operator '<<' will be removed in a future version of pyparsing.- remove nonsensical tarball- update to 1.5.7: * NOTE: This is the last release of pyparsing that will try to maintain compatibility with Python versions < 2.6. The next release of pyparsing will be version 2.0.0, using new Python syntax that will not be compatible for Python version 2.5 or older. * An awesome new example is included in this release, submitted by Luca DellOlio, for parsing ANTLR grammar definitions, nice work Luca! * Fixed implementation of ParseResults.__str__ to use Pythonic ''.join() instead of repeated string concatenation. This purportedly has been a performance issue under PyPy. * Fixed bug in ParseResults.__dir__ under Python 3, reported by Thomas Kluyver, thank you Thomas! * Added ParserElement.inlineLiteralsUsing static method, to override pyparsing's default behavior of converting string literals to Literal instances, to use other classes (such as Suppress or CaselessLiteral). * Added new operator '<<=', which will eventually replace '<<' for storing the contents of a Forward(). '<<=' does not have the same operator precedence problems that '<<' does. * 'operatorPrecedence' is being renamed 'infixNotation' as a better description of what this helper function creates. 'operatorPrecedence' is deprecated, and will be dropped entirely in a future release. * Added optional arguments lpar and rpar to operatorPrecedence, so that expressions that use it can override the default suppression of the grouping characters. * Added support for using single argument builtin functions as parse actions. Now you can write 'expr.setParseAction(len)' and get back the length of the list of matched tokens. Supported builtins are: sum, len, sorted, reversed, list, tuple, set, any, all, min, and max. A script demonstrating this feature is included in the examples directory. * Fixed a bug in the definition of 'alphas', which was based on the string.uppercase and string.lowercase "constants", which in fact * aren't* constant, but vary with locale settings. This could make parsers locale-sensitive in a subtle way. Thanks to Kef Schecter for his diligence in following through on reporting and monitoring this bugfix! * Fixed a bug in the Py3 version of pyparsing, during exception handling with packrat parsing enabled, reported by Catherine Devlin - thanks Catherine! * Fixed typo in ParseBaseException.__dir__, reported anonymously on the SourceForge bug tracker, thank you Pyparsing User With No Name. * Fixed bug in srange when using '\x###' hex character codes. * Addeed optional 'intExpr' argument to countedArray, so that you can define your own expression that will evaluate to an integer, to be used as the count for the following elements. Allows you to define a countedArray with the count given in hex, for example, by defining intExpr as "Word(hexnums).setParseAction(int(t[0],16))".- Fix license (MIT and GPL-2.0+ and GPL-3.0+)- Don't ship examples twice- Initial support of python3- Package examples - Spec file cleanup- Add Provides/Obsoletes for python-parsing- Update to version 1.5.6: * Cleanup of parse action normalizing code, to be more version-tolerant, and robust in the face of future Python versions * Removal of exception cacheing, addressing a memory leak condition in Python 3. * Fixed bug when using packrat parsing, where a previously parsed expression would duplicate subsequent tokens * Fixed bug in srange, which accepted escaped hex characters of the form '\0x##', but should be '\x##'. Both forms will be supported for backwards compatibility. * Added the Verilog parser to the provided set of examples, under the MIT license. * Added the excludeChars argument to the Word class, to simplify defining a word composed of all characters in a large range except for one or two. * Added optional overlap parameter to scanString, to return overlapping matches found in the source text. * Updated oneOf internal regular expression generation, with improved parse time performance. * Slight performance improvement in transformString, removing empty strings from the list of string fragments built while scanning the source text, before calling ''.join. Especially useful when using transformString to strip out selected text. * Enhanced form of using the "expr('name')" style of results naming, in lieu of calling setResultsName. If name ends with an '*', then this is equivalent to expr.setResultsName('name',listAllMatches=True). * Fixed up internal list flattener to use iteration instead of recursion, to avoid stack overflow when transforming large files. - Changes from version 1.5.5: * Typo in Python3 version of pyparsing, "builtin" should be "builtins". - Changes from version 1.5.4: * Fixed __builtins__ and file references in Python 3 code, thanks to Greg Watson, saulspatz, sminos, and Mark Summerfield for reporting their Python 3 experiences. - Spec file cleanup: * Regenerated with py2pack, much simpler spec file * Fixed license to MIT, it's not GPLv2+- Initial package (1.5.3)python-parsingpython-pyparsingcloud124 1528393783 2.2.02.2.0-lp151.2.12.2.0-lp151.2.12.2.02.2.0-lp151.2.1pyparsing-2.2.0-py2.7.egg-infoPKG-INFOSOURCES.txtdependency_links.txttop_level.txtpyparsing.pypyparsing.pycpyparsing.pyopython2-pyparsingCHANGESLICENSEREADME/usr/lib/python2.7/site-packages//usr/lib/python2.7/site-packages/pyparsing-2.2.0-py2.7.egg-info//usr/share/doc/packages//usr/share/doc/packages/python2-pyparsing/-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/ef6f9f9fa37c5e7d5c95d2eedf22e7d2-python-pyparsingcpioxz5noarch-suse-linuxdirectoryASCII text, with CRLF line terminatorsASCII textPython script, ASCII text executable, with CRLF line terminatorspython 2.7 byte-compiledUTF-8 Unicode textRRR?VREqAautf-8ea73408ec9c64e526179fd3cb328ab5396eb554be708eec8ecd269603b30767a?7zXZ !t/䋑] crt:bLL ꪖdx ݶzN{6鉴ܙ\\;WspKԕM,)^l3BNUmKҤWFhsR.˭@S4NZ(f"#!eBK#q ~7OTLGާ%Yψ,tc?JtC½Y1:\4>`s(~TfTs,%], t%j&>^vt;Ӭq?z|rqž~f` xb#]!spRxC -/ n aҤJyπi𾋑e[#9;ͧ%QյiDrt90y݆asZy׬7 J͝cq+%Y f=M!P׍pB,\_ѓX x1s2v6n*PY mS\tG/D|fۘ0 E?;O~g ") dEOt0ecܡ9MzRx'r&Pe!r|*eJ0%j76(-n>!oՐ~z  wM}4CO-Wtw&4k+3AUٺ6|KXE2P`{RK[tB~+sb9!ۛAPJ䶮+FݤHo)B-# O_C/[s A1 LO6Tܖnc'/a0 <->[X;\~r\ Hh?˷eG$Po늘OHas>R(BV3] ѴAo# .&n?i %›_Q)beJt趭ݏUqzzߐ$.Ԝqdy߶~Q}+Tg?:RΟ":SͩG'*6T {6Yx2z`EZYǎ%6YUTڕ! pKXᚚᯩ*#Gw.K0WˮU@F=~d/&)]\DEJ"d\v/yLV${o}<m 52lY)0m!D&ء n!6h4*?N 9u(@kzpo^2;C.bʇ%462sĆ[QaWfyODgS ,SQ'LOLh1u%c nE }CGd;i~х)Ϭ+`'ol PuWrC8BOr`86F 6J)X+7l>:z%-LnP Pu[DT˘ן9"p%N<fS(Hjq:H}2*0xfc,G \L q82 m}T %r \US{E{'+!}~6=\Kt^IԺ OqRX7q6-/eߐdzw02iQQ{gWMl4W+ؾh`vXӹ#* i.-_ͫ5iE%] @45j$chU i}d#(j|x@t:&O,Y6& {-թ@Hf uRʗT\3#3M|m4cO6|SLt&jܒcp hj,o0#?KRI:2ܿ/^=FHirMM3rN1`~h4.|'og ;3J[*c>'*g9bBAvћK `v9C_)[BDBʇ3fK=2K _EEU}3H WTf{v-/tm6݁ ΰn tFeWwjit,)Ş\/88vSJig$ eyߢwӲc@z<0\znI2[ƐM }fK;mtßxZ=%,RL J|_MI(f}X;tzp͛{O"ZRyhrKlc,Yd Ƀe A\Y@*NODQ Y' B!\4I.xg؝ܹX]F0o!' H*KYAm_/Ӎ=fLt;lcժXB6tgR4&(!Fz5;FfdQx'u٤!:>ڲXz|DD^B4$Mjg٧ݞ2_-Diɀ u/e\tVv0dmP3tt}laக:HފSi(<`]{R] d;G&V?x?b[."=V)h-lJ~6`ؠ=n~Zf;̻A"w1언`^-\(9p#*i^5mWeBęOoD}UuS2g|!pP|3*zS빎T~\lrvݞW ^ENoIJp0C@Teٵ35CJn%*3mGuzo6We7C߳0P0Wη^mN&FG'e2\.N)B}h p䮿>E:4!-ںҼ*4*EMJNr@g}:qѱdGxeʆv77mP2lnN-aj30+qwLXG~w)ɴ3Fԛ_FQ#3yC w?^SO!Ue;!MwR F yշ' Qnݸ wն-5 +D\ s;Mpi+C{@g k ElN᲍rW hEAא(lt)áXP8xhP$;u4nv)r=\̰nZndJOE_S]jgլZTBUfpM%Gv>mwuмH?ƽۗH-CgpcFP9s2QC@y0`'Fgũ9KI:"ܞ~Άd4419-w&gO] So  ԝWBqF1W6ŰqQ+3m];UPMF3d!^=f1M7")[yoȁ{E)iA(PY٨%}c%uv~]|>P>د[Vk8M͢VV"3I"*,u(3YkCc_S($?m?ER3)DrkuB'.;:φZ0o'q1 jן;? Ł`^Rj؏HSћGChL7p :Uuwa-;b pV 𫃷B<8Ws"@QN6@gqp9D F!:@l+|H'7ܮֽ8z 4p1}8TCɀXfsfmr j#Nqȹ[|$B5ۑ<: m$j 䦞ypoi}r)~7'QQD1Fd@p #V.' gI転=?hi'gtIC֭H-І )$zN{{Vbe|RŽ-.IMܥT9^k]%߱zt7 &muy &w{]??8~6if~7;߇YsNTǤ:2Opb|䱬t'/[COad>'s$$5 'Ksܭ ׍0p, HFV<0?BM;4[Y&,>ZEY`\darPn;CDy'g=d̼ 6V DAE)a'kR@j1t1,Kul UَI扺_S^/T22vQJEp=ST!珪~h9s$v33V~iFhEڀ',Koz Nv3dYAۮ*m~FĮ>ww')#yx`E=N8m+5v(#Mꐟ}` ysxZJ|<{FKϹ%V,)4yZUc`6f }Ŀ y Ǔ)RŝkLTYKb xVy2ӵ O$ +T"Y⻪ {܄؅Sr ^-]PRl9add@V·=J"k[bf l!bzPRə fp2{Mk?t]6ަNR~ձU=Tv<<8d5,V~Oֹ4Ӧ"!]™l\Q/"ɋyq>E tKL Bf/1z[48S \%FxA@ET'9Ĵro:ۊ(F* '|=uB =Blf+cr; <t^=x7(ċczw&ϰC;hs㟥.ǧ~ÐNr<{)L4yY0I"v2k<ୈ.N[BinB\CaU){oiyx@=So*v) #ކʫa=f\ m@mwgO X+{ 1 mu֏]?W ZKy`@/(?F&,}H R VF]l\#حc>뜕9(x V)rc 90rzocRb `.1 UKOj⟥O=Β^T4K%X 8ALP f& [ Fbmg+\Ɲ 4 T:`vkصїޢ?K2 ӠSa[Q2OkƋAIPΩ@Nm/܈_.i}D5MG쎿_5?bjTEi5&]m 3ݥ_VRsQoGC[3<!ew2R)`?zzt#S;ۍ!EN0q!t-pڶ/ЂQdۅ.u]R\{iĎ2hˠ瓜G- YQFAF+q(KɁh 97 UEl]K ~/TZeB,fo&NS}+DqHoB\gr&p׸/쾒J{D`XkNApRЛЧ42yS^(% :Rw9glYGմ qΎفvl$<^-18\ H9JSp(=Z^R >me`lAbS~Bרu$%;}I7{pg@C6.%Y/bO$Lڛ (@ݢm9[oάxi0i.͊;K r53Vlf`P܏WPo$ڹe*L.bb  k'f/ЖLZkIb0d(ޯ#xX oL!|('U4ydU|F֡:Tfg_F!ZRHj1l{27j}ixk{t$a-f# %|k t?V|-i2H^>Ȣ#wF(Vg ){x8͜"S ,CH謗Bc~wM2=Vݩߕ@~{F]߳зfS! Nd&Sha/a܊uX޳zg|4ħ&YkFoqӸWKH!Bh |EJN6}9͜y ;: 1 /ۻ's N<p.ٰh(>Usp)Remzϗ@z.+y T ?D Ǭt/:ޥBDE)dmY-eݝf*ڵ:${/6&YhO_A܇ 4up4FECغWI*ŸfN)#¸ ƈ&X MƲy%xM ҙ|E2mX 8? fnHqQ|"o~CUTW%fJN*ojɲII;䬓Ѱ ˦ge_3+D0 x9P5kdtC2Aywjl;Pz˷Ɲn#+02!8Z6,[qS t wt5w3@J!ϱԢ:ҹ\:r`t[Hp4hc] c!+A]-Ϻj8{.8]]AUC-庼YӾlAߨ`n OMELG,rhJ{Є]Jt=$;c{H.A>Fsͦ>i7.]j= q[&>>7}¸+̏@Wd+YIXtXu)羯`58c|}#9㖇}dٔipɨ+/ xҟfm46nOxYj세6&]H; ct3 @ª?14Q5Kcc! oTt2oZM6z2J+j2o?}0M&65'F;c)Xi]1Π&2MʱldH㷗`g &u]qB@[5FƀHή@s NbS=Wv]=v >jloDG=^ nN_`8#jM{:@$۠iH{PbuKze벘o$\R҉2?eL>͟yģ12{2B]Wm2V,+:FLxT>Nڦf<x B9g1 \޵*CS> eKʕuT~xbr(Rł(7:17X=mEWM""sl!RڅVSpaQ(B=-ri(kTk7lMQ@ KB"as7TW9K 4O'_hW/#"!"q#Omh|Zqr0ͤ܋ BgQU^(VM0|P؞x[I¦CekĚyqm"YCa*<|wK75T"cO{ )WbE gW58۲$nYxh]ӷ-6s5iDKg(jMtaΕKv҇&sr1" m%JE<47#[?juF?MP~fR(c9(m}]ȃ%F]ɭ/$;_w ilgYQPXo6K1~S/Z[2xMTIE3!iX~#/ꢽL`Id.Uxk4~ NrqrfUlݝE=eAmk }!rVH^$;Z dڂ{2x) 5qYUF?15h4G"58uFLpnLļ=YGH‹Kp}zkv_1bnR'&'gFɛ@5f J}Yu 6ʝj؋(?C<<Վ>}֤Koh\y$C/ucLOw 3h %Sg J@mQ!_F2CO o%QoU8>I&8E#lLd'Lz?E\@[mK_-}Z+{_.QŒ8?3H sK?&ΚLS%pYQRa t֐HzLsE{7>8*v ~m̓ q@XO =\!pG4Sv14zWk:ȵfvf K̺UHmUuw@=E7=FHqk)&)#ƀ`_ \z\ӆ}O(re_cwJ#kZ}4NE3r6[6vB-9Cg٨-% Cq"/uV$r݀'!Y>gEk}”7 TݞkGNL)b_9Rp!7(wez{o=>/R‰Q(P -/Pv*p4+#^ =ƲjRC.\8Bӹ1ak\yFDOѡ57m;6k˄qu6Ts),kOB:U;'-R5ws*,<&+Jj{3~7>(ĵzB.Z=%h%?->lzWV'jMCϺDnt X ':3!nm @ˡDZ dQZ]+{5Esv9*_]AvUvx}G+)*6顢JPeTM|}܇'mM ݻ0Ӿ7d^y $au RFܗJ1fXjaiCf4 ;xԾ>=ڔu {C=ܵE^G )=Ch%#F¾oMjA.N6OWם,!!̤ ?_W R[Xa;Lri^d6vG"m2yf' 6nG! h'O,yHSɯkc utmС˭yNT<_:  c(M`Il4<&a@{ߒbQK5 l4eDLdբKD<=r:vAyXuOF%9j}GJtnj<P 3r Uc*[7i v,xW9 m^4z3g*fS ޣ~W_G֓rSbRbK \}g"脪,߁FΚ} M#r9Axd UNb= ()ۣg ۂ.4r~hpULK mGSE1EDL5>0L94qV&3xc6wA[[4טLDMZ [,AP'[]?t 1Z>rCʫxu*G-D=ܙ@ K%mPYҙcX?F$)Tl ^G& R(D2(w{Ty?Eks"a( zLYz6g["Q6)f?²)vy0qwׁA;;5Hۓ^D1H ek-ڟ&ѹ 4@Դ+zN PI9)|j2+/JSG3gģ}y!T ׆sÄs*ҡd)KV֬so$c}*B`ȅYZA֋-8sHL5\Y?.=*ɻnY}- ZOSMfUM`oa,/z],םYncuzF<ݣh?!A28W>ӺZǓ3zLsЖ$}.B?EЫm&ȰȞ`A,,EbplX90q=~S!5Ja<u/'av0Ufſ^#5_`~7"V9;k@=b e2窖m=6r6RuX59 lƆC*_aS_BIpPL:^1MP>U?*')/8O :=P 3$o]Y)ݍ:G3i@xMR#XŀUߏm(,S&%ګl3L 94X};Tr.:ΫaUJO)z"ft158b~Ai:lyD:Ji$GҌ<Gxme?>s@&3ک=5pk7XO酦d` {PJ2ԑlzvMxSi,v.&ZQ*).-mυtebcg>>|bM'5|A 6.qA9fˬ])%3Y{:͊Pٛ 7f EFÆn!`Ccf@a@jy'}>;J3w!1|}-]`xngլMĜe\*>,E,R;Q#&e]})[+-%@e]|_Uvaa$͞PD ˂8Nٖ.gs<~fav[qHYtL,bfG2KDj !(.}kI VH-UσxySWGm<3_HIu[yvr1hUӻ}ZS3%AWA-lK7E~I u|-fn@zpjFHfxQV:LfDF{; X8Ffu ĮDN׬NͫF-SEtP })k6ːlȧqd{}RSGl/~2 jZ&"3ȅ&ިf@띙k$ e1EJ2( /&ӀSQΆ0Up@fAOi |{960¨' V, {xcxL ,I|k0M}s6.rM$IqX7QU0|Jrzsp5/Ɍ 9*'ٮa%?Sa>O5ò? jt>8\ cra6}G.*KNEPk& .2e}Z`BcB!oy)x3'oӵ!BkПtiqF#뵽QJLwٿ k0?߲Jh\Kz 2m9DaaAR1qT^]1ZΊY&X1x> y/ K?Qҵ$ ]:roЫ9458'Y ׳:]%y!#𤬌x)b뛔s[~(Vɾ2,OJ{†:Gv|?(4wc8J|d>C#xio{5X2* OD&'Q^UQ+ K9JTx䊲H8F/-#^mA9ӆ12\u*O.VW"#bW]!~%HO$2zT]~- E- @c(7XVWכKsСt~X.N|}0r %%9-z̳x "KT.fUSdEZMO6^{/% Qp| 9Q|EjMbG@#[Lv5b-n-yڨpUh+9} <쥻hN71kD-J~&"QEcIy (v5o|r׈8^hB'U(f??cU+W_enڣ"[UxoY*N~|$ȃXAaA9ꕆ _U|"W ]#L5dq v{)c:l&qt Nk%q1Q%Es/iqx Q\[{aqб'ͽ~ڼDdw.w&`iԳ JH&N%;6ջUށѓIJWO,@e9 7Z#}G>I u.SB -$uƨQ+b6Yܹjs.b6h"JKDEI[hw@bH֡sa8tB.>aS'g[1De ba(4ғXa֊z9a'!O0Б!<3ڣ B5vi&]!<䰹Eqk+WcuUOF1y)қ*ě}H$Z`T*1_$?KʤN:IR*N9 9l܋~FZ-g{=ս fzeZll# =yEb"{Zcd؆#Z7GcSK-o":3ZV^ZsCdU +CN:?lfyڂ7G+˄[^*.p,Չɬv(fv R^H4v8] 0%^=%BOL9PKؕ91,X9ɮ&|X!, e^pbߕ$,Q#~:J՗g_cԓ|S~80Gf5̬HĕHo \Wqͣy&N ˧c:JH$LɅhlCg; ݨIuPc|n0?P(' BnrrzG~ŃCZiQ=7 *ERl_=k܄ѭsRSK6g* >ُ\đ?M 06as4dHB0(~(..Ȅ> ՑMW9XƭZ6}FN.4Vaٲ6:|j0tPe3,#^a[KՋu+\0'sD 6kN5|{"B'YOl|p6K^}Aa^ IAJ5*)KvHGl 7Kh)ղT }W=񀐫W)[4`~;Dc 8aF门T',WTW -@ c>;U\ʂq`cCWYE;Up9}]y-x TFJcnվw Gfet&5W*e$27.Ip4|PL,-3uHc\=1^dw3 %#H=\n^LdVB[gCF'IN2x"-ħpA" >j:JhE纀MRDU.0ggʢ#GkG$̫-=y-G(+/۶/]Cufu. EG3Ѯ6cP ߛ\cRh(_h\1DZbJ` G ύ lX0C6^FѸ|b]ߴ:poB~tt`I!^A@i,qk-gK=aՓpZι~^彝U@đ#:** Das~c"N;O`1܇:{t Nc:޼0 W^-LnI)uSCYAnvwwK3.h=JD@| 5gaX?]Ǎ >PBPWI/>IV5ZL20.Y݅Sm~̅/T΃pVN*( Y`It ޕ3j ;=Fܛoi -}+=M^+{K/V@pІ7pS碫pA~fΰJu'S˵2&a|s(30mʨ 9oD/̣[_]zP>Xwf*@qh^oK [1 N̦$ ƚl\*Jz >n*R;K<\]QX Vx9gr =WJ_X;q\Z<sdu `Ƿ (O͡m[UxE՜ >L5]/{bcEkGz:4WdviQ$cě[Mذvtr۾O֒C9n739/k=wgtow e ОB"4C%L*CTx]̂و3zO؋IY*V|`0ד;#FkŘJϙBZLZ #wHh)eC "N(z0GͰD4TqNrCz 20$%-ʔ])RT֙OeF`w6f xŎ}ITvPsGZ#T@kap@oéb5{0Zlazmވו92+Q[zF '|IpBZkL SXȼṴ4sHg7!#(=TeL|O4Z-JcyYJjsM)2 Aj֧ITڷĹKokm|qs+gNg%_G_@l"(KbS:k@^yFw"2uB9ɤeb(ЀS4r@l>. ߦm^7kWP~DK}qR|DtMr*2'ϳ{!1v?pd碩 H~ K T cBME%Я1I|*];"u,Ei֧sPY#s'(8T&CG5LV6+}=i99 = |m{tc WujٯxiPK,X PgmQ%Y%#? ,*&|Z5o5Pw$Le~e4q6_PG:%m-5=0:BL|J\܄RC:D -$m.*È)x&"O|r1^ ٻs ESٕPSpiJT(;a#t\($TKL%K} GaNtɂ_|"wE&LwCٴ4ndȢDRy۵|T1׹j " +\qmXդJ&}b {DI[Y#W$U 8MgV@%6;Cɞ,Vj)2nwf HxL_m>%f0bqз}hWQ[cz#VyڌE_@icuXYyh6&r5wlarS5giudMRurP@zTTzA}H>rL<-3^M5+$#ˊksKϨ96ꦝqRͦjvEҏPz'O="*k/;]3:\͐WWbn*S ͣp96uka.:oS?'hϸN, ӢLM0g=b}?d1j IN rw栈6z"@! 妿/WsNC~KY<_^,D:5oSCJy'-v|/ⳲDk:{~q|{%jJRQM4L2sf-%|p=o$3f5&z9'xKVwnLtBOeKG:LElXQn?޹9/WX -7א]1,1M~|3<:IUIQŐ 'N ODş=x" Ѡ e8{f*XAYZKEV?+}*֧dT٘R]3Z1 Q5$M%t+)j\n^WS3& ή84%j?opn/m9T +{> SWgt%29Y^FDy$ZI5 .J $_x&b?dR^ωEhp ѽD02/RDBCn/ ..rO'w8>ѹD*gvMFzF48oEݎv#ץxG_|rgy &,)zcDc\CHxBk3iF/!%̦/,iFN{p\YUw$%,OUUc]2N!irmٿ.~^c˦6%o0<ӤbD`Tcg¥kMYW{U)xn0b@C?UTT;EG?8@K80w̐w=zJCR*UZ6 J+ƞ!`Sn*ف2tDMsALhR|@-Y_zj;U'z$wu)ïݛ.F!Ċ>gSpxc._ơab?)UpUmC8>뻃扱VԌ6ҭK"Qk˿{dni%&uAQFR:VYb7!HO6԰M$Gr6 Q ;8Q|,'v E@zTBt ^ĶP!ez6c}(e"ږ9UhbQ( ПR7qMAA>`߫7{K`z=w[q޼&RV3ĵY~Ge &O?'lHyJ #(.=W.mJԷQc'_`r\;. -\9h,ݩDken7r$T[GCA:ojFJ8wt;ۭKJ1wKe"ROT=QڀCGAHᣆZ}6[ vbɹSa8<X[P;mac<}^ f'y&if"d1zcHs .Z`m"n812?,{oMs4mmM,2[cЀ ^7W&գ7d '.Kmd+BI{Qp oFB}V9$)^.U<ݤœ{t$ds#N'iX<Chh81^g cB 'enM!bj?B bƱT|rb-xw/8ff[U <1Aډ+LVmdJ]S?Mu~3Q"AU8:nHkFV9́&}XsnrIR`A$w3gE5sCC-;HڜT~^#<3'vQj\/bJP1DsL:uc &b^seJ~ik ]ĹYAu]i%IJʻ?roy6M&+ )痝h!? o|.=i%!ձ؞_jI#%n ` P&fRC8AVuv" Ĵc|q/CW,n9/8YPj?/'s)/RJ{RtK$v|k_tlC}E4Hfm5$ryNca7C7nGzmt27>}!.%[e~*gJl} yG︋pIo;{wdO,Ԅx_z1uPǗQz`dҽ>|h/|'5WtT쩱_5cmұtIы8O cvT0D=u~[gaqllJc35o&sxL]!-(mu%9Wf]]%.=L7q[T<:'kؖE=htIWrݽs  Խ@ qVŲasqǔ Sfc[$T0F7Řud Ӟk8::^V![Y msV=٣[nUIxH3@^|Vx,%H@yb`9\̏0--<,)aU`%`ΧDBJohBr>ؑė9N&)NlTƒ ,1l]ywsTȦ6+y$3*܉[Lʜ!BI`KDOk55ְDT-lz7Y/B}c쇹'K{I:koCx>R腤dKr ֻ)),cٟ|ZgH 6] =UHb_P;?cjϩI=Z7.lIZ՗WGx:M$E a:v  B' =a~|Wk" P^kX>p&M9u+u5]$w!Ip's7NB ZQe damCZ*`iaf2zђ8N#[#Dr`wzƸ!뭊Ydʱ(QNeh'ʽY7Jtx0Gf3> t4)4عDT)!ӔUw7c?Ô KxݫzL{ /G]r!}c|*LQ.XIw@&Zynݰҩ he0̴o)dbǦene ⦏n:jL={^?6=_!$k,h;7տHvB˥m|L6=֚QC}xiLN: 4m$o8!UUKӓ)`&3/wpĠ)e,'c9X |A? N(/ő9\Zj;޵i{(+\ߥ=oNB^Gg315` 4GZq0jA?1Gk2beFVr89 ÌռbkH*nHi2YP[cBv.#!ђ,qJ$2b#3g2-$r0=`N"( l]MFqKq{8 &F?mN.A{[LnwpQ cox"c{f/ִRJ{rnF\cLPVYDZ&HW88{g\z3/K2T^=pV; `a@+  9|l*nk 7oeEyLx|gޜ>CRz7ʝW`Di&k=y1`6GG~ߴr_d*vwӸLEx&Z&H};eXNw4kHJ)CM&Qz ;]mYG")4>3,~s)!nrнep}0q%Q^HWwՉzԇ2ZwW8)Fknwj67~;RJ-i1 >suvets]o,kR2`$D µ}UF@1ԑ\KYԽ7UB9Bv/ ;0z/TOy*?1B9.k )o ҀJF$wS`,D$…:)-{_;oTG$F^8vtRU!םғSnÞY6s;l͖,uZ d+IbJ֞& !j]ZsbsS&W[YfDP3ߊn*::<{亄yEcU`f2p7E[9UtDqK"}U6jnHNjShw[Oga-D ̞> i[;x"!@c-4BF3D1Ź{.ߒQU:0. I9ͷp"OGJ݂Up3礘L$:DySwv?0z>[hH~g')L.v0544v.Sh/x% E‮Ƈ2՘)JfqNw o%p鱠m &dw{LtDun!0 130O5Zz~֕Mqz7$b^W~e|F2^˗IܡsO8^5&|O/"_& 4,TA; N[ w-%uC,,"*l\5&+Z`mu3%"‚{K$M{p6eN 17 w|g@dY!ϩ(;n Kk*i|0;SzQ=^U6&ד'rsr+ p؍ zfgV4(؁5nK fIe~z=D=͕`׽]_p`,foc2Ba:&{fYY"P;È0Fy m c\5&@d /a#Dm 'x4&AG4߸qk,pltbFNȤ#~'ZSEφ1 ^<_K,oYlh#OEKqA Kf f鎦1i*VjĦ~NSt@2[ Nnu/1\[0.Ӱ{Px8SIo=aCnZnvEJ=&㨑ܹטnb)A yHd(jԕX.6 j ҡV{=z.9pڽ췡~H纥"B^ZA>fn'/U’h^*EV4n̶Qal+9NIwK]W3./ soÎ^U$ "tZQRPA(~9>XWC@)˓ޕNIL=-/P =*Ӆ]G Bu1Zmw Fypӏevɖ_=-^ X`!V9zMSj ?.|կ%c,{ZjIxЛ(f UAx*C}Aɑ7Y_NA'f`¿1,M3Mnv[&~G?hr .bE'!%]M;+(6:?͎|t/g^V D{>c$p9tvjcJB>zgU \_~M.۷Zn}͗.]Oo=ɢ{ur9G~Cюd#i YEu;_YU'9Դ|{<~}ڶ#hj1s^G XQR6Q\|zr.ڇ+3"CV[0It/Q9~W~Bcz89Olu`P@)HL:$CYK9L 7~C:"۝ Vov)C+7ilCfPQED3AI7?r4R@LJPLbel[q~w^rTs8A8~AkR!pUee}锠ҋ,URLJK 19n_.su-^T:m+NAW51A!3x]+y7V`ʅ5 1\s\gVI~nc$BH8O* +bi/5&9 l|F),,c #%y4lHܿ˚E1uE]y[j (/@oruo(SU%Jx˭mtz:,bc9L\Yw> )<Bdwʫщ|E9kί{znH}2%)7y­z߰ r삳[C,Au&]ymه^lC E~*sEڿ+6W$?%_gGXXģ Cٜ9y~o@Q ;r!x+qZᆿznt Kc,D0Þ>e;.9ϭR?(Xݶjv~::Fbtˬ_X}Shi$##ٮJva/JVi.!IL~(CHۃ"t G-ʂptifwN 4.VByv_ ֳᑾyz;yky<$hO]"`*g}zrք0P^@Rଲ>fb8YBTJ[q|.Pv"7w7̤]ݗ{)v,̽z.W7*7۠xo}s"keKMhW3h. Oi5[)"x4E|7BuĈP3!RAG2pn:tr?)C<^7zl\W/6fB|${DnڅWFq$nZ)`2}8v|R*g$ؖ_:pÚDxE|C4!*gA'R#xM/B8kyHx掬0*c<~^06z$ _9N`H+w..!>.gqn Z8i +>)tnNs]FW91Tk-b.T\uSҁC0 s^9AWl%,N%Fq^/O_G|,ff.8U\@كlmcfo.\9;K{99.XnjACtZm%-~toi~C<:mQ4w&2f| (Ezzi~A5f(G.7bt#_᯾R܎<V[ۇY&-({͏J = jZ?#&kU:T5l!q'IȢr"+2n% *J2ty/bK*T;PXt;&(]s!Le!7Ww~Jmt{rB  \m&s]M_vKfnN8OQEZq)_r+?),SBxBr1д'ϛ‹GAocVh:tA*)N&:*2g2pν9^XjW*>yc~ԮOyyOp%-+0L ڱP$u%/\YnRW@Tc Wf"ZW߻H3I G>&ǧ b?q^1L$IHB1#rx82nu̼bc+̃A=ּ1!r+e@J肄:t5>;v?T5cRot&2Akhʀd#0 8%D${./{E&Z4"EPuNSwof%+ǩt6h0AQ'KU*Q?/w,bk&BV.-eT9Xu1N=|f ֦ >:j߉vء,)GSF(b15v ;8 -IULKP#[3/mW? ,ǀ%BT21mhŐd5:0eX/2hc(*~;@MBй_>“t㡄4}n5kfW|Y u]q6AqG%)ja'nC̔[X T]!˺\p50cps.դ;?qƦ\ 7Rǵ*2 #XUEW3LܞےSQA8^[\˲6xRO5hNgy"oZq]j"v/:kb!vV Rey5V<kd:ΒwgF"Y{7_|<(Ss[iĵ]{ *\^۶%@^MXfrP46ˡu9Yme3δ꙲D=k'Z6MyJ:ӈɦ#GR(=&T/{qeEp"K:_mABwL8eŠ~&*Po2J;q(SK)Iw9E bSPN!7".΅y4x.(D%-Ɛ sv+ Nit`/f6 Y 5B"C!\*ww SsHW~xĒi=v`DLL[25CO=>qvn,ԟ9 MЂ!LE͒xHWQaيūmTHMs*T(}8MCYv  CyD]S#xVAhgo&kL@JwM;!v e| :]k=}NgO٩Bw(C+zgwܴސ~v"4 .)7"K&}$VŭL`W6bBtY-q&kc 4XrUPk 仰G,=ub#Hy>}/~ԁu -$,[%\3֙N[37/>rw)+4ϥi}SS+>~G f )BkNCQnDoKRAB>w+M9T;NP9cI&^_Urn9Xod,fIW 3~L=*pKlFH}Uw H5#Wdvrj F1sjO e΅xŸи)7lFe6ow4Jr,mE6D ՟m,FM RP ] [IT hR|+F"4u2qjW#26##Ko2_%̜gqrn$Ƥqe?s-uU'L4lMd/zcagۃ:qbQI=<k4N#(!b3,\x<pl΃k K&EVWǠ@w)!!U ϑ͔8l!y(l-ܘ)kKkNV9vݻD%1[b>Y#)7nKe͐M4gWAjFTg91 s[n̠9ZW+l;lEzV~GprAd-f?k@q?;L24aV ܾ]BVɥ:͂}[[Uٍj:X*wxօ' c=C]gnyLb::[,8,CΧ I?|-?˛$8B"wV472'蘛rT]Ð!_ >E'`pp{?|Ѫ%?@hf|Z-D бZNSʋ8[Z)lsC3.aR8@\Xg"(F;Ҿ4Mȏ As4~ذ̕y8~ck7\*@6$=LtT؃}}4ŻZqЫm[? @,n\p KlX+Sm n bs^/E:FBosЭj#|Frv6gx~F.QW+%Kjy~BkZ|JP4y i2fI7ٖtDK~Y1ݎ/2Gg+)4Q ` 9U&$WŇ̶fy5fS5_ K3Ѻ6`g -+C(Z yh (H΄^A|aɢ$tgUFSN_C,ٚi@J8/dyB#aEm'$ k쌪PYr(&_&((2EZsnI$6 X|̾;ך]K 9MHi" k#6$m|IGޯ#vgu;.e1mF?tMwe [c2פOyH LR4II!\fq2}`~eL/ڙC*6LUn͎!r6\ޮܔ)]4S.։m4RNuuS/ \kbOl,'h;'>*%j 72n^59bHRt߰[ i8lsYday#0=O5Uw_# g X涱{86@bQ _TWeN ȭe5>ڼ PtIZ0{ox kg'hDS\!/h)yg$* Fp noVR ,0u|t&j~f_wOq(|zv޹^cBΘ5}CN w$[#wqWZQ[@co kNVX[`N8[4dن- 3}TTxR E #oԇ9ax/$J$ev.*EgXxV1ο$+_pYq7qr"Z9 $q$݀zg}6uj8GTr#r(<\vv??tj0oeAqwgҙ,A?N+IS޺AtHΎzq\SHujҾ k ԬJDUK~zR&H_)NǩK 3]u]yVƗXǀXv/{f9p5nwL̿#w:֗:KWL#2Uw2KN֖nшr GZ[l,p}(0eAFv_4@\f?S* 3uԍ"*VcAs^)v|} ~ӔzA> ms` [vgBZ:&nB,ij >1R}, HhA J(A&Ǘ)B,d{LbBclO1nR5^s/Hf: 9H^ 'fbC.|Ij)wy_ˏBbݨ&BF"O[y?ń f ]ruro-$;΅jqpFprtq2 OX5^R].C/9"w{Vb\ACd[JsJ"ogb:G{`aϱj{cMq_:\kwAO[udnեMmDL:4_ʑFv-wtbU:|ۣ0!{/"`ݣW|j6uyğtXîǹ+ N>T՗i*[Gn<)|Y 4=ߝ.?|xs >go:i~ʟ*_t(QSRQv +pZ@.Ja܍C/.pD/pڭ<^1Ye<Hn &P{x|yajr'k6zI,wX{4c&3 mc+U r^:CpqtĪ #p6Y+Sl" |r7X BĶoIy3`KMtw9)E;x-'`E~>HB'H K_SGi{Ni{S^p3V97؞Lu4`.#}tg exuȯIZp<<[,/ᅭ,{UE_Ig킇:\ 7PbWb#3z9tēHYkޟܼ'Hnީ $_(L{u~ۉ?N0`--X|"+:ϥ*Ap/m֏mkwD`zd?_{v|pMMmV]JqIp3'ͱ+hy,._{G&aVv9^$I?=ߤwf@gGٱS`29:GhO#Z:;Z4k,[ma.+ jn|\ gd7E[Zbo Yza $͌8p Y~z78a)A@2؜Q,G7c6@K{E;.2~X4qTglD" JUn) 嫵++ Ay@lAv Vh}C) FEc~.^/m\({p}WM0qrcI`vb!Fj]>E`XІQĢ5k&UV8au@w|_/uރ$b"$st3o2' !c.;oJ#dxmyDrz%e큒f$4%c:! p_nXu;U:/Qoa̴YUFWFO+=a|lرo-":i)_ 1%74_P am$Rc 4 &fb |A)eaoP.BmB>/aޭ^YP \(݉,Hkq V|U v^{#Diaۇϭb5:a1оD\%Âyݔ$hn$p \N[a HQf}&Y|aI <7Q VpSv(#kdH,8{\p6GKVXsZ65"00p@%BC7d؁3cUI\CBMSgq?AR=;d'_VF'[qJ>n>pGtݟ(͵T$߁x8R4p xgO%0N*b4Kro]$6 F̂EЫTdQJ\CC2 s{Qvnwf>2 !3+I0t0tXZV2fʶڴ觥_g?y|"Y=pG@r#wOؙ2En(*a[O&݋Y bΆ}sep<c;G_6)oࠃ,VkԶڞ7/4lywKWNH@aIv# u/+$pLt reI2Хೆɩ %UWKh\Dge@{ P?qГtcOZCV)Dh7x<U|U{3wap_4S_ˍ{f 1#CFNU5(1'dMsc` דҷzr[c^rk :!yuMOmX $-gD'ߠoz![~AL7 ӝ-՗1g%3BW"ʲВ9ǺDc> lioU 5~Gk\^ Vw+ӝzGBӝ2Y&P`:j1 2#@x7^YYO-i`ᶀSTA{Dh6ܑrhSLzQB̷tݴ,<o"v;:D~XJ}{ *F;DFx$NL>5x0V<<Կ} S8;P("8/a/Ms!ݲס5""Tio+QWSerITگ?sb3\:eX}ImC֍wyyr"Nl+}rBN$aaO Q VOFpHmN Ye11@dݷ5v3\# /I93碍, vbDOq$'3uX\fɷc+aG/f8vP~w)6qPl+`ǍV>F;ۘ  qpW a{Ӥ tG!-W׸ ړ"=TL I ,?L&VdSy}psS=:QIՓs=-mDfmZ6]+,4z5F EϽ˰ڊ _˸Zɨ:Ο䗭5zէTIs+&VY?n-v3ϒLVj3+/| _4ժ .]ËBwi-. ED"M *]F~}RYp jsX*m%'roy%< P?QΌeOoWMKPm%cQ΄6ַ!-HdpKJ%ܴ0ᡕJzť5I0랾BգTy߉+=T2k#>qLɎك_fJ9/v\]oJo7qnߑj~eM0M, fi`q9*d9EGRHޏO1H[Cg="fz \ i_,sʖjwNXX\cN֜1/@l~uSMHeMZ4;loZnvWBz$YxH˫^qL+nGռpqB3񬏡TQ`|^[E%G{4/*ƻ!N+&LGĕ^dMXKG`}P5Y d|4* ^CftP5(Œ9h}s >rW,/ ΗwyhuzWرS^EOk#O9'lS`|{#U46jm8N&cY5'R*uUך}*K =;+qtoۍd mXϞP 5Yi#6xG64n=@Hzx|l6bM2 z/2]lyr9b;bRkJ)[77f72ouEoƗ!s3By$+&ܲcoOK,Nj{I{7\DoiSLۯD̋KaTM&[8ip?7:T=GYb]=3QYUe$O _4$_kƨU ^|`?‘NO8x/l}öU;T@c>SYdEi"W8jȗ^ι0oO嘩\X7П%mEsƔqԙWw `WٳxكexJ_^1)E3̄8AˠyewnԔ!(6aŢ"G/Q0ʒ=#͌GwLM0[cF:3mʥa^y7yYEڠ'?E80C Q\cZFe-ZDg';$g#Vye] KeT^ _yzĖWv+D^9ؓUH @PA'F -"O«Xfz61 {<Ƚ ylZΫ+'_u_yշϽKχ;$:Xt`KIR8n{SZ-FHC}$ @e1 '-/Os=ߵ-poFF6-~w~Zbxq^iC[օIo9u[1R%T3lew r"^% y ~kGq4h ՟+inܼN|tMJc*{'*R:BD!r49FH{y'>&'YR&y;mu]ڈB+Cq^M a78hF1 uYD͏-y)d#IhoUEBD*r-9f <t+e˩LV/g#S^|D?CgY˙ms;BU,pAbo E&q~iA*x+(7~DXzO^޿2{9ՍT3o!t7r}Pk]ϿZ;3UHhE/0F1bù4mYm pzC`ރ)D9﫝HΡM80;ZK:ħ(5 hFѬs Xj:ZjQ-[IȄTy'w5O,.Z6oY%*sOtCn$8lsi)02$ J$Z͍ IGfKz_k`^8ɳac &n0vk p+r Hs9 g?^E5 D!ܱGD sivcNdEa<hM"vVb&f_JX7cԳ\V09dQXJb@+`􄊷1-) v43@O=Rl.+Eq9n CU~@!;`oZ#yң:ZL (O;1MqZ2E.ؓ  o[ 9,Fa6=YN[,[l/GsG̚3ς2P:{R/<: sd7FSA 6o2(`%+al d0)僥AYLjXYƇ֭.4fjW^+O#y % ORJw1]r@ȰmIrm'e99;)%oj:̜r{2 =>S)$M;M!qhn :8~ⅬZ$btrhQH}zƁ# lٴF=j{Fè'FK S9ӍEG*-?`zZ_7X Dr Uu2\PzҊAC Lrh9DbapL.m/\\x_:aNK4x*=A""/Yq95'$ Ogp 06Tר\jkzJpVLNb7ib<$[e@XzT4hhVh%FbRpqz&k΂~|Tg$>ls ׻6{MaB;@{ A'&Km)CQ&>8Ƿ /kzuǞ 6SiJȓ.+ֶ(Yb]I{M D~_o*@Q=*vV_S@V2}D;Z2NĆ%-DzcC m`w6S2.ZJP`X)UibcY T\(Ur3.]xN]Na!d>uя0K p'NY~X3]>@2X *#́$ ^lV|d傡&n_Pq-jpIWDm]+OYqd:#UK1# ۋ_kHJLP˙/2\*\mlG!y5jˤBijUbv(# 2kG|ij:f`:ސj0ƩL2ZTGlNCe)\l\YV}TS3g,7#V 02ΉgاUpQ0}*%>o9nJHڭzd~a32]e3{A y. lk^.^ k\<^_Z1vj!-7*pkBv[؟. X) O~hs'Бъ}/3VWA~U#p2%Õۤ98meAT~G"p;C6aM PWpN9a$=V"2 V߻r TV10zHjX*UE X*GZ"s%Auh|_OOu:5OÒ~3^o>[*m0rF1_f_uxUi.\D?4@-DJ# GuV+PuAr̗uk)Qw|1HSõi_.d`\MKup*Y[`S"1~Qd>kRJِXҌepiH+-r;ݒF VE425 N2W8V0 2wI0w`@ԤuT?F8{˂ԖVؒvzOLht=JV:TYyj42tYT9vRʦ> V~iuyi^/ݗаT<fXRV>0lZeU$yZjurR>@± >5Aetc4_(#6򠟳;?fR*oG<\3HCoOlנ,۶qeL}8siEW,K=_Oj G?X|TOno푀oI ~SٚC3jmoxY:~5|Qe\dVw]ۡ:'V39ӼFuNb{zQ"^&+" Y~YHvM0Xu+&<޼o^\Ƅk\Q-% ͟_Nѫ e ~U ÊEJtUhʼnת|QF6Cz-HZ/ׂC~KV\EtٹSg&z@ٹ[̼Nk݈b1pQ/"@> ԾԳ[/ W ;i;Z ǒpȲmj=ѾrS0*(۔*8g}Ed-YwBs!i@b 9&'p#KIaz;0 *3Ώdez\fEJjxi B?=vꪵ4~+p~k3=u0scqJxs2]\ǟ=bj7 Uy@B,r*)F_/"5C`Nxo#+ȃ!;bwo+Q5%; N fچЯ"k8V{ǣOݲ`ә1?!E ЛSL8 {LmIW_0g㕳O1&9͞[>cr2H^0_KW:#鍒rM /dᣌ.`fG\FR#]C2黑w,93hi=&+PwƯ@-dHbYc=5DP=iNQ;1Ch. ٿjYllhIY)r]2W+9Xخ(+۝ KCx|IZ >¹D=Q=^ŵ+4XͼPFsA8TtSCK@x*x~l|0~%:+ѿ,Vσ*11;ٸ&iwwf1=~2.JaΛUU6vvpeׅ:>KDV Şx <7ع L10@os:s MFvrڡ^dB^8(;²r5.^`hƸI8c S<ƪ]V:g)o]#C})@Зbia;^؁ &a4dԗ"`Nkn#|].({*f`kũzLm#lu9/w}uwW58}L['6u3jZ7S-!#,J$!w>DA(GGW1 >(;χ[kW'/xdg% 1ª?$3&C3U)8x? ϲhAvӷ k= ^-Ek+z۫\&w^W\Lu6oG\o% kp" p-FX^|w,2;દe)}| "xY̧&TG}T;אs$R 1ul^Sh/siTy"ՕF/^AYLZ^`4z䡿m ms8G*iR  Xsτ4Wہyi 'ܿ\AjbPA$Ѳk1L:j6kUdlL_;l Qժ']zQB+%׉vCX%GKe;ty.60WM)HUcWl?UI`F }Ú{8 ? ۻ0Gӿ2%e3n% i;;/R%a{KE >Y5X˨2H(W^:C8E Hy-Jf s2L 0glSɭ')}9&3ُY 4z:Mr ż)xt׾w=yFs7kG06cD\*s@_,a'3W++\ޭ#V>YNm钰F-M©R0@GPx]0s6/Nݳ`:B_O&di5°"C~6QʓA?yj >?}dbȳ jaMe'/ h;McMiʐ7 ; q-wƁcyVa yگKMJ+bۥmgIor$Dp}v1@w?`_ٌd2W ކabI`ϱg _C w ,>^M|1m{_3Q\ntW`ĠhL=UOtzrȂj@sʷ1;3%ʝJ͠^|䚚S&7;y2?keboyQH9]r5~"Sȼ7Щ/]q^+kGJ%~vQNxRyQe+T b=˩ax(ߥwG*N܍:owZ4vIk29UI8ݘn_ PAe2Oql_snENUٟf=ԁR bťG♗m]Nh6x-qFbG6)!syQfӡ9 R| u3>ȣMcЁ>ePӰ0lݭQnݢ3yd4f >EX|)0Ό /]kIG6% ]0@ʱo4~z ƴ~-f}t`E.4eIӕ4ϷT'B{#Չ<0:awA+'7sd#)&NvV4Wڙ]7X"=vv J w2  {XP08VMguzFs\$ *&8In"%X(;/eyC&A"SJpN^E4i{W EI;%n͠qQ*6m%6R`~N J|տkFow5F+T8uG%x2'N-r'Yf_[^6 V8r{t*a@aҐ-:EinH V ]?Qtf(,+)i*UY w뱦)wG kɮ,$,ud_,dŠOܸw}i(K,>ʌx'泮RVf85+ltBT}An_:z!1clnK*OsF-A% ’FƔ29@*m>_<,F_A#UX} PJ*۬57۾35:+c" 4В%o6 KO9VP]H:X(wsUBZqf@v|nխ2҅Qv(xXgЉi!psv0U ἮZo(o?K=nM0 0>Bϯ؜ˈڎcu&c;bxen7n\ 5,%ocxC/<{ᾔf`8۳x(2cHSd7^|G )M} \։pwUh ߳`s6ʮ yxm `  P+;Ԡ }>)q Vɶ %so[()jIxibb]G)>мɌ4 5WaWg.lWb n.>%qZ T5%N GFn U+dQC)>jKܦQl!CkRS8UÉKao0;*wm6^|{`F)W>fu2Zgt78pF1^Pl[3,,RĖj@=6&&*%W;d7U^Q.ʐࠄ2]LQC)_e::e'`8[ M \bJ,QW !u \\ )c7,>$9T{8c|1aGeV5;܃p#tG<없ZRu/b!EYckG/QTIX@Ңw'vf(?ϴ>Ƒ=ewib_C6<a0'6f6ֽoI;O,9ɝVămaUCvKz[  ~g+&ib|"No"*54s k=帯+5Y!L?8^dU C.myiIb'Я<ݚ]GM6g8?ְEJ|A]j/N 5K!C_n78dz}9GY'Վik0$_D+,ʾ=gj"Obp-#6'BV =:la2F#M6\_=5ZA)ȳҿP}R:E{Y1.pwD:vY.ہcmi;ը,.;Y`rssЉu`* _y~ZwC jJ:ړ&C(LhP[ lC8Q0P4\k, J^/Ey̝ͤ=>i&l9_[ϡr,/brrι;пK[idt/TqETsJ:x^`"! ¥yy$caCcM~7*rltX VIXrU&XxR^?Hר}EJ?0@l/0Z66>&CZM֑E4 /H. 7`VֽPt\ⰣODֳ.!p SI8AN*x;ؗԉMp`La;wPڟA[c NکDOgrI[@nry (`7&8)gch4b3o=+qoB2 jf =;R/ޓ1dR`bvx0IJ'{htN 2>Z=-h;DNF;oOINڑTW1l83/3pbAn"kؗwa] Vó@͈`5 #>lz .µֻ1&Ky~Y8[+qO%㚮Cψ>J-ꅬ=(D}2'6ifL}z_auKŚby=+zhl|I1[8}eLvjuK`pC3|æ!:ՒrWyGZJݳfƷwcIА˴ DEIS-MFC26c7ajLBq |c^ !i4GԐwsFNJh[.BSIj#Soh;Bfh)nR9o#n A 3ΝҳW,ZGƄHRH} G# !WO)dnC^ HoMlr~Hx/ v|Ȝgo`1Os-bww "IBi |,NYSS~1?UҪ8vt}Ly:#$?A{_`yf59_+OKܔأߩ 9e\>ŨI` Ϧ@&Ldwu@A~VowW%I*Ѡ>QE H2)槵bH ġ,\BqOT2]غpXZkFV5s;FMˌd'5,82K &߶l$Uo3Qg<ɢ#| ]Ӧfc-JN?,4}d L35H Bߖ"E]bN:HInၼTl&g&]KyrN\ wwmusQ+՗x`eźLOX18zkud}w(GI)jrjd_iihC7BPodJ2"'%ug!wNgXET#ec69 ^;0m?dfD9 V2F[X5E>_ܸ-jXPž;Ҟ$.og s7H+t+yj}u G fJ;Y*uYF#J sӶi#ix}{ҺLkYȺIc:I1S<<gf̄|BJBM>Y`q ~\¼W)!T>_X\Lm-.ړ| uLQs_ș)x^w|C8\er$'ׂw+P܏0w3!{L lEƑt&7Եh<w鶆q.f5e{Ro\T dSD`X>Ѭw12ԫV:-$qUcFLeS@zd4 4[?Rƽ$PF`f%Otnqh !MƓQ'^F?ZUz +Re_' @[cplaq -iK:<ǙwTy_ 9$\'.L[RcFGD詝h)JB33nד\.1βZ9,1hv{?G2P' ZUR v)XFUb=&S`?+8K) g7SږRz1 ɡWJi\(uw.]SDh.=5LG'S wTqڡcY6m\V FgSBu49p{q8g: Z5~~0SnLB8pYESn, wk 0P#w/iX$[k1X+wϚ|vpf/bd?7\nсU9Aoi~S,8OV}S> ,xżg !hW_hT 8ډ ټ[(YY,).Iiwg0Ika,xjV5)/9?ދoDt5r(#B1,_3(jwoxєጜCd~m Ԣr-xgU,GzԬhO}Tx3ݲn)A<JECTI]zZ\_Æ@Qm:/hC+ΊImrA5ħݵMp0tPˠl2GCXj~Tϛbxڦ r|(;k~̓ABNy z'.dKGG A!XO+{"3U=3yR, Q)³UAGVCYӕ%HPֲaȄN —M<;Q -Uk|+OJ.َh%⌦zqֲת3Y?ڜ/9j4#Ia+TT{;<1H1YVgQH=)Vdep"pK#d gA/wь""mfٛDsew+4+ύХ m`5$gzbU8ݶek%@.IGHr|Fʟ> lz4Mnm 3Pdb:Ay'v VS;9 U{ӠRb_%K݇bs.Ta4>%Sˣ*+K-yd~c/X1X5hR2-zЏC d> A"(p,;Nm>ќ? į=㞭m(IڮٔG!74w'ydc/kal*&$ZAur㭿s;w >ȏᴾȋ(Mzbf ApOK_[)~ţ٥k|Y@[`K=/(` d[S] ժ ^4{l5G: W+.$J0gI`#SrYCZ&fv=\E#ʠdM7bՉX Mp.ER u̡,,Pxxo\U^,ʏe|D8ṂSu1珖Q7KGXD5z.mYO33TQW8s, ơy]# R̜X5) ڜ؆6&6zK%| z3_7 \Mgxۄ(^ZLm֑ys ] }kv'{aDEAe$wвD?θ.ˁMLClcF鴬6 <1:pRt I%]_z0w]?J- KO]خǖPr3jty [+sxnP f& c+w& tǒhϟ9#' ,Sg[e nlQ w}JVO>5B׼P:^cbu8Џ#_,I0Q8hbAU6kD'1%?Eg;J doZR t{zC3x3csɈ$vgѯ:wtu;/E"EM kej (&&zԦɪ#+rx *(I]&.idT]"`$dDևSA1CZ)^[ gs"zp .Uժs;۬U^>>ЉGjHJҎME6SDh8_jc-6~$|YUK5.QO4GA1ɑFAl 7G in }&bٔqe. 2tHi~{(vZ6=xb' "Z>DQk&?zq'44Dqbc^GsusՑݹ4q0 2\x9Z;dn5| =u30|HXχ*s9d>س H\Xٕ|4jϼ)ɑ R ]%8yb[$| "BS-ڌX n26þ+tȘ& Zcw~e꭪R6&GwLp*W䧷(TF/\OJҧPD>n HwK2b! R3S-+ˤX-i ,Q&X#QxE:cGUhYlK~Bwbx0e^-Ąڳ 춴x~\"&c;#9/hp4&:$}iIl ;T}ԟjvyrB&lAWbCVh/I-~ӬYu Jd01ݍR#*oPbYT5D{ m˄?]鋸4X9(2BZ/j4 0TEX#M c!33'ыu`$8N 0U2ѭ].su$94\3*_Tev2qj9уuiP-e#h~TZy𧶊{fҌ_xkJc3߳{2AόRY6͇(ZDlu E{/UgzSZbIn/5J ^_f_TgPSIYm*Y:b|"Un}) tSHv@jm*A7UwcЧk("oc>J#HP蠞:Wjt~)cJ+p7bGLMx#MFĘ4z1fahML|K޼ÊCLހ~4lZc7\V#`Rlwc$8'\܃L3Kx$.AFs;0)hnc >#kT 1>d@c'+0XpewE"н֍ Ofچq z"!F ^=4 e@Fb#5d3cN :ĉ}W_΄4 _gV eEƉ0"egUQy9<]dtTl&{O ͞F?N3vN%$VS,sϏ1 PE#a:y8t?fSqX]ѣ*#t9Rb$$vJ SH.#)+ɶ&,QPC/]T~577V3qqnz:"$#FТVXcj CN߿ofV*jPŋgcdÝ[,9(߸ Nw'^]nA%gL8}8>˱Tʘ,}l`aũq:rJ,kN aBS:a|U{WVʖv-@*yEC22 SC?A,&܍0#iX HTO[ͽ4پJx1|X":ٗHKӝM!C3$7oܬ5QM n.bEN^(R.l :H6L\J1-)'} v,/R;\C-P(M "ݧ4nTr^!3vtOve?Ř\;^ R;lr<|Vpv0*pan+dNa(XJD"x h6rҳ B9K7=pw$㑭Qq~ovЂ>Uا?I0+)+kJW]%>s:f?DeMOr ڋS/I4ĭ/b|X\Yޥ`n?fGFֺ.aTOuUQٞ;n+>t:GIAѣ)O9HM?}Cq1ie(#!XAYxZAxҴU6j *c9kߎ\ xbLSIF9b}iNl7FzHܒchncG.g0uИ + 1K~7[Z椛`B+t 3ex*ը6lHhM-dh%䍫@ '+;uh(+<_#x{Kom3h;f(v?UJ-ߙfQY8 q.u'@nO- TԥL=ש}Ru g S>]|˦um4٬BX0_o=kS"2|0-ckV+ڱDM'p= Df3ڝdAY621M4"l~uV6Zof~&Jj|׻sr0&4,1Rb2,UC: 9v6+"ɤZz.\D8i(vޔ]JYO *7Pw5L9hU`+sH$ŵ?K4jBv,z"EXG^pܷ҈TxsͣM"R٤LdE%;zfIMp4ll)-gJVgMg^pFWCBvbx<úZ!#e C=vӭg5Q}I=x,P7 2dTb.Kar֕l~il'6'Gg"dtS \>!, /A. +%?Kun03l0{qB?L܏> <\=`8b*kfai$h-v}NV<eSGYM^97{>{ '.n$T#)eWE:R 1@qjh|Ic-կ I8~17Ca‹ۆp>fYw]gb$}\,!#M%=&Kg%y-W;<'Bk۾ nЏsEJgi{#tiEBg:8;Y@-Uk^b+˧Ep-´`RW&c bbO}CA3=9!x)(I>ba2vܪGC9[a@c{HEF>[eWbq(cGԀN"+U_t1_0wvz ZԼQ8v^-})sy1JG}&+ɨ1;'MV¤ g| SVqSEɖxehZuq/.UJV֧ʟچl_ 0Fp5:N'=_dHdfќUq .F[kDFWQPsKm.1 T"R?|_~A;?dTaq+Iu!!L DLc>/*-=֪v:120UJO>m)(LeXjx̩]vP{1$u:+FPE1;EʋoCelUeAVfH ~̧ `X(!/⯹t.1;u~ysixV}4 QjzJaEOO p9ю Н|Cax2SUy1Ia+Lݧ qî *aMfm-N9mbAΨf߉EIc-l (jTkQ~' CMZ| pz\9kb-ͤ<,W ;l^vy #J1p}X H{{y CwN:o[2([l8Qm9k~y-WQ~𳇳ҐXtfHeA񴜭Ƭ\a4oi4ÛIr9māk2demWz$عxU]v_IN 3/+)5ױ3?GΟ U,7BiW)yP,2r]]P ('HT7R}uBWsDs+>袯bֻ4]Td1FJέ9p) A"r r*RRa".z%L*9+t\2y1) w{xhBܙsvNЌO,ttֿU_[ܢ+/Kx){ٗ+:2K ̊fm)*ۦm,< =mx}P B\)3` 0F[7b@_ɥjc qӓ/B^ԻiT6U-GvHC֊Q|ts֛u/@egO1Qj)&TlW ~6]DN4,ԚMs m3S a,v:h.LӀ;,E) %߂^w>- Kh(3񕪲9}<%|8ND"j{,<`!Alg*y:\dT+I,a;9&XHk Â|i\<2OT-*5ւ\:wL=&i X_}82)bNRXcM'1M'N+&_zʬ[0A2("ztG''ja*7\!B"*@֚wF<V$굯ZէJzRr,n5/@dBXȐ%'JZgW` !  ?u rm 0 %OTByd?L}`4f2&ꓫvz G_O+OTQlS)spڦ*'6h~SE^Z " ͣe̐y# !]p22mnU5OC5$g/mwMve{9e []էm: j\Y:T q ~݈hI4Epޜ0&u8B_wZT*H˄t̆2hgך<耗u+H~a#lE2π{;(9KQ)|mC._Ed[-"OˡYh]-sJ_xpSnkzu,+CK0sgHttRW^D=CA׏KԖc`c ]p` 3asB#'U'cɭhByGa%/b񲃺G8=0qcKJoAG! |꜍8$ZWi׵5CR$'=;)A VSx֓ C@*P֍XޘxY)N8{"' eO?]WBkQL܂3i- )sGH>ե6qe0q{ǪocvLzJB_H1Sڭmv F:mp*#T>}M8J{ho8I QN)2+bg1aG@Ej A%nv =UD4\{6+] SJbNa4F+..אLwKR 6;9HrMt9t5%x2qܙ{}'C1I@T([@%yF'y+!@]xOk4w6ABy<C'^]XQ]TI셊%[xH0TtG&'Blgu-Ј?KO8+/ϼK2$b_&}=\yS~ݫ@F)7$N~fD0JdpWȱj4#bc֬ uHXmWS fN`tO(Y 2_eJ}o\awݠTVV $lHN.b4*nHkZN`YȣQgjLLsF+9'U+mр\v*ɮYEnl4 f7AՒ;QLՖ  vԵQhXLAێd5j^MTdX#*G|o[3P"{U^Qw~sY} ƪT~C[wf_D0" O8vES|yNZM54~d6Q+ ]n3VG 8 C4[ zC ^ԿϬ[/^ca u8t/;G+}UX;ybݕQRB%«p>'.nս]);:#i}/<\'x\mFVm!jר=ZM*ߏ<)cE+cb/vbSM7k ˝4o_$@QI7"t-ztZ7T.9 y9!}*ɼ5-GwndanL̋꯳!u{l$)}owں@l4bWNd3Xg9]igH0J1Wo6z>3p@@VۛxI2xSGdM G1|Zͼv~aTƫ \ J5DSPk5꾔wS'79/Pi Ghhhosx%6}]9>g-͓@t͚븴W}9 :je- F6mSۍӮpWaiF:߃Ztx R-@%A˂Hkr,t3hz7"q>*]KH?RcXWYjy|6p}X~bc|[(]Wa ZsMv̇.H8 ̹Wgg`T- =x>;w@ Vskў`GIk҄3Lip}pg[%I[@f=/i$bo.ZFLb%ylVЪ50|$UOt 3+aNv=NHfAQ 8V׻B*5PWVUE?3#86(Fqw4NV mUPd\J4Oq2gC@-ٱZSX[`}0ۄi [L|B,cu#VXY_9$Ԥeצ0,E$C^Q Nš 9Tрi*s]aol&N䏔xi«;id 坶,E<@V_;_xTet "8wdErhD/ҕLpѱ/+Z, !W_UdV0/m3Hk8ڥ\0<&C[8jOӛ{;L4Xk?}ZASP8 ͰAF od2ўnB&4^.谺""ͪL(D":EN3 Q+EsmHMG XA ՂlBEm( gB(,f&J>D+q._Wi:2'.CЩʇJW+]&T\=Gڵo} iîۘkoc݀?E_ !0.%XZzNg{3-P :07$>ãG(g`qIl' 'AC(\ш7ڳϡݜ D/O󓄗G$Pb^i^;44 ͪol;rcƅघMl0K͜|OM@槟\"MK*|1W>} q"5 9uOovYN&Յ[Ѷ.0AK})ϔGr}bQ 8 {k()w9iC&8}z$N-rT?i plqZX˔h u/eQL#_KJSu<ʀ>8Mnzן4YJY.:x$& J;0;xvѨ({pcy^Mmzևs#޹=o跧#xWTӈCa qg<Z” OlF 2"0:i]pe" *(Z(SLovʺ.,X t {B}&VSEޜ8ܥt//ӪQ ~VoYѣb;G=Cq<ՎKs7\) AqA>k5x8@'wC}jdw"OvSS3ڬ6␑2Dڤ:Q$emh>iE44NOp05&74',,?ImӕblnQ,UolD+#NaOT ed6z2A`8>;+EEKehL%, JԊ$קϖ4Wk T[S Ep´Smba^8x ɿ%1:Z mw_]>C` '7 rQւ " :^FQΤ{!cD鷏D,g;f[5= ḑTSTnD~"3a4(tOʨj`+ AjnK3:BiPǑKw(tSky1. VtS`$MXcXJ9;k1Ip^NꀶR„AW |=}pcyT GD6p7k1 +T=A'^ꀍњo5쉡hLȯO(^p'Rց<,yu>rTTY1 +# ڿnJ`g1/>(q;7Ahdמܮ(yTaYLӝtIr qKG`μVcH'1Q dXs7lf\!Aqaam-󱧐dS~5OU!;+- {h5w3aTrx>+;XbCTB_n.PQ3֨nPh6]v5m9BÄPнYے XwшG6>AQRҜZAwF/]nP;Suh^*g[4g9tZ/7tӵK#{iޘ@-'vpI.ar (y6W`JoO}OVppCd =gXY#oGhA⽟4u3қJ$VLG $W1F)FItYew!`qvg.7b&ÿ9^X-=b15H}hmuS+d6Y$E)k=Foaէēbmnͬ bЕ7ZUZ~(MhpK|IWۛQ{bmDFѧ_"ptY|vޅj6F2K6^tOZ.9NPhC3:XS2ecq/YC1;-k4d -+"Ai{뛂 Hf*Y$Q[f+#fJGB<ܵ<uXɀ'.4:ebYJQ̈~چbop(l;l ڐf${$+=2;].$ w)ٱ昑T'wM@d! L8bnmfp,y̲̓X)N E.sVP[rȀ|be9nEy,p^NtI;`<廝GoKnm.g~9A܎g/ 6~Yf27l0ãn҅TҮxBGV҆w "GpmK؇w4fˊaX,H]k2$ClsQݖUM#^Þy-:xUt ƥ2ͳE0DJtm4kf''qGbxpy#ܨZ;a)/N۬ 4\7w.AT]d5mO'2^pD_6b1ap"r5NYK٥'ZO7 h͈ؕՎfck%kj¶KzAF\,>ԘJ2s,Y~&1ѻ' U-vɂFM6EuSvk%fPGذe=V탭_#p"zI#|EMfN4' BܭEt2 6F 'm,8=qCt+CIH'FU ="4d]Ӗ@6{nWHšH ?7B9Qf:=jf <уiU^xU9kΈmynLŹTwYl]2{ Fb.Q?$Sɹ{[s@;1H }&b`~Pv=$x&A>}ۚn)&:3[$~| WhsbkfyC_tum xٵbMExݨ)mU$]S 5f9ɪ>K;x 4@nCräqe?!&\z'-+T;3k`C|/%p2y}K az-0{1xNu$j/)XHx {vG!xS(}`IKhx8 M kKJ6o#ec SH_j]%TX*muvc||C*3 L4HV-/P (1❎w'o3T`ꢛehؼ3];*δm>/^rEDWf.M)=SAХ~붩"$-v!V8{ԉhxX~'dͪ1z禶|bR@Wex-f! |s7&(ە9V>m?ZQd|4 ڹLvSgG `7ޘə2S?5~Z7 ư4/gɾKJ{ᎬE\m޻]һ+4‮<|Lq@?oSB 9%N Y`jWwbXf ; M*R|Էv cz{V('R;PKG/;s>\sdkk[vAg^+Eb/Wf`,uCqHܩpEBe1NGcvY c;bg ;JysO JW9PlN47x:%t doj lƎPiߙ\Kiu%Ȩ`-FA/jPogR Oa^>w >Nqd2I)9θ@d! 턁+]N㦥WONTNHe!.#=?CDv,36뻃aNytW%x.A 8ېŞ thG;ϖh@1&ebRR ?qA5Dip6 }˼$Hy!Cu?Z\UpFJQsiV^>SHTT9Kk &d@Aa" ѴѠ0_b[5UU`1I~/E}gɗKTΘ$H`A?yz 6 XSRi={(ˋ>v;H 3ڳ=&nUc6=]"~M~(;yM{>6Z n| iW!ױ`є?~?@^3IRX7YaI9Ctݶ3[^!v*15reRIR+(eSb%rsS,NkD5@}}!e:ذ1@ڇH*eU?JS~Mza{6! u 5{ܖɄe`hf]rdp赙B7$V$sk}UەIy-,JP P$9ܣKdۋ9Tcjś=ڋī"$`vr3<%DWɜ~n>cCMʭ64(DYZvmfD3U A25lN67(}j+}d휵 Q1"#cDZ8=Aj sjK8Ǜ#wLE -&?x>?>BI%P+Gq<8T SŘ5I|eFɆ*\=z$wZUq8&eTtW&pҁ/Iaƴu]maPvJp C-WfElysbUN" vN3;'Fs6YXwHɆ2%M± ֝|geҳ/j##o{- yL'^̒ov#6_&pUZ5sWXaC!!voK/>Jd#89FUaBنEiʓ з}^ j5+Wie"`^:l5171Dшuv ]hhQ:PJl4li++ .r pB U]!9eEZ7 (w7߂t$) v~@*AA]jUP*oP)USnDhVXZ%} .䲬R:5dJ[DxOˌfhs5tR5Ey[%EK= D<Æ)W >4 Ҽ/\bl96ХJBKmؼPdZ6&R[aG~7n:?DeXtl s_@ĸcn]8[O&6OY(|g%@W5$I|#?ڵP(0`N Ӣk{9lfqVLD[yjjOSg6ף\gQf ukBrr?zCuBDKݻ12zxH, ᛏVM(ЯS!o$s˙p:g}I>(8MTyB_kR9q`v^#"iy4]@15$yٲk o@Qpۍ0x:"btz0fѮ`G )YMҹ[DBA[zK׼!qT%y-|.Qdȝ'm{( %1J+XOU6.j0M_fKUc;%+x!r kɂ|4u*w ތ%X"tԢ`dl쨮_%gU 9W:iSmWOD[:*%<1&mj5D lI*U#y d[Jl"?t\>FnO,8bT )r4ӕhDnos2xCW[9=Mޣ!*\qӄ4@~+qr!za;r"Y=n̈́.ER`Á }ȋɁQ5;xЙ {fu&&y Ћ^-&X9KrľA ;gYYN3jW7=;DۖMzEv9Rv=nĩ >~S)u w \#Hg̘,YڨjkL*]*y)V7{ CT]OS%@UJ A^Oo3;,49{h1mx 0N湳1ыĦ݃42,ԡ,c@[Ѳ󚴠_3 =o6֓ T8w"AWT1><Wl&s6wEPr$hx Vh3{Om.0abl3(YaxI#tZ2 /MV(E9t osbIA} |\o-)ڢ22~E;5ޡan/˫Q77#ro^zIr:/_Dt\?(Sg;^I50HrAԒ]8zc/0IBQTsHqKl&}P&JF& -pv~/Yܫ}>EQ3vT 1SWx5sNC. @t#XqrI9bcL cNyKSe}G"^,jEI1]&[ëGչg2]qip.(y r&YA 05~ Xb)}fYC9j_d:)Q`YVJYzJPa,qzZrnwR }ߊbX6;1n3nKB|XZz]44d&ZI,ʔڝAH)$&bp E4kD/Oa>8C sIF'TX@YMgD=\10Ҧq:8,ZPp8,#xElnR`"ȩD؜=Q2W=-N Rso;gkLܭ8kA n@kGBCTOolϨ εZinYi-Yγ"쏸CՋ:P2S[XBQu :J/UѮ?Dk/QiYt.s&.GtDg*FF~@Y7F'цY:$;dƼrbDA+ca8uXʲg^߿as@:CGdwDQ`- Q|²LDtR- +,RÔ"rO79k[ >x|yf(s8o [xt!*SyH$:ΠI'~D8l\60nw68j\uÉ[Qd)R9'11jQE>(L,2Du%BMO/"ȴH}ic͝%L\p%f+0"piEΣCi-#K(:3LCȽQ[\uױKL(b80-Cτ0 GaBKm威d˿H28#tr!o!#ꚾ` )йl -_˹+@ [mr[ח*_]}Zps.NP?{ۘQ}O LDAƾc| IBc5Rϴl7VhgPF*i]U֎Z}Ъ*6Xo+,q΃gz̾+0u Lby ; \D+)[JUWe%c*A|9*'Dз<%QϛBcv2;$iۚn{/XҶJ >'v}і! [y<.TZ!V6u"n!6:#sё܃s _=n$79(7\'/e)%jcȂRŗڒZ^za&}@1%8~K%JMzu(Et%!и2>r\nH's@bDD֎A.)誻+֤ڙ%͙T~'p.#1ĸ<;U)8AlK݂?)bWC"%5`O)BbˆQ?]m/QbY_kP !z]1L-:Cor\0_4Q(JNAH(Au;4U:{TZGR5]nӌ7kIF\&F!sVKEY tQ@ɟK𞪛cʰQy79a΃i)umW9/OӬOOSނ\{m&!Ji}8zyj1sm\L6.:nJn֘HA`sdMk/37\0xiDy,W/@t%"u:T&|#fG!a_6Nx^Ɏ`haya:E@G!F`]GN$N9=Ğ=#􀼙cSH΃j/з[qSUCpOdɜxQ\T2Smg'FԬr40أgwձdJ"WPGq VsЧGW)hRM2Ò tj*aoI.9^dr /JR0t$"$v:F8^FJC@7F!F ( A FF%#4cQJ]LdM}Y8_?kP@*`84.-q xHkd>!qu*/7>Rm)s1*;X[ʑn*$'|bL #'UV% RWJ|_@⩲t /E;_`h%&ÛhQMPcGx՘(J屗{%3Lt'= 9o(>`"Wd\Y1z;7 [aً}@AB9u4F8a#}uam7q!-k`db̵U+_`*K6H ix{HVI]lI9[G.0`4."$E8yLn'(8s5gjm`m b(U:xrˉu~QBdøDrf09/X•(C ]*g[*aӲhY\+1盔1C/5Q;@6LS@52W`!{exn724,\Z,X7qsQ՗KmMyec16uDk*, 6JVi]v;-*,FE_*ћ~QF5JYmG&vIz<΅C=JYԭ9 iE4_o3a3fs$5DZXlJ@" jO@drۙqeA&R7IkmP{&)lHꄯ!BM.Teq>s@  mҒ9 <_2(rD0$VeO^:$m8:fyU]j<ӕ4=\tC;b͵x`l>_ t OXP93ָH )Y( =bJ.@R.¨)%jTElpaK)vcAazfA^‡Oޢ^I 0@ #i{Ϟ]%NRʊ~]K?g{bDj@h%:$bZ#5R@`|s-^p@`W!|үi}29gUuHͭd%1׿C/] 5VJ43cǑj_LP:D{atVwp$Rd+!’9s]ifD'߃-u. A/J ƒ+K|J,7no)9 ĕQM#<[tNe= 0#*֦utx3ۘY3ѯޝ9!#&gSim^^)CMcL)$𰆸nI]01X ֡ ԉ!2baZe 8fyezg< 8f iWto=a%K?0ёZ""U 0 #\#Kf㠺-*L<ҘK~HB*`o_A{Ҷ*T=#ݰ$1YV 80ԞGON{rϥiUyN~kvqZL=ZO5roF͆e'hz^X3 Y2^L]IthlO2HPojsOԿé$)ҽD_BZ<,Mghu:a+Px\¢Fpeh:kG?,ꐗXq5{'82N V}21di2=E)b9Puniς ?UjWat`zt ^HnĤwK."IO(ZM+`B7@C6+K|8BO J:8)0Б^Gfۊ.GzާtV" dV"BhH6_UГ0-nE=%ɏ‘<05ٲID]3&*[>I.k\=`թؖݥP%^hva&Hԭtl=:B3(Lx+&(i멸kOT[>זk|SJʧ}LZWC~D;[пh׮=ե@*D=F~.z7'SovwJT^vu= bf)94{f˧z$ %?2LkS W8}4żf׉"ǞYN!= \"lBv%oGx6i- ѴÌ>cb3Z-}B,鶡:xLp{L2$<MuxALsݺQlAJ|uk8P4XwZFnBrʵg6`(Wz|NQ؎%8 ChN(gG)p9 V ; `Ԏ3`1)!ήO+cihjoO#ց$JAL*J7$+5܄֭c#fW- vל72M%O1Ԫ?Cru.fa~q_0s=U FoGZ#P^%|퓷Љr~R!r,{]XW,{ mJ3B*13d]jJ7AIneP9 XzIGPBDTCmKipt4ʶ*<rBav6`xcZ90άd$ܓXE5ZЅ'31%Obn1 rAp98XbH8*4fx'œЈeߤאDKbe_ д񬑃,[R'Ϗ/J]x8m'AM9R~}t"ybx9q"2&%C"|_DN44s' c}[Ly" T4|E@s9txx.1D%˃T3Lpicsa B3pLZTp$:Ϟ oxg~)=uu=%D J>̧(l(³Z`xa@aw@Ƹo8 N*hS*k}g1M 8vF{,fY"JD(ϟkm\O?f>VKӹR`ۡ{yLC~sTFs@I9gؤF4So =E"$ǭ5 aQt,]@"1 WSH5r5Ny(ˏSYY.qL|p}O"} cbWd{ή@=e-"6~orE|L'sw'z7Sz]yd8n+V w _]XwT(N-+ up#pk9YUQl@CY"0pVΆÌvic.b@; uͭcDV*(Hp?.I0m\~"8T'e.,්䪣% P ~Z`BIu(عpâ/ٍce2ZH`MjNuOTez!q&OMwg8;w+ˁB(2ÎZŽ3ɛ2i_T/ 6+ Qt:,IͩVpU eſ݀깊:mh*)-ED)D&ا{ ;Q(+0 G=g8 ugа5r(+7֠NM_1fz2pM(8ru{ͳ藫dz~o< nN:+{髮S d_\yPą.jhu1bO%ŀM &5;,XOޅxnncNJ2GڂhHKMه}nP 4:3s|Nׁ\ pođDxXLDz$.wceU'$S@D/G1!יaPAAa(~̀ϑBVcίNE%K4@dhLgGͤN\{W0zuفDP5_#xMt:^G⴯6ټ_R7>$m.܊/B Og0 ^* !UT!vb~>!NQU" "yXىybgfHMcen;*Px8K8iɨwR}Tc @}@ٞ?U%|;7<QW+'SԲ!6'^%]U7%xInKCFOOIYI/jk&D{ P٤u _ ݧ8(d_}SVб+vK<ͽ]ez?e9&'.i7s=k=:dex6v qɄUc3fEmv޽ZNQuDeWgj!mwᬵHn*MӃZV8Xm6q |Ս6dTf[1ai~1mY t𸫪Fd>IHmcJE|#Tݷݦ>\,Hx-&2uGd/k?tT-f;Ű]ϕDI#DqaIt]7IT_@%^l,ёFlҵ+wJo)Ez:K|opa9E&vj7z=@lː(YtiY|cߦ̀zovd$#*>(X˦#yk*]T%yrh%o֌o#9 [4]].f` /ޒbZ@V_ǬL3/+މ)Dd Nr@BkTMC?QjmxVO2 YԄSc*(` =:\#) ]#|IH괳Ah ]0YE,)%Qg-Ѡ=`,.28LPe $%cd+i;H>1$];w3oajFT̓s"6JGh%vo ;rlF&~g )WA쾷6?6dE_*`|RKLg\y< 0`V{8WHig}+0PK`]RG[~r4B?NXߡ==vfve .z>QF}kɶ +%cv?chTŸg"H%6Wl=bO4{tu8Fe[& diG] ?qc 0NaP!FD0?CW0uz=gvY[ƧL_+.g-NUY=# 4)nfhԃ7.%A%!pw .Τ Ġ>W0Up |y@xَ&vU"M( "oVqvQ9m1U[{!?:(VbC7zQ' iIXKu+iEcl 6됉e/>>sղ6!էE*!DocFXTPTXnUCIFlK71tզk?C6v4\t(3İ͗bla\hsڱ1敓%,kzv1$" B17ym"["DWC)oZ9 Dx}7!:Kn!b [.f .g^,Fg$_{ULnlecF#x3Xp짱qM4wYôYM.cT̏$}zy x鴿`g4)k0)0=,NTXTx5Z/\BfPQ2!@Ƿb̼=Z`Gl `hkb#/gU;^EEh|ƪ_c7x@R> Ȭ޴)7E%uUfo1o߬L$8 eR,/\(?(֌!TSrh [T63_wAW &j.H_0* I⡥0 yuprUyzS2 p;+ֻ@jVp@u“ްhᒞޢdQlMs8K@\@u4>CZګ htr##DrnAwmbl}zH`pq,X 5ސT Zɱu9b%_x ?ۿyme*˗cC`{h5!e$ݪ*`˿Tհ83'ʹ{I 5U>o<#C7?5(߰c2tYif9tPUY%ަx1a7wFH|(=^,i%4W;f}ҼuNQW4|^*u!gD(Qx_\Rd`炖d4ԥ-Hnx;)Hs\4%\L )kTЎw4 ?XSg:OyEu奏@ʀLbȈC8-xC)Js3=~ldt6^Z-BDfi?/k1xdC1g)bQHHM ゅZڷ)YXMDImz[#}KW#ыWjʚ烫s.E]T,% pMou>2/;c@1-"DaN +NvCb7#|q: btU";,ZIf^پz:9/Ccxc \dC0(?$W!z?[XH3Ck 3=^ۍ;9bR?^1+rOQWF`E3?PwJ5z\$3QE8w^ZT*& 44hdDѳ~'Q#cZ:wzXg;Ə#aý>PjRR/[%j0j:!}Ժ2+ On:h,4fhb!^@wecq3áe/?_ l^R_oX/3퀰yکTk1QNaz_$6DMU{^ƧJgTMja\ jwQ8aRZ$H%ПA{^IuY۸rB-Y"2,G`C{?'͎vyp/-ڡq`.,#okXU9ܛ:Rn XL=5d8>ŞEԜo^UtfJVG *ftߵZ H yFJBA#C>iedL ,`^-YC4]B}hgۡ,џX?IE%KnJ;*^0ۺ4ˎ9o 0煅/5=o-I$mA°p<h#wob ^{| F࿳S&s;x46O&$XB> V 1Lstpa#y)l"%ľt;ЬέD&I#{E/qqHGCUxN:k33k۪o/ )˰+gr/Um:SH4:շFS4c!(4]y)^ɲRh95Z@ ɬzT˘6;^ltak057e㵲, աeˇIcrF8l;jZS{oD]R֡㉯Ѷ(2=es0䣤aR5 g[,i O}A^ #Z?M~vev~ߴD臊a0J%ұZx'-?Psx &C赈f˞H+ n;0Zc*-"cULOfUb>CV5۳@8^$qC&b~cI5 3CK&ǴzRXAYgb^)I2%v J̚ʈJ=IO`+^t̬AyAA;O,}'!bJ[9"27G$l'Npn}t]RQɀkb>__>xEd$gseQd}]]D3&[WF^}%FJ1Jrh*DFtiW1Aphɘ&9{\ GbR58z]WF0;,.q2V KjW[! yrэAqqJ"=Uj2g|a ;KK%kO7'm#F0}i#izy_' mJ![< Efj.zXmaX| ⯳I&p3W}aKgx؃uu)T댠p hhLMak2B٫_^I #Ox6RZzF̅Z55w\:HAyjM%A~o q-͔YcFݢ=u0ꚺ X  }kEVhCuMoc#ÄИnhd'aHp؅]Jj›_";N5]̪^K`%ٛ"x20bÂR$8t H~%KS {YLDž}_m9z蚭]^/@B@#KώR9M7S{36Aךl 8}"w{5VE'Gx/]R"A{z`TZll[+{U7[1gܮt&of&GauD_udZ:pnQ bi}b?y]Ј` ˳7FD*dw&bҁ9n6; LJB u)d&$Nk8eUM8 '1` _dpWyBm }fK>hţ(gU wn!E'; c i`[P3CF.O B'5^K#X=z!H dÕ "8sѶY Ixph_r&F$N1 lϥǮ 4X sGdp,@)pCb.NXpbh*R JtX̥RC ٫s -Jo0c_XLXS&͈ʻ!& }-Sx-.pli'ғA@"++W{ 8ynPQh- ѓ=L{.i8%g6&9 QK{8O;ƈ5=:8,*;Db3o 2^] sQ~$[PIЬo'^׵6WiS7>xHupQ>ڇQvP˰L{0,llm[6`fxgLV}W9VVN5$%5P(+E$)A9fHE d$fA͒*݆]&r y銰^b̢" ړ!V;Mm~Qw _7WΆV(O7c s=鑰L+$ n-b~_EQ&`1o(OLWi[:|~Lݷ>vHLwk$(EӥHwOZ6Ek >=:˛$n)\(6!zMRV{5ۘ=@ ϕWx'#lol7q'$vކQ0wLDVOz^&c"w:wB[Fݚdb[>:d\fsVJ,l5i7 :Q"!d{b<|g|Bv0L?Bi|G%szުprWh6B4pJK`.gH} og }d 2=!ܑ@')X/xn#O`nm/U.uYa]. Lf?I- ־S2*4#Tndz7`iˌK5Fb`D` 1xUH11ǡ` LL}A+<8r^P_B'dj𢌈r|>&Ŭx?ujEeKqL/ݓ=0+AR@ ħF[Dcd\SqG*֘_穪vtRL P֊ARfx߮8""SʼQ3e}S.5G9h[^Rw4쮉Zbլى M2\$2` ISB{!3wI+ AUٔ!nّ#,c'ЉU3H;Myǚ>]y/3x05IS) UwS 2@@~LǗbA(Ij{ sC&"ے$7jcxȀߒY|m565€Cx٘mceb8ή{ Hes`)xIԔvSbEf?qROu?C=6Б>ł:zzZ嚴y~D'9X5q|;s% P..Z3dJʦQ#رܭAxW(j4a NN}/tzeΝ1qjBijHC*{bMuQuc'"*S/|JtCρ:ݹq"po#ViK b'$(k  ^ӓ 6x59<g9bfgU*䍕@jXϪXt?BAPH {Gfy81ifie`b ((ԑeYg7&11ݵq|+iR@ҥx7<>)E(8v}Xǹ%az䳔0L6I՘ |1qwz^f;c(zz& |;JMt`+صpd^< d ?\FGs]yEJVPT25F赔ΝoctlcHUO7N@ݝ=z昌9#j=.4nN xҙ͢mق$ADFؼ ꠣ73+ {{3EOh~¶6xJ\UA\#dyA~D ݭi@Rx7綖CoTɬY@N ul%EKĄPpCCWK)zX-s=͈/UL=ϱlRo>+!ș'~:DpGWmZiI n El!䪲g m%ss-Q*Ax.¨/cW[:L@.볷s}Kr{D;zKj!8wQw9N ~A@ўʇ;mW-qI ~IĞa}Y]G{ :"oo.&t=E>!؋n$OAuw=3 z"NJCGd $5NIe(ks:+#+Ik#}%6v*~<;4+^Rԧajpj Qqs1;êd~شA -Pʊg:rx}U~kFTˡ(KFFRxxN f.5G B罌3h83k1WDO04GdM?ڽ픪ID20^y3˻r[i#Sv ʣtJMM/ğߘ{<}v3EGӡ7;(FtlŌҠ_Cd\0Hӗ ƻlPX៪~'b-v]V=չIn~~!m9<rޣo{eA cש%|P& xsc*mXIMwLpw{\$F\Hp׌lyo9zO-2[u]- k"_ :/9g>:XJ&a@kR6 É|[[JB-~8y,+I[rЊ$P2D g0nP[[GR{>2Mq 62 "_Q걙Z2MF.P$H0 H@$pi*?k`s6\9 my& ܎b\ u^.~`tt/ <+h>磨Sr*~`R{i\w0mU|Ղ~ltd~^+A5S )'y](& k%)89+ e~J[ڐ+Xh՚m}BkOCr-=ŚBuy7s[C&C|.+6'|tq)ۗ\yT TIWӻN|onsV/+yUuLB0.J:q##u7Nc? ]OkVorP Q NdD!pE;TB>v ~Q]a8D" ~e3VVQy,6%.@)'.@Ç֧눏%zWѫPv+.-]WːqfKw[jU0rZgs*raxr>y7jcdp>Dc ]qݞ3YkMq4:=L&,.5ш*)S"52A/mY Cx?u'_0yoI9q#`XzMw"nݥTN3OL&loAW~ PyF/+WJ{S6]su&h_vs(a4vV׃Wܼ ^5ω (?dKv+ ;b2>nlFْx1]$ue2v&^hXxXۨ|@gD7ۏ{C  F>=A4ښ&_t o7#HY_jS[Cd3b`dDX z7@puCciG~ߟUЀ΃]GĿݭϷ0Izn|^[ :`+3Y%I=p-JϿ;=6VZ30f&\CoNmɌ)U5^xo0I-)+TByv[ T!cɩ2*DfF(of,y{3& e0 јUa۽aɌƳ$.3 )F^I tM"]Xvk*<)k͌c (%=a-?rNt,{gg=/蕶-bsÛϐGDLpU0YMϬ;SPI)ZqMbÕa5{ k|_k; w~v.Ԫ|cBJv=}H# s^P3 $x0jO{C; %⊫ {P`3!d*Lg"ʯRp{P1p b4Y$98vaf{IHvٴldTÇ7KccUK//E?#?ZRC5*^ʑJ٣~;GڜJFMclΪzz;ҍj+  :4QalI[fkk8JZСO, #3eS4WYIfB]VsHy.C>brI Ġ3-5-$R^KZbwmI KO=GaUSx=)|I!d6~URJuiŮU-&|OW2PX:VjoDoDc&+& &+H ȥqxscqy4΂_NcE&V}Ϡs!&rNs"Vր2#,Gp[J2_;C,B8k!`KYf394"p0jT}dl:d,vb{SYP"տpnLȚxȠ9L툋S[բݐn<- D.*Fo4 ?F$*\ y=z\l]KAL Z#V9фPQN,pSuVUtn )cKj6$:(}8vB:V޵}/MKgأ 4# ʫ]=&| (a CVh1يN gmo?y$)LԱ]rB\%vKx2{">42s&e~G @wSBHNzF'SaxS4 Z4F;z:ajvcVStr)G=k/A;$XtB~e -P%,~ŧ@P: 5n ^}QDU-yeY{=6 >| ?o3ϙ#FgRFzq (C𜦓hJc%2Uf󠚊4 U0k :pA)k_1L䍼?U3Rʜrl5ΟP6x 6[)C[ZWq=HYXC[.p8p9,rz-Ƙ80H7.n%aԴ$I+!7֥"2zv/43UZ2yP"'iGIٜ/ #A s7weI'z:UbafLxRMQ5|}E`Z 9!4xF4syW0yr)7fO0ZdBX< n1(~{4zAGe&&'ݻ1zc8 oX2"&K3 8_o38 ox~l!lЄK+Þݺ6QE!,Ć^=\i4H훪kQG+byz|M u1Sž:TT7:`N` ͻ\q:)1^qmƒû(ʢ-6w(x$nez%|2aǛw`(GgE0CD)8.*bt$RWF y5DCffB<[Sku;;cph!['_2]Sa#ٴS$A[YtRFqY 9]zB[lS5(&ׯ`l~n";T Vwhѓ ouqi[},Q*^Ŧ҈x߄_H)wl1ǯN;E?^~#f6qUA~qꄦRM^ӴʐѰd@c71q ,k'=Tdn MXBGB3.Wşy]^AzsR&1IK&9)1ӥ QNALE2pď43pjٻ q|h:GO]ry8$SP K8W$6cpZgKzOi J` rG❽zvNT/dhuL*vr}O(,>4R"S'BL?{zf*,KBڲhx3CrQbJbת9ksͰWio utADW9`{tN_1&Qɞsqe8;y{l:+VWʧzt np]ˠ ;oچFjvjygc$~戞'N(;EZ?!Fk7&>ʆGJsmnȔ;o}%aj§}u[D fbSr9=*G=5 ѩl+[Q-+".&!l^?HUPtԐVgggS"X-~jR!09SReZ*"z:~>뒆:&[ȯܑ͕ 9ɍe,2{"=a7rV̯"\PNWzrC4uN00v(6]~K4O3DJIhBO%"^YCA.8:lοzb`to3[g2@6$b9{zF`'z?VQyʬH'!>pScU{Z&zEuA1Qʵ5-鄋"}jSY >Ǵ(rîMl#'Q6fcdc=P{UhktF'hi@@5 聇ܚ:cٜ&E~?&m;!-iCJ8`z;lo+E<[b"*36؟0$"r$Y0BQ{mN/v>fێ^ONb/.m)՜̅b肽o'v(vΐ Vȱ <393׊&O&!{REM͉W K8ԍ;ʴnq/ q7 91w_^+yPCG7ocϲCݛa$VsN%{?dyD9XNa?_! 7ˍr]PD<9YAޥjJCc{f;!ZF.D \N- ]CE4+z0$NT7rPpˉS t΢x@[EڬP;Q &4ɤ[pkL."Ѣo}O KIR 5Ċٌf>KdF+!pOy@e,JiRxņxr 2h˔\ nmȫ֒ ȶێ}єJr4!Gt]ŝ{"2 ;[2*gRg0ׂq՚TcKٓoH\}N [w)^PIk\ UTm3g}BHx1$PyƏ 9XO|^)<t% xoiiiB a/Aewz*y:й!sak )\Pau|6"Vf˚{r?(b%LW:#{bc.$[z/6.1 *TtGQ.$2yrn '%o?}Ln4B+u๠z CIN5ZgOY$yh'vonBE_(G:錆I"/Z:M`׉t͙&$&`<|+*qCG[fB"o{4RV82V:cTm[K6A27B Vl~r8GV<{ /d{@܌}&/="+DBX~S-%!EDqG5@6[-O " q3Jq2w1ر/Fyw8_s:J Q~C,= yNQ$[ 75Ad%zZ" ARON@-вK]Q]Mk4ʳYԩ _+WO];٩8Fc{J ~ ~:M?$MBlpirFȕ{uzOHdجe0KKxe}C6Y%\s ]%]D$#ݫvϛ7_X_º E-fc)-ņ77_P LӖ S1k3ApG9Xk/Sm S#iN n zУo;Ey}=c)L<O-6 T=zw u?`{zܴH|-`N (j咲bYV7M#Jj5=7jJ 1`xo>E-.{=#30B2a K5k.^l,ϵ pNU*7p"t!sё{Hw=M do$ׂGbhCLxB ns l,2/7kC3߾@%lnq@kz=!`^h+qo$`з>TF!] "^,:j`Ay,R0GBI2d=D f#b%}v/]i ̮FS g8 #^gcKY{48#4lį>C^, #u(!*(]h *9NʗwSaf= VKMIP 5 72r|oRB5ފi ,%R> w탩q#j6߶+;_P^O3R}5ND\ok #ÝgzGu'np#k.Az>FVrG%l@6)reX4Bj\c քe_@岅 +hT7 s}m^=)z!l"~-"o~!k9P ơ;z"]=-1`5"ZyS>PYwWDintyX+xYL@ڌ-m'hIIK./"B(4yK d‚}{^RřR oJ{OK>-mMt39p)|q\+|ScªV(F5NiڞlXxNT\|wߩ;!}Z$:?N:%U3r+Vb,}: I` [nPṢ`>*q_ORSַd>d9>eлT91jޝ{t kucG;p#?~V n47D_gĎ ڱ;bS8<yEjT]Tg!C#?5[Lز/}n %+PFvG}jo8"MbxyN=8B̘$ܔ8DQI ]1ŏ3A~ˁWM;΍HӃZ=|HQ+L>NQRx%s)r5XgQkn1M[zBg,1/$[QإV#Z4Hͽ{A4 ̬J;S=U;vӏ\}y&_܋NӑDQKW2D'ˆbo-ʼЋ+PˀTw<!gQN+c6W#:Q^ib#kAD<ݕZ׻3 rwGsK`¦ 'SCvE +nͳ(yK}EeD*yy"E $1XG~9(Rg(S'k60F }?xf"qc+ܯ5ې`~iJwz1 ]1Uj!!l$ap'aڬ+LfghG°Uj&NM?d-,!*|lt%2x8Kѷ"R'nOUXtPIN|FRKX sڝ,gj]yo|7@k8BaU%ტE]c}"SWrs3`T!4\$]hkb79i([mxaLJҾ6[pgucKY}Ǘ8~H-ZH+{y>FH;zY| z/ú1e3yE-g\