libmpfr6-4.0.2-lp152.4.3.1<>, `#/=„t{]]NDZ [~6/=!4jlP%h9+\gEؘ'@ (JV#BIMLMGi&7_@NG/6H9*O`~)0pmͺ  y>1 pqÉ07%Ts'z|9m֧Uѕ2k+-)$ߦ6/y]<iN$h|\Ai]T~2lW_J@0?0d   V $7@R k      *4T\(G8P9:>-{@-F-G-H-I-X-Y-\-].^.b.(c.d/te/yf/|l/~u/v/w0,x04y0< z0l0|000Clibmpfr64.0.2lp152.4.3.1The GNU multiple-precision floating-point shared libraryThe MPFR library is a C library for multiple-precision floating-point computations with exact rounding (also called correct rounding). It is based on the GMP multiple-precision library.`#old-atreju4*openSUSE Leap 15.2openSUSELGPL-3.0-or-laterhttp://bugs.opensuse.orgDevelopment/Libraries/C and C++http://www.mpfr.org/linuxi586*̡``e7e3bd3b644b4eed8f271c6da803ba3a3f221853be3e28757915da98acd02d19libmpfr.so.6.0.2rootrootrootrootmpfr-4.0.2-lp152.4.3.1.src.rpmlibmpfr.so.6libmpfr6libmpfr6(x86-32)@@@@@@@@@@@    /sbin/ldconfig/sbin/ldconfigld-linux.so.2ld-linux.so.2(GLIBC_2.3)libc.so.6libc.so.6(GLIBC_2.0)libc.so.6(GLIBC_2.1.3)libc.so.6(GLIBC_2.2)libc.so.6(GLIBC_2.3)libc.so.6(GLIBC_2.3.4)libc.so.6(GLIBC_2.4)libc.so.6(GLIBC_2.7)libgmp.so.10rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1^@],j\T4ZnZ@Zz@ZKt@Y@Yw2Y7X%W_@VV`U@T@Tq@Richard Biener Martin Liška rguenther@suse.comantoine.belvire@opensuse.orgrguenther@suse.comastieger@suse.comrguenther@suse.comrguenther@suse.comrguenther@suse.comrguenther@suse.comdimstar@opensuse.orgrguenther@suse.comastieger@suse.comrguenther@suse.comastieger@suse.commpluskal@suse.comrguenther@suse.com- Add cummulative patch mpfr-4.0.2-p6.patch fixing various bugs.- Add floating-point-format-no-lto.patch in order to fix assembler scanning (boo#1141190).- Update to mpfr 4.0.2 * Cummulative bugfix release, includes mpfr-4.0.1-cummulative-patch.patch.- Fix %install_info_delete usage: * It has to be performed in %preun not in %postun. * See https://en.opensuse.org/openSUSE:Packaging_Conventions_RPM_Macros#.25install_info_delete.- Add mpfr-4.0.1-cummulative-patch.patch. Fixes * A subtraction of two numbers of the same sign or addition of two numbers of different signs can be rounded incorrectly (and the ternary value can be incorrect) when one of the two inputs is reused as the output (destination) and all these MPFR numbers have exactly GMP_NUMB_BITS bits of precision (typically, 32 bits on 32-bit machines, 64 bits on 64-bit machines). * The mpfr_fma and mpfr_fms functions can behave incorrectly in case of internal overflow or underflow. * The result of the mpfr_sqr function can be rounded incorrectly in a rare case near underflow when the destination has exactly GMP_NUMB_BITS bits of precision (typically, 32 bits on 32-bit machines, 64 bits on 64-bit machines) and the input has at most GMP_NUMB_BITS bits of precision. * The behavior and documentation of the mpfr_get_str function are inconsistent concerning the minimum precision (this is related to the change of the minimum precision from 2 to 1 in MPFR 4.0.0). The get_str patch fixes this issue in the following way: the value 1 can now be provided for n (4th argument of mpfr_get_str); if n = 0, then the number of significant digits in the output string can now be 1, as already implied by the documentation (but the code was increasing it to 2). * The mpfr_cmp_q function can behave incorrectly when the rational (mpq_t) number has a null denominator. * The mpfr_inp_str and mpfr_out_str functions might behave incorrectly when the stream is a null pointer: the stream is replaced by stdin and stdout, respectively. This behavior is useless, not documented (thus incorrect in case a null pointer would have a special meaning), and not consistent with other input/output functions.- update to 4.0.1: * Improved MPFR manual * bug fixes, including mpfr_div_ui, mpfr_div rounding issue- Update to mpfr 4.0.0 * The "dinde aux marrons" release. * MPFR now depends on GMP 5.0+ instead of 4.1+. * API change: Applications that call GMP's mp_set_memory_functions function to change the allocators must first call the new function mpfr_mp_memory_cleanup in all threads where MPFR is potentially used; this new function is currently equivalent to mpfr_free_cache. The reason is that the way memory allocation is done by MPFR has changed (again), so that the current GMP allocators are used (since for some applications, the old allocators may become invalid). Note: Freeing the caches like this might have a performance impact on some particular applications; if this is an issue, this could be handled for a future MPFR version. * Mini-gmp support via the --enable-mini-gmp configure option (experimental). * The minimum precision MPFR_PREC_MIN is now 1, with rounding defined as in the errata of IEEE 754-2008 and in the following IEEE 754 revision (ties rounded away from zero). * Shared caches for multithreaded applications. New function mpfr_free_cache2. * Partial support of MPFR_RNDF (faithful rounding). * New functions: mpfr_fpif_export and mpfr_fpif_import to export and import numbers in a floating-point interchange format, independent both on the number of bits per word and on the endianness. * New function mpfr_fmodquo to return the low bits of the quotient corresponding to mpfr_fmod. * New functions mpfr_flags_clear, mpfr_flags_set, mpfr_flags_test, mpfr_flags_save and mpfr_flags_restore to operate on groups of flags. * New functions mpfr_set_float128 and mpfr_get_float128 to convert from/to the __float128 type (requires --enable-float128 and compiler support). * New functions mpfr_buildopt_float128_p and mpfr_buildopt_sharedcache_p. * New functions mpfr_rint_roundeven and mpfr_roundeven, completing the other similar round-to-integer functions for rounding to nearest with the even-rounding rule. * New macro mpfr_round_nearest_away to add partial emulation of the rounding to nearest-away (as defined in IEEE 754-2008). * New functions mpfr_nrandom and mpfr_erandom to generate random numbers following normal and exponential distributions respectively. * New functions mpfr_fmma and mpfr_fmms to compute a*b+c*d and a*b-c*d. * New function mpfr_rootn_ui, similar to mpfr_root, but agreeing with the rootn function of the IEEE 754-2008 standard. * New functions mpfr_log_ui to compute the logarithm of an integer, mpfr_gamma_inc for the incomplete Gamma function. * New function mpfr_beta for the Beta function (incomplete, experimental). * New function mpfr_get_q to convert a floating-point number into rational. * The mpfr_dump function is now described in the manual; its output format has slightly changed. * The mpfr_eint function now returns the value of the E1/eint1 function for negative argument. * The behavior of the mpfr_set_exp function changed, as it could easily yield undefined behavior in some cases (this modifies both the API and the ABI). * In function mpfr_urandom, the next random state no longer depends on the current exponent range and the rounding mode. The exceptions due to the rounding of the random number are now correctly generated, following the uniform distribution. * Functions mpfr_grandom and mpfr_root are deprecated and will be removed in a future release. * Complete rewrite of function mpfr_sum, which now works in all cases (the old one could take all the memory and/or crash with inputs of different magnitudes in case of huge cancellation or table maker's dilemma). The sign of an exact zero result is now specified, and the return value is now the usual ternary value. Note that the position of "const" in the mpfr_sum prototype has been fixed (the manual was correct); user code should not be affected. * Old, deprecated macros mpfr_add_one_ulp and mpfr_sub_one_ulp removed. The mpfr_next* functions should be used instead. * Internally, improved caching: a minimum of 10% increase of the precision is guaranteed to avoid too many recomputations. * Added internal small-precision mpz_t pool, which aims to avoid the overhead of memory allocation, in particular. New function mpfr_free_pool. * Added configure option --enable-assert=none to avoid checking any assertion. * The --enable-decimal-float configure option no longer requires - -with-gmp-build, and support for decimal floats is now automatically detected by default (similarly for support for __float128). * Updated tuning parameters. * Better support for Automake 1.13+ (now used to generate the tarball). * Dropped K&R C compatibility. * Improved MPFR manual. * New MPFRbench program (see the tools/bench directory). * Major speedup in mpfr_add, mpfr_sub, mpfr_mul, mpfr_div and mpfr_sqrt when all operands have the same precision and this precision is less than twice the number of bits per word, e.g., less than 128 on a 64-bit computer. * Speedup by a factor of almost 2 in the double <--> mpfr conversions (mpfr_set_d and mpfr_get_d). * Speedup in mpfr_log1p and mpfr_atanh for small arguments. * Speedup in the mpfr_const_euler function (contributed by Fredrik Johansson), in the computation of Bernoulli numbers (used in mpfr_gamma, mpfr_li2, mpfr_digamma, mpfr_lngamma and mpfr_lgamma), in mpfr_div, in mpfr_fma and mpfr_fms. * Test coverage: 96.3% lines of code. * Bug fixes. In particular: a speed improvement when the --enable-assert or --enable-assert=full configure option is used with GCC; mpfr_get_str now sets the NaN flag on NaN input and the inexact flag when the conversion is inexact. For a full list, see http://www.mpfr.org/mpfr-3.1.6/#fixed and the same section for any previous 3.1.x version (follow the links in the "Changes..." sections). * Microsoft Windows: Added support for thread-safe DLL (shared library). Tested with MinGW, ICC and MSVC. * Limited pkg-config support. * Autotools: Under Linux, make sure that the old dtags (when supported) are used if LD_LIBRARY_PATH is defined; otherwise "make check" would check an installed, compatible MPFR library found in LD_LIBRARY_PATH instead of the one that has been built with "make". * New: optional "make check-gmp-symbols", mainly for binary distributions, to check that MPFR does not use GMP internal symbols (experimental).- Update to mpfr 3.1.6 release * Includes mpfr-3.1.5-p9.patch- Add mpfr-3.1.5-p9.patch with cummulative patches to patchlevel p9, obsoletes mpfr-3.1.5-p8.patch.- Add mpfr-3.1.5-p8.patch with cummulative patches to patchlevel p8.- Follow openSUSE Packaging Guidelines: do not packae static libraries: + Pass --disable-static to configure.- Update to mpfr 3.1.5: * C++11 compatibility. * Bug fixes (see and ChangeLog file). * More tests.- mpfr 3.1.4, incorporating the cumulative patch, plus a number of upstream fixes - removing mpfr-3.1.3-patch1to12.patch- Add cummulative patch mpfr-3.1.3-patch1to12.patch * Bug fixes (see - update to 3.1.3: * Better support for Automake 1.13+ (now used to generate the tarball). * Improved MPFR manual. * Bug fixes (see and ChangeLog file) - drop upstreamed mpfr-3.1.2-patch11.diff- Cleanup spec file with spec-claner - Add gpg signature- Add mpfr-3.1.2-patch11.diff to fix possible buffer overflow in mpfr_strtofr (CVE-2014-9474). [bnc#911812]/sbin/ldconfig/sbin/ldconfigold-atreju4 16190072674.0.2-lp152.4.3.14.0.2-lp152.4.3.1libmpfr.so.6libmpfr.so.6.0.2/usr/lib/-fomit-frame-pointer -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:Maintenance:16127/openSUSE_Leap_15.2_Update/a14ea07ae376e7759e34180ff2cd2c87-mpfr.openSUSE_Leap_15.2_Updatedrpmxz5i586-suse-linuxELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, BuildID[sha1]=000ca437de7a1fdf4e906fc8f8ac1829ae977981, stripped PRRRR RR RR R RR=>%!u#9utf-829dc8ff9dc5446f66a92c13eded22980182e79117620f41646b366607b50c0f2?7zXZ !t/ɑ]"k%wdLzP'YjJHv6aöx/$gd˽Y>t\xx=UdaOd}O@#[ێFǢM2Ŧ<2^<1y,7jsS[9t `6]Q%'Riy M8L+ZAJ#)=Wi4i$U3{qmp '\Ѷ@ L^:t VV"Uyux`2[^X-,nW0D<=Qh}U)UHq[En >P6濰I|٨;;hIh S g qL Q@bK w ||˭Ƒ TL d/_5c5 Wg.q ]>MGB07͵։!"t^*iV6PzE Y,VZ/:g LjB9~T>p<{Ӱ!""/QF|6q$2„2h5]J9{Ϋ= hsunխZ'{zqD6uW@Em7;!b)!pƆ% ݵ NJ ``vPsﱧn KR_T&J]`뎷KýE\a !Q2>x"\]J9)Wa]iNIĻ٣P8D]7hfY` ȡ2H>rF]9,?VٝVcځA4c&w`]B~J|Ek{hSwz5> bmDﰌE;\)Qtʽ]!/x2a*eZAx٠1P|ۥ/V̘>7uso(!`Z=s#i2|q 1n'$\qeMځiuR,(n]"Rؚ$=v$Mjs_laN۸ a*P#=B"Ei%4&Eíw'ǭW63X(;1bf(U\^߸B.*$A!uxFwVal rgٻY_+@k(jHut"/wsv a1$Yx[aBkGN2"pe,R+$#E@ B?W9,g%L_9vX逢BE]`s 6t9`~%A,nl5 ɶE3__õ*֯^AՅ)Eg@> Q3wT_C£"5[fZ-(-^ 6[3PRi"/Tj8s gܗQN/ 8wgsSUMV8r?;Oع-D4s&#ud_ t+Hz+aaJрcnyTA!O &K19T'-Wr gv^:τ$+q@Mg[DƏ9ɄP Ku{kX5+or$7U۴쬞CgPyIu?`y"0y]qxn [RSdWH\'XzX=c BmuD.&gf۝R-[f8P r$ I4EPQ,z2҅N:d=̧W̱ǭ}v~8W՘vL¹e} cn#zZs2p|˜{hvbTcy=.<9[Ze (5 JeGS5qAڨ^]#EC7WtfK8kp3Mo=g}2DԹmxbO8F*Ϳ!)^3jmбwWp sm8+YvE}RB͙6eWBŀf?c[&__^RÞv߃2xtXYWyj\/_LpJE/8e2⬥hΠQ'RX bAhG`"otGfB} FzwaμԿrɃl|䚶06ɍ@9Nr-IXf#~6)<$LpD\jo{{ "]'18*Ћgg. q1S=F( QhX~+bcȽ=R1٧ީL2!eN⮽'5VP4 ra*`f9S]ǥFs3%ˋO^sB1>if:]S/׶\szV#͙"rX(.꿂v@k6_Dqzx`VvѲEQxؕ.XZm$U{;~z7'v ،ϻn虜8h@ /Nɯ;^LKWy\CM@"HAA}_#G{nOKcaP0$-^Qo5%ƣ>* XՕ@WMY_F 14crL*j喱|ܾmgw}<6KH*@.FV<idA[Ǽo"P/̱~oi q issC@ 턟[$ ªPUdTWnO.eͭ`NP JHv**j`@kD`;l3Y9Ђ\nMGmy8L.o}1iLESA}8*:laoC }u.`Ģ+HSC\k5cO:ό{?6:tyU"%t9}CXB^k&R CPGE QZck}alk/vqVmXBgkny9)`%b1]#ӑgÓ)R-3tG 2>~pPy;Z"Wᨊ#+ S;IXnGJw܅Ci[NWp0wbrvEEd&ǚ?NX`xHT)s}+DnbZvG8)蓝N)= ׮]K" )Ը;7vGhuфH-4Xp D^Ն7̚Xѹ _1{-yiXstiFEDj 69"/z"aߨbuH(bgI7J+^v[{L` ~[-*6 &M]MۅTxЁ,jOrWK{`dbL~^RIbg <6rAض%Q䦅WvS5ӠgzJe$vxdKSjQ2-7:zfէ1rAKf }|MKt '"0T+5yAސ9JMo̜Ъ^\?>5ÖYJ.񕄞-%݂7`o<"X)ܳb #TsDgS+njGM%>9Z4Ѻ,?'WƷk4ФHƇ?d[M4Wo vdzTu ob0:5R6ӚQ-MYLA~wsxe͗*l ˫ǝ.̤ V FַPS `,ϿKT*ʝϙGqVXݲcjC#R ދf j PZ;lU2-R͏yR"c i EKY4Nѧr"l_/#厲P[Dw*>3VkeP/~f_#l8eZ1sF-~I3m9ň_E-$ Z~PcMW peWt9'.i'e/0d&ѩ`|&XL(h~mmϮ&s'>;Ū]Yv* ?c\!5j~=j´q jB"hT/v(Um" sATr^L$R|'X`ZiGlۭTU{Qċ=Z8/= ',9ŕl&7 VZث;Zhia :)w1%Mk Uiѣϧd-8$q>~J⹄! ZG|?Bh3(Ή_t[ %݈plL1{»o0Mi;#pKdq҉DmOdm"Q}Pw"l` fp`ؤ+ 9v֎}S fbUU{. v(́uVN`o+oJQ/SOQ\liAk3σ\Br&,$*Pk2CQԳ^jo+͛"g`ty)*ZnT4.SٞlR49X6a!:oI+JG}ze{bbۡt|u)GB|Dz%6#_!x~ɖШi' Z yE1?(Sٶ>gOng1 ɛG?rײ7/,B8:g/0۴fDiٛNk/c~U?(72gp;ejPur>&u s3a}7eGݨӜ(pZ r`{O\AOé&ίa M8*`T-=6^` ^W.ʢƛBFCm1!Frhf]9ㇽyʱ") mj!{|6N kbhyn= 8ˊ>Is|3Fi. RDLF8chGXwCYLĕgn|b߁ H0;ܨb0bV3Ʀƌ6/vT7 QUV=zkA2]{(G=@vIBD#pzD$,10so7I*GDN]v2y76P+@L ss9#jx3<ԏO?BgX٣",v1cȰ-OuE1vw-cyqɪo<歳g&%7+Fv+i*Fzk͗ӗ8꾚.>PM ~6w|4UFj=}NwPy 3МFnq 79[T>.- qZ%XdVR/0GÕ۱uȣ*T76A!E?'~ ۖO$kVa Z1Um[C=NMᓔ%6:-43 w^y̎خIkLF;>~p-wS=e#x@}!rD+' K\p_@ҦJ^J^1~]$2e2+rTx7w-s}xXҾ!eNԬqN6zh/IVإ" :6紵!tޓξ쁍pJ5J2 Fc!*ҾO4kb7ȝ^>> %Zzeݸ>w ГvU7rbQcܡ4^klCv$ȜE*adjTI>ܛ g3-߸I o#Rsho5);HJ*4/ʔJjmqWf =9h߶ ol+3  Iw+'L:v{PJp:QmY~܂6)˨q @3\ CePѪ[΂%@T ByƄS6`։Uwַ[9c2MJs~Ie 6a jhNE|}̇̆62<gVxQ. 5P'-zh+ײ}9ߙdň_wcSeT&XJJ4;I ۖaJdY̐F^ʢ7Y07M,|J}XG ]3jaU *8ߡnXl:܏d 挻ɄC٩OEi@-k}tPksc%{o pA`3N̹<'tig_Ӝ߯8,0<|[թu'JV/,J@06WR_\PE:Ui~ɂ;*c3/O6- 9\P,BTw<0#ƥu/"uPCƜ˹/I9~7ĘVOfJ !=S֛D= 6}n+~VVloW3:~Nr߽E%]:3yZqG4 [s俓nf4^k|\w)Qupwq(Y5بy$fbD7/@ی3*pЯ/-h6Fۿ˕R%_#@t鵷cFα꒓dөmsP "[9$W $dVeH,}LֵSJ^Iz _!.Ko1Mv6c 푱Wyb5T[%fHb6$q?.6q2G~) jD*ru S'LG٢gE8eƄsfkx. uE@I'"MprQ~7C2C=B,JEV5gN7\lJeMV$&q:a-KXbKm):$S/RXH/J֗9EݣbBA/~%Qm~p `TÁ$8?Ca9R03[*p 59Q"0%׼1U_&Y.k%ȉ6Q#5E\hl6iv"&"lA ]64}hlpD>E7mx۪OFM tX$ε`Yo,1T2lCtV|,Fђ7LdH`_d:>oj@kz=,a;ǘAvw\xAJbf-*ˆl)T)qbBͽXܞA 7&.Yi}*P!7-)f(Pm<@͌ݼXbs)Aa Z|^\ÅuwE : 1m G{Yѯ 8ܻig@"Ui^-YNcQ|Ā,mD3+!SEGeē*>RSyt?uq_4Gx mZNX}vn1Lu-O &(RFɵw]u:a3m'9QNn?! [|qȰI'Z\ S/*۩{x>:XhWB77a>X?Z]]~;=Nh_R-i>w<^v+ӕ\ܟ]j9kXu+u*[ kYՄ/q@\N_0M?i|mtk\m OvVFjoCJ~B >Yr)}G+<6. n)A}%Attn]45ߡ!uN\s̩5cEkUn&:`̩PM7p=& 0=?:^ԃ|M]"Ɂ`Jd2yv^}iݦQlqB VBRl)q_5tDOuH!E/(vP ZI2+ޯ5堗Wi(5lq[[_Ba,N ;(\K#LZS G9Wa|bnKNR]?;4DI+Zz0 PI?magD߹%]5#M>(#D#TSt{/# ÷`nx2sp"/'ϒW?"fK kn\ACv!P#FYV+ dW-PXa[/.{Q7`mWٻnbaj^8$!5U`U |^L`῾vIYӦfmvmeV@ `G~;aĉ J2R K&^+悆%Fx_;$\Z0:0ryd.Vψ(w/E6G#s[,hʎi¶4wd "w}E,)y:({C`oL }!@۠:C as_>JA=\3lZ忖 Q$9>w霚EP=8]4NMWu :ey&hwzA>-@3qA0Tg('Y|qC2l^801MeBfL{̆d4Eađw8uZO9J{a]ldf}Ιb@6^:5*mW#: ċmYi?"lDvlt"D\FzH1;/N)%9n╄bw B".)vg^4}{Qј@ g"nV|ThU1e*:_c@Οd"7QSwǹXS[Ӡ {QvQdi1a/GP>SJ}D>OX?dӺi.k_8) .| ؃ "ݵVzD]{u/P9X$Zr]Xdhd.r6iaXMd5 f7FI E=ZYc>1t0`2Gm{BZq{v; Scg\AхMM|=^Kh%މXdC+9#IsAfdv6(@X=X\aRS>25G-6BN޾A6KIny~ur WV27TE)!*ex|k\[ֵj8LjG넭k^NSiczm,4B2="xl*όCOK5Glys42"nWrx +7,IeP`MICngkWEۻnN/Msh 3 ^SD`DU*K+t_FW-1U7QHxvessp%mUoDW$dcH Fl^'/jm Hcn麰 Nw"?.="H^u? ^B5jR>c8gU,*x*\ d~^˽.ַ@ӆqȩsyr0e1ō"\li`vgny,ZWԤm3@?'b2ݎܺƨ2WA0,6@F==~W8ԍUU'z ND⢕M hg˽'_ߥ^AMȬ1Ҡ d\xd8$b#>~PxKm(.}7 `%<8/$3 WIF@p1Ft\NuΜҷF#-0'[4Iw~J//`2C^Loa⟗S#*a͟o@X DV.3ON?Bpe*lbt8<94 QnNPeAH?PU. uXLxc8EU0K;6_aO/g3Lֆ=eMN.qGxSݹGe9o|ї>kOH1(Y` ċPŻoozIK!&bsZa &D+t*s0̓j Y'̖Ty]3hH<]]yqR-$Q xNb[εFi3ODBpy#e3LHv.`/ܰHاx1L{H2G >,deFWlw $h9ɘx vל5;(q/[ '@z/PB}v\'zۼ :ˈ͠;2Ř'i8N]Y=,JLϮ8gl)nM{3oc `$~ی a[ Y! LLQ b"W\϶n2I] &o~sX f+3xWRjBHοMnNV90kQbM"GXm4*h!tS(Mv+ 8YO~;Q6vR]"jI{Lkc sJBIY~^2$=ʑM=|1;rF3s0 M5bU/VjA)װݽ%44_[֙쓓(:Q2vX}cC| ."0v%riZӫ0Ǩ(ׯ!.plJ2~A$-ߣ9*O_.fa= L˲*%aTFjvS' ]|[=|P&^cXQMrx "l(d44@7A 繱O3*جirx_G|ѳD|fXboTB8SLNn)ق՞HAC]P9&߼Έ| "5=nM¯p~<;IaE3!FIL eG/9KjNN`GAfӀ7eh~fn|ݕ/%B\LR^!KzrP^X "0lu$u֠$U_lI]m[+h2v\84p1V!bQnS4W 5)22x3ZU_O]ʠlǛwrIf؜Q_`n~_dKA2`ԗCs ڍnEzL+B\T^!±G`R/$+6c q6C"q7 )`ӛE^ӠHCߴeI7Ű@[tZRă)馶EvS[A ~Q4*Ni+EWFs+ v|2Ir\}<;u׃<YxMFoQG k6L ToeHZw=w{u"wn>1_Y_G&:Ӆ}K˨G+u4A7gQkMp&TZ]yo0҂6pq|V~4csA{.*bk>B9^;s>F-e}hf?Vv/iCOKyUlD$S;l h*ZUtLzafJ~$}6FFqO̳jt+<)w&%(FYZ -ЅV]~fd1|n"Xy%z[>=+p vm}`Mu0rCE^%{,\JG n8aNi /^ʖ2ʺCbYprmIԘi27܀qB _0'=g(ԫw_:vd;A9>HI qO#_>8mlMN:TSQeRE߽u0XT3DNJ/va>VvJh\׏Oma;TQSϩ1M~>A0r@,שʌ2^鬽Mix2 80o,Kt*p0%l*wiɫTZrvbp3ju5*PfݿNM&=-ȗ|qLS<>X@TZ#(f0>@Y,7s\,Ǭ}/t!] EVBNn'y%hbY5z8 v$3T .y4$(BZδ^D!/ڄ *<\ElL+[/BCT^[ bįygն=[CV69J@@YhpFT;V$4\T0`}BNKsyt1 =Ʀ 7pFi/´ٟA [ ZzJeCV/,D+u\S!"Q f`--#6܀K r  Sf˟ZU1lHОH>eRd(@KgS{D jMPUX [+5R%~q+GBAxsL^$|K%׉im ;rSQjq Ad@xbX9  5<:KޝL:`mÉy'm t?ܪ%mRoGj oo{:w8-'J,X' oT>ѓi7ݗ+z\@Fw>huġ_efC=Cax)#ۃ.gM>_4'=],hK:#b3 /pe^lҦמQAC+z/٭h-]zy>8 E-\& j݆ AQ@W3Hfk{Vu uӵoaf7ʴ+lNMBPZo@}z9V/Ⱥ_8廿Bu5O|I2NU9|T]6<+XnToaJX6@mD[Czs$S;~y}Op3^0D"fJuQAV<ƆRFP6WBlUwӼV%)2{uBRF+Up,yܔBFapq3iaH@]w#//KE4]B,)FS4%8\3 |4`$uInTR SHI]IMG EOUc(gvHsH]W7*Bt5 q &c-/tȪ ?xEq@ n=$G PN\V_݁S\ օW>$~)};ρ\L[ &f: oBMذ߆NX_w)q<`O=- &p'P Tf|տMl%Sye.9@j- V[z؈(1(u$>4P#_ks*.0kpE5KM?حbK"G84jSJgKtN6e]`7m@VJ`5Q#gxcUi'0z@Jj$,} ,W }6?Ai:[ zU6m qjofҗj9?&?w[]6;BJL_ҳa[׀wMBa(^>Ӽs_<n("^J KR qFl|t Ĺ Ⱥ=?+i蚺*n׮{)^z*''-9Rr[6"4=ە܄!|H:oVlQJM"~SOJ OR@vA~w槀.fd8O"/"a;n7;vEH6Kٰ#3w)'G?EvVn1jXpX/_ ,g@0. 'V֮ W.r#9Wk/hAy HRv(?Sv%_YSyA0U*P+USK2z7u CS"xb!5įY<ο- | Nf,* hiKKIYAw Hhs5,eX/Mѐjҝ*d9ZG`5\lf䞬 aIMXWI,..O32Km>ؚ`SLmr-r}CLҵ\@PifrhJF յ1 ޾ qC. ְ-"vETgQl)R<5tPhJ7rq$'` 4qvULIMBCbK ]ϬIQ*'4-* jobK+;qD!pRϛc,o/__;~nlC|v|{WG馀JZ@)Yf$ tg$*EC\~[Z8k؛+&^[]RsoNPO2Y4g<56*:D쫻絬p$f nȑ B!͕NM1:MP1йsEzv6 dHOFQ_^h3T lŰ}@т1C%(Va32ܿ9ȋ⧔`'Pt>GtMv\%,Ôr+6]bWL:lQ^(1/m|pKJcH(7߬:yb碯rmt:I#{89ebg^05v2@OLHʉ;&:(Q@S35ᴢٯ%UqV\crZ9~ >.BGNwpsS&2tFÇ|?ED<M/ ^b" q^\B5;0E8UBkk~\Xj//IKH6e D w@FYۓ(a:ոk0"$۸lqT uo*V>3`Z5ܣy猩Go$S2'x _+IC1y̤.C*`SfyBn[4Q.z$Ys1sLR ӟ:ݧAҌ-w@t_*RK6nmC NNi9 sC0cS|7?/>0)%vM'B_7Ww~Ljl?~v$cFP kEaNȕ)frї Cy%tp / Es${NTc a ͵-p㠵۶J`B5.Oɬ@XZOcTT5UBAj00-^A`IX f ҋ2+:|`Z*s۹k0KXVbPE~PP uȖl2ZXrPC]&Rj% d1paJNs 3]< wȨ-*;Jݔ'mP CiGt˙q[,!Wx]nndQrQ1vfڂV_5.9Su(CZH]}* G ޠ]\ v?,Md>$jG%<9$Igu)բ8.GI8Gϳ!$u_@E4Ab-⸍/ w^>n}O\4G@u6)s[p<⏎@&z73Y2GsW,E?zX3@Go/|̺[?p^24|C""1Qg%y68H)/^ZdgJ4LGgU 5!"Fq97bJߙ=p_*).#M.NӦ4ʸW *۠`z}?7 70\7Hh7TB"0$^UYń^q* C)tl6~P =I =7~X)C~X6&E봀ps(q)~0vaf.=Z lJnY DV=Jm v z,H;HТowiګd o}70Fx!g=ދJ BE 9Y}D2)8/42S`l32E[ZUH. qa2$"{2D~:Vg7Dӛ- -EJ UE_)`| SӉ %ӳ0o2׼ z,srJbdn4v ]ClmBxhFZ3/@=x*BQV۸ 1:J%y^j}Tuc_1E.oByh)o!W$D?kɓa`Jt{뼓R^K`EhW9,x7@z$[MJ)hzzCWVjclu䲝"}X0U޲Aj8c4"ث8W"ro?w6 ۽A*6BT-pYu/Dс8A@tcheϣ&XTJ &'n,I>E!r㤠MKܕ$IY>ť;8 |¡^XLjP5)MF'wOvCܸX9uDzU][NemFn6uKh"tǞ'.KFt)` MpO^1鿕p/=oxWdkAa?1G 0iv@Jm}zCZ 9q1( x ] 3@#ǁ΄O|Tepul y#Hx(vRh!0l> Wt+LN0i%3@\.sq'޺P@t^8 (, M[}I@1U.\r/"A~;L y]B'>{JH+huBe[Y@Ҿ!`%V`^4 _ZS7mpP=N|}4jfΜ9cD|/e#;iT.Τ6N HAR׍KBY(( 9׎f\Jx&*#R+. 5, k +'Y>zDs$3ې&Y"<餩[34뜓a-nFc yyG<UsƯmo% 'u!!rh^ ~sӐ~p@hZ)^M÷^.*X1EQ释kE 3N~!oc7?Z#nc m~ d JP*77~&WkU:ð&Ū;K8OP&ț!hX {IkPz{v쎠8=%ם)tOW*S+C7I> gh[Nsl*V~C8M,xGJ5ΐw#szFUT/k!e/bhZ>PGwV `U.豈?k偯4~?#CʳOWAB#52X5)sAYEzUǹfZ!sCN4t$ 7&2i% { K3(6usf_f;-xvƅI; Mumjn<;p ር "U+zU| ^IEgjM~04m /ඁO܀8ˌfZ3HGE|v9wqT6;(_\γbdzF?V^8}LD~cz]#?t50j\ŗuL +ߪ*\wOx4ukx~ 1{WfAHaH«egg%"}xg{ĨSAG6^?J ¯|-$x9j+P?'!*/mhIJV_ N 3 `ڷIDUF/~KuYc xfOe%p*J#^" (v$gpc~r 69NhbzLkNO Ղx 6nؕ21 0Beqhq\Ãn0K4 v< <9b*\1`{ pW(Zt?/6Nq57b][<ԡ"vPdM.픞w]xrkW jD No)t PSчip=HFC, dB1u =yn` ֛OP$F Ql5>mA[9k9-0 "ʩ!4' m_yAn@w%~QGc[(hv%)i 苪C-ݫ=SQ2L\1[{@!!:¥;%o疱2tN͛Ys~wZS5ȋtƧ5jNowf #[48Y4Ql/ "ZU_Y!AW{z·-/WتkEFe>`W%>4sd9'YYt;FuI'B\u֌|Sfs!d@?f!M>DL z+=YDuJ I86,~|S1x  s A0IXԕ!pcߗrl3(1kw,G+Հw5te؎=((Z~՝ll엟3xԠmP%O&cZhj6ryFk^>JF8ch:w(j8^ $9wf7(KSUS# j[&AXe(EAfGYƽ'ưWgPr/-Ey&xm>W~,1D vSq'=~v?E'UXoiny--"mZ.hݞgr7paDSA{. :T^qڐv߰1%0}&ѓB*uLU`)x";$$;adΆ.E:9D$C(PЂVu' $K0q%FLXu݁w fN@ fT=OՉr1(|Y bZ0ժўI,MCiOSh/;#msāJ*wtή %=C6Y Z*F Ej?TNm. xm!V5~Ckɾ= 15ZEq̈́#sOJgHѫl `GQìhq3SE~@ٴ +mdwA ?5[7i`>6[-RÑ$(Is@Rd[7lwtb#)u:d]=[ql&qŨRі#ߕUT̃9"X; ԇ}v1MH[IvEɀCjP4ǂJ) 0zsW[d+zc JO%S>Nv3Vlg?LqRߖlbE92FmwZ }h%_rFugaCʢ&JqC#F34_b93Ԫy"4Ƴ;ѣ r*C;2mͅl{BbZLdIJ  / yq1q1طU1xNU yEyCmn>hr]3hN;k$  &mgˇr%Z*9 Q $Gg@vS\<"Qr,i*_͕fya=9z{S*? }ku'lEijV2C˱q/4 \.Uv̼+jVkwDp-Bd'\ڡkwZdA˕aݫ/3 ܹLt %59@(SW˩,)]H~۵  $03eNE?̧~ى;:Eezr1QEt&UA\+e9C{>EyD(oH~-~^U!wב}pq_f"{H@ڪ3ū qˑr{ZTK\TbBTN(uڐ)|*}I0(} "/Xxל="<-!ak"<Ȑ"0n(:ɵ'ͿP8'xRWCRڻ VGxʋKcT+PTMIbN #/_V&^YY|zȑzP]`N^ӅrzT1W2ݞ-x ]A/B}$F)!IWF;L&2۪otA kښuWaIN^v!zIi¸@aadZ!#Ԇ|BxyAQ"=ڨ"ľgh+d݄6.B0ZTH@FR#뙞vZR"4:$VX &A?}0~GT RSдK7q@}V&l~sRY.V9(ΛLդ#uqS\|KXIz #,e6|ھA^V`yXZu8,r'JH7&M9IAEӳZcdz>\xYt]*:ys%EJ(>HKlrU;@F D)"kEEBgô?0$ DB& M2(+QWdꧪ6R~}#$BX@$ =80[T:<;M1&SKd\φAnlw匂j|VCk]`)Wdn+b (`49w[4MȖ ̋Ļʆ){ :#j 0KQOPCF` Q o7sxI;-w}eI+b @^[CWM*0h @ၦw6RF<:_D~zB'tD.!|WF%/͙N4Pp%ˉa|jb8AL˃{l]kK%^l/8> =nWi7})Ox!sJ}f:4xN91>ySRO|nW6kXw-w9?AJN -ӟ =lƯŧUQbn||fWb0:5 >Gl"hAsVT y-H;m~nb al]Ν\$VlE;UR$XuXv4A˜;&K"oLG3]%tbiΡfLߝ0>b5&~$y=ȪH Д 0C}5FㅻA 4Ӎ:2s0Wj徱o'ZBNqۅ7{V&+ ыts=z$OeUqܢ\,ߐμ̀/6w#`W,L˝lQA,(rqQwa~"٢H+-*g\Qz{,-lm?x4)KjJ\s4xȳfٽ[ԹP]xm"!0@[ªCLa+?N I*p{`^Q hH\CS#y"Huv<]ġ, (M9A {BA%1?Dw*>@MDn)fv>+9=[`vrEiƺK2LJڼr>C/C }ނ,H3p| O ! k)ԩݶEΐ8 ! {Z=DINQ˰ѳfJ_ɆA&Հ8MUFilD&E\k~o;5OWg@fR@ {tYFl  :PĈt>ǿTeؠ ϓdW81a8k{#hݐ玻B:)]ȧ( 0el $$}œ?|H k1@*s*-;Qqh}i\c4ˁ 9'[be.8G=4g qFܒHI&3?I9\5j[;ïPDcӊ*ԑqSP\ehquDsXvѠ %c*u3*G?  K>$͒ y&GJ u `UJ*DҏVY<-<'PE0[xjsrEæ}xZx*"q=*H;' dv=/xva4BD O\u`^P PMO )`b~hʄx"6c&c'.=qEg&* uW^.Μ >R}9J?>jgS$ 󈌋TW_ʢz2\֞%?rH y&j&_ l l-t$=6Qo6%tı+kca#4q*?rךIW4nH ȒnP]]yK4Jފg'W:gOvЁtN42~TL~*Wˬ Iw3rLJ}f!vh+0hpwZSW~S9htl!]KјΡlŻ>7ЋVZD ̊q$lÖp@-qىp3;R Xk)tx|{yN;c7풸i8Lhta$YK<4r 0.W@#SX Q$|`O m;quwK~NR.kz z6[I)&%oy2h[dH5:PoN1 3fLl\zJc74ߏNߓ- q/M}axnX Rό%ؖ}woľ2>mZntZ[f8GX^fK)SQ z085)XDtA}lLh!d&g(;̔tK fsͮbؔ"::9WB"b_mXY 4 BOZ ?\ˆFRnڭ|VrppO}nyI K#C0|VE|'/K 8벫F4/!II{_y#Rt۷ +[ g޸/+nӻuɖ,FtלCH:Tt]τi`Q̪[S1&`= )(wU:f"d/PR[f q8;'+'6~q3q _)_)u@%tPG|{>;A f {Lg6l+P55h-:N"i}HĽD*.͊ pl*mv?B1bqk<۪*ŽytuYW"P`2*H$GŏOwoIB@ o!j4$-.3)zPP?n3/AUb^wkuM&8Cw_@ r'}^#V\A4'i{*=} 1X·&w$TC> aGHa|PY=B(  3/ggݰoGdY]ܪ=NY*Q(myw=_pmtrPU(7+T9SIR$(Mk(B1 ݭa,a^`_0ظ@1mG@A Bm:m&z Xs" Z.@|9ǧ4o /]bbģLc&-])K=¡\4l{;r0Y?M!&6emiw|(\r I"&V(q$iLPf!t eoaXT_GRGkC$/_fZ1.txRbA,g)k3~ԏX бДP#t=<