logrotate-3.13.0-4.3.9 4>$  Ap[p9|FC7Z7D",؎tt u""3|p;F9VhܕFGxSm)"4z)c :EQf) R6`%𦆩6x27gS1^ZIM`ӹ[H+6:[PwSu@4+|$MixA X(YSVu-r p H&Vw 3c6905235804790646b2c7a4f54b2582016b20174fc27b38c06027a331f152a21e0eef3d0ecf3bd2eb359b60945201eaaa43d34e'[p9|:@u];PO\bș wKJv|fDu7ƀ 'sR_g2zϪ~K;sNM_ 3aL{pf*!  ̓%8f-^Z+u{ɝ'yvaKs1wV훰I)c]PؤT91'+Beir#HCsLJ$8\W [QrEUO9/[wH-S?7e3>pFS?Sd   M 5Ahnv#9       D      ]  $x(8 "9":"=M$>M,?M4@M<FMDGM\ HM IM XMYM\N ]N< ^N bOcP]dPePfPlPuP vQ,wR xR ySzS,S<S@SFSClogrotate3.13.04.3.9Rotate, compress, remove, and mail system log filesThe logrotate utility is designed to simplify the administration of log files on a system that generates a lot of log files. Logrotate allows the automatic rotation, compression, removal, and mailing of log files. Logrotate can be set to handle a log file daily, weekly, monthly, or when the log file reaches a certain size. Normally, logrotate runs as a daily cron job.[sangioveseSUSE Linux Enterprise 15SUSE LLC GPL-2.0-or-laterhttps://www.suse.com/System/Basehttps://github.com/logrotate/logrotatelinuxppc64le#only the timer can be enabled/disabled/masked ! test -n "$FIRST_ARG" || FIRST_ARG="$1" # disable migration if initial install under systemd [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$FIRST_ARG" -eq 1 ]; then for service in logrotate.service logrotate.timer ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in logrotate.service logrotate.timer ; do # The tag file might have been left by a preceding # update (see 1059627) rm -f "/run/rpm-logrotate-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-logrotate-update-$service-new-in-upgrade" fi done for service in logrotate.service logrotate.timer ; do sysv_service="${service%.*}" if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --save $sysv_service || : done fi PNAME=logrotate DEF_VAL="no" DEL_TEMPL=/usr/share/fillup-templates/$PNAME.del rm -f $DEL_TEMPL for var in MAX_DAYS_FOR_LOG_FILES ; do echo -e "#\n$var=$DEF_VAL\n" >> $DEL_TEMPL done if [ -f /etc/sysconfig/$PNAME ] ; then /bin/fillup -q -t -r -i -d "=" /etc/sysconfig/$PNAME $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ test -f /etc/sysconfig/$PNAME.new && mv /etc/sysconfig/$PNAME.new /etc/sysconfig/$PNAME fi for i in $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ ; do if [ -f $i ] ; then . $i rm -f $i fi done # Move /var/lib/logrotate.status if [ -f /var/lib/logrotate.status -a ! -f /var/lib/misc/logrotate.status ]; then mv /var/lib/logrotate.status /var/lib/misc/logrotate.status ||: fi test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" -a -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -eq 1 ]; then if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl preset logrotate.service logrotate.timer || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in logrotate.service logrotate.timer ; do if [ ! -e "/run/rpm-logrotate-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-logrotate-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in logrotate.service logrotate.timer ; do sysv_service=${service%.*} if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --apply $sysv_service || : touch /var/lib/systemd/migrated/$sysv_service || : done fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable logrotate.service logrotate.timer || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop logrotate.service logrotate.timer ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_RESTART_ON_UPDATE" && . /etc/sysconfig/services test "$DISABLE_RESTART_ON_UPDATE" = yes -o \ "$DISABLE_RESTART_ON_UPDATE" = 1 && exit 0 /usr/bin/systemctl try-restart logrotate.service logrotate.timer ) || : fi else # package uninstall for service in logrotate.service logrotate.timer ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi fi  XyF)EA큤A큤[[[[[[[Y\Y\[YE[[77e03c86a0d12a9d03fa2b83a7015a6fc13806098b576a00b7fe76b90abfc92d51a6b89e12d83c3e952945e8af21465fe07c64e6abb44ccdf6fee83e5daff85f560c47be386b03a397acd0acf1fd7b002ac06d31895f7f28c6a0651dd7b432e91382988b2de5bb02405604a8a68f5592bd15f14872ee3817d9fff16238c4fc388ea48e0f4c112d8387d24ee41f3f2403c274fc44ddbfa25ceef203963406322f00aea868c8a117e48af3bf38aad6dd5fe4f4c49d2e43fa9953eae6c0477cd9e969d60c22398ef614f67bbbd6e286802fa94a5295257b488967c1d79ea0c907bf8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643e2676b71de801a4f0ab3329d6211e50010d2a99a7f4779af380f3f39616504c70469b7c8e341a749922a8be68bb1b353b8a3b27a8e199b82628130402070ababservicerootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootlogrotate-3.13.0-4.3.9.src.rpmconfig(logrotate)logrotatelogrotate(ppc-64) @@@@@@@    /bin/sh/bin/sh/bin/sh/bin/shconfig(logrotate)libacl.so.1()(64bit)libacl.so.1(ACL_1.0)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libpopt.so.0()(64bit)libpopt.so.0(LIBPOPT_0)(64bit)libselinux.so.1()(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)systemdsystemdsystemdsystemdxz3.13.0-4.3.93.0.4-14.6.0-14.0-15.2-14.14.1[@ZlZOhY_wY_wXc@X2X'@W@WH@UU[%T!S @S=M@S=M@S;S:@R{R{RZ@QMQ@Qm=@N@Ng\Ng\N-ZM(L@LcLjyK.I@kstreitova@suse.comkukuk@suse.depmonrealgonzalez@suse.comtchvatal@suse.comtchvatal@suse.comtchvatal@suse.comtchvatal@suse.comkukuk@suse.detchvatal@suse.comdimstar@opensuse.orgkstreitova@suse.comcrrodriguez@opensuse.orgp.drouand@gmail.comvcizek@suse.comcrrodriguez@opensuse.orgcrrodriguez@opensuse.orgcrrodriguez@opensuse.orgvcizek@suse.comsweet_f_a@gmx.desweet_f_a@gmx.devcizek@suse.comvcizek@suse.comvcizek@suse.commmeister@suse.comuli@suse.comvcizek@suse.comvcizek@suse.comjengelh@medozas.depuzel@novell.comlnussel@suse.depuzel@novell.compuzel@novell.comjengelh@medozas.depuzel@suse.cz- Add "Environment=HOME=/root" to logrotate.service file in order to allow mariadb to rotate its logs when the database has a root password defined [bsc#1093617] - Added patch: * logrotate-3.13.0-systemd_add_home_env.patch- Use %license instead of %doc [bsc#1082318]- Version update to 3.13.0: * make distribution tarballs report logrotate version properly * make (un)compress work even if stdin and/or stdout are closed (#154) * remove -s from DEFAULT_MAIL_COMMAND and improve its documenation (#152) * uncompress logs before mailing them even if delaycompress is enabled (#151) * handle unlink of a non-existing log file as a warning only (#144) * include compile-time options in the output of logrotate --version (#145) * make logrotate --version print to stdout instead of stderr (#145) * flush write buffers before syncing state file (#148) * specify (un)compress utility explicitly in tests (#137) * enable running tests in parallel (#132) * explicitly map root UID/GID to 0 on Cygwin (#133) * add .dpkg-bak and .dpkg-del to default tabooext list (#134)- Version update to 3.12.3: * Fixed accident removal of rotated files with dateext. (#118) * Line comments inside globs in config files are now skipped. (#109) * logrotate now recovers from a corrupted state file. (#45) * createolddir now creates old directory as unprivileged user. (#114) * weekly rotations are now predictable and configurable. (#93) * Errors in config files are no longer treated as fatal errors. (#81) * configure --with-default-mail-command specifies default mail command. (#100) * Fixed heap buffer overflow when parsing crafted config file. (#33) * build fixes related to -Werror (#119) and -Werror=format= (#108) * configure --enable-werror now controls use of the -Werror flag (#123) * copy and copytruncate directives now work together again * unlink() is no longer preceded by open() unless shred is enabled (#124) * compress and uncompress now take commands from $PATH, too (#122) - By default disable werror while building- Remove aaa_base compat setting that is from 2003, we do not support such migration anymore- Version update to 3.11.0: * Merges from distribution patchsets and small fixes around - Remove all patches merged upstream: * logrotate-addextension.patch * logrotate-autoext.patch * logrotate-conf.patch * logrotate-fix-test62_with_bash-4.4.patch * logrotate-manpage_config_clarification.patch * logrotate-var-lib-misc.patch * logrotate-3.7.8-suse.patch- Fix post scriptlet condition bnc#1011120- Move logrotate.status to /var/lib/misc following FHS/LSB and making implementing read-only root filesystem much easier. [FATE#322036] - Add patch: * logrotate-var-lib-misc.patch- Version update to 3.10.0 fate#322037: * Update url to point to github - Remove upstreamed patch: * logrotate-3.7.8-mess_err.patch - Rebase patches: * logrotate-3.7.8-suse.patch * logrotate-addextension.patch * logrotate-autoext.patch * logrotate-fix-test62_with_bash-4.4.patch- Add logrotate-fix-test62_with_bash-4.4.patch: Fix the test suite when running with bash 4.4 (gh#logrotate/logrotate#66).- update to 3.9.1 * 3.9.1 - Fix off-by-one error which can lead to crash when copytruncate is used. * 3.9.0 - Fix crash when using long dateformat. [nmerdan] - Add support for %H dateformat. [czchen] - Fix regression introduced in 3.8.9 when when rotating multiple logs when one of them is missing. - In the debug mode, do not skip the code-path which handles the case when the last rotation does not exist. [Sergey Vidishev] - Show more precise description when "log does not need rotating". - Add new -l option to log verbose output to file. The file is overwritten on every logrotate execution. - Allow rotation of sparse files with copytruncate. * update logrotate-addextension.patch - use spec-cleaner - remove unused PreReq tags- Enable Persistent timer since we are now in systemd 219.- Update to version 3.8.9 * Add new directive "createolddir" and "nocreateolddir". These directives can be used to create the directory specified by olddir with particular "mode", "owner" and "group". * Continue with rotation even when first log from logset is removed during the rotation. * Fix crash on BSD systems introduced in 3.8.8 caused by different qsort_r function. Function qsort is now used instead. * Fix potential buffer overflow in usage of strncat function. * Fix compilation with musl-libc. * Add experimental 'renamecopy' directive to allow 'olddir' on different physical device. See the "man logrotate" for more information. - Remove logrotate-fail_if_ENOENT_and_nomissingok.patch; merged on upstream release - Updated patches * logrotate-3.7.8-addextension.patch > logrotate-addextension.patch * logrotate-3.7.8-autoext.patch > logrotate-autoext.patch * logrotate-3.7.8-conf.patch > logrotate-conf.patch * logrotate-manpage_config_clarification.patch - Remove redunant %clean section- temporarily remove the 'Persistent' option from logrotate.timer * our current systemd doesn't support it yet (bnc#884338)- Also, avoid logrotate unit activation when the system is on battery power.- BuildRequire systemd 197 or later.- Migrate from cron to systemd timer units, this is overall the most important package to migrate since it is one of the very few base components that hard-require cron.- return error when nomissingok is specified and the log path doesn't exist (bnc#871217) * added logrotate-fail_if_ENOENT_and_nomissingok.patch- enable acl support to preserve ACLs during rotation- update to 3.8.7, fix bnc#849436 - Changelog 3.8.7: * Fixed --force/-f option handling together with "size" directive (3.8.5 regression). * Use "logrotate_tmp_t" context for SELinux tests and if this context does not exist, skip SELinux related tests. - Changelog 3.8.6 * Fixed memory corruption caused by rotation directory which does not exist with "sharedscripts" together with "prerotate" script.- install COPYING file (bnc#817870)- mention in the manpage that = is an allowed separator in the config file (bnc#831072) * added logrotate-manpage_config_clarification.patch- update to 3.8.5 * dropped logrotate-3.7.9-compressoptions.patch (upstream) * refreshed other patches Changelog: - Improved rotation during daylight saving time and between timezone changes. - Fixed ACL setting problem caused by ext3 erroneously reporting ENOSYS instead of ENOSUP. - Do not continue with rotation if state file is corrupted. - Make logrotate.status creation atomic. - Allow "hourly" rotation. See manpage for more information. - Use "/bin/echo" in tests. Fixes tests execution in Dash. - Do no try to parse config files bigger than 16MB. - Improved manpage consistency and formatting. - Fix race condition between acl_set_fd() and fchmod(). - Added --version command line option - Disable ACL tests if logrotate is not compiled WITH_ACL support or if ACLs are not supported by the system running tests - Disable SELinux tests if logrotate is not compiled WITH_SELINUX support or if SELinux is not supported by the system running tests - Fixed bug which prevented skipping particular log file config if the config contained errors. - Fixed skipping of configs containing firstaction/lastaction scripts with '}' character in case of error before these scripts. - Support also 'K' unit for *size directives. - Added preremove option to let admin to do something with the old logs before they are removed by logrotate. - Fixed possible loop in tabooext parsing. - Move code to set SELinux context before compressLogFile calls to create compressed log files with the proper context. - Call prerotate/postrotate script only for really rotated files in nosharedscripts mode (as stated in man page). - Fixed setting "size" bigger than 4GB on 32bit architectures - Do not overwrite mode set by "create" option when using ACL. "create" directive is now not mixed up with ACLs. If you use "create" in config file and log file has some ACLs set, ACLs are not kept and are overwritten by the mode set in "create" directive. - Mode argument in "create" directive can be omitted. Only owner and group is set in this case. Check man page for more info. - show error and ignore config if '{' is not present after log files declaration - support whitespaces in compressoptions directive - support for tilde expansion in config files - 'su' directive does not affect script execution - scripts are executed as a root if 'su' directive is present - fixed mail sending for 'mailfirst', 'dateext' and 'delaycompress' combination - do not use gzip/gunzip from /usr/local on Solaris - add O_NOFOLLOW when opening files as safeguard against symlink tricks. Symlinks rotation is now officially unsupported. It didn't work as expected in the past anyway. - do not run external programs with uid != euid - fixed potential bad-free when ACL is used - Do not include alloca.h on NetBSD, since alloca() is declared in stdlib.h there- Added url as source. Please see http://en.opensuse.org/SourceUrls- cross-build fix: use %__cc macro- update to 3.8.1 - dropped CVE patches as they were merged to upstream - changelog - fixed 1 memory leak in prerotateSingleLog - do not redirect logrotate errors to /dev/null in cron script - fixed "size" directive parsing - handle situation when acl_get_fd is supported, but acl_set_fd is not - added "maxsize" directive (see man page) - added "dateyesterday" option (see man page) - fixed crash when config file had exactly 4096*N bytes - added WITH_ACL make option to link against -lacl and preserve ACLs during rotation - added "su" option to define user/group for rotation. Logrotate now skips directories which are world writable or writable by group which is not "root" unless "su" directive is used. - fixed CVE-2011-1098: race condition by creation of new files - fixed possible shell injection when using "shred" directive (CVE-2011-1154) - fixed escaping of file names within 'write state' action (CVE-2011-1155) - better 'size' directive description - fixed possible buffer-overflow when reading config files- allow whitespace separated options in compressoptions (bnc#711780)- Change compression scheme to xz- add logrotate-CVE-2011-1098.patch (bnc#677336) - add logrotate-shred-CVE-2011-1154.patch (bnc#679661) - add logrotate-CVE-2011-1155.patch (bnc#679662) - use spec-cleaner- also rotate /var/log/btmp- use proper syslog facility/priority in logrotate cron script (bnc#636236)- update to logrotate-3.7.9 - don't copy config files on the stack -- mmap them instead (fixes segfaults with too large/invalid config files) - symlinked conf file man page as requested by Fedora guidelines - added rotating (copying) non-writable, readable files - fixed missingok problem with globs - fixed bug when log files could be removed even there was some error in rotation process. - allow setting size greater than 4.2GB in configuration file - pass currently rotated file to postrotate/prerotate script in nosharedscripts mode - added new TabooExts: ".disabled", ".dpkg-old", ".dpkg-dist", ".dpkg-new", ".cfsaved", ".ucf-old", ".ucf-dist", ".ucf-new" - Don't change utime atime/mtime when compressing files - Better *rotate scripts parser. - Allow 'include' directive in log file definitions - merge logrotate-3.7.8-cron-check-for-another-instance.patch into logrotate-3.7.8-suse.patch - add logrotate-rpmlintrc: suppress false-positive rpmlint warning- enable parallel build- update to 3.7.8 - do not exit on status file errors - limit config file inclusion nesting - use hashes for status file handling - dateformat to allow unixtime - manual page corrections - drop hashes patch (upstream)/bin/sh/bin/sh/bin/sh/bin/shsangiovese 1537792486 3.13.0-4.3.93.13.0-4.3.93.13.0-4.3.9 logrotate.confwtmplogrotate.servicelogrotate.timerlogrotaterclogrotatelogrotateChangeLog.mdREADME.mdlogrotateCOPYINGlogrotate.conf.5.gzlogrotate.8.gz/etc//etc/logrotate.d//usr/lib/systemd/system//usr/sbin//usr/share/doc/packages//usr/share/doc/packages/logrotate//usr/share/licenses//usr/share/licenses/logrotate//usr/share/man/man5//usr/share/man/man8/-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.suse.de/SUSE:Maintenance:7736/SUSE_SLE-15_Update/2ecbbf2c81eaa4d011202ac4c7a39a45-logrotate.SUSE_SLE-15_Updatecpioxz5ppc64le-suse-linuxASCII textELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, for GNU/Linux 3.10.0, BuildID[sha1]=d6ec0a92ec74f9d7465205f6af832dbbd977ce70, strippeddirectoryUTF-8 Unicode textASCII text, with very long linestroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)RR RRR R R:Qj6Jw$utf-8875771e55062f9932c3a3e3e3f9c8e897bf2b99475722bdd37e241a4e2aee96d?7zXZ !t/?] crv(vX0|^ŸF 5AW0TgP116sӍ]ޛUԑB+{]KvOJnX0ւig7`lS)(E?S*Y E{jkc1Q?Rg],I0v}Cy)UZݮRT:Qn{rXTp^I))"pi*uktnTEeC_(Bm?<[\jk&YF/Xiih{^lQ,a:no\ʺ!ԅO J-=.ˁ4!D|(/&gU,BMYmMꆠ`*xbbE{/6u&b܏+7^uV?!P4d,%7zD wGM3#qqFp6np^sM]+IGgNV zQWua۪EQ`Tgl> ;` EDғ@Pu`[j|F:z+Û 8Oċ IV9D<$JyM1`(5m! /d Y SݡʛpC^y *6W tJͳWAZEM%jTO|=IJtHm:I!w &Oϑ:D&0oA͕t|ʞ5NgY;BGjCґZ=AǃPSvoldT)IU009杘Uhѯ"%KB'QrWd8"~3qbyW,oP#tcιqh,=.OZLC:u^hy ĨT2AOR3rwUHiZtl|%\S3)xE c?nJ俎^)6.wBTЌvSk<% V5wm׮](${L𝣓^Y0@ܩk\] Ӄ}V[m' 霧f0q"~C +o:{{} +<2Y5ՕCo2'_ mt@%*Ȳ&P~pYzzBSoeph]L՜2ۅ0dsqFGFҘ(v\u֛3w:=Դke|bbu|f3Mf |T`2!RF3A?oQ)O=҉a}C/kpfYm|hLoI~6>S,˹K<_(nڝ̳rމVEKs,ėA$s  K3*_r:7}##Y%wHpwr4"/@ H) LFFGoIT噗˙o\99x-R1ts %hBˁet-/ 2AGXvRSpLǣK d#Gu=V*XP&[qXL8,jgkkANҮ@Ѵ힓&ػkk'jX^#z. x\TXp"S" Krjx im.ýLpOhǺEP9zɍ>r9>*j`۳qٞƬ}t=@>5NܵW!c庘q}TdG}m}dj"OG`޽1 a^NVohCD!;[HI?o@:vL3[reЁᄏgZq l{HQQ~,6*AAK.gd}]Iv-\EElkWlN[|iks%ҔCkIYe "Zl9 nqhq1yy|R- g.|Wϯ ^D1?{u(|NMFoԑ%i\h_z?83/NIl$e`(2&pzooYZ2nJtYvSzԑaK% C>O"Sx4<o14}];H|I#!ZXhj;+esXOVz2Zi+8j(L&߹4#6J2JǬ4őh"l[/,|  ^|Nf~4  ;]֦aP[ M `rYEP{xwp!TY}e bC>/EBW>vQMk];*oc{-ȼhJ0z7C=7^,bM=ݜdb"4`} pmߩC7k{ko^!GkkBwhY/&Rh6jI Zmm c!j -`6֢" V<.d^ YqsCCOiZœ{nU|FWKot:zp'D/!GL|WOەN%rfC P@q 8L(͟d+JG6}Vm/U 62-o &ю@33zF!.uF\Hݖ,UKI"ـeC7V͖zDk2n-12x<ѻBP߄YK)wJm xλi (zOKpPR3SG^QCCz.'|Y˒|qa%jxl\E,!<--f`21+]I ]2(QA%$5E.Zr~;]xvQWtn_.+-[Mlb[4V0qZ5h`]iɂ9gCʉȉ6 ,i`؟'A[ʳ}K8!^ɵ"ׇS*a>e=4Fɖ Q#!/ ɣo7%URF*f>V i&NQ~b^ӳ9r\z÷n4+ ?BgY#1Tn+ d*uYAq~,nKzXIU܉9zÓv$c}?<ЈpN" jlp|ulz KFhwCEvi(ēMO 1`@k?񝆵"J:t(P!l&O> ruӨ,`V?_xh/IV_Ka@ 7юNrNbE]jAeҳS#Η&L (Y|1@9Y,ppH~D e?c係Q<&dͬ3R{tc،oX.P0X.b˾I!-] ˒ɥpƋI<= ڲ\D:F9w Me +A^Epi3yL)e1.F0<}W%ao+:$\ ’k.xy3vM)~ G,슺E66B"^-Mbk119woڙm /roAA $/dP9|ݵh +kRg^p١TVR8~}ܖD?F|AM0mjGA%Fl Xx( 0U~dGڧ3BB=[>Q,.~ ~ŲjnjPϥ-BΘrhlz,oh hWϘsmY9dԕ]8\=̕4#8va5$g;M`MDƷrւ CqK)~ 6PiV-b!Py-#)E\e/NE5!I$ p֘ڃ6XHw m33Pe c5- Ka(1h0=+.; ~׍TUWc OTÞ:8hu:HN4[~ WHA~jb L5!iݵploQv 乐 {}hxxc`^Rg/WpΤ%GU >"0 .|ȏeRκ%10{Nb9Gf5AB C,g˵&^; ҡEHfH-nU" QsqgyK"-F.DV҈u,2(nԃ9+y̢託֛nf&=MyiؚaͽuD"sBv\={èϒ;T1*~C0⟮Q/>;z@pI'|3+ߍYsx־n8q`o7"CJ]]4vp&v/"c)&o.fIeF6/ Z^$n||yuǖ̹, _/3{\AaKKL?܂j*Mm.VT՛0#6r=4kW@ui)HL2 |ʃt8}4!0f/ Sg-LsQ2,nM?0c0^TtȻ\g!RAO*MbNmECwHSrAȫV48O44])M[>o2u9'U< ߖŴ~D]^}%R:²[i k8CKU bϸR+VY7UGmۛzUt|Uۇ?paG(3$ i[X Aw0cPoY u̒PP{wۤj r23 E!sa$oY ?d8 L$ޭU++ݽ5{G|&ZLw5ҤYObU eҷG 4}TiGk`U@ ALwvEA66Ef" f]+XE4~hVզmϼQKhXж ꜥ$GML+C]w &dش,m,KӾ%%5&\ϰ%CRd#mPvʽ7p8 e9aڳ 39<%Pfn(ҧvd~{mŶƖJ*mн^#wjVNKQyzۉ hFj4U\g?2$8='q=yl[ R{H7`sIÉͮZ27Am=f?#˞E(f-3t]?.tTˆ5%۶h\b# Yڊѕ㹹`w_sꞨ:fz0`IV LFaw2~ov2rZTbJxOpu"yANp^B3>5,wKjsTi%a4| ~nX>0ŖA|zE OZrS^+?٘T8(b2I*dP9&I8z^<fS4{@c`[޿8MSj;R[B:n\:yF+zTpz- [٣ba4['N6=T{KFcw hֹ /P\Qkjc?lP+: |ugR1GٟďMe򌾿DF:ai6.} PrY^oڳ؉TҨnz~gHggR@JgX\MsݜuYrkjWhKY7I*>RHB^PDdH%ɉU|_j:"om̮kb.QOb 띯 &ho]BukL_ŝ^p=1u5frj]+Wu"?hF`X̤n}G~*x=ḑ$Ui(RpƟ^Æ:؆tӵ 3SӲj9ϠQ@AoъYv7 삈zRf)ى!]k=c/vmXm)ܯ }/ɃNW%#7FB4'jM%̮`=kji7S/t)[E1 mۧL%S)ei;~s&&D9]'`K+{3뼋[3h '1( 6) c<!A1M1gxLZfB/3l5~[#TXK&6 czQl68<rH`ʯZ#zgih@OYmU{~-Jo͏X'$n5RҨ/IIihX=\-Ju2DXpE‹J;y Rl9=0ůXsZ"ރ  Dg&O҂UwB,t1Ԯe:((&%+jUVU@((#e+\<=CYlD:4q]B Ƅ:`uDtbI8Ab4ݟP[(xR!df4gKyAtƒe4SVҩV &g YxB{ <#~E85@{pJ9 I@ :vKҥܭ>UG*uzVxxI})=w>&flX ew]p]#j>AmmK1E ^L8/Dǚf׼cTrySЭj' [r:gAgxdEmU6<& (.Wu 3 ?6 )ECw+B[nۦsGp3'3mYj;%DK>[H\6 7֡p.uCu\߼֑*^Ak9u]_,YS>=7o!H~ E9pY^KV䶳sƉ5w`t1"rN!K>t đQw:kk7vK'۹ }<=`&q L\ƍ=@Ž7뻫fZ{+tuJ*5@2(N͐A{(˼:Pkq/&< C{<)QYL|Uf0kb4n cN.`A)=XNeJ S |EyR5ts7' 5h񕏻POBNL4a9-nuWHCH#ȫ48dVGsp/a&{fXlD孡$)! Pǧ QX%khx }&NS”Oio& PDH_&?,df6:>@sDVb$dxz7皒Uƒ?V㕺IKkXyc )uW1{xMj4#6lGZQ OuMgNajcGdiz]]+IمShqz2t7_pTĖ ew!?ڪӉ.$nKc}k.늱Af،1`df)yBޯ_jb7D;qIB Z [HI?ܻbA(g:vI:QZCR-zAVlI ߂D]եw֓fo %)r-$!Y.yYՃ$@Dp#B1u |}^*;k7 ǪdK)[ ,'אr)?.@X TCF/0A*sJv.`ďwc;5 WDN[Ci6.憎B<NQ(Fn\v\WOK.Tl{R?f)! <]6R;6p {s=b~,5v--<~kM›y_*mijtMrEn\`ߦ ǨW.P`^fL%a4*|z ‡":b=BsRoa<+4]p,lz(- "U)k!h*pfdžk!W: mmōyNTlm͈mOp)7ٶ}fw6,ѳd_bI^' 'rBI<M~׾r΂ZmP]E@y}b0(ECu[C% q7v'徨0  :v;kjP>+ jʞWlq\Ĕ%1d;o M(,^شɴh9tFsNF6@>lNK V/mȒ<ߨInIrn:ʙ !薚<1e[^b+9Y 2;^砬̇jWٵo^5A?#]µ1d ΐ:qE eT-fH\ J9TE~?EJk홏^ puMppO6ȸl̴+]!5B*INצjٲ6ݱ`kȫ_ 0#1QYKN(ы>J)?fkS]2Fƌ^TVoJ\X.HmzڊBċi&F`8i̋QL od}~cIzߴr:[É (NO8<WWCL.$ݳEE EBub7Ȼ6^+WO1"=OB   q$h3&!Bׇ 40FźP,k:l$U]yeBj␇pq*/ЀCoc]%5Li7ޟfi v\JۚEݰO:6sJΘo9}M%{ˇL!~.'/ќP|>1uqџŒ`nzA>Rme+Q IJ><ͽH6M]u5OiX ۖ.k_Ųiii!`SO+@6A#J!;wRSgw扃bF4xZa'&s?@UoLVO͗qq4SQsadS-^}|c .HZNYL{oPFj:[;uσ\:dHb8[TuJo6GUr>MTyB<+ tF^b|7iGL45VMo`ޣt7w&$v -6O3S) nCK#`l'9Pgm\4jPeS&p0kИWy2,(Gq)`L-}2Bs:p <-5rK@ X¥e`Tl#] N } 5 fkVN 5oYhu O6q v!]QCKsM)Mg 4[im?aU2υ4ypodg")hT|Vjuc/pF<\OuC3W!˨V>r b"Xëى SuHhh_XGk-!ϝ6 MK,Jt$tQK!m|H%qN/6dB('f#rr=JЃB1;Y-]$|NG/3ɱlFq۾f+1 #m'f-ae\{wx%+$]KZ[E}$XGEbOgaV`E E02>Z,]xq&CeD~̍Iߤ#u%! `PIv&M|p5Qr͙z`"ލQ(:2dK }{aIi^$Zz<%#Ha̰Kv ; ի^A5z Dgi&r'b 3}Ck c 1/t#1R~{^a2÷|Z9<<8b4+?.F2ҒS: z31Γ//hb!;qy%OE 6zB52B~)BL ,Ɣ-Q[PduտqPWwslJ(,P–ȝ ^YvxBktfp؇9kCzk3 uIAVzdazQm܁er6$:zȨj R8 gb,XhP>i/mHQ%,?Ӭ?-όS$E@&o`ɫ@I"h2~wc\GYɸ-1\y N]#5확bG‹G}1c!I@ Uyf0ׂPwѾqCV~[,ôىc:a|HvIOu90"̶öE̝CO;V~ !2cG WXS~"$XM@o9Xm5u/4e t6]f 4Wƀ#46P-By|:)X³Zgu١ X]DWs ȕ&L&|0 A]Y*^^@6 l} QDuG6Qv+eE u7#;Ƀv̳Y~l@0IpX}n;xi`d}`7\XHM3L^$=z[n&|,qM-^-[%. &pPcFįp+ڳp %/pԇИ}꤅aY+J`á5 2:RW[%\Bp2L_y%~Sk_^aKYЈ.@o8)qw:Wds{/f]p #24"hp.mUfܹ.SZWK˃[=lHiv7;ZR)~B&'UFg1"?Zse["d(O!ƾ4F:t 33_y̔|=ȄQ[?#(B<&@Zt]{{aRT@G恻Duee:5:tiuaE߽k2XrQeo7ӥw?fVGPz`twm LXg8) a] 0;xkTGHגÕI(֠nɾJ $Z ?l6RSD4{|dzU§^%W#OJZ7sLX4w a0~'K6y/nٿڨ:dBfTވ3 usmy|u2{{QbwN;])M5kk69',DAWc|N0?9j6e7^M D9+j8ڃ*Cϸ51/f&5OVHsvPG`es0EDqGNbhjK/ GhyҋJʴbVgS8~(q1(jq{C4v@-ꪘzy=Q9H0L=jx\Ug6|{ʺEBDgzIf@ή,vG G!&~Wog lJ\cˡKV!? TB5t d2;`2S6f$\} ThLS 0D I,en5q o) bX[lVXIw?߆c2 VnrmmI[!~AX29˜ /Z-=F7zIͅUXnh T ++)wS9[;*>;$F_t4}a@$ӷWzRV "y^uvRW/3ShF)mڲ2<o'vu $E':qkD)?icV4"ݝN3Gv䄶?JDY4!Ӟ27:KsY9"=2?%OmHWA`nU(7뻤vKE A& KbpУ(ԘHa:Sc?OaԠ&_n=9\(^M[QG?7:.}|N:̛Ex!djiO>ҟbP\uoz "ʌy mhRZ;r0l u,o1F{pE$~iQ<-+4#,Y8AN\G8A0;N:lre1~r4 1KsN Y (b"Dۚ#`f~^&d)FABtB3qw âJ- E9;qS.dKsD(<\GWcWwcJ޸- [;zI)Qk.jLj׍NM{~Sn2C!&F"}!֛"8`>۰ xHDoaƚ&!")jRcU"Lzg=d#LWz9AUN js{SO̶B1߁(9vr,mmlbܡ;[,-i hшv(;i\Twg̲-;*{&&&"WX{H'/d{4 Ռ8\}-s2`x'd@-FQ>4y_p$ (.2ŵ}dHk%y~ؕ$n8y -F}iʊJJ?:/"I Eꐋw3?#1|L']Կ붜6q&AA^EZ%9#ݛSEQ!n[@i$4<%;rl7♫ڿ5j'0>AU3^z7j#TD#|H B|4]VmBCϝwUzlPԐJ칶Ħ:QtX3L xa%f,]DӨ\E6kѥ{K\GbQ{JCu^CEByB2_T.9aJŞgc$92$r_ ̷~q/ Rv3E7@Q _t+uhcpBnf~# #Eeꕯdpaکk- w`@&*G@̷^%ڴ} W@E@v&5o mql*Ջi (I%uԐCU\6S~Y:a~ hf tR{ϤP/SүCA ոK>tGKrrکzƑKk>?GQ\{{bS&S|OI"}|O38+Z "Σ! 'JZ?q(Oi@m% JhFQY=w _D!fB YpQ#O홋eoZaoG?ڠHx[m2APUJ*]Sә7K8wy"\GT 6zGߞh)PVWGt=Nu!t5aVԔJ4P6gcOaSRc ̽lnZN4cHR-=SU^DT _ |!lE'Qsd έ&Nカ1.ɦ@Eڻ#$]zs+6M'J{Ę ei̚vLIvQM ͈RG56osz}ӎ+ME(h:\soU B s}'hM싛?N7:h1y6 fc˯5\ӡst¦܇HHߔ g/gS8gO(%Kv&C "8BkQʧR-uatOB1DQ*畵|2vNg[uA~i&.{\lnnz[iIX #@4i.^T+ڻJ9!^H?#ߠ8%1kݤX*;5n]?Z_ف7Ջ?{h\׼M*2y٪l|=- T6RJ;龸"ɿ8Ywɋ ڏ z,b[9V˫޺(+Jhͳ4[g׌ſܗ^&VTJO$Jwڢۛ"z>C)Ǘ_SDoA]F^4~$I!8+cP6YfsVN<0j !x-D()kPC:b nzKfwhxu iz_O4YFsdf)A42`Jqe[`!B0>}tBEVKd3:Dk%yX|9O͕ռ>[xHX`rڱy8S"Ry@Rwb,OgmKj` {637Vsr絎 lv9W "Ia袹{zf8 pSϩлG7hTEz;٩U0sC4_A-#Ŝ+ y|4Q!;~mC t> p27@o[`zo `y[ZO?j̓7PiOͼZˊhJ/l^9O=M=*πD,lG$ދ8p 7&WRJXO+ylC4d* h{FW►<~LjqK[ 7r~1"]1nWc{I&ܓUvrC^iO, n9jY,lVynEdq߼y! i|Dv<<]Հ GQڸ3=L.`rӥ5yJL(M^Ljkߜp-_@і^ ꞏhSdn K2s\WUFex>ZA_oY25z\ôݪ~԰ݧj kٻ;GȼBvj  䪿IWWi"ig %\ji0_yJШ#u0*B 枹 J(7FbñCs2!cuٹOx7iccuK"֝4EkВ:?jJJ^(m2NĬ̤(>-Ћ ` SB54[>| +8gTE X`Ap--d7_׉9lI4.?)Vp٥Uv#XO½FmV ѽ O04" .l3ʶ#{q I iLex-< y=\W!XZk,Ue4b$BKrs1 UA7'ǭ<XGPwaҎJr=fټr;ZXm^7Bxuyz19S}pa|}s'0b >.03ZkBIn7ﺞd,'b5e5\۽cjQ1 [>[oC,g C H??v/gb%ն 7cGB|IFx=3 8٦pȟZoE/]'Bjބَ;WxsE0ڰV.Fy%jjudSFQw8 a)R/:.(gA#:ZYs } Np@/lFkџ*9ET\~?篈E.~qn:\dMESTJ4#aYEi~P>~!O ~|w3+$ x2 `b%6mW9`:>"farkN*u=7i>P4ŵNV֧Raτͩ",3 |MY-!(OeL`7wZƢyS; W/kЂCͰ-+KzNU]_ +FĢ*EG4cҥ#>IA;eF*iB&oTZ @Tzf厖k6-<$C'Mb0G-Gr=`A/$*kTA>B;G*wi%*.!PxiB6v4ccNe{YlHf'xq}d+|3hR?K1D=dzUAgȹ$h4paKPԪQ5&0q(5^ڸ5ܞz*jiT<0/$q}-d>=ޤ9JڭGQ~Tvy*I!{ӱY.X/O$svP]XsC:J{;ƒ|` S> ov([κLlv[Jݷ2;/#=V|͎Ry2i f,_u*1`vH' 4 meHT+?5VLԩEVЎ8g|"U$ґAHb Bb>nrj)EEf3P o_ R> lMԟ1;r,!%i/]aC$O嶔l,LE~$Gvn62v;{!GT& &ޔJ#Bލ~a?@>X5>\kdiwlMnW#1!H-9+%j|CT=zUa)!(cAf{bƚFy#F|[pIv}w̻MfCt0sKHY`8E`ܖ16woK:>¿VE / :?@Cf/*BY]!EKnJmaJ 3k4K;Ǎ X?)Wk O#5}m|yT7bA|TzbwfZQ"@30qk= Tsh69 `k{z'YxҲ?AC[2 1/V]0}5 yʵ}ZoaG÷ТyRFsRQddL 5&)Eeеj?,oc p0<ʣmҷa6 x(_TɚE4Vxi!CRjG=È@p{NzU8Y#sk!dmҦXZ=Vo4B.0RzE  HIBt] , ;Э6d8 *lUL~@<01jZ^lϊ慢<\*Las9&$-b]yjS&i.˼!`2+P z\MjjJ_/ &]_#̅ *YZKGd4'P/&JXURy Oi]OD"ZIr쫣`dʤL*\EŁ@W6cLlhm9٦im;y GjQoVAH㕜إt.A|Y2s r$ !W&?nrs1i ilɧ-rWHx<k4/ wd-p~έIZGΟ׹Y~Q&)C@F\.em`b2lt`Vqۉ<ApL5?/̘NUўLysN"X^j9{ČϾJ*Ne*xj%bC;5Ú5΀ϠJ5rhrBGPr'A3&T;HીQ]ʫ-y=u} GzYEuս.VUCW0wH)e5g~Նm1Z/}ʽ%'tvI[q2p-aqixfMhCNav[]$pqx'ou]j#MXѵ u#-CDvR!WdϹ,}*Bn-P3/^DcGG2⨒0O]40l2lS*\>BL)`Xb9zx݋QPA鰍te`]4άu^%wQ[>V?s`ͮqcWyHI0/q4uAM]f'. Ut& kl31s,_:c?u,TZO-oJ]V:{6`/6D*<ݣiHuTËcK jgfkйĔt\KeyVR}QS}KUG. l4̛A+a"1P@Ў66 4?i+쮁rWKdik"s+MkOwPT +'2MMNE(tZY><\1indY(C4MeiphF W.Yd #㳢k|M+E@aS_?:@uRze)=8OzDA:*N_jDXu(齍'.HfDed=@vWM2tg˅sR"5=#.1'kf$ QD\[V& \֌5 )-f4J6{lDyun 'Zl}6>vcxӌhVlh8O}P>)oĊ*vadLޗ}A@ho[HgwT[27<2i}f%!8X/e]IakY"i 8eCеBdn=+)pdKga.=l#75G? I)s,?qMS_W:`Og4_z`:~\bQwծ#o>p>lKn>ECMd6=x; !U'߈Ao:'=U5lQc2Ǒ ]'x󛈓ɜV7SokFAJ!ObQ[FŮ]H]p/(;> qTv省Y2ҘJO.wa Z)2b}M<((l= (DLP5['qLѪ ;QϚMRMdQh7R=6ܘ̯-a嘼,A|&H4g 4R$1FXC0IiXnFnv"v:]>;;wy ؚeL.x> TaCIC9q|4KZ AE <15x0 $}9%nU, qE|@ֈqk; H180O@vwˢ:OmΪTC[ɸ^Z{ҋ!>HѷƑ[-Ře`vS+ϽE(ۻ;~[erT>>澝,:֩\X㫖#P·o tzas?,,E\jB8U-p5i+LąVf#NL@iI=  >C5bwY:*vKWoG[1u~\bPݬo 0|_.^48 [8Kؤp=M5M1}ƁM2agSH'̓2UɑR~ WE"y@;cJs'K8&on;Ą^W>1 }t,/]H3W{ ^zX>Toy2;Gfk_WĀ͐,gU3{dCCb)vQĒC08iw7c={{.GI(Oa:z㉺f]KhKYno[cC@ck=*Ƒ:l$>7HR9tZA$6YY4q㊥lzs(1OnINiQUܿK7*(n&< OTO}/娿bSGaĒ"E8W ,ŁϯdT; Sfa8i{i(/ϳ<%$V8~}ZEW? :ZAl Z6BAbg|\Šrham yIz~K6l0iɚUy-bvS2S /\)I[cQL+RKO-5 2aImhF= 2.G8M-Lwb*\9 0EvjtM.HLo`a-LKv`]4&Y`|L'"([BO#r/Qo+X67T/PH:ADxb/C^jIyɊ>+fenmeݼϧtOY{оm_O9[\ SH7b8!*t}h"D2/R <?:F.,:n(\ p*Jk{DZ Fɗ qTlĈa)$ i80mupJ7RW2л %4!zv@lI[B9uଆpFS%XU0]㵖NR>i<;ƣeUk[y y4 bz1ss$?(̊P$.l$ F E/4=@>T|N?p&S,]^՛]`1HO X!;hF׎b}1DNstK73?Xy&mk/WUe?F$5,T +EM* Hї$3{G5..Q> eGXeh昚WiuvW@wSS;LWu~=y~1Є/^y~8|BaiDn&7F$}q4Np6"LpzYb`A6&~}W͟  {緑tB#=/-2˨,ݶ7&5* 6P 8ME,GP($',(WҒ,EW[D\~>H)+"IvnNǿO#eppuY\tn0t$:wpDA5;:?n%_  'u#j޽#go5N^ ͟]vGRZAL1f)L:7(Wn&wp9LVk|%ܴcz5WʱUGA`q< w~Mu+˨CJh,i%[ܢ?6q8U6r"⟧ *a|h!{kC?$ $߻2z<>$ca*U[ۢӶmXʎLZyv;D?U[~@JOYжBǽTOK\N6[[Ut~!*lU~J`O6sd!1o:qbMA8D> ds@?ՓNl<(-8Z vhSvg~|t-n`zbEdyԭU(@98Q{ սXΎV{KJ20@H XşRacYg &ɟVonNC|FrACEm=Yzy,kݔ#θetWҫۤ&)<Չ(mny Z_ lq\_WfXWIS0gP0 'k,񒖸#C1bM[4]}GkY%ǶKJƴ}GY~*l:1|a(A?PoqÀ[S =1>< ӊFyO;`u}3tl-C\ُnt1!'/=_b=+FCH|lRaCi B5 f6vv: ;s'K+ܝCHT8Ww|Juzd {UrF /@&cb@5}ۈ7B8Ɠlx4QU*Tmm5sM M iݩ*1jFqvw,G!ud=C5#E bE=jqV2_0c`'75j-dO^Q+6A1L$Y)C&NB8 h"ݦf&yY wFqMq'gQdx!C؃sIdQRH.άԍ>Z1G! 'w6Fb]o=WPFdr{(4gaTfl/->|X-INYLOÓڜd"ݧj>#ߊp&(uf7sVip!X !m RV[u {v.iJ5CS;[-Z?x 3dPɾ)4mŝ/:~E[*z~ N{5*L$5qڭ0b5tpP vK9z/t&ZRʺ|)-)S) b|2137AUa+iLcLk 2lIW+M4EN'w[}u*88 Tj[5lvǃtM~KQ)3@f @;3Br 34|3P~,9_ĂU)h0iA?HjjJZXP}YUˌTl<*\x>ǣ;e&bZy #혒H%٩q^NnZw17gB4_ILk.7~:%:۾ͿP5Й:ychTƼ6eN+C\LQ١9:0(.qǢ$XyR9u9~=,X6a ;ê\1"`J]ZOہT 23f>\eHǵ<<%::q!,Fd1`Q‚m"o+љ{Ū?=,9ښ+:f;^oCǥap`ӊOuf nFrMv/FBB3!b!QLuB+ȍm;v_{8JhRT~E\iP$lԫzB,[[*e@纖>Q/Kґ J\иR( KW)MI3i )oOU)h]wc>\?Η;VIuW+wB^}g7%TvBY8E`q}2~hzrkR~I1lםD% B50HF7A'$Ώ8)q8 fˉVTb }{Bp]fsKgS_ٞ: 3*oGK,RgFOD -%4xZ+ F8 yomHTJ A0 k3 ^}y0mGuu*G^v ox _Lm[Hzl*ZDW+5bjRLNݱy5=oEcv܁ހdZY8Qg(_Ӭ*E/j.EZD^_#L/su,B&BH1ve]RwuQp[52@` 7}퍦k%. W i~;*ܞ 8]4>Na?يHaPդs01M$竈s@j!F8 4>:u~^%Ӭ3o9$QB$(/byf @P /tfXbĶtYnΕVnr*99;%TZJ9I@s, K!ܲz22JV3FxNT >}zm 5<18VnR 0t0\i%Ch#?ͶqSd̹j-Hl.g JB\73ӄ)ֵPu|χEgm2eaܘ*ͳ5 }ANaCtⵕ.]@J/'70(!@Ih9صvE\On(?qx ~K"*"cŷf3L2 ^8+3%-DžB<ܴXAihz"8}]{RV=ʽD-'Ukb}V&yUqSm{V٬Ǽ"֨|=&z_͓jwb/MҎK0?ے|.t| POV8|HYn3 -qZcQ%P⛬j/e/lOe+9hxdX1:==QB@dĭ,)i'#mʊL;l.p'%aSjMՙ<09y]G..O6It13zءgPK+qy_bg["Yf| fT\BM}εjK2b+};%958 7B\Cgs%C(Vpw|$Ip+2WCϧM)GWeȹu*GdkZP-!n?sCb Bʧ:OBxK#^-!`k{fB뺣]NyvXjN-9[c^`p%qg:ܙgHT`4Ipuٸy;-ƙ4ycMNëHzqJvo / i6J(ҕw]0;CʱluOf.7꒷-K}0[n:'cjSv+ȺM?_U5y#bf,th6Ḱ{V0[қ2c"UMY(Z`)p\^K(g*y؈f7cȈL+QӤ_v`|g6!XHmANzIy3@rz < uS%!fsl8WJVT%m %0KgL+(~h {HXqdôR`Ln,&pmM#aFq>D`3ׄvY)<Qy](MlHj:2?dSrWK?M+vϜ_ |;;N'ɯVQyQϋ@KύSJQ[ ӎ~yFkK~Ѥf普ozhc7J[M押" q`ǩ f @ g< XPo#$qy0laՂs=Lj;?}tZʏH8IdS[BdpT.U761YI_RѦMOP#U;}y2z\F;Oj~W#vuL r1K:371BCǧ;L$@{>vC>]mbԺOy/:fOw( Իw;$mMcepXq%ZLvyrTB8/85v{\u9_csFD11C_ ݦZl5%g1¶ 01)܆*˒횕6Q;>kL ;(]h I T>65Qǧ/#k $$b!{g"1f2fjpbcdohr*)|PmT5,rJUCTh/5ѻ!DnuT%S%o8±>`}UQ-!4`S1ؔ,-M- u"%S2.ݛS/\D> +V9C lQ_m:Z9uHيCHaZ7 "WN{;m.pD|Qȁ;rPv Gtz>o`PaZ3*FehQ Je-P&mCMFyo:% rqkef #/ҿLN3Y(R-.<R:R"Nq(\IWĬCxs8DIaۗU}F'5r/uJA}1wgrF3$hp{6p8꾯U]M6Dpx枋SLG >礊#'A2P}I"N+wVJq,k0Lb>D[oX?BO5~JOI%dj+$*d*}9BI; vrJ~FɅ~?rrA]NSiOAВBԧ.=^z"=L8H'EIIb *; ,&/MݢT1UR":}Hj\X"%WaE{TUj̖a;4P?QXU*g8ưx@+ ȬgQM"1b7Y"!r.;l7eH1I"S6I#d3f1ߍftY"dr %5!v_m1fEj5}8[ُZvӿ1"Ŷ2aK]!ZϯRe{gF>"h"҈y:K HL5CUCs<~iȓޞimmX^gKگ7R_P`@Ӕ\o!,e.% ߗ~[qA%.EdPZio3H^+H'RTHn7`RN\';hn6<~) C[`iZ@倵% 4o-C4QP'-ta'GH}M'< f"MrO85eܫl6MoMGSL;HU38wE<؋N/NWK470}5 6<<TN9*Sv8ދ^z%~6Ǐ |R?B֗v/`tH?6?ϥ5§!=g`#&q VUqԵlMV\"epRF6͚ A;?"Bb踫WPlNܴ,=Е7;U5ڲ\vSG&[JI-">~AڕyK—Pb@:u,V7?\;0:yh7`GY.9Ǡ$Rdnߥg󡜬}3ΚpT(;iPb L 2!¹˦V9tȔ.gc=y#ᓌ Z3"!.BlPdPX`jTrBfvxa#*]},̍|A_bq&Tǭ(T=HDl^G!`s~w"wB5luDA\Sٺ >޾{f]u5z] 06#۰u O  dw>TP>g5+o,r9@.:Ldxг+ـKFDJ}LKkSiZ3j)Drt\U>¶9˄wX!>yH]xnyl@H祦,IOvkk΄4gT 󀡐h{v f>XAEG,vϐIkKŻ4 ojLpkm !kIʢg Jݼ ;t?o u~B=F8sS+Io~]s~;onkʈC<aLyLFxk f0zz-b.8bN|aK{JtUǂfrM8h_ot~k!ɥKHАǩn.gYwZHXOYFfi:yy-Q^/x_Z_3,]W6~vNs/(}MvGOb5pQo]ʘ0ljm[x?l!)Ro8; /'rUuRB_\œKDQ) !bVZA/B'z }y`K, u>xRˎ0bNblVXGѲڬQHKpnbhRwGPl8g ܞ.߳It֗85Ej,Zjk:RK9 ѯu|f C';6Ip~Hq|#8N)2)љd$HjSrv)5f u2q?3^}3-L;w@쟌o=q'Jx1L%L Z9ᚕs 6w1DHp!^ݬ팷UL:Fu¤7歔L(b%Gi=KfZ\xP#IdCYq/d79^9ט9B(> R1Nt(6ĩvQ̪ uJX2zn#6>FHhp M+9ٳd\30_S8զ> jA5Cr.P[.ҕnS+[ |kTXm~<ը̷ޙ Ķ}=|S;Isg%Vtj# bj@&洤Tǩ:ڦ*{dg3s#( Rm$Y\ hމfB>iԔ ۛǿi} ,:RTDgy_G!Q5|/in&,u:#Hf|Y 3jN]Bŕ,hI!wCS5da6{֞ET`>=gzn$qcIo@X1*Bw-.72X$ U!\ I#(Rs|{ea$4h'J|0qJq E (_B,򣎤Q.äxW2g&8|~5>:YE>_q Fb_YcHX/(s旉50IV Ŗ&`?߸JWOnQ#djH&Oc<ܾKSanMKo1Pٍ1GkۡmcX/leX)0ޔva-1icRuo C<`Ag0W)Ov7Q5k =0oi'\n-qKQLv>M,I#/)p{f.F aG21@!K1<;eI\0L}ᴫI08*pR…W佄d-)Y%X4jv" z]zb+@Y%%[F̵oj'+:Go 2wFЈp &3JؔN(۠A_kv hkYGn ͓%˷L!whEp'؍l^ۇTn~ހ\YP*(㯈?K3S95gǴ0ܼj>M:NϙoY'ϰzS%K1l\mLs',eǗt!7G>a]4XT#}1:ZEvn弱$k R/$L.\p5_HtaM{K,Sg /OL\~ыVʽ}syM,7_5 T+cTQFƕ d4,WRSÇ "c$[@kcCfzo鶾*B+z#-eQmU\GM%asWdzEۚdՎuk Q틭4d"ߚ%'gqBLcgP ւ*'q|>WBNM%bk);to);RX oV>4>u&e3 y_4'bMd٫a0ց Pt3,Q`\P#~*dJ./Q4ħ,:'I&)i"Ρ*Awβ܉6fKsvCk f;n^2S 0by}oOcLM3KQKA;l3} \ab, ܅< K2;9.\1)q}g/EHium7YTG~V9@<i7-AD Du-HY#wҪA7e謢~@ ڳ&m '#E@P}&GڔYop-\ MJMr>d^_MXOD9ܬyBYg/z# #u*pW1|]fKfXX|:_@$-k`͞' {t0$VuG,*1 px[IEֿؚφ䧴e3ZB,'6>|nq=$9;N_nu! (/y%Glƅz~p%zF֮p1Sj}n3qOw?svs1,bet][Fp)gI+FT(p~1=pJEpU T%q\RD^P `"<tm=jV{0bg+6fS7/1LTlTѵ %omh8dǓH mŤ{4⫷}2tG"B_p|Eum:0}v U&a-z'ģ0N.)˯E58l_)āObesh8Xb^*Xog#Ӷ永j~Cojdi1Li`~w_;+>w#;XqWf|\v|*tl'c` b QMYm-lIi0hO=~P$7lg5~{f_pfCn%'' Yk?}dO3T[@+}b&D_ Lo:DԘbqSB܁{˴s(`UFJ1kaɵ=8 iN!!5&Dxtas5hc,3Q5h ˖TQo61K`%*_p^ 8bQ&k_YGm . i]0a%~z2QQ,/ }Qدʎ/u rƇ(SC~8I%IyN<ށ *FQp  s;XmBύ>7ucQdZu inV-ŹNu?(̡ĵ{C%C|Xvx~+"yJk4{]7TtYZ*={obzQ &U+q.ڀ3-j/>>&[ce#H樓RpGH$1;:~ǩ,.f?zQ-fֈGݲ1(_hKD+|la =0#~SeM& -bŻ2Yw6ޝyO4wIW&Oz'U=%UєVXq:g5N[E9.pEsK h P#Voq&)דNW>쨺PM]rncqLEV.E)~E+\UÁ(W0hs@6Bz_@MhP-:%a fH3[t )%4Rn6 ;<(Ansj-Nof"k)$$AN mO@`b- =U ,g"[@mqj̻O `ո* r\sPQ{^߮a5ըsl#POBR?"G7?r2ka}@UjC!ɴꙦsmIKCe8JY7æCr͖ʙ\nQ&VQ~t ¾=`m=gj&.#00VTϕV/(>GB6z3-2DLKsj vD JrB6rTB9Ȗ9{V.6?XqY+mh*u9*X0c /ݪJ^:\sL7x"P.r.f&q,N7C /6C0!rD}65O.O5*a|O63 (kcUɽF^m!ǜRN2fG521]}ؽ2)3gְ[BEn)J'f |R8̣ ~b:s|D8R YW1'ļ$!?x́xɹj6lxlB?8E@Rb~W4םp^je+ E;xlxI0j?0("8{BZZ]~<«42DzvɈay;t25@ĝcKM" H#g~| bG5q{=x }7t޼% .)X,WIݦNvAETFYKv aP>"0E~2uSqSx7 gOlt D26`iJ5IٓN6ei W*>O >Tg"[^Wt2vH@y#;07MǮMF*W:^&qHg$0ϟd8@uU߂0>Ex+ yd: `O8x gnQ X֧Fo0ɧ{W@%9wOt"G{>]8WTLEiMM۟iو@ zK~anOdtFfVG9B5/ OgYi;v\a/kRcחole~EYϡ8zM F_"Ѕ\ O[s%: E"63ej $C'o,Ҹ%R\}jȺ\3/T}R y c|@9Br2i<_F0 6np-)16 s6hY;Fp#6v{RoMN_<.Zk mp^i>mSL_+zVaeIGp c^}.o}G iMK ,.ڳ=1Bs>K3Q.OA)2$mZ~,:qQJ^ܧ_rf&oywԒ:lڗydDOYuN]#>ݝa[I/UgLc~J0тoQO;3-4ڤDOk0(/K5AxhQ}3DGkW{ƚnQOʕG lClat#DL/.2Iئn38|xm*Fe}đb:+R-tCQvӵu KiqDXʭccG ]*VD3V(Wz35ecCU2;4>W"&NY _ry.0pI"OzlNS+quf7>c%\ +$Juub1w$L0lr `0r)F2CO#gX̯r[5$v+)c&:TR`($׵ Ā$&OwCC-?@v9D9AchE'-%;Sw: ĩq7D CkhG {f507JvⷧEMxV/]LB%('@cۊ::OzYr9j]~ܮajG✭UK#0?y !Y`[]xY6"Pgnw9gDS')"gQۦR\ই4-~tH_w6>n8̦  h[E\Un-oE6fr?7kPk]+/ʤyYo\:˨9lE𗤜@ dP. S&aT/::DJbo 3Y_DW>`(m%޵gv 8\X]rsHywdcuGU#k]SB UVCE׻;:it7V)Lz\.Z]_領oӪ^C5iz=k <}<-`'J1آ{L6[Z'ЍP3kpic笯Hl"Ż#BnɂBxɿSҜ]7~1O^{:`zju[3w-Nl$PI"W9 ެ-c.SDStt9pO۷Pzwz_*K%Ɔ'4$BשoT虎 s EڠfJf#gcGq{LJz/{4KwiSn|; b?WglKhf WsaTT- n`l缵hk a\zrtM"&O޾F f>A,bGHapyMǁ|Rm$'NTFXyt?Yʂj_aXtϭ>+ sȏO2`C_[=%bwOCDϲCmxr(XpFSD  &tW oQˋV–UZ~v A}!_NXhK|?'3s+R]E*bu^䪥O|L~}/e+(j{N9l\#&@s{M!Lxi#:pmUUE8D.cC锳][$'pzζehfTj<-"e?fhH\Rd YUc5IP2+0Q ۖ8'jK2ݲs UvڈW^wr\U2_6dj mu ,vUu:`YMIctv?V%$.gȩ_Cr%)odWZݸ4){p<|(o D]v1!@sxyp/n|Ƃ%i4*q$E͝W<ѧ[IX-e$}˄:IT6RR6H|E^Zl &}#"\{;U% ov@+鹩]g{ޙv+L M7GA'!/itg?=B8-04pfI:\5r QAu__ q,HV;%U틌.t:=&oTG|mۣp:BiNe P(‰{p*= rQQJjvWHjBJ)@Vޑ4#G ceI•T:d[{La'5| \U!Ce\oR@@,c/c|9t$>4`b& JԖlCءNax/F=vMƁ#}Aً ܥD4깜bYUؘ\joLQ itA2Ci7ϩXf/be$ 8XdsQ1,CP~pb3zb*>sW}y !~gsЅ19J9xOk6 X1k7]xf̱\U2ͩRcQO뮠h3PѤjϝVG R"?S߅=|HJ7RNLU1|+`/ӦMtgqR UOsI>;-.I ǺZ8 y>e W$'[4^IuZ YZ