logrotate-3.11.0-12.1>t  DH`pY𜠸/=„YO.$FXttqzhmtP!u?ǘ^6p} byW%Gq&ҹyD_Nd<$M5a9M :-ȥصjMkf}~~w`01%>N 뇭e_3d1K‘hSxM+NrYpUn/:|= ƍ#OqiLSE]/:ǝptR9+sfӾ:ada059c8ff5a79f4ecc9c35b5755226c73b724d74Y𜠸/=„^tՖJA?wzI3@fЎ+LzߡLS.w' 'qAyU !/Đ'NpovSY+6.V6E-2 a6qe&çE冓S*+hjiI{m'`鸾тg\ٔRۂYEUSF3_|3]ݟ]pB`=7**@gS;f9IZyLC>v]<>UM.Kyf#ҝߐ>BK(?Kd   L AGN8 h          ( X    P(89t:=EZ>Eb?Ej@ErFEzGE HE IE XEYF\F, ]F\ ^FbGcHdHeHfHlHuH vIwJt xJ yJ zKClogrotate3.11.012.1Rotate, 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.Ybuild71openSUSE Leap 42.3openSUSEGPL-2.0+http://bugs.opensuse.orgSystem/Basehttps://github.com/logrotate/logrotatelinuxx86_64#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 if [ "$FIRST_ARG" -gt 1 ]; then for service in logrotate.service logrotate.timer ; do if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-logrotate-update-$service-new-in-upgrade" fi done fi for service in logrotate.service logrotate.timer ; do sysv_service="${service%.*}" if [ ! -e "/var/lib/systemd/migrated/$sysv_service" ]; then services_to_migrate="$services_to_migrate $sysv_service" fi done if [ -n "$services_to_migrate" -a -x /usr/sbin/systemd-sysv-convert ]; then /usr/sbin/systemd-sysv-convert --save $services_to_migrate || : fi fi PNAME=logrotate DEF_VAL="no" DEL_TEMPL=/var/adm/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 if [ -f /etc/logrotate.d/aaa_base ] ; then echo "Saving old logrotate system configuration" mv -v /etc/logrotate.d/aaa_base /etc/logrotate.d.aaa_base.save fi # 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 || : for service in logrotate.service logrotate.timer ; do sysv_service="${service%.*}" if [ ! -e "/var/lib/systemd/migrated/$sysv_service" ]; then services_to_migrate="$services_to_migrate $sysv_service" touch "/var/lib/systemd/migrated/$sysv_service" || : fi done if [ "$YAST_IS_RUNNING" != "instsys" -a -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ -n "$services_to_migrate" ]; then if [ -x /usr/sbin/systemd-sysv-convert ]; then /usr/sbin/systemd-sysv-convert --apply $services_to_migrate || : fi elif [ "$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 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 fiF8N)A큤YYYYYYYX>X>XAr?YY9b5db228aaaefe249180d1aa70ea5609d2312181132878a63e55945a241b80246c814f8dfe9bde8b91c56146171aca04a1d33759fda0cb2b8901e33189e8a41ad13c0ee6cc4b136a98a1826761fe152318810669f13b87348459e611d31ab760fb864f2a032771b7d65672c77f01318c743981bd5d37d54c757c341d99bc819958320aa635a87a7dde13a46172881d7a7b74667653eccf43e2e9f30bc6f6d087servicerootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootlogrotate-3.11.0-12.1.src.rpmconfig(logrotate)logrotatelogrotate(x86-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.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.7)(64bit)libc.so.6(GLIBC_2.8)(64bit)libpopt.so.0()(64bit)libpopt.so.0(LIBPOPT_0)(64bit)libselinux.so.1()(64bit)rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)systemdsystemdsystemdsystemdxzrpmlib(PayloadIsLzma)3.11.0-12.13.0.4-14.0-14.4.6-14.11.2YY@YX@Xc@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@pmonrealgonzalez@suse.compmonrealgonzalez@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- Return failure if hash table is not yet allocated [bsc#1057801] - Added patch: * logrotate-3.11.0-hashIndex-return.patch- logrotate now recovers from a corrupted state file [bsc#1057801] - Added patch: * logrotate-3.11.0-recover-from-corrupted-state-file.patch- 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/shbuild71 1508940954 3.11.0-12.13.11.0-12.13.11.0-12.1logrotate.confwtmplogrotate.servicelogrotate.timerlogrotaterclogrotatelogrotateCOPYINGChangeLog.mdREADME.mdlogrotate.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/man/man5//usr/share/man/man8/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:Maintenance:7421/openSUSE_Leap_42.3_Update/f9bd2b8b654d94f623792273618e94cc-logrotate.openSUSE_Leap_42.3_Updatecpiolzma5x86_64-suse-linuxASCII textELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 3.0.0, BuildID[sha1]=50a665e7663bd196cb4394d23d4fd9b126f3926d, strippeddirectoryPascal source, ASCII textUTF-8 Unicode textASCII text, with very long linestroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) RRR RRR R R R RRRRel'l>39L?] crv(vX0DWGyPJHK}|wRĪ蚤43O0mWFS=ְ6om?K?G<Žg$P:=%r)< BuQ\o[\Pwu{~z'^C[iƶ$\Adk7lN#{m3͗dVk i=:6tCV¯m,j-Oo|zsY+k " <v>G#sGK44X\~doG9!esқҺϛ ,N5ތu;V鋉)X qsuI[vJ%W~0@lA샴 &BҺ#8귈if"k9ż{:Er4Z($DTdADG׏4,uI &-ò5CI$ޤÁ6/ 9lܩ5YbNlPȏPmZWwa亭KH {zio zosj}ل)[r 1+O|ax~i1id|PqJF-xIsnjlF Y/ZLlj 40 1V+-#ڷ $D/6Ȥݧ}&QؿpMV&GS~J2DF+Wo@閻Ѭ(wKLS 弙y atn02e+N\2AcaK}qs ½$сK-Kiܱ:6N+f|1yG?p8N|di0~?8l%0;0xH[*s%; ֻ iIouƆ4tTx!~5NjZl@bB?015 < 'Tb/ě!Z `l >$|-k@UZԴErP\Q3E`R9}=prwRp@o@/] u&d 1'>%M 3MNTRYRY)[-TQ*ej;!/V=|Iba3^xQH_q56s!1zSxՔQ{=ص\LqsmZN2-ȣV[_ފHV"ysm jUD@J;εc[˓@SGWa+Xy"-eFJ1^(˙O(81ru- NR ={r U"%\:6rCg9Bof5ZOv֎Q>t!;ug/_OOZ]'tH>I6X!66Q d=Ob $Gg:,aКxt_{ Jf1X&)7P,M>\ 1:B(/aI׷Qaݗx7n35 ]Nr! /Ӽ}^{ Z\72L'ܨB;Xe߆$#cL],nOIC Nrl1\ON(.0W 㭢L{gFϦj0ǜ 0++DƕQ32-2c7%ߤţ/?͝Zno2f(QLYgA)[NR4n _{a5mhWUnGL˖0ʖ@r7 Vsϵdk%'D fe S^I^ann+3iw@^ GI$BdsBQʝa3 { Q6Xp2ԃH_iU0֌.ë0ky5ifG 0{ͥ|FU*WqImby/IO 1c15`JW.(鮚= I1ɶ7b|OTƾí2w4M3YtnTG<ʑlw ?FB3~ vsn2A4V ¼BhoԉRa+#iJfO6\nɣ#r{~%#=w_M0AMMMj U]p[l:ov=}7\/HZƈr/nO҂ n=IX j7AI۸)gY9^'Ӕ=7PgOz0F.mO )Kİ H-Ƣ8`ʫb`=`.Ks/J+v[S]9=/xw߱vbrVEJʜyMQ7w$3Z39h bRA筋^':ΪG+Bji'N +HXK. yB45S]4hS* hRQc4>4įwΥUdٚ0b$X=hpdu%}b5"qƽG! 6k}䩴2t*IV@BZo'c OSqg]cXSilB%,9vA>"]ZE*W'1.$P&pwѹA 4iIHqCAa e:Uc0&؈8`A\)&A)d1+Iqu ((n,d}b2X Kf8M4qnM$#V8hwlMhVn,Ys\[/Ht]j#kT{F#NAŰE&% 5ޛvpOX0Q/[iÊ2_Um@M-k0>)v4%0n{$TZ 1Nbu10}ʖ Pf۽1ڽ -[?_t̨Zvw~O?zNzo99Nz0q[!i! ߊ/ֶt-nj,OVuX &2hJ,eF5ڦ_A$ 7c219]Bn: Ws_'`@DV[6~`C̛KԱ|œNL~5Bc9C'.fߞaȥIr]Ě=EC@"S [ST*j-Fs ECUV N֖@y7z|)M`W2CǡM)"[ͤr{#(c,`x޴({LyBjhu:/p$@q5?L%xx(FKBTY1s 3ͺ o#7L$aݝi 5WKu[Că쩚K$gvN&.Reo]hH5ŮWZ;="4ΐWƝd>M=E,PHV33Kh.PR-rl"ױa 2>m=YJl y̯C+3,^Waɚ`YƁyϩqxjּ74+\ uz/d@A+rc"lRm eܵ9i{aU:4x-18ssavbT3M5]Ao-m aP˂ Rfh MgzwL6Jl%cdoL4i(#Lf谦#"dw-#Qvtz5Rm$"-F)<ֹZl/e9tk[lPhRKu[>^9Ƈ^,rлD\>zٟCgi-釾( #e)p54MdLNkL$Q]}LG#SJ G c>rQG9pi=ѿI"~d ˈߐ1,[P:q]1}Ѧ9=yI״.(}IlmgUw+ZI d3|cHՓmY-&Kвk÷3iԥ켢H3%I%kVjETt߇#.ue@wҦ_$kng L >3CPܠ%Y{::ܡ[Du1D:/%b~gÇd͝@MY _v(JGBc. $7H*MFah=yZ5CJβjpq#8dOWV¦Ǵ;>Nq9|Kh^ss5i_h]+YÛ8B0==B8^zD uj@n9q>ٱuE1~Tip/laZDV"xٲkk .e-G{Zr?ءT-[٩9u$DE~ +&VS2a:cr^6p0<["$>Hr}eg#nV@y:xYFEOQU.ҷ4"b%*hFlU_6pp>WW˄ +|p jZT|/O V̷1bdb~!¯d{xvo=ccE2k?hq`<TUj]wTիE%/m~2RgKߓ uȥXޭ n afae/¢(\alD{l4@3O]3ÀhH~@dsJ)_tG-JEZ ưjؙP-P+?$i{I)DdK;Ւ/Į4cdIT Mꩡ7_b9^{X:D̻ W:}S? 0QXQ.?-Oj} sϷf(3<ߌ܌Ri<|E 2Cxvw&,Ǟh0z2ywD ܔ?̢᠐/Ϳð d1FA 1264=  &&V6dn16?Z<) 5/t %H6U{kO I:h;H²Ji_,C̼)%sX~RN?7N<#Z0D #}љ:oYn$!bTЁxdHBdЌ>AhE)Ѱ?y"_H[W~"˷0ᄪ=-N#)B5{")kzṋU}!W<Ѳ:X|LU8)I &G|oU .X4Y){c9>g6^y8eEjs1/U*vHoFvK;@*?9k[;I\3p}Bo,_ tkO%+FKTă%󼂦 6 &گ*Z="횒=sGnL Ԛ@ ܗ[؆7hP&pkZhItJ./ئ9coz9 >|n^M+o~]z>DyGmGC^%KOg[XTc$(̦v(?$KOjUs3vS,)'hnuk=zegCgI߫wQj6̣EF,T Y 8 %LA—GPj1)Yc~|Qs v98SJsyT^rHnk`\U |Lb0([$Ecyp_u/":v$\FU↢ ~'>Q>Y3|]`ʎ$ٗVx$71Sv+%hKzO!j'IrU30AXWa_Y}SPMdstGZ%k6=p5'/?FoErCyD6˺%1=hm2@~I_\`81 I{=#>.ԯTgS%4feok{ܑ8?HxpJW_cI3n@RK$w JiYҌ.f/ZY/+qd m#ՉhɩMrpBMCA.vܖ+L0F_x5W$ݳzטnG9] s (ݕfvBwT))հ'| 5B-9Є]BQߍp*DY:~9M\U=LX; ZiQbGC>=QX>D)ϝ9Vŭ31͂ HAc( (5鼽ߘiN zGHDJ[ wW["ajЮ#B~o]ȧOٞp(l%Bܺ408@6/q=YqF·a!1!ɒ4쁪=V댙I=,N "YiZv+Nm7TU]Tgkڨu <I!LVF޳F V̼(DPZ'6XlRC]yU3 ><{w[ p5VZ^z^J|ڬcSe 5Y̩;j)F;E]y 4F[C0Ovl ^UOd=s*hKJm q'!̧ȉt4wOP%43NᲗnhǿJ!sj_D]b–>!O":d[9`4T>e2,q*AJTica{z/nccj.KLX}+e 85RE zש ȣrtB\Db񢵮\X7@U])e4qrWTX|',9i?-}vTP?r^Rlg QL啚 ".Qp[If?J0l{>` rO{0 6$̇~ *(3'j0 ҋ|(-6#рft۸hQa΀s7χ" Q2-<О4qnvuDU^ 8?a#(Z8~'Cb_#o}t;e26 c:@Dhe-VQ=:h ^,R89%%-|mP'#s%b€) I%w.(%wڨ`Hc.#Rܨo҅Nrcҵ7bhlŧa 9o/?S2LS'/TL ڨWVsYm60X^Ơѯ ȿp;$De쏤Wz[(qڇBfc=^10(_Ւ~= R('qUIJ^'&JmDZN")M?;l7ԾܛBD}o֘V }ƿ \\cGPeTB"CȄ.M-Mh 3H뇍|$sD'&4!h+V?fWs C7Lխ;q6pr  ⴯ʤv;aTq\`E=\]+Xh 7c~SwV;2 K4IF_2LC|ɵnOiNvřR/H߆b3쐠)hhȟMSUm$w&Jׁ׺xIQfa0Ca᠖%ϴ/TaEbX~>[?Gc6Kل4q& Oʕ8)278Xuq#A}7Y9Ilὔ_B$2# Nw€ЂDgBtp"9a,?6kQ{ْQG5 y"b21 HI}s1!B~耐 $Cⴄt{Ud)ATHa1'<MSq~m)}a/+1ދ`-~/tQQ:UMq rPT_}>D91A\/f։cЧ|-06Z觳;VGEʢBEyW1q `@켭}JUGG!_da AO@$άn ݗװTTV4-mD;2a;Mdծ[]({kY0ܯ^8:@c@E{D%> Kz4I7iiF,%$͗gب![ÂV(~2D]~aߏz F}t aװ'q(dz AL{(S{(ԼpI@vvF,2.mKF,^ia kz2e?#HYoʵ_o *aXkܻ|^rj ċx9+ؾGz زNEr@ۆdNs/XV8|Ll)PWf1sƛ9{wM\k~]q7&Vx ƲcNlosg#ggNv^OZ%=PnQӧ[܃0!#ĕ;1#oAKJG=/ؚ7d%!AKIuۧSΝRX- Dbh]ǝIm,άvݬyr2o=J jLq=WL-y)* ,f<xTQ'%e}2s!*!%ngnz<}>q!{_C"thTWLFSB;20֟7mt)UiY?  m ctlmWo>!+Eywz{GL)Q0quǶ#N1S v$1`*L !8>mYC # *UNցCH8FĮ;M1W Zzr^Cx\f⥛9~/s<`{dwgϔSAn6(u_%8go&*9)z J?((oS-'ɱ,-SI8x?NMy(NWiQ;T}n%U&AXAz=~.* »lL@ʏK~HQir4hPV" itj:t:ǵ*k~f|RKBc-tS A*6(Ju BDEw3A٠b8;C'Xj8<U1b uFlAhI Vk_Iغ(2xE>N+To%\G`b8ȡy(bމeg *l KL@G:$,Ed},/dR^{0ZsIh 1 3ffŒݴu;*7 ůYU]={ΞmS%q֨gf +`^V/([4Ϡ `ށDU KTx]d 2*e^ŒV~-m!20rRtm#sCJREy<ΜOFCOD/D4#keI c P`X`ZHI;IzzkY1Ly|U4HyARW]T;]3j͇T*y=;-2"Px B:3C9MT|Aj+x?$3nBK'1lNzx-3,i@^&!Wz~IO2c}(.Ubx;ZD29he ͂ٙrF+W犬q,)r]_5,3>X

cV%+?UrdrgLK7[C$ڣm/㈺SB'E$.IMr~.k2)Hɚhl/ #AUpPx0oz\W0;ȒW |E9`t fhhm+=5C:8鳭@sA^ZvE'I♢W*8wϴ ocȹn@ǬdR.I4Ȝ\}༚3d9L* ?t-6; =07Prlt&恊?Vlyi +b gSz<;A,<*qm^hjg /"5=m?9XXιjqd$wP'e{F,yL-h,+Q;ӱ*g5ORiƺ8(+^@+ /9%Uȡ5?-5V4 {T; ^WD Q V=5( I=]/K& \d̫&QE㴌o?7ŧ%q3tIBWy#mP9t]+1Lgs<524܀V33/+|yIl7|82Չ6BnBX +:YHU$!fdjkBO8w  F~?>w`b;5UuE3`BxCm+ }35'Ǿ GnW &/UU^TxYJqə3a1VUL%=7뇷=`6/A K jfb5¯CZ0+f fv`h\; .4XGt-yDwoI aU7C$'*^ c>Xa/_ ?p'{C>C)"RKҎ W dܗ2VF]| *R&B]2Q z"zNz\nZ δ}}^fB(be{C58uL`|b ,Je1݌qR< 4t3g69bmK4]:F}g KaIҩ1T^`F]Ό?KXrs AuL1˨1dMWQ,Ese=2IM#ԣ&ö'B5H<1$/xG֍ۀ"HCl TW\#{4''o?3 p^4T[~L6Lm@oH,#C/d%D?HTH1FǷehV"s|=gXr.wRA3- ~_d~vCJVݤ~zH'61E!)K:F jBZ֒PBiK}q #tU$άIj3]s/mklW%IL6e0,3- ۍ?uKq#J^1`I,kab/L7G 2 ,{Mə3upiЇ8rLW;m::Nyq4ǎxV>xD%g &F|^1ym._ ]&S{Ѓ@/ϽW0_mcxruTq' J&]oq4B 6hk`ŦUK1$-ͤOIjB$5wl1tXK&)Z%F+-E&u6>9;H/(D4{\Dqߨ<¹( D$A>'1482Jֆs÷qw2tZ8`1j${M1cM~ʼnA'7Ќõ,2Rw9J{P \{̔M4) w!$.揙n@m_XeV@*YILk[,=P|ypgWw)IE LF_Z`+=1*mfF,V:s:XohD >M Uv^*UZ"A!Lo}) +گLgm̐INA6 @Hа`u|;< AC 𭾥cSvdj* aZըY8nchjkf> 74okS`(eQY!;Hv8&MqFgo zϐ'45`rxG^4Ig q},Y坔cÂ?ə<&`ЀTeA=j,gDL i]S!Pq Ov__'wcQniY pz@h<@W]6׸k?tk (;՗~C*Tбjb/Km$.oHtOScñݏ. ǰ0@QEJ-yn\WGqǘ }xNp,D4qXK~m??LMs]/.9Z5|v+ s<)uEpCT@,R^,`?Vl-Pn秏(LvgdpԾ 2yOwBdztZ4^\ Z$Assn2Hiz[ Rߠ2*e2lg몋*{T]+ 7Ank]<jDuOjt$LC&p:Peo}j>|'K:,[N-RJh>5'TǷt//>A|œkUw\&8*h_F-5?XJ/`ujCVWDlZRiyQtgaeU9h*lb?:vm;YrC"Ejx6oL^Ki)9.a{CcB6A* Bœ/l |UB 7 SGʨjHj- $p98u8(!!A0PZ|  և;YIA"zS-PðASx8~XpBa.SDّz/2 uӺ0`ƔPFީq aZ,ƜBEIty &NCTr"QPrL,f z2|[̹۸p}_Y u>0ƃ( E}KE 5]ECiW\G dF%*7<ͽG0lAhi:W4$֭/P piױ=P95IE6H?ڄ³>K*T 6So7cJwHty](@jh:`rYW`uW<&Ҽڋy:F-/ .L@%w"FOT_g?Ŭl/J?w9Q̴}(P-I&{LjA ax%g.2Rq.R7'EpH.$nR܍dOkJA$OW6ޥ {X E/|I'XG&. &Q+BÝ/^\@MƎu-n2LRleih BE5TdV_OJǙeux)lyr#R]5& АjM7nE/gh&a/+jRN̰p&ɧ, #f84pbdN8dʙ7Q&ܢY#E\VoaKX|d.gЋ駊1*%cfGc/1z'`ܙ`',U~aIEGcʁh//>$7G0XI,:9N7\&ӍsJ팋0iY.RمGnbwPZdqqßw4F&"j tn;' AJWx}2[V_j Vh,,'YMf)2lY|VB2#&e`b6˦05%vx6S+DWgNI(45+sA])hv"JR;]}cX^OP eKu5uP>Fڐ4w{hŪ_Lfz]LJFjAI;J ]l e"ޅ9[m#JөX5w:!b)a:/gi_Ui D}5{$0I2g غI'w3, l=YcOMFQACGE٬xlAP)Gm19 x"cE$)Uͨ3Yn8:l۳ZVZX }oHv`1G܀m[MF'泀lټ\ jo'8>@g`a*d{XكF J?(:$b h_8E Vu01je*ZY쑹'c1VݟɅF{:<~9}$, 2>f"H>? _͓|BGL:v92na%KHZH.3Ԕd3Q0?韛ϩW&K=goX<)[i-P c 5:W|nX2نc-2N6l8bUzx) c%׺ڂ#A1=HHv=WP'qpM_c+f^Mh~OᑠiA궒H@2y!ՑG>Kـ3ґiGX/BҽFh $nte[CٻFX?&DƉ;]-SԺm#.^r⤣G˂cW@zUr 揿KqHqRuedУڒM (W rh{,+9f]{2H۷Z9cHV޳Q=#q(B~z=_-C+ A @}XMR72+Ͷ} JֱUPQWj{*Gש7>Q^اm m[.zSVxks'ԬIEf~FT`$? *0Jd>|"ՐaK#% 97i2[Շ!cw7p|UI. R?tih<۱Ԫ$=fE ҅-\N%&3׭ĕUFo4`>hE.fQZtU#+kjgFp}|R̒dJ_F3AF&i0wq4yd0D"i jvIƟ >yqJ[y@ያ$Y\Ƅ"5IQPu $NGO~<2锷opÒ2zX Wm2>Ld$M #2%\& 0d-A{tO"E lBdc?6UyWKzW:}$S: c¢wu.@Xl n/ ݭŤOG7FAlCZb~H_VAZ.6,GGcJ'\?.,Ь_NXU'_#"GbaB4]10 &{jOOMf/K wCizkϺX˺A}ZSPq$ȭ$El;uLtb*Un|z#)~Td\9kd>->η]=M%-:~v8m]5I< 2C1xEٙ?+Gx(3^}Z/)so_$Is$;1ip](H`39uѲ!w5wاz kV;pg%aPŷbd㗙Zc)`)zūס$S SHo]V篵SfZ5ӟԴayE[i)N7ip s 4C!Tk4a\P"!vuҷSvJcq` 8you n0Bfcq89+pk1-lx$hVbe7XFrB@ )JZnW3|M 'eջ2 xewN.+[oOBK4C &nWqELNY@_!^mAG{Y5wɘ 2z]\>A&6oȱ]aQg*Dq.k >5̸YYg*\>Ta xj(vx176gH!! uEV[| x\_~yx:Ex5Wa.ގMI̮ RB_9p|:Xe` abiأg@Yrq 5U&?(OzЈ܀K>W9h[%$ IGI$eW0uWq"!Pɏ˞L5ZGv]ve߆7EV9>qLw#Ƿˍ| ꐨ3Mӄid$k>׆:ƩT!øk8}-:I݂g Qq/ aVd^0E)!oԆx,^ 8:33?M${Y EӸ{6.$ב.۰ m_ 1ubQ=א8"|y#|a%!ˉm1v%#+ii;M(1Ivoo*&ҦѐI !H{z&=Bޚ"c}| AS0UW) tK3߽Z?3l9y)4F 0[m&ڪ^O,GL T6sjt`!ʴgT-}νr1%{)@\~F> i9F;}! -!Fr@7Cx ;7lwQTĕR]<о!w$E G!W):zn:;/?SMyَJO]I0j UJ"/k]qU>Br<(/g)bӳK;yZ=$ı*B ?Ɋ '7z6PEZ.o_X;` j ";1n3 ?Sa+4 s>8qk<4NI6Z5@ Ou{ҶW=Ґvβ`"J1kOJ\rF%e(G:xO+@EʄcȠf_?n8V* b !vfM&1rLF JpIKO<ݢ7!Z޲$U!ϒ=8+j'2M㷺-',t!4 Ö/Ȇ@PRK" ~44 f>+$M!z>Tx#@)\F@򚰋*f$a  >9O=^,4j.zi @ܦuݷbpk2/σ9$}g ɼ2C"X-݈@B"xp%b퀵obxBby+w uz'#e `6;>!?nvhcN腂YNLhPf|> iCRqaG$m6e]N=xS'kI%qb+t:;0(?? ~QN$W*@BPz/Q ?OBȁ&75%jRB^3~ndF،uK cX7SHezqd;E -6M=Ԩsqڒ!G EsҪXot>v[:c,ƜXcI*(V?0jb ɵ%B{R" B4PD{a\EβP= Uxov K "Ejg҃=2@f3vVdFըBW)ì^h2WFw㩨ݘ9Yzx?pCi $sU<$Hcnj+6V49MS^ỵ~nIc^h.9j]Rf/P)t lKfXzֈ_e/ɘށ}Ce1xF:C/hk+ ?5!͏@Z8:۠QȦc/O$.9bdq#l`ոYY*JfD=R"ϊƎTplEKa!GP.k헁8Vo$Ia(+ot Mi=0+JlDkhz4K썩=_zD}6zf}ufP3VznnvbniW8{:1n W֦q4IH TUhx@e`IhZv涘%q\+zxDmsQ1;p:?"U }Ӡ=[*Nl炜[zmS i5ut~v?1Is u!׷\AD3nnBqL3܉&2z[2#N**Xyh~J-!w&TmS-}cn&AxFbw!Q~ߤ-%Uc鐗V(mP(`EF %kTs\x])(?1$6"## sA36L&`:V2yK6#qH +Bgashݡ/܉4!QiCNd ԅ0*1ǵ.'Q.Q|/^ݶ$̦v5bGv޼lVJb;XT4 |ҷk#Yw,P2;Z)cͬ%筭[~\Rq7ʎE`=I:`rOm*#cVZ .8# VP6^3C[$ЁZfph\ ] 'b g4(s޴=FeG)C4˞ OWPB9k4W+"!\E޴oPI:8pU/ԬR$C9ųUl:T \\m4b(4"}1rr?|v ̱DKU{{Ftw:J҃3yw s))WbDފǻ.:ū& \.(:[FkwR +^oxO 9WUnTFtv2i1!ھZFJșxK ɦ}^H 07;\e Kg4/ &12+ڣa*Ɂ& DF!:jZ-~.gt'3&ۀzs`[bk4lJ$:B{GkʥC="bjsI*77[qWIyj2PቶT#hfyjsb(KI"w5~um:"?:"z;bS!/FOeb e$#ƨ7= \JNяWKm:M'@#iP]4%X7,QƇMP_I>s,L!zVv_bܩN%8c2v [ɲ' ^sy' ͦwb7(,LT! Ne<~Trfbœ6o ׆> 8I劸jf!bR L%r`#>K,UA]}VM9qɿ`oT`F{7&wh`|<^ 6>z?оb>IԕۧlFbyn(GLP=hheUIP{`(zCR9ox,*e\ZU`VZT 47";o~JJ\PznfjK'1dj j0oEo6o z?PmD #ۜ %zF|#!`?:g=WT|h.TȤo3QG3@x^4RT5wU }Jx~mV-Ԗz\KabkY9cÃCVo/]OJƱxB40$N5HK˛Dc<"*h|K9QS^I>Sf>~mr-gA먎yA񬏔$_rMb1 YF1{%@LF'trHܝDW80=9`zM\(]T;ꏼ[Hx_Od;t7|3T:ܺ4"qesR1t꺇 x>衂O )[!af-FgP9+=ՄG<]&>\S5 iw܀v8R_)PWל/iT4.<=ğ\F OwKmGf"!|Q,a| `:}`"h]lo_&cRz".\4iȑ<DSz@5n2>?m- AvlJT1].ȭfO+Hmi*i6K:YΧO~ lPmdQI}YDCW~tQZ- z>~",57k"J\juzP Ő)o+;IuCd}";Һ]!ض t*#З(<yɤO}˩;I9VrF Ѯ̕_ىUy"dYHZJhZ@OɭGu7Ѿ>͒l}PAmc.C|2˳:o$tx?ά5a{,ޞa6dg"?:n*=8Ř.t"G/{T.{9)r-fpr#C}]֊YY;9CQ]fϑj>͆E܆ #{_ɺ?…^OGb\p(pbcIԉÎ%/F-_@)$׳\  ]?tr1soS|ҏx-3aա]y;.cLM(!J]@ z[o{/Rܹ" 6:#Hn PZf\.4oK c$-G?Jŗy#`k14u) g>Mdf/ sM Pz$4atkI<ׇNX K~h(҂H#yC|&?Єy4b[-cR)*Шb/=qbnXo|=I @ g6 :V]ݛB,]N}o;~~ΐx Dl Z.( ~eͦfZs-0_жPW D XqC'STZ[cY(̦*̀|xy kUGZib{U ;Ȥ]@F^j&8LTzNlT~,*:ϏCG\[nq9_l6a^wΩ1C{6HȖD`T0Y"shgJu n:R>j^U>N$]I[TJQ90SEipt .m6^[%sQ4 ZV7Z_Q6vM'UbU9>= TgAϪO`{.Wu$i,Fc^njlœvFP K@-2t ېzIJ@W5z%):HHJ`QuC"W'UG_UzKl 08p4*+;>F%l\6NC7?w~37[ ;3Sefm<5襵jNͫD_#u 9Fj3q _NhvOveQyՎ'E TZ6.]C4J`a@gNuhgm)ƜoÕtﴪm7XUVm9Z AKF6xS9Ax/ExY Ln/zv0;g;?kcJb?IUH(~-o99`}U?fL-'@'`ƽxx!fm/yF#O,z|l=Ax~z&r$ˆRv=|_ls*K[ށ&*wt52si72@ p ɶ׸a}W_(ɗ~B?vL-eP6O(0: _@އ@'Vۼ0cAc>1cI]ٿ*A{u#»ou=DFByGg:59&hSGHg3BHrV"VG6۵_~6f ؇`ubO9sj#y12xLp^"PV8 xv!ʢ'~:x4/@jt3>ZSYq07A1AX}ndMx Z  2^ړaz`e Plom' jliX&՝` yyl,"LbxMEȍQ fiwf &ɍpbTd޶"*EƣqDj°az{`dvM~<5mӡt D@Q*).^}jK@;g1`ބ;> n0bgk]"4}^޾v;%(HGOW?CmZSx`aWN/HU8%Vl#鈅AroH{@d zbKVI} |Z)9(q*DƫS_ѳsuf pcO&"kވP~ϔ*jHXOM6u<7oJyp`-c vzN|\3+LR*4N3B-z4[PsԪ~РkZS>,Dg q edZe+a@um|G5rR6S&C0Vv땖xbGdžiHJz,4~Ԍ%F&qZpv/p+^~+T¢7u68j?bfo|q9VjDpJ'L.y 2˨$>@ADW̆Bj(Yy܁ |7a)ꎺu{ZOP,v#$?)ce0OX"#[9?@->`~\#b@[J+[ʺ4dB:=ZW|SԡW^YmifZ(jnI (b9tyN##ڏq' #vMa!M{8CnjR \qZJٯKXsvI%@\T{m;gj` @fn\[\z& !X%yCWgyb~.E WZD3l"yirO \dqUMSD6U#%oXکAD"7A?3"|2ا7uގhiɍ9[$W{+['کp;Hqp4ɕ o G*Z yQqQ~+NpF%޲GGQaGr8vL,Zh3Fo b Y~מ1Wngh4"l;@hG5Doc' uJR0Һ\rTEei!05um /u.s M\g:3M󫯞[n$wl(NE`4igp9:5 N';bPo`[e8~Y"e4?B *g=-dbbtw'LQI NktAAgzm8Wٻ0_<)[\[t,oXmA*dUCxޥ*3 TS( ;!RƊ).z|Ƈ^ ۈhExeGF_Be 采_UvE_;G`((٩ tl)λX˦ D܌sN>wP#!Gx-tU83F:ia[SOkI3b=|uIΊ]( =ɕRT>BZG[ ^眗ܴ3H D|J~d ϗΕmHy.u'*ꀆ'UsVvG.N;`6eO\maQ"+Sq1B=׈H]lLh{/8T!'hj-Ix!8ST !쾝,kB*ԚqԬj9L8OX:iQYg4p>,n`l"e$=gY$SaDY=-0%x ٔЅPnXcMHP)wQ;tF[rR8<-Vq"&{gG~Qϑ៰N,Aѵs{$|NCTymx/3lA1@ϼE`'(P7~f{9  3Z*GPo((*l懶f"◩<nr:l魦H/ge YS] ]|, _>!H ƾIlvcS'[ 7Fc`@7ih%W}uN8QnLbtfbzbq]UT;[DR!aS3۝lFDJuPRǟPGe 2/n'/ڜL[ۑ Ou;)ClNGn8_q쏻-Nbk;v<לX.9b+KFfq1vcl4TĽᩭ$jğ;.kOU, ɄBInNљ8SnQ1q!ESΩ52nZ'[ {,.7"/)h <مf=)0nV*j UMROəes-4k(!A856߂ӎ^#4iGۗp}mQ[`Ht&{YM…yqiJ%bɬTI)+R!wA[He"c,H"QL2 [*v1gJ}`2n~牆%!* y:%QrxVIu}dKU#z|{v}G>f(Щ\sEb" k(5H cd%ܥTki(씒U83Ξ= EÌhk7I썘'퓑Z:${tk%H2/Ct%WAjgTi*mE;Mj g"Pd1J㫸u,'-\T-^C:]䊯L8{~EM˪9g\[gƢs$lYf4Ie1!22=FQ?ԗ0&Tp y<3/ȱZoH Bm36RMo9W> WJ A;tOJF8(Ъ9+ X,I@t+:U>.F90%b08WHiO8#"9 6pl+xʹ]IDxj@\~)Tr~)$p~,]CLv+ gTRO"fqp.ZH[TyH O6㴑)Njڱɨ>g](2:!z\k)|aczH  l$[ \>q;3ѝ;6Mת!$ #E>4bA9 %Pv?iZʴCP";`tfTJ&~2ƔMዻf[{e 1Mi3uhςsmQܛyO>YRm :^֭ڦ*Uw̔ql?ja(UB膌;u|E _sֺﻕ:IvHHثl]bb|݈/{Gog^.PFa Zn|q[* oo,pK\_n(̀1ВIMs) 3x҈=<wytGmnZd%{~W4* *?OCK0V{,eF`аՇJ=2q{ÆA]^ Ly^< h177!Dٕ/nUy+_jtX:2% G!@ct^M$R$[\Swtv͌M 7W)a۴ʂA%uF[<{J"0Joφ^"bD;Fǟ} 0ضciA_wE,mVԡwq61COpzҼyɠM^^5g 08VqB邚~;\A;Ԫx F}o `laś'rUWP7_fP pm3pGc' {IؾLɓЪ.zIȫG>'HA>$u ?̔?#žaoZч Šl_\#9ܼt]tڒո*4\隧10PՓB߉W`K|l]V´)a7sh~K4?3*PxV֕88rX)iα CLO-DqZ#́+?t$:,rx1aa'*sV"l3$IOPZI;0,g%q\A{خ%(B]T+)֮HuּoEc2"!ݜ %1ˉh B *i(^(~3?OMLW%ThGUfdk0Xct- ``مM< LNjc8 k@N Nv=#CQ,Qf Wcv,&(Fu=f$#WMUqlmA_ ~DYrcBLbM? 7ZLkl t'B/kz Hrϰ}OH;_,:+pf& %to!ʪ;T,%*<"MW鍕=_P`8C5̈lp$MyGt51`ꚺ W\j*l"WERt%3Ŧ,r;v}O"FȲYIy0 gϣF1<~,:+/]/E"ǸdP7q-mYhG%4ɃTxOu;̬MK7&JwKDwr Q ܏ 9= $ $>+fI>Q7?{YnOku!ȯyx-7yaqd%;6#`s2{L6US K `=wAGQ64 (BR>ph0lQͪ-o3EL9zDz![!^x'~&w5I1HؕYd3q 1w g!+9Z\{_ w?sR<נǜn}ʸ=Gäԇ.A"_n0$柌%**(+ I Ij Ó]ě:UaĀzzyix%Xhv,|HnE^SȓPK'+3SpP(EiDİKk3o_g#+fVL~Ejݶ:;;^4>I>]= Rtipͺy^6upǏM$n.3[s'ˆJ QEǤGyE."ͳeHMN9 P2bP«=ERBcƷ| |OP`%IW숡ꏼt'D |T[@G(#jl:7)k㛣<[lYVa H}i$m3:G_``8]f Vc}y^ ~ޘxɋxs`69ί, bda-i:\*a"j&zl\2iNt Xn  n_Zd#6JE,%h0wfdޘ Bdd{]1&* ~8$Bvt`̠b_GBw$?<= :'%'(o2 w~u {~7*7Z[YO2B1E2hkeSDb{WqyF!  8X;)EJ1Gbkϱ1,`[&yv V(9V:]I˕vx'O%d8m/i'럀D|Lt >%* PpĤI V?~Wk lh?ﳗ_KQ:ivsԐTag*t0nj M:Wx\MXl-\: JP uubYM)dƪr}?p'?\YÑ~m#i6,#+d"/O% (vݜܧʨ] XQF$NVҷ򇡶iҗ/_9L52&hM2c#vqicX#bpj3~,̀N̕Y4u'J<xn;' Hd_|Wp1ܔ}m:<|f='IA/+*?lx~f*ـǿ?0R0U-ê l G v[4/;ya%36$VneCh+dqTQ4E`v .UCC((^&Qq7#YarTR }4%!1ׇxzVrրی9;wT ];SrQؖ˃UϮ쩼E W4(!zѲmHN;|g_~?c~)wY;Y^vk3S 􍪛Qq 7BKr8bѤg=퀘o4 El9&~o\86~-[ u@g/8 zLp-*b8F[fqf՗5:qjvvS5_fkQ\Q!em"ŏ yrNn"]!d(7gw"hmry)h_Zs$ɘ+8Ul[ϽK6B#<-*Wz Me.T4k{յ3Xtof;{j@k'hl(aOTnJLjy44 f=&3sόZ?ka'? SQ| b." g-sZ9Gd'0wNv/љ^R+;WI }?]9`ӮH]9~r"_( s^gdv(Y4/Ls[FaʰAV_b7XƹLWIؕҀ#&t _)I+|úIэT Tq%bU?A8 - /\W}?L1C=' i*+$;3z2,W ni0DPOQ3Թ"X+ G}( NGiITh}n Q AGē ,uJę|EV;=r/zOPN,yaHԟ\b#xY?ޘo 唇Lr< 8o ?6jϙ~ @;:@V.s8][ZЩeطv+FL`(,v"󦱴_h>ܓZπ"'-q3h(։5.i-Ym}'A5T'8rL|a-^9f܈"o|pZk쥽9й J~kx(4Tm F]\G^(;vA̩Ն料60{jԏۃ'*/9*)o]+u*x}Sb9Sxt?" NT*h[t>*m5eHgvi܂p3H ɠ[^y vQ=:0X[}:4ъݝd[_Fɨ5`;*Ks&D)=s)"<Wq;XR c'1E UrR◲6M`3E74Gql|96_7n|YpaPRU4m=~\n)_dl{!7f7v7.2<.ʸk~ Sb5U'7} x5-Epe)Ml ۲v^DWj;FEaU"Iהu1Q7iݹ6!([Tz?yqeLJe38-lA ~X3vȷ-xP^HϣQBL^};؉1GCiࡺ~@Ȱ՗06WLvV;N엩a k:yNfޫ#f,i evjsxkQnze\!lvJ] 0Hʥ ]@eXQL՟k`#ɑ,5C3a%nCEh~3#@awIeF0CЗdȍYu18WP"?L!RFv;IL }9ߠnS)T:w:m'=!Mhj!8ʰxfϣiqxGd(^>C2:[ە?;_9xt]FoX(09RTRADh[&$ 6ab