libconfig11-1.7-2.12 >  A [p9|P pQ*h3"\a RUhA0n䵛TpDܯ-?c&+sۧk-LGo3. ń14213c25860c6afa416fc023d364a7bbbbbd9ff6093588c0ddda1e29c841d21cbbe0e98e2a4c01b2cf14ca815801e24f7202f548L[p9|aCW6Sk[Ud }ca`Sگ̤wm`D5ӘqnbҔL$16iҙ!opE}pL1YQZq?#{<Ҍ7΃៺w~W@,&/ZP<>z?j.V`ZNV[:^>p@'?'|d  *TX`d}  ( 6 D ` g  \  l (89:F>#W@#fF#uG#H#I#X#Y#\#]$^$[b$c%d%e%f%l%u%v&w&x&y'z'','0'6'xClibconfig111.72.12C API of libconfiglibconfig is a library for manipulating structured configuration files. The supported file format is more compact and more readable than XML. Unlike XML, it is type-aware, so it is not necessary to do string parsing in application code. This package contains the shared libraries for libconfig.[s390lpdZ&SUSE Linux Enterprise 15SUSE LLC LGPL-2.1-or-laterhttps://www.suse.com/System/Librarieshttps://hyperrealm.github.io/libconfiglinuxs390x gA큤A큤[[[YY[Y3d951c28a07aa17b2a2d951dfdb9f3398ec6f416a2849d975cf2ea63a8eb102624ac56c54570dd8e967040c68c422f17205ff2891f6117d59420760cddb1c88d77083ca16992516e74b8891daf4c0480951a183b22d1cf96d318eaabc853abeed80c9d084ebfb50ea1ed91bfbc2410d6ce542097a32c43b00781b83adcb8c77flibconfig.so.11.0.0rootrootrootrootrootrootrootrootrootrootrootrootrootrootlibconfig-1.7-2.12.src.rpmlibconfig.so.11()(64bit)libconfig11libconfig11(s390-64)@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.2)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.4)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1ZZz@Z@Yg`Ut2@T2@P@O@O`@O]@OKp@OH@L@K]K\Ky7@KbK=JJ@kukuk@suse.dejengelh@inai.deaavindraa@gmail.comtchvatal@suse.comi@marguerite.sujengelh@inai.dep.drouand@gmail.comdavejplater@gmail.comsaschpe@suse.desaschpe@suse.desaschpe@suse.dedavejplater@gmail.comdavejplater@gmail.comtoni@links2linux.detoni@links2linux.detoni@links2linux.detoni@links2linux.detoni@links2linux.detoni@links2linux.de- Use %license instead of %doc [bsc#1082318]- Ensure neutrality of description, and strip other OS mentions.- Update to 1.7: * Redesigned the directory-include feature to avoid using platform-specific directory scanning code, and to fix a bug in the handling of nested includes. The application can now do its own directory scanning and/or wildcard expansion by registering an include function. * Added new CONFIG_OPTION_ALLOW_SCIENTIFIC_NOTATION to allow either %f or %g-style formatting for floating point values. * Improved the options APIs in both the C and C++ libraries. * Improved the automatic conversion between int and int64 values. * Fixed build errors caused by out-of-sync generated lexer and parser source files. * Added an API to clear an existing configuration. * Fixed a problem where a group or list could be added to an array. * Changed default float precision from 2 to 6. * Modified grammar to allow trailing commas in lists and arrays. * Removed logic that clipped negative values to 0 in (unsigned int) cast operator. * Updated manual and added a new chapter on other libconfig implementations and bindings. * Various internal code cleanup. * Fixed failing unit tests. * Upgraded VS2015 solution/project files to VS2017. - Use new project URL - sonum updated from 8 to 11- Update to 1.6.0: * Added include_dir feature (support for Debian-style conf.d/ includes) (pull request #36) * Added octal_ints feature (support for integer expressed in octal, useful for permissions and masks in UNIX-like systems (pull req #42) * Fixed "Removing a setting removes all siblings" (issue #41) Props random85 * Allow specifying the number of decimals wanted when outputting Based upon a suggestion by zhaopingsun (issue #31) * Make libconfig usable from CMake (pull request/issue #28) Props thfi * Documentation fixes - Copyright and examples - Included TeX patch from Debian (fixes FTBS with TeXlive) * Resync Debian packaging includes updated packages for GCC5 transition- update version 1.5.0 * lib/libconfig.c - Don't fclose() a null pointer. * lib/libconfig.c, lib/wincompat.h - check if file being opened is a directory * lib/libconfig.c, lib/libconfig.h, lib/libconfig.h++, doc/libconfig.texi - added config_set_options(), config_get_options(), setOptions(), getOptions(). * lib/libconfig.c++, lib/libconfig.h++ - added patches from Matt Renaud (added iterators, removed throws() specifications); added Setting.lookup(); code cleanup; added patch from Yuri Dyachenko (made exception constructors public) * lib/libconfig.c, lib/libconfig.h - renamed config_setting_lookup_from() to config_setting_lookup() and documented it; patch from Alexander Klauer (floating point precision loss) * doc/libconfig.texi - documented new APIs, bumped version * lib/scanner.c, lib/scanner.h, lib/scanner.l, libconfig.c - scanner code cleanup; and regenerated with flex 2.5.39 * lib/grammar.c, lib/grammar.h, lib/grammar.y - parser code cleanup; and regenerated with bison 3.0.2 * lib/libconfig.c - bugfix; capture root filename * tests/Makefile.am - fix for out-of-source builds * ac_config.h.in, aclocal.m4 - updated to newer autotools- Make doc subpackage noarch; improve on RPM group classification- Update to 1.4.9 version: * lib/libconfigcpp.c++ - Fixed compiler warnings in constructor initializers * tinytest/tiytest.c, tinytest/tinytest.h - added tt_file_exists(); added alternate implementations of some test macros since MSVC does not support C99 fully; added comparators for text files (ignoring line endings) * tests/tests.c - use tt_file_exists() rather than access(); alias snprintf to _snprintf for MSVC; compare files as text files rather than as binary files * lib/scanner.l - fixed parsing issue when backslash in string is followed by invalid escape character; reported by Jimmy Scott * lib/scanner.c - regenerated * lib/libconfig.h, lib/libconfig.h++, lib/Makefile.am, doc/libconfig.texi, configure.ac - bump version numbers * aclocal.m4, ac_config.h - regenerated * m4/*, aux-build/*, libtool - updated to newer- Added baselibs.conf for 32 bit ffado - Disabled pdf and html docs, moved info to devel package- Fix typo, it's %{_smp_mflags} - Remove unwanted description paragraphs- Fixed changes file markup- Spec file cleanup: * Use original tarball * Move COPYING, README into lib packages (legal requirement) * Move CHANGELOG and TODO into devel packages (not needed by users) * Move examples into doc package, and recommend it for both devel packages * Ran spec cleaner and removed unneeded rpmlintrc- Renamed package to libconfig and updated to 1.4.8 - Upstream changes: * tests/Makefile.am - marked 'libconfig_tests' as non-installable * lib/scanner.l, lib/grammar.y - grammar changes to make trailing semicolons optional (and to allow commas as an alternative) * lib/libconfig.c - bugfixes for lack of auto-conversion handling in the config_lookup*() functions (reported by Feng Yu), and some fixes for compiler warnings * lib/Makefile.am - bump .so version * configure.ac - bump version, add '-Wno-unused-parameter' compiler switch to disable "unused parameter" warnings * doc/libconfig.texi - documentation updates; added a chapter that calls attention to the bundled example programs * lib/libconfig.h, lib/libconfig.h++ - bump versions * doc/libconfig.texi - fixed typo; updated docs * TODO - updated list * lib/libconfig.c, lib/libconfig.h, lib/libconfigcpp.c++, lib/libconfig.h++ - added config{get,set}_default_format(), Config::{get,set}DefaultFormat() * lib/libconfig.c - fixed memory leak when encountering a parse error in an @include'd file * lib/libconfig.h, lib/libconfig.h++, lib/Makefile.am, configure.ac, doc/libconfig.texi - bump versions * doc/libconfig.texi - documentation updates * lib/libconfig.c, lib/libconfigcpp.c++, lib/libconfig.h, lib/libconfig.h++, lib/wincompat.h, lib/scanctx.c - added support for specifying an include directory * m4/* - added local m4 directory * contrib/* - added user-contributed files - See /usr/share/doc/packages/libconfig/ChangeLog for more.- Created libconfig++ from the pacman source rpm and adapted the spec file to openSUSE also transfered the changes to a changes file- update to 1.4.5 - This release includes a bugfix and some code cleanup to eliminate compiler warnings.- update to 1.4.4 - new SO-name ==> libconfig9 and libconfig++9 - This release fixes several build issues.- update to 1.4.3 - This release fixes a problem with parsing indented '@include' directives.- update to 1.4.2 - new SO-name ==> libconfig8 and libconfig++8 (!!!) - removed static libs - This release fixes some problems with the ParseException class.- update to 1.4.1 - This release fixes a crash when reading a configuration from a string, and includes a few minor build improvements.- update to 1.4 - new SO-name ==> libconfig9 and libconfig++9 - This release includes some minor bugfixes/sbin/ldconfig/sbin/ldconfigs390lpd 15272911291.7-2.121.7-2.12libconfig.so.11libconfig.so.11.0.0libconfig11AUTHORSREADMElibconfig11COPYING.LIB/usr/lib64//usr/share/doc/packages//usr/share/doc/packages/libconfig11//usr/share/licenses//usr/share/licenses/libconfig11/-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:SLE-15:GA/standard/c97641998c673cc007cb73d7ba8f9478-libconfigcpioxz5s390x-suse-linuxELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=add474e83ca3cb70051381c830a7e9bb4f412e51, strippeddirectoryUTF-8 Unicode textASCII textPRRRRPTKd utf-831ad1ecd27b54f4b2781211c89c19b39d1f286f89367ac06f40ccaac929581c1?7zXZ !t/^jX] cr$x#F )`\d-E@hzōNʆ@ʨ#=-%əLE^ RO3ڨ|J}>!eYaT6Ϙ8!}bkܗW>aW~4@W]V1<ˢ NXpˆGP𨔑F͍bwp9;L4eOݺ# vbI~)mʋxt}cmIҠ+ŎnTO·F6fiim$ԀCmlCQ˹V!}VCWgE/[6v (6U7n G"~,FHa n 83RŻeuk8m;_ ~i3|*DJ}SO)ye5z 6f?\T *ЍsllNKƥ}he*{:>Ȇ/4QGk5Uyll|?bdk^(eF{د}FNk,m>d", <-_6{"o"OSf!v˶~MM{XxAY1ĆHX2':avn>pF>{dy5c7_Cb^}8>TmۺC@ͲIR[}7~A$5}V}|@wo]Qx;WPf l3ïD{2~&`y Bt 1,sS|XٱtMFVf`i#rk9}JZxq~CŹ6fh-.PFF8,lpqmPgLr-Tw]’xh;駙]K*oY IaiI;Ru?Qh^{}+GcwEˇD`pNjHAw^(T^1l"DOa׋2cnsǛFX{ض0%`{rSH:>\9RETgЕ͡hj %U=fۍCaMXJLvuZv\Jb_sxYׅRoEVJ,]oɃ@]m&)C&&ի2U.si@7y,t}LRq7(g0OϨ@;c>Jݎ u$TǾj,[-t44ӎ4%!#R:.D?/}m[5ۈ6"ELՔ4ϠZQma0y/У$O lQ*k-R7fr9L,"@7Q$ZHS734ArTjyz(z3gлW1%o~z10:Bt'8eFOQr?r@!U,B(-y芾wѐQ0fB¬ $tK_7)lk%_ An/_;JgY A RL3үI!ˏHU=Q k34'^M%@ 89O-9-9 6jߴ>en_x=rKPkA.V&To%:}e+9^(>Kx~O 2%l$wۍY:T[}Vƨ @$$oc5N!QbC-٪d<]g=0܃66NC*} y̤ayGIƍVn`C^BP O J\"UXv4cŔ_hU qUE0b!o׻3ԈT?Εl|t_{)n3FgP!nʞVSmSę2 .E|?DO@/RʓJ(q VѐE&﹮&m膌Y7'Tcϯ5aV>o2ziNGA"%4#* g@Vs6}N®)$[a.I*ԅzM)eMzFe'waX{>Aiݺ_k,0N\;dV\1@>5^ h=Q>a9:״`¾b"ۮKܻ_ڝ e@9w7UjUڈ 5Dtt_q&u_#!J6uI 37$MLjبKxb~.JݓIKB>yvb;x_G>?Yd&?Eb B3ׯ\?Cc-Y7>6:ЧW9w^?Ϳxfs m sB}*a"z˫6@n Z%V4k;w*@Mk!e-֋|-IaW<=CJ&ʑs2[W9V}Yb B|Sozyh83WIG/c@_vJ$}>Z+m@b/_ԋsȩjc1}xh夔y6A%E JcKu0ےi1xʶFcx9=Z"יA{Q)sBYONh1⥰5C~zxd 7Vg(EVEap2z3#d1ե,r*GHOZJTidך@z3wWCH9FT@TqB~? >f1=m^ۆ (,H+_1ZVPٸ %Qð wg ^9V;kBLl\NIǷpeg6q/G \Z}@ju/W 7T} sj4"\"7sb} e~$ZuAɘaݕ^}6û:לCKXIb ԗa :Mv?[ [&(VxbqWkn1S WDxI'1ب^{IXSqf28<8 DwFWZT |7 C]ּRƕq;;ĄCz[t -WHiwhl q?} J3]5Q5ZA4-$?m ߽D!{7p©[YFUkJ~ZkcFҞj| TN;e,,nχS\R6;][,= |fY-Q6wSkУ63eT4 azS\ R0vX[=/^--v>Clk*L/;(3lM7^i:&Pt*`*T _.TTXD 6^KawX /Y)gh =^NZic% O죘]JՉٴWRSݘuF ̈$Er iC,,$c#:Z+ {%n}4ռ#gs?@hP,&;(A,Zu+" s`\cW}c >l>wLW5ᔝ߭)qZ | wI 248Ё8N5@ܧ¿X,u.jM <ʴU=ST&P gUQςKtH# ˱SJ90Irwb! )>Hu>o'ҥ_ܖa[wPKKGm=6ƴNd t&%_}C(!+Pg9zK0}><*1{jXŹ45 'lhљI4pHL88݇MDv{G%=6 Ir^&8G0$F~1=+f2gd96^켚nU:Gj:N30u6C!Թp+=IpOۋ1ɿ߭Y{uZXËp߭ڤkX9ݻC@ӹb@j7Oֺy&AԒ:&CwcCZ/K:;1vQ*2v9g e0-mfYz7츑p\ c%U tTum^Y~^B9rc>}t7BuMiZC$9,!-PWn%fJ ? ]bFaZm^ѡ d klkg(HlgzH F}d!ZVu nqgm@|TOg>B6QT[%C2?JoDWLI^OXt/u!QExMyկ H0QD}p&C]1&Ld9!SxaWK6d9rR4f+]{,0]v5SZ) +̴XX ( c|Z iuw]`aj6hJH XV#kl\ rt:FugۊprU&h0 2T 1$, wY|<my\}O8wO'6j:Tgvm ^$uͨv?#D䰘?^FC5mc ]j?@<~94@ 6>D6SA9m iIKpИ^3c,Ė ̇%dH>V0Cu>IZig(DY_¹{`%K.y1 +idBhյOh*mVq~g#U><(6.5L2s9)kPNXS4:"5囐5D fT%}m%_+Xݿ"OWzU+RB3t 8TB8F;̕x.#hsƲ+?i_ q*`^MP.sThAm8GOo7!Ll j.4m_߯b`Â$F dBgOEp <={Y,0+\Nՠ|mdQ k^CͰ޽@-ϋΦH,<| b<0"at|T 8FrChS> ؙ:<g+ʥ{ƴg3[xǝDCu(V6eYW$6} aEjcY$ l,} U:kjfU zCp(:֏sK)MN9b<Z!RCOU0?sh޻Q2 J7Ϗ(2c) OIۅˈha:J^.ڐQN9yRNQ1*;lyl^4A$צO8 ~bH$xJ` c0hhmKUEs?q|sػ\H6(;wFqTh,JN*.Ƀ#QLmmt0F x%QY.l_!\擡AsyLH֠}F1śVu/$ #^m!{Xp[MCw[x*2ʼ(lT Ѽ $DkV;^acg+}lp eao픆;)ԭ rl'`:aJN./k Ƹ%]%[ϴ]†f(Ϋfm.]̴ۢJu1Ad23My/AF v,% \I]SELCx`ٹ:ƶGG9G#l iW!RC=!'._L2IpOy.o6YD3B0ݏZY~r3 ǝ>ex[( Uq7gxߐ$|_b{n"o.p0/kҚvF:;vo#'/8v86 ;D:&Rm(R /(_ʁ"lwzD"lT:4(WCGźINaQd8J$UC"~dY2:SJj&H+B}!YIWʔ9)g+bѰ8 eg`8%v!"Gg[5&H%G,Mwlb>Ɨ3>i UɜrUՄpFH@Cdp#45rq]&|h^J%YUА$1v kAu G.bF~ZZ<.LvWB=bMh[Jw{&m4u,tԪߎL*1:.oJn\>*9&.#m9EL0{b{t~ehe=W޹!޵v 髋\2<1ԧՇ ە +ytcfwRνJ UM7 \/ xvM 1G^۴BXq(QGݩM\v[5|ShjPEٛA*1t) Is} د;sgVHI{t:A<-yH]|W,}8oáQūnUt(eǟ1t -&ܯoU!e:;hu6n'HVCenW Fg1$6 'G6 r{|:`pɘmS{,3:*`Q$-iX8x[S\6TfOeac!u$3&ua_#Tx,n=u⟄'c=90?-"yb'igEVFowCQ7W9agDw`_)Uzhxہ[Ȑ"TG&Z0t@ hQ'Izq,Fk}QB9|dNg0{[KaY9m͋a"R2tOLn #N]rvVCW9]}0t@ 3&XjHqEuzd%쫓ǔ 8R7r]5lIdu | jН}4EH! t/!Qԇs'A(dj&2t{e5==Cҫe<;v DÎIK8.d*:^4xզ)֣fl?䲊L=M@"v*tY$cM%VϰE_mhߩ#1 6llԥ*Bѥ\u(6e54[Wu,7a w * g1L"m:;1ښU(n2jp% r˒PqT|\q8GE<闒D&,rwRHnʵ}"lx* X"ΓJvO걸WťO,Ǜ*YwvQ8!枟IwKxeNk.MX?HFD*r&xX0 8cM\%I M;N~AXN7|Q>vݙ)W."[+$2PQEt AA1=7M(q/IWHވC-˳ߕhUIl|`;/ acdd'֯z/RrTBo=ifx񱚕jTxy+SB   n|y:>";#ek K֩U+R>`W^ӣ~L:%-wl2\zazgV ͷ2DCeT[٫1c81!l4:BVnU6;s?"Ďy,U oIgr2.&+e6e`(N쨖>I5o'b!ϧ;P Tp5s/7)ư5s E>tUfTj .tu(a#E <59#OkLK1:pWK' ܊S5&2;1Sx~Jgb8 C[}lM7)^Ez:">:LṐzJ8@UfnWh# f3m:;o>F&pCK}HKu>R.(crEs^:s N~C$/iIdҽD5#ͰzY`ҳ< Mcf#f>Rk̎pÑG K)=DBW5>R7$W!+ o%JO`y4vp?k"aruW3s!ȱQwL<?wZ~ K^!$\-?g8UJ¢!Ќ sdJVht^/u w{s9u/;@먬>Ka|rr~`q:ᤋZ+5lۀ6>fw.6rC連#)π_7-x<7r)E6* Eda! zI$q"?I'V9K7K GlWAU'zze0cT![FX 秿y"MAppf_d`XN}ZM%:cŖm)W;C(8h%L$5D0U>iAwrn\Vd7=6־@&[N  45Wk3s3s~$Q)I*`^!P5薴YG7"/U(Otq"b%IWy̨adZT!>u-hLz%-9Vеyg\;x [Fŕ+{u'W+A]|p)ɈVf1DhV^0~In&nm0{nZQF[T%݌2 ….L~3 bο'7 oDax9MI(R{~ NQ<|>, ;!!I8RH&$1\F#N!jB g~y\o>H[+f%uo, քp✞d~<[`[eXk0/" r7-7iťGl{xNஷ]t|A) )~F$kӚPpk.r]4SجM[q^9:Ny{\$ `TD aCp^gȗ?厪W8/{Ѥjyqڣz19?"tRZp-"ٝdVRũ֛<Xd[E*ڦŠ_~+2<REtV_2'|B5-m\DzF%M3pstSZwb%{vC- j_T+veC9i'/&řHxC]SutPȠf4OL ]Uk4)|t%ڑK;b陸YHgh,}rYPGR\;zׄuHlN:pZLX~Xm)PRLjh1 e/N(ᩐJN~6{꜄6ԘBWfZ63mt% {J_FDhm=|b7/^ : vtyG[ &΍LajNϑnI?#Y)#_8I+ab?JA= ~bl`cs?clPj=@~[I˾>s.Zp Yk|[O/W- 2~|q7: -dlݭl&N5r{+Q޳IC-'qNJgKt?Ւ$ޛ ɲ̼< gV-kzZeU1=ݝqqY%v(9퍨R|nFnci~Go4j(KwAt 4rvĈ`sLbC O]WSvXSt25{c2/;ɥ[9V#Z;wEܸ0#$i:zb2<OR!Zzi{@zJav^_=r ൲I<'_V Z_y5SaS$udԲӪM0u7eg(Td=]uا ƗL90ЅzTĐ毇k)FJ>k_CdHNR׊nG<DVdY⢦2M|Rv/MwV=F:˟6GM8_L| O}k%Ym6avg+mBA}̀_+4@V)0?;FkQHdf8Kc ؆. ux \+ t={9OzO^&^ù~p{*z/FQZMA ,G@),S/+]0 nZ8QAMp[z &{M31V|4;@˚lul[U)@DC(9k)L`R>CsIuS&>J2F\[G`b.o{}Ei`&-".q >Pn>HR? \շB*cZ(u} 2Y_3l9x0ZÃc8Dޛ~Q0/6%5TX1rSsL\\IԴ@b􇚨 !hv310<Ш@Uf/|Îюjh{ca^0uJ?7YrUFH'p)]R1~n,ɋ5a =I_sKh՚Y@A wPN+$}q ;ӎG}J͠n9!;5r[+랺(rUS.8#˅nVFV>`e:͂sSAK&}7qj,*u@5:e( >C]RɡzN>{*l|A#RX |n]uq[LΌq1(.Jb! YN,P:-8L +BH@3u&.'H`SQy%ۘcl^@θw{HJ >of}eo+Z^GFrZ!7O(5[7wUCٟT̟^&ICJӷ*i+?RSPSU<~Z^%*i SIEX^\Ge QƒYܽ^Sc'LSn>_؇<-uڑy?&3_W05 fՃPD+y$?* <-,ꀮKWE Q{+K>g,;L%qrZP2(u[fϘÕv9 zW`3O QPmfqpgЪ; 3+~nO;Bӭ^˪)\ӓF=#.>z;ICNe.} PZX3GU&D~Fnr2+$V!oV׮1J3j!m2F-ixz4{ \eܚ6Լ-xSf{͆f "-GU$8[6OBODh X.-C|}`1GF%=n5:%*&g2Jq2zMSpUA(Q'UǓjEXi-CnjQ9ZAgPOJۢ0|Gw{{AXq4Zv㸵|L+T)/Ld ҋR rЎ| g+a8H-7j7:Z_$ӓۛ'!x%hZm=d֯"k'bf+ (85cq 6Hl3+mB[ 1|[ZGA&VW<`-ٙ |=$QӖ9 V45^(͹aԙp{,^eZ*PTixX("P8[f5oVajzXExgv97SP}!uG8zE=Z)&= JV!&ew(Th3J:as~ [\cB!Әn$G[h/bQV}`.θf'u9Aɗ~#DTЩv$ NB>9i=0?˰p1sOb2?{B!E{E܃vUNB:Xwqcf; X*Q`.LtJ tk(;Bw0RB3bf6X#"r%X*ro+9~~/+)@h *]ec_u<[gQilj$2Vo)oUk&`)uing=j3tep>G̽?K_ӲЫh^ jJ6EH7)$V"t  _6O̦/*iXeimo+LFɎ$aLsNuDs񙉞^!+rjP[m_+ߩOtm.*@֩p/9-hJOE-kHm gpt|aD<Ofs;wUYhkr?+ &4^(P:w .j UkTW,4mIL9¶pp߸`X؃$ 4e7RF6tMϮ15G¥% ݱغ6҈;qէ"P5̾l;Rケ78PCTUNw{[>k 9[$16AxM̖"8I>$]Is\s<}6٥Y@nD$@(+"PRa|'0A]d&Kla=p yj87dhoy͊ &K? &yğk H+TDh(Tм1\UQ )0c|gJG46휎1'lcޱx!TSWl.M=!V((.׹[ǏmӃOˠ8Kth#G>+u7jM爑Sԟa6s >eX]mx"[P]ҚfeW\cH׬ jhh~+?piCoSfҾTjzy4|R;/`)} EzU YS ^^,ϐAΐ=({ihQ&ߨX.ԕ #w!4K8VXN}?Vd0\(=n^WCxn;-a',ok"ɘȡhKe^)(}9B#e.bɴZirF_L )wnͧEܧu7.M?52@]En06Ě$޷ aEQ[O 2ܪۖlgbvj#R?]zy#z<>(qEKS,za"n7ߌq ;\c}Y"'=cX rMOQuN^7F(g)b(q8鿼gT[)!d$xe#7XxȈNjO @u~}i]ˍ 6n7$LBJaE'A˘6/&'NF%f4l {CTz(VF3 0mr#};\F{w|U$/8'1mGyWB/'1"l"koJv'}GUFZVD+z1|yQb 7rCxvpn/ܧ3T붧c3R&REe]L8EEȴW y PSI,~_YOXKb_I^} u$Idθa6>@pylru1 L7_wcZɍ,6r^XN,2^/wz9 g9}t*ƅaXSqc7􋞑~ E'+zieJƴ yhj ejG~C Τ ~T |KкІ&:4oX{!߶S~d2B pv]Η9eɺ.6HCR CmGo rV&hsclB_>hz"3mL)YU!svip%aS ߚs;t՞6# 'uȯV)$./4αoޗMx{@ga7{ƺ!2)v5ʯbP=ݹ b3'oRWAʄ^+Ұ~t^K#{ $BP%#u!5&-{#mBJ8DfCؙ " } {q0i02l4;_T5y7^c$Aq^xE I8=k66#3goiO0ݵX2c)`5#&S{\p(+nQ<'WoGY5L/Ma!%gJpFNW~7˹Ԗk_%Hn~˜k$V"ͥKXk^jq;Ԛ4C3Ovz\i 1 M0,c3v1GՎwOK$|Pl}fx6П(mQFr Ot4k)Z yI@6-E_U*dV9cUI}tܿJx?u-._N2zV"cQpPucB!5p!u{!1|A 1ڗIe1Z %@{g_̈QL!F'/WO)tZ=r ΄V*kBU̾LJZtHyt>%4XᡴsošC\ ]l v3 QSR9w|2//f&DZ 2B-E ުWi^=Pbs!0-vbͬtb 8Z#6ROm/8lpuN6oq;ӊpD JPқ| Yj)09l*㉡m+u201t {*uP^oT}5f>}<~4, hѥ eb? kd;C m'Prckb2ВaD ._FKsR5*ʘl|"ąONVY`D`-~ZYڀOUı߬Eꎥ7|z6aW6԰.W9.M[؊b,~2k)M!4&pv_ʫuaʤ`N8ԟ<_ؔ3$LLeδ fbz@DΪs z)< Je=O|,;\ϖh^Z(okvRT|?I~u((-zMYͥ J,&k P"99Mu<δ.Mp1B=׈AkB Î +~涰 6u˂V p4e|"D g|Jbueht+KPA7H=DߥGb O4$_ȓR]#A}oMFK( &j) oxolv3lm8qG"eQ_2KFǛWemZu4iSB 4c8$LŐ@7,AB,W0[[YJDw!w2 X%Akm՛2J EΐVȔіT#?mJ5>r""*& fo Îuao_΢CS{54r6G:Ԡ4oy i{>!7-A (|Th=<#|0YDkl|C1c0l^*4V'*f8wbS]ّ RPaU!VbI\u>~AVyȼXXa; 95vEZ"Wy_8ksvǑznfΦ1>,JؔB֟e hVi} \-zVRgW@.b"B؍ͽiaŒ8ӬU4oa,C2:uߜL$`eP]?de2JD+6ިHS˘tI5PqtC*~R h%t$*&'\NX3&7ڽRz DPvF,؉PPrU21nHٔJ l OpV%«Jz0ep@fdeVWAv]@[@eװ-btlb 4\L%,@=hb_l#~1_`@1"mTgb{iV Ćљ>{ (4lGIUoHqT4CzmIU^dUX/D/ޮrpQ8*BҎ  c8QMS9d&m:p48 *T cAbqgbJ-jȤHֶRl@!=j'߿44˽icy3_Q\Vuq z7a=MRYvy٘ OہCf#|CN֊~xv{ mHN amA^\wxwx  ƅD#^뀺? fTc.,;!$x3~a*wy1ݽt?|c/]yKV.~`0^Ss i!f*l[=AN);q)j8cR{nd=JdF 导n3/?[eѸ>+?KbDMq9ڠQD0$hFI}[ëS' r  =r*`_ݶQ6 罛d;(t\3L0йm{4*ҧZJx[\V6(v@N5e҆XuwXw~,L{Yz< ]#G^ۊ)jA )4 ([8K ?#9X.65)k;,U=1=:b ]8=4-=̆RW3Hץtl"㱪 i++o|JxAңLJ~ 3{I;rbmgh>TW9X bq,Lyv>/ 6f k@=ws)n5\4U'K̽l: YZ