ghc-scientific-0.3.7.0-150500.3.3.2<>,ezp9|w;w+XD>%P?%@d & T 1=lr|    0 4DXl M( 8 9 :< F G!H!I!(X!,Y!8\!d]!t^!b"Tc"d#e#f#l#u#v#w$Xx$hy$xz$$$$%<Cghc-scientific0.3.7.0150500.3.3.2Numbers represented using scientific notation"Data.Scientific" provides the number type 'Scientific'. Scientific numbers are arbitrary precision and space efficient. They are represented using . The implementation uses a coefficient 'c :: 'Integer'' and a base-10 exponent 'e :: 'Int''. A scientific number corresponds to the 'Fractional' number: ''fromInteger' c * 10 '^^' e'. Note that since we're using an 'Int' to represent the exponent these numbers aren't truly arbitrary precision. I intend to change the type of the exponent to 'Integer' in a future release. The main application of 'Scientific' is to be used as the target of parsing arbitrary precision numbers coming from an untrusted source. The advantages over using 'Rational' for this are that: * A 'Scientific' is more efficient to construct. Rational numbers need to be constructed using '%' which has to compute the 'gcd' of the 'numerator' and 'denominator'. * 'Scientific' is safe against numbers with huge exponents. For example: '1e1000000000 :: 'Rational'' will fill up all space and crash your program. Scientific works as expected: >>> read "1e1000000000" :: Scientific 1.0e1000000000 * Also, the space usage of converting scientific numbers with huge exponents to ''Integral's' (like: 'Int') or ''RealFloat's' (like: 'Double' or 'Float') will always be bounded by the target type.ezh01-ch4cSUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Unspecifiedhttps://hackage.haskell.org/package/scientificlinuxx86_64AA큤ezeyey;febb9011a868cf127528f51f1c22580d37eca4c919dec1485ebd50441903ba9d4809f8a687a81a714ca99fc2a9a366d3fa5dec4adc284a5e026c909da924ba53rootrootrootrootrootrootrootrootghc-scientific-0.3.7.0-150500.3.3.2.src.rpmghc-scientificghc-scientific(x86-64)libHSscientific-0.3.7.0-3FlkBJv9lypJSluEch2pAh-ghc8.10.7.so()(64bit)@@@@@@@@@@@@@@@@@@@@@@@@@    libHSarray-0.5.4.0-ghc8.10.7.so()(64bit)libHSbase-4.14.3.0-ghc8.10.7.so()(64bit)libHSbase-orphans-0.9.1-c9SWeL8IJjH2h1UCckt6-ghc8.10.7.so()(64bit)libHSbinary-0.8.8.0-ghc8.10.7.so()(64bit)libHSbytestring-0.10.12.0-ghc8.10.7.so()(64bit)libHScontainers-0.6.5.1-ghc8.10.7.so()(64bit)libHSdata-array-byte-0.1.0.1-K28hjVtnMmk7as6rZ7LlwO-ghc8.10.7.so()(64bit)libHSdeepseq-1.4.4.0-ghc8.10.7.so()(64bit)libHSfilepath-1.4.2.1-ghc8.10.7.so()(64bit)libHSghc-boot-th-8.10.7-ghc8.10.7.so()(64bit)libHSghc-prim-0.6.1-ghc8.10.7.so()(64bit)libHShashable-1.4.3.0-AzG4Pc6M4Qh6F2y4DtKgD2-ghc8.10.7.so()(64bit)libHSinteger-gmp-1.0.3.0-ghc8.10.7.so()(64bit)libHSinteger-logarithms-1.0.3.1-xsL5hmMYGlG65gkrXlNN-ghc8.10.7.so()(64bit)libHSpretty-1.1.3.6-ghc8.10.7.so()(64bit)libHSprimitive-0.8.0.0-7GvTqDWvNsdIftJV9fdokB-ghc8.10.7.so()(64bit)libHStemplate-haskell-2.16.0.0-ghc8.10.7.so()(64bit)libHStext-1.2.4.1-ghc8.10.7.so()(64bit)libHStransformers-0.5.6.2-ghc8.10.7.so()(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libgmp.so.10()(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.29)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3e*aa`O@_H@_;^@]X[[O+Zz@YdYZ1Y>@Y.@XQ@XXN@XlW W8Wx@Wv[@W]NVVaVZVVU*^@U@Tfpsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.commimi.vx@gmail.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.commimi.vx@gmail.comtoddrme2178@gmail.commimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.commpluskal@suse.commpluskal@suse.com- Update scientific to version 0.3.7.0 revision 7. Upstream has revised the Cabal build instructions on Hackage.- Update scientific to version 0.3.7.0 revision 2. Upstream has revised the Cabal build instructions on Hackage.- Update scientific to version 0.3.7.0 revision 1. Upstream has revised the Cabal build instructions on Hackage.- Update scientific to version 0.3.7.0. 0.3.7.0 * Make division (/) on Scientifics slightly more efficient. * Fix the Show instance to surround negative numbers with parentheses when necessary. * Add (Template Haskell) Lift Scientific instance * Mark modules as Safe or Trustworthy (Safe Haskell).- disable %{ix86} build- Replace %setup -q with the more modern %autosetup macro.- Re-generate file with latest version of spec-cleaner.- Drop obsolete group attributes.- Use https URL to refer to bugs.opensuse.org.- Cosmetic: replace tabs with blanks, strip trailing white space, and update copyright headers with spec-cleaner.- Update scientific to version 0.3.6.2. * Due to a regression introduced in 0.3.4.14 the RealFrac methods and floatingOrInteger became vulnerable to a space blowup when applied to scientifics with huge exponents. This has now been fixed again. * Fix build on GHC < 8. * Make the methods of the Hashable, Eq and Ord instances safe to use when applied to scientific numbers coming from untrusted sources. Previously these methods first converted their arguments to Rational before applying the operation. This is unsafe because converting a Scientific to a Rational could fill up all space and crash your program when the Scientific has a huge base10Exponent. Do note that the hash computation of the Hashable Scientific instance has been changed because of this improvement! Thanks to Tom Sydney Kerckhove (@NorfairKing) for pushing me to fix this. * fromRational :: Rational -> Scientific now throws an error instead of diverging when applied to a repeating decimal. This does mean it will consume space linear in the number of digits of the resulting scientific. This makes "fromRational" and the other Fractional methods "recip" and "/" a bit safer to use. * To get the old unsafe but more efficient behaviour the following function was added: unsafeFromRational :: Rational -> Scientific. * Add alternatives for fromRationalRepetend: fromRationalRepetendLimited :: Int -- ^ limit - > Rational - > Either (Scientific, Rational) (Scientific, Maybe Int) and: fromRationalRepetendUnlimited :: Rational -> (Scientific, Maybe Int) Thanks to Ian Jeffries (@seagreen) for the idea. * Dropped upper version bounds of dependencies because it's to much work to maintain.- Update to version 0.3.5.1.- Update to version 0.3.4.15 revision 2.- Update to version 0.3.4.15.- Update to version 0.3.4.13.- Update to version 0.3.4.12 with cabal2obs.- Update to version 0.3.4.11 with cabal2obs.- Update to version 0.3.4.10 with cabal2obs.- Update to version 0.3.4.9 revision 1 with cabal2obs.- Update to version 0.3.4.9 revision 0 with cabal2obs.- Update to version 0.3.4.8 revision 0 with cabal2obs.- update to 0.3.4.8 * Make bytestring-builder's installation conditional based on a Cabal flag.- Make Group tag consistent with other GHC packages.- update to 0.3.4.7 * Unconditionally export Data.ByteString.Builder.Scientific. * The bytestring-builder cabal flag has been removed. * Depend on bytestring-builder for backwards compatibility for GHC < 7.8.- update to 0.3.4.6 * Made toDecimalDigits more similar to floatToDigits * Introduce a special case for 0 in fromFloatDigits- update to 0.3.4.5 * Support GHC-8.0.1 * Support binary-0.8- update to 0.3.4.4 * Fix build with integer-simple. * Improved performance of toDecimalDigits by 13%.- update to 0.3.4.2 * build fixes- update to 0.3.4.0 * Added fromRationalRepetend & toRationalRepetend for safely converting from and to rationals which have a repeating decimal representation like: 1 % 28 = 0.03(571428). * Added a Binary instance. * Various performance improvements. * Support vector-0.11 * Support tasty-0.11 * Support criterion-1.1.0.0- update to 0.3.3.8- Remove ExclusiveArch- Initial packageh01-ch4c 17065411780.3.7.0-150500.3.3.20.3.7.0-150500.3.3.2scientific-0.3.7.0libHSscientific-0.3.7.0-3FlkBJv9lypJSluEch2pAh-ghc8.10.7.soghc-scientificLICENSE/usr/lib64/ghc-8.10.7//usr/lib64/ghc-8.10.7/scientific-0.3.7.0//usr/share/licenses//usr/share/licenses/ghc-scientific/-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:32273/SUSE_SLE-15-SP5_Update/b119840d585f2761f7bca483dac65955-ghc-scientific.SUSE_SLE-15-SP5_Updatedrpmxz5x86_64-suse-linuxdirectoryELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=46d71bebdf83fb0ae62edd19af91a515600d5f30, strippedASCII textPRRRRRR R RRRRRR RRRRRRRR R RRR~&8G_ׯutf-85f9677b01d45392f1256a1950753382b7d77ee9d3f31d79f00dd029c37409412? 7zXZ !t/ˋd]"k%uPx}f <^N?F C_I\ 4F[iBE/gEoK<]z"`c b=,jXMs@LY<+JTQ&ԨR0*0 M"}O!3"n?\ޜ'a{"Rrxٺ:лQ8;2)kϳ|QK!ݙ)[߱}8j) :mIs)}qG?S(iGF@-:bhLr,QSѡP +ZhToH,6% ٜyX18K=^ `^rh`9>{Fmhhy"ȸˋ6s#AOݽfOuO:ƾYeҍ][Bs$Kw~+v::\9!A_֑ySTgF]451︵3bC$,3cB \\[ZJ0Rr~d)鲤ˁ*]82a 1x*#]{Q-w߯W}wn\![ aKS>x:f0qO50)Pς\si~MKl964O[qBSX5c0 FEt j-,`;Ŗ4Q{ hKmuY-*=)PXeb,2@=gqޙZ21Ҩ(+Ol PfBϡ{_S8+swi㥀Wvŕoz= p,(5ߤh`S= *T+`~FQgaZYT`a;2`"_{ hG#*łlG`+@pbIʀ?G%p:o&mcO)ƒSߟm>6Fglj~6-,zԙTjB)ƲXPO4?g ͷo.Q9[O">8:aI6Diulw3wTӌ*=89J T=ZMi7I" "8D`qf. v.BmW_C^Cg65W9A~&̍K,;>+hME,6}e2B7/nz~Сd-TFV=ǔٔ3UQBQW@0|8$Hk|(M|/=W80֜['4.[< j^Ws;M"!eC >{e;ryM{PO5ݑ i)p4G`O uOs6W3FKjGw“"L*ۨv"<ѩ6?$Xn=MtU̕rXErYOD},=P6KF|1ƙuDܸ|*QҔ͆=j68{\( $}ˊrI3g5`#iyK k%{-j$fjgzt_'<lTx+-2쇠9O_7(=M˭5b2Ʉʧ{HeT'U!-[ 1@q# ]O/)1/ɬZblT}B8`QX]5ES[E(S$լWc&,lWr+Rj{MȒwT%^67}*VVp0,JM+J//JnbŞx_BaZ"2%wJ=6 *X?Q{>4몒f@Ě˱qs=2d-l`^YE *Ж.iۆ۔f/Tz~ko $8hDZU6Ŏ|#@ P Y 5nW'D4bu}!o+ ØJI"Ĉgo[z>Lp|"xB@žmlr}eAP@urdQFS(qΦi\=M̼h{( QFl T$ŠU˘h' St*DûoL۲sr"7ȒzMwu` S: ‰y%VRy.=\T z\6=[GG{``'Va?XOG?K"z94/jS [ ´Jngb jCIYZDS/nCi:t%j#YڿrHu'b*,yi ,PB&vu6iS@4'"9kzY(8ir0O]=IAqѪ5rC 3y8(h`I:g/[$)ԾFL _ux.E#dx26a+ท!-K ëRGyvflc6LlR%{NWg,Hko*"-LT&!R!j݄Il_(nEԊiJ!3AQ" >_kD7ۨ(O!·nvKUhO4ƕ% ]H_֓'N]zWV'Rppㅜ \y^F\$h~_0;zql<5-iaI]חT0&?F( قэA$tI_BC<. CUכ5ljaS怱gd;i73qʏmq<WKX83ՇJX 9+2}5-[_7Vd$Dw]= lur,Ml#aXw)72i$ՒG#M_yܮ Րڦ7vD i)ԇ@$$py5WReY9 Ԇ6QV2J=; Tm8ߟ)AJ>y2;~;Bn6kϣ @R WΌVÉ ~VO,ZC<ڳ ]/Ӳ޴["^]zz5lFlDKn(>p˰|(GPQDd3&=On0 L l#pN 8pc&=gۘA³pQx_6_Di>q`乚ǵð,iRdkm`hiGPdP4Χµpfѱn2vj= &Xl@ķ}A(34O'( e9rw{FT'35JAU Vp'c!V bHqr71Nw۝ů IM?:XfyEקt%ΕI!G_º<_˂$;2T5(O}L4P}dn ke-ƶxίXh#w03{%\wvo^hL{ZE {K>;jkgݢ7hSy/+1_FNyHdhOSIqK6D۵湁C3@ZUܵҹѡWH,`(k׭ƒc_B2/{cGH‰?>3 DWU#>P[o/w |;0ux M@1 V :O[("% BUALucBE #T@l:0%UY$oS<uE+ MVtf" :,JCvS v_ן9m1N{6ɔdZV(&tуEE{x?]ȏ㖺W\wwZQn #F  H]ј^P9Ohtp)I]ږAP:53L:]mI *ҧbN:Eq%Y[B ݍ %~M]`$b[Bv+Ǘ7N tZ+;}4}TvОȩoCڣ daR/h%  u!JoJ/:ca^:f2&̒`8 p)nz`ˮo{38!Fpij+ߔ4:;Hs5j|lJ<G'(tk0fl\I5{橊TR[?`^E0MNFk0j tXf3_hlJy3.|ck= HD28ِz!APg93k ^+/1GOQfcΔW$a8J[aU2zomjndCFD^HĚKޟeae^i8%-Nkv6Y?T{e` a F hn둛vC%f =ԃ*q]WSDF_ >9LNTߵ94U%I!b~k*ݧwr-gAe$i%?JCX OMM^ (3i؝sjOyyS^{#Mx܏h^]Ikaj&}kW`N\-)YDOu(!KPDCJ1Lܜ4[JcD#hŴMM<>B%m:$kS)RrW/X?"".ŋ`UK㈃!B+TJjn=zMboÈ K*^Jhn|zA<$1,Bm9!0o:j;}CGM5pUmi_Y050̺ p1G~bwW?4a2t o 04W.Qw0A@x{tlӎqw@]1rT#uO<mo󱙼&p4C:s/ b"x T.Yʊ4Oc]+/+)з] \`QGixZk `<>g147 ԏWw⑚x0k(y5M!IM`xkNٺlZoyuc(wP SQ cf˘s_7ҏ aTF{AT}(}p5 0L!*4 T'M6ؿ`jR@{Ҷ@N`b@|2h'v̓ޥId"='Bߡ'"2A^W ϩ"5/? u}EX2. Zs:ǹ^M*eUoI1)V9+1vyye"ugqe*qz ˸V_"j<YLAWˏmϥ"wjdBv3}$>;f; /ѫ;ogkS*}g7@s򯝲g[7GObdAh8;\=[$ 2~}Ŀ:qoSWB ]VBU ϑ*]y*WQ)*?'*m4'brc*DSrEJ14Ϻr\ YsEsO_J0lM^cV)sll+ ^Ftشt.r+uω!6^\<ݷ_hO$7Tϲy.Q?"}i@ĬՔaFØpkfUZ'%LTJ=ZNO |D6:9["8P=Pza\=3r]cD Gl%}5q簉𞜿#JP5jbG̠.C4D my|A$C;D cw\Yk PrB?!/2}  yO8fou>ƧjP^t!Ɓ<Щ܉* LQJ3ʃoG,`j-;p`r!T6$d v'O) [wP(uYk[#ql%G~hs|.І m@&fM>I5: S{4ȉz?* *QQ~u#{*@~TFۣ' cQ2ot3QCa[:C*^DK rfWzD6?zp*Wݹ*mOx mmRԨ _!OCy"N.Qrya0/7xW]ٍ02"#Q?B8ZU^Gn^`).:ᚭ*Z\A#rbt{9|]`w '–%F s*CP̌-0+El>jrtyΙfd>z| J 8-=b-0ʄ+k;kp S[IAb[2~~εIW JTDYw t'Imۥddh30˗)W\7)!.1ԍD!Εٖ~ȓg5_Y˺e튙; 4 B6͙ pSQ7\3O=W{ {*籮 B JwGSf/#XuA\q;0 f?*p;/;5[oHDx%GFODE/8qՈwS,҃*rh7.vQS{hjE`uV!ݼ DTPX9GҦ:zf,];4ȚŹ&ge+$ ˓4-Ԏ<+isukg7*ↅS(4Yۑ~/a${-4|\Bi%HK 11N)`qMQ`08$b}5ˆE\c l;( Excm"g93q\6:+iq=§IKIGd+)u .DW  fRd|"+ ?I~n\`Eo<@V=W;U6U&@ڃx[u[x 0+vϷ8N#h^0 `SeVgwLuq@\-u0͐1HYv {TVt4G;?xa%&EDO ǭ)BMUo6w OR:nl7>GzDx^HUz,>r|4#\!ylH`+1#.mn2_TIֲX;*$O4Kǚ iHA *[%ٲd2PQ."6Q>^FrŃ88@u]'|`A[иn~MO*yc=Շ!i$ܘJjn˓ạN=;MW9׊×=6K_ѓܽ0}qUE,x x oT>hD~&s'c\\;}-GnZ4#IXW5,?/ ?9WA +jca)AZv2so&Dy\6;?U=ë&u@ ԻCTTX@ )E&5D5c!jaiQ^0!G=iklW؏0j(%4khqN2kM# D ,ҵ|b%+|} ?}ne44SZA4"#H2h SEݽ |ʌ>%{P$ UuLߵۖ4%gּ,Rxa~޻Y?:~.ẋ^>pωj+! k<}[{}*G3CŴ+`qEkŵm_ȸu܄X%4M2aSe6$3FWBZK{ìl &ۙ" MݐeL㶱|7ĽuN>rhg{h9Si+Ɩ Y[Ep.c\C5t5;( iKBtF:QYh aUzMkG*a+֒. \|Fer_5b ^ 44m"J 4PMbLW^5T[/oI4BÞEaZsg!1*3ؐe +vaS)E/.SF^4dF).]ء0g!̚s`Ҥ4plpl!yr]K.0MƁ'ו,<&]$ޙe (tI,{cDZi0gsjE> VLYo\ƚDw!KRqZ}ק0Zz9OSCcY_HZ-}/XDt Ѽlj)Ycu{nS*"n 5_5~htI?F0hyd_jZD~o|` ~qOݝo:ECZO@ZCNL }!GɄsOQ;ۈF66ft )v |!ltdN#扤H(aFC\FLbg@qVH)?ϯu/]>qؽGSo,!`=̨ċ9[Ef1Ӛ?+M'1$=,I7Ӎ :)h* z8O>*k;R73s+4/L0'=~噪,ѷp|;]3AR t`б -o)8a(=n;M}8~lnݥeyY E5Zַ Һ#|)D*6|(ű扃:5lca{M}ı.dxflu'h*ӈAplnHjޫpms!8G*LU]u%=m֤3Efm96L'N;-ڛgMhd6HE`:.プɟx3X.юd0! eMyZ,='4MQs.!{,j >>Dtpюu+\J õ`3,Z#k|daKsVtu]VʦEĮMH)"3F`cMե%Cj;J\^#p&릿i4 LO GwW;u Al`, 6Au "b6rBx;WxpޱL~xںٜ> U;&=~ٮ TH rh{ѩM](7_k6S,~1*&\QoVc]$~S]JbR.HC~,lV0?d$7ԅliL`!J~_zy=n^B `LUc: Z#779>Wfם1"q3J.=_]z$MȮ̷@xI]CA8שI|1'|t{$SIS l!mVV&3?U,(6= 9UQn-##vX V9Δ3,CM|m[o3ghFZ=6|h.AƱ;<ʝ}8 p76!RRAj>ܞY*I }F1"8^A $@B?l B3Q-<f_t d ]ll+@jf; c<2$sHXGznVy6c]3(XWu, Irq< Cc˖{6A2-t^ f⠡aeߎBS7 {OmS:{1z;%K0܀v-6@ Lz 3mZt3Vzj |sZ$\cU8OK+s±o= ~fcz W,_yԨE 9K3pH%{ǩCZΩⰦzϡ͕!_PEq:%uIu`aoxF@N1zSBZyT|[7;>ҝeW jџ{_ɪ gMߴ6"s谒G cö,)ܹW%V[ w֏c͈qԲ-Y&PCńK@vd%v sY_ZGM6i£7[VC2eNƜ/[g3;tb }9bbx;3}&4MD]SgDW CM9Ѽ)COm^)t I++N!\DHbHԩ]]+?UCfi"g(s=N6oIͫ>L}qSj\@W'-a'my#4 pďu~>ؕSzQL"jOϕCgCxM41uR\?hY2 9 "}A(tGg_Z¤ɼ֗dsMt wls,dDq5"9YoC|In$'%Fl@xvq M`L[}74eyM7g*TCGI>  閃D,`%؉gNJhyo8~ +!4h 0\N[>.Uya=xoGsN2MphHw;Lޤ,偩 GR &zQ0KQ~L}Ydا$"'}^Ċ68$ۗiSWҫ^+g-Q#s[tE.bW3ZE|lZ!7s8Twp_w9oLJ|\H-mp1n=#⁑Rn i ' !!^^ѿ 3OlX@AmJ KNc6ti"vLA-4Z6k̼`gJJPu,Q} gL  ﭏ;@%h˜ LSXs;`6AV6FɏHG~_ MڑBt.Z݁/Vcƒ5ZbI1KM/gwJÞw\2mI})70h*cn}W2Imb~`e-bku.w 4סDwf3y5en-UUcGvNIڸK47*ti##gQ"j GV;ځ.uuG?@,(.uzRցx"|On3F@0?v&%"i.N[>r/-v\/ܘ/w{,jʊvob Ff#6)[sH%.d,ۤޑɕ`QWh%tz>UPߥ+ufw8?ȃ6D1A醗x.颧-ÚC\ 9|0 VyIU,}䝈pWOcnq-DU[$,k3dHM4cИfџSthmB I|}i#SP^/934Ӂ+K6bH ={_"`NAI1ɀ &f&f0[`Vsi¼\BJ t;΅܉(񷣚C$Hx9x;=OJC)0?{|}!,b:zȞ21 Qv{gS\_t3+ dbWȫxIBm7.l~:yF{I!7-Nw _'/Nw%ݶ&]gM?R>UT-jXd+)qh{"~80hn1ou#d  HBw)9f¼ym ?"%dyzr[F4ߦ;p뚝US(pBɽuizML  vt7er ~ڝ?/,v72K-b2U89N|+L|xz~7XN| J|܂j1;0"O83ZմT˖KeR;fV]H]jt KHa&"V^S u#KC-\v w=q`, h#|Tͅ0-=&M [ n]W=|6{~Қ^>mׅ5P]]ީ`2@egzo3u螝UMC{-LϵL9гS9k&M}\MF5pԮ@$%v[iƭ3gN7TtWf:l6?gTxhF.@WZ$S'0x %k|6v]M{]h茑ȅO{' jָՠg'T; :Cфw4! Ž >xk^j&WJT]~f}ICD eBfIfoП~K6ƙ1'.7WTC\4C#'K :B1_\Z ]ȍ`Ygl>O}$/@zFl;#!uJIJ PP]P m ){Iĵw5_JEi.ۻV/^M1Vexe'of3 攝 uKSJzbc4M=ɚNKf)D[LcV/k@bky@Đ3(`MqaL@ WsA(3>̠Jlu,)}boXxFn> |O&14T#s=:f[{dhyR8)14V`> BY±3W}J&SCyf"N:ueFdnnV6ܣOS*Rj|_oOK:7ɐ:՜NMh[b ]i&E'`T ba Q4:v%D FD\DyWeHmei} hl`m .2,kkQTOXװ\ HcN_,xZy?ԇG-W.z,aV6ԱT$ͫ7n(NTҏ :*FĥksURˣ%'arO!]*=¦hz) N3I+`)"=~ 'R4F{1/*i(vtK`PM4_xFi=`E 0G5vKV/RIgj5T䘸="]Dbc@[B^uە819*ZxGTf`^ԔZcs0,׊@0nFm%pP2EaG#zڴ |k5,o@c^}~郷Ye~_tt q5z !f6INML BBw|A价SR Yf&(B>-&i+J?UOC䕝} V7a:@3L9@4W>ȷ0P E|?;rx=q6.KROJrOXOqm%ͣIೃZ$}[pj9˃;ÝDX2 a%[EvLHu|N%i'WC\|XBa~l|8;[Lr;O n4Ҙ3);D>Ub]Xu2`Y%ݛ3 tS/+dٗeEy׍n6mwh&b>ZaOHGF("U`rtۦ}Ra/=KH>Wh;V y15!jYmAvu_kLnޫR}sv4A9/0A0hsJt8A{4!(4I4+ƯL;<)یd k(™+w?mb`TyrbU9BJ(o]t~_JdթQv"WֹX[؍o܋4d2{ nV;5o46pO=%> YVgR*htaZU--3:o|Dh]qqh \Pp+d3sM'ڥ 6<="&09B 38<ˢɤ^CVB ,%e- l5#+"F1Gh% τ@Yv ^zв% &~i[m$EI,haܖ%a+M -8DrpqP0O*PКy"%T tQ4ɀ0-Yӌ*!{0c|]]mVj.6xTk:UL;]_ΈZO+*\2z56R-m4.hIl)]1 o_j=9,+]Q`˲˜{ߥ,cE2֢xEdDqwQֳ]_9ŏJGtbUp?o! N{ȝeeoԨŃ #gtU !_OU%{1phO?t7o\G%Ƭ3`%ԔWjXPɿ˾;͞UǗGk0Ȕ M[X&xg#.|hd`{ŕyrr_E1:t\ˉKrjL z52A\pMYYFZX9mjO-9\8ve27hMōN«@?fi? tl=w׌+ לn<0X51 4+"!ZI^'=阅ЮzT^T,þm։`K7 m#-U<ϋe2Ol5o1(c6ĝaetM N9]k2Lq?yhco0Q~ѹ4V5N\&?]o,6 9[jBa% >bKMǢ=ElY e#jSf\D=&j`,EHw&F% gd*0Ҿʞz;75[9қ&:`R}kZ )j#@kGsiHvX9m7ވ mP+0@`ut|ĺYV7`pkZIJu%d1!x k xgH?׋a8%EMZs=mF#%AhY0, ;āM#eF5whYb%[:}TCnunCv#j^S» rȍ 7w1:Sbd5ľ#Ǝav`>0mޕWN͙RnpxKFi'Ͱd7^zwd0<%+c6 M{eIu;O ˼ށg`VK;lj3EAlfjBg)ҕ&|SweyH[Z)  %ӽŤ=&{/}2؞rlS'BO]Ǐ$a!ykcG8(Aʆryr+;ݖ5s7jAtCmNp;Mt6^ P?eX[YJb8! ,SS5z )SV 3!k\/zmoy+( s& ֽ ngSڟӴG 21=o(ٸĊ-$x , 4‚{*63u ԻB;ۜKG8l+ЈPXuxE1rx?>Z&D U09Zq]ڈOTVIN:F'yxE",S*[Anx$df';^Kź'2CbĮ]M/ˢI{+_PD6i(~+l95i1,ϨrC?Dq628Q|;ɣӟg%NM!t810Ig E*9.E#*]޽rKG-u78YsDZC<$z Ru F C4Tvu Úm ao΅V#*% i+5E߰ fZ+֋NVTy9RƟQ,{X@-.u)زZZ[":Qݿj$ K\Nv}J, mEEgg ?y%,BZ^Dͼe Lr 5QU~\0wX=a,%(r` 3058o[\mać^*wdrիpP-UY ~㛇E.RYh=̟|m;B7lgFcfXg(7@%`ĻFk)Y0J'.\H_Oo7 IdAH^=&Xelc xU;F2 t5}-/vqQ͊LLfXD(*SL ⶾ|`3O)-#iM:tw~;G!utMTὕVQ4,5Nv.ZigXAw>=,mkbq?Sq:`*T?6blIc8 å2KY(4[mrU;˱ Xk?"֟ǟyp" xZdZN]N{ ip)QG!7T:o 0%%u_܏YDfHOp6]BBxuDfN! zx^t4J3R 8Z.ց H U*HNײGj|6`_3yQY:.p0qd}?aw`5F *7 !GFUF 2Rk~zE%Dhi~VCiC:pCi+qͱ%+bw1A9>.XN/Mo"fxI9' q)U}-ӥBLm SOVi8|=霈. DaJA>'1Bz=I\0U# ,~lr7硸.Ԕ2*ȠO*SJ$oe[ĵvY7ɡ=OH?#OHOXFG שId^F/rlLf_}3Vt*ׯ/"+Mw_ŝa“C1\ a9 t]A}k#HQlp|®t17+j;TeTq3LȴdU-y/|;]AT?> 5}+w韑<1fo'l5ju޹\?WܺG>KB<X7]ТT dvEfbG_;&v~j p͵M~Erxʽf̾%}mԦcn .JEuH_*<,6󱊐gw+LFWZi'G:Vm%!O>:oPaFrDZ~0(QyxFSЬLk< GlI5')퇝@†UX8 Ȣ x`FخOm)8iO+h_ěX@fݢgt";d<(K#ip`SC+Kj3ar&>3aUg +ɣc_YgOS`~^2F v#XmxtY/C{c~D*j;A>,=T⿔cuCKlNwT,Ej`;~ghB`tkgd掼y<$_`7?>s\8]}HweE7u$P f| F0X Wwsٓf8(2cZL}%q P[h bkܭAR0h`&@A${FNjc !zH 6&N(vہ*$#m3ݜ8drL1iMCIм,0XΣ~=%(i]X iEjR <1MA@,!%GUZӌ ueYS}"j>g>!PRd0kLPYwEV﫿TS:[Ss+yAe9nDepf}*c\CX1ӭ]qk:Z Z~%U@b,7,dW@~@G.x"h $$g+_ |+z( 42毁Y`+GQYŒ&pRn <#G썪x ɽAt.d=2wb3+{M} i=^<-0ajr G]G鮗7T86P3dWuĤfY YZ