#!/bin/sh # This script was generated using Makeself 2.1.3 INSTALLER_VERSION=v00107 REVISION=19e129efd75d93f8e0c72bcd3e3eee84c6fb291d CRCsum="1687274707" MD5="dd295020e5f7ef3f11145b13bb675ba9" TMPROOT=${TMPDIR:=/home/cPanelInstall} label="cPanel & WHM Installer" script="./bootstrap" scriptargs="" targetdir="installd" filesizes="26182" keep=n print_cmd_arg="" if type printf > /dev/null; then print_cmd="printf" elif test -x /usr/ucb/echo; then print_cmd="/usr/ucb/echo" else print_cmd="echo" fi if ! type "tar" &> /dev/null; then yum -y install tar fi if ! type "tar" &> /dev/null; then echo "tar must be installed before proceeding!" exit 1; fi MS_Printf() { $print_cmd $print_cmd_arg "$1" } MS_Progress() { while read a; do MS_Printf . done } MS_dd() { blocks=`expr $3 / 1024` bytes=`expr $3 % 1024` dd if="$1" ibs=$2 skip=1 obs=1024 conv=sync 2> /dev/null | \ { test $blocks -gt 0 && dd ibs=1024 obs=1024 count=$blocks ; \ test $bytes -gt 0 && dd ibs=1 obs=1024 count=$bytes ; } 2> /dev/null } MS_Help() { cat << EOH >&2 Makeself version 2.1.3 1) Getting help or info about $0 : $0 --help Print this message $0 --info Print embedded info : title, default target directory, embedded script ... $0 --version Display the installer version $0 --lsm Print embedded lsm entry (or no LSM) $0 --list Print the list of files in the archive $0 --check Checks integrity of the archive 2) Running $0 : $0 [options] [--] [additional arguments to embedded script] with following options (in that order) --confirm Ask before running embedded script --noexec Do not run embedded script --keep Do not erase target directory after running the embedded script --nox11 Do not spawn an xterm --nochown Do not give the extracted files to the current user --target NewDirectory Extract in NewDirectory --tar arg1 [arg2 ...] Access the contents of the archive through the tar command --force Force to install cPanel on a non recommended configuration --skip-cloudlinux Skip the automatic convert to CloudLinux even if licensed --skipapache Skip the Apache installation process --skipreposetup Skip the installation of EasyApache 4 YUM repos Useful if you have custom EasyApache repos -- Following arguments will be passed to the embedded script EOH } MS_Check() { OLD_PATH=$PATH PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} MD5_PATH=`exec 2>&-; which md5sum || type md5sum` MD5_PATH=${MD5_PATH:-`exec 2>&-; which md5 || type md5`} PATH=$OLD_PATH MS_Printf "Verifying archive integrity..." offset=`head -n 412 "$1" | wc -c | tr -d " "` verb=$2 i=1 for s in $filesizes do crc=`echo $CRCsum | cut -d" " -f$i` if test -x "$MD5_PATH"; then md5=`echo $MD5 | cut -d" " -f$i` if test $md5 = "00000000000000000000000000000000"; then test x$verb = xy && echo " $1 does not contain an embedded MD5 checksum." >&2 else md5sum=`MS_dd "$1" $offset $s | "$MD5_PATH" | cut -b-32`; if test "$md5sum" != "$md5"; then echo "Error in MD5 checksums: $md5sum is different from $md5" >&2 exit 2 else test x$verb = xy && MS_Printf " MD5 checksums are OK." >&2 fi crc="0000000000"; verb=n fi fi if test $crc = "0000000000"; then test x$verb = xy && echo " $1 does not contain a CRC checksum." >&2 else sum1=`MS_dd "$1" $offset $s | cksum | awk '{print $1}'` if test "$sum1" = "$crc"; then test x$verb = xy && MS_Printf " CRC checksums are OK." >&2 else echo "Error in checksums: $sum1 is different from $crc" exit 2; fi fi i=`expr $i + 1` offset=`expr $offset + $s` done echo " All good." } UnTAR() { tar $1vf - 2>&1 || { echo Extraction failed. > /dev/tty; kill -15 $$; } } finish=true xterm_loop= nox11=n copy=none ownership=y verbose=n initargs="$@" while true do case "$1" in -h | --help) MS_Help exit 0 ;; --version) echo "$INSTALLER_VERSION" exit 0 ;; --info) echo Installer Version: "$INSTALLER_VERSION" echo Installer Revision: "$REVISION" echo Identification: "$label" echo Target directory: "$targetdir" echo Uncompressed size: 108 KB echo Compression: gzip echo Date of packaging: Thu Feb 25 16:03:49 UTC 2021 echo Built with Makeself version 2.1.3 on linux-gnu echo Build command was: "utils/makeself installd latest cPanel & WHM Installer ./bootstrap" if test x$script != x; then echo Script run after extraction: echo " " $script $scriptargs fi if test x"" = xcopy; then echo "Archive will copy itself to a temporary location" fi if test x"n" = xy; then echo "directory $targetdir is permanent" else echo "$targetdir will be removed after extraction" fi exit 0 ;; --dumpconf) echo LABEL=\"$label\" echo SCRIPT=\"$script\" echo SCRIPTARGS=\"$scriptargs\" echo archdirname=\"installd\" echo KEEP=n echo COMPRESS=gzip echo filesizes=\"$filesizes\" echo CRCsum=\"$CRCsum\" echo MD5sum=\"$MD5\" echo OLDUSIZE=108 echo OLDSKIP=413 exit 0 ;; --lsm) cat << EOLSM No LSM. EOLSM exit 0 ;; --list) echo Target directory: $targetdir offset=`head -n 412 "$0" | wc -c | tr -d " "` for s in $filesizes do MS_dd "$0" $offset $s | eval "gzip -cd" | UnTAR t offset=`expr $offset + $s` done exit 0 ;; --tar) offset=`head -n 412 "$0" | wc -c | tr -d " "` arg1="$2" if ! shift 2; then MS_Help exit 1 fi for s in $filesizes do MS_dd "$0" $offset $s | eval "gzip -cd" | tar "$arg1" - $* offset=`expr $offset + $s` done exit 0 ;; --check) MS_Check "$0" y exit 0 ;; --confirm) verbose=y shift ;; --noexec) script="" shift ;; --keep) keep=y shift ;; --target) keep=y targetdir=${2:-.} if ! shift 2; then MS_Help exit 1 fi ;; --nox11) nox11=y shift ;; --nochown) ownership=n shift ;; --xwin) finish="echo Press Return to close this window...; read junk" xterm_loop=1 shift ;; --phase2) copy=phase2 shift ;; --force) scriptargs+=" --force" shift ;; --skip-cloudlinux) scriptargs+=" --skip-cloudlinux" shift ;; --skipapache) scriptargs+=" --skipapache" shift ;; --skiplicensecheck) scriptargs+=" --skiplicensecheck" shift ;; --skipreposetup) scriptargs+=" --skipreposetup" shift ;; --) shift ;; -*) echo Unrecognized flag : "$1" >&2 MS_Help exit 1 ;; *) break ;; esac done case "$copy" in copy) SCRIPT_COPY="$TMPROOT/makeself$$" echo "Copying to a temporary location..." >&2 cp "$0" "$SCRIPT_COPY" chmod +x "$SCRIPT_COPY" cd "$TMPROOT" exec "$SCRIPT_COPY" --phase2 ;; phase2) finish="$finish ; rm -f $0" ;; esac if test "$nox11" = "n"; then if tty -s; then # Do we have a terminal? : else if test x"$DISPLAY" != x -a x"$xterm_loop" = x; then # No, but do we have X? if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable GUESS_XTERMS="xterm rxvt dtterm eterm Eterm kvt konsole aterm" for a in $GUESS_XTERMS; do if type $a >/dev/null 2>&1; then XTERM=$a break fi done chmod a+x $0 || echo Please add execution rights on $0 if test `echo "$0" | cut -c1` = "/"; then # Spawn a terminal! exec $XTERM -title "$label" -e "$0" --xwin "$initargs" else exec $XTERM -title "$label" -e "./$0" --xwin "$initargs" fi fi fi fi fi if test "$targetdir" = "."; then tmpdir="." else if test "$keep" = y; then echo "Creating directory $targetdir" >&2 tmpdir="$targetdir" else tmpdir="$TMPROOT/selfgz$$" fi mkdir -p $tmpdir || { echo 'Cannot create target directory' $tmpdir >&2 echo 'You should try option --target OtherDirectory' >&2 eval $finish exit 1 } fi location="`pwd`" if test x$SETUP_NOCHECK != x1; then MS_Check "$0" fi offset=`head -n 412 "$0" | wc -c | tr -d " "` if test x"$verbose" = xy; then MS_Printf "About to extract 108 KB in $tmpdir ... Proceed ? [Y/n] " read yn if test x"$yn" = xn; then eval $finish; exit 1 fi fi MS_Printf "Uncompressing $label" res=3 if test "$keep" = n; then trap 'echo Signal caught, cleaning up >&2; cd $TMPROOT; /bin/rm -rf $tmpdir; eval $finish; exit 15' 1 2 3 15 fi for s in $filesizes do if MS_dd "$0" $offset $s | eval "gzip -cd" | ( cd "$tmpdir"; UnTAR x ) | MS_Progress; then if test x"$ownership" = xy; then (PATH=/usr/xpg4/bin:$PATH; cd "$tmpdir"; chown -R `id -u` .; chgrp -R `id -g` .) fi else echo echo "Unable to decompress $0" >&2 eval $finish; exit 1 fi offset=`expr $offset + $s` done echo cd "$tmpdir" res=0 if test x"$script" != x; then if test x"$verbose" = xy; then MS_Printf "OK to execute: $script $scriptargs $* ? [Y/n] " read yn if test x"$yn" = x -o x"$yn" = xy -o x"$yn" = xY; then eval $script $scriptargs $*; res=$?; fi else eval $script $scriptargs $*; res=$? fi if test $res -ne 0; then test x"$verbose" = xy && echo "The program '$script' returned an error code ($res)" >&2 fi fi if test "$keep" = n; then cd $TMPROOT /bin/rm -rf $tmpdir fi eval $finish; exit $res e7`[r۸o="{#iG.%rc+vd'٩,"!c‹ /wd RLn*K h4u~š<>lm_n6u7v{Nu}OFسX=?Y{^;V*ëJ_sھ5¶wږ#е=Mè~e{ӈx'~;_5Uvͯ_.A#`K&Y>|8ǣ߂[^]avČ[vҒ(ЫZF(ԕqsބ-bi8chiBgF(Q\; N2=x,'Ә3c"8|1#)2R쌦Y6$r%A12BÅ9-N BdvyoXmIU'٠3"}#R˃;8\Uy4H4.vbz٠6I*{Ǫ L3XNJ4aLX>܂~g~1]ʭt{lK:]0>q5twAh{1z~A{ΣC7k) |Og*Z* ^->c,D&9ӿ<4)װ`W 7d6!<nK)BD0ht?`? ̜rOK(cہ9<25 U0G6DFgΦg9"%gsCcckcss g/?0&/OQmu6gNwkg-ݿ;!\c2?iϡEt_17٩v" (Gl#r o41ل\3 )NFs3Ƅ-9ɽ{H 9A,Os1o ѐ"vip$'![w3iݤn=օCG}<ݥC}88Uﱍ#6oPX2 ,J=B:['M; y|8 =smK`|{za=Vg2a`ݭ_94Gj~]W.hoD;>8RE,:]7N߅/B>( zC\@ȋࣶ^qzy_P[g"~>83jfGi6xo~GW?g7Ww<8d{͗+f}f*oZ),~E>'=kx'_w]VQ mFhJ>O\}vD SixZ#' -ѶdѠv7oDp& jGe/EAz@FO#Pcu0 A,`4`{ u@)M'X|$~5!'eۂסSҟO.Sx@-BvN]q c#qbvk8 ɎYx7! X opi4QpF N;a! aw!U{\Ct< `8]K5Fa.n١a>xb~T|k]OΏk @\aMt \xP{(zO\#a^oZj5ʈN`V*`zM>hsFQBI̸8ؠ)190st+@>/`i,+WhhlSR,csρ.0b̠M@ J|ɞs l6cSYU|X);jR)y`'\ arH 2ۓ{`ubb͙*B*#lPVaJPh/]ЋGʜr,|0e56LZ(5Q]:ky!Dz?iwb+{D}zqtYOEƎzEAJ0w2Os9A=2l#%ꄶtĺ$.pQQN 5ׅ.݃04Lȣ75BSg`U!l"&KMvz+RZΤKrR܎bۙ$ "oxLIlqڊdU/1Z#Yݣk!$ZuIo`C L΀mĜE\mYc\; QE#`W"]r D;(BgEc arUYBmv#NdE_2MWd!έjnxɧFIM0p#=ۻ,vr~M`"&é`xg4PJ!& GsXX-*Ė5L*tu\Ϗ(;JÛ1K~: Y,UPac ,z6`+ @23xTkSCL +# B*+#M)0eQóDW@]N7ȁDئiS,e.ahxa<'7 Os9CqA'QYjOA "B+IJdhgT. z—2O.6:㾚4 qפ^\'WS߿!n܄BN v" tN DP Si|jJ$wY*eVSɚ:ԝAKYGȕVAF5̨(8ZÜg. ,+ M[&c6L? )a&Gq.H !Q=sSʮ^*Zj^mtT(Fƀ\<QnYrT|ݝG!yda3^iTg6@m%d9u p{x ̙}| -슬2C.I|w$%"첢0P4듸# M~hS\?$ WU`L}ey65L RnAi]@yu10=덦 wB~-/Sv d*Q#{RzIIdy8ϵlu:M#;2JIULwe*o!ӶZ4 Ϟn.:gXاpPOA4Ozq.YSF)mV.ՃL0fbS Q\(NCnK, f^}ie^ȿf;[x"蘭Y꽊V`s^l;:x4VBAVeOJV0->cꋼ430IFIiܵτiCGfr_mIe6j J"' {:8?OzA83uz%QuTNӏߦ2! 8I,95\q$ 4~RӠb<BlRf&2UV BAcx^` +]g'cK$m-nZ<оr2Mu>Ox8yU"ɷ(r,vQ] ,H^]nS=" xr^ :XHТ۝흗Wv5RVFS-|.zվ!:֍ ^ X0qC^PW*RjEWW4\,)/+)$)Wo\hPDy6j6[^ MH=++ڐKz# x% @.O^RcƐIqtx_Qֲbp"0 nӱnM{lmya)BLySyHEnqfIZ7_U*.FxwOP!A9I"׊i{s1]KJ}CiH4YWD(qI0)f&TN@D (b}ǘy!(}q[Rʥj!K }177}TTo@2?V_ǃ\YlGYrDpw}j2W.4 Y8/u; N@y*A{46oZ\fd:4zL%~B |9A'f5gzqZ-BtHjE/ฝfl YY]nww jcSd,l<~jz%?R ?iC}Q!tJ +6վ&hʲXV,DXjy┃6TCq| mrWm"H[ߣ~0ׇ^3uo~yBf3>ɵB'fۘ}i=Fa|tTBŻus0F@mhNߟU%`NsCM4wFnSe%u2~R 9 XYkT]QB!zOļɎP1`+j~NTśh ]0yII=F `.[Mp~-0jEAw>٠ǜ~*qP+AAGLBR-AZbMOKuI [O7)(NUIY i ,N٣7Qƛ2ӂ"O*Κ 0 GMbl@B<7> |ӂiĨ*Ԅ;y?]RtuV w^: Sv: @]LQYEL8K_W i7h.sP,O_jJ,7Tņ"YOVˠ;UE2&ˈ%;8^R kY(p0)ݽ[Qjbt\ -`yWA3ҹ84 :t~-߃j_TgzTmtsh<>bk3:شu 8J>L?GZnMFdIQ:Oɪ+zfBۗ^!ԧ |[= Nxtט!~|pL-j{]xkں|Vp \X5,#5JBUGGN7qy4LOals„+ UW2YƒO tMpD>Q8lL3ApӿWūFHyhZ0DHQTq2QdKT\\oNEjhgn5d%g?$ۛ 7f A LO/PF36™v-LQp Y``Y|;4X J7fqۻefj>{:A؟]q}WURiߣ,>?K=I"'rR&6n8ZTc4> qRy݈yZ=՛WR&Xf<_ך#ZAI QwF"^z,kՁm"UlDON%f'ʲ\e$rLl_d!}sQOPL}܃ 5 2p9^uG$g#ꪅ=?O9L]3j4>a׏h%FtQn\QI`n|5-H' U#dn!d: T‰".Zr15?PL8_RE4Nt3)a8grAkIxݬ-+vhZ4"F=!wښ辂Fc]tZ47,wcКG$:|93o`R)Qo,1ʿ1R"r ۲U"j pH}[}=zYΗ ZM+ԌݻıOn>2XDp9mB$l2|( 4>\偈D6bl,/}ߏ?L#/-Q'w2V/gyM}<DM^™7}(2  Bϋޚ$6K"Uq4\H"%O΋FZ)Ai63jYn)xKp*;%ؔ.XALș̣Op{=X-~h84.נsݱ6VMWƻWy)ujjTod +fԚѷlmo9O¾˲5̺dAjU} ({O`=\/3%JFY xzŶPsyc R[t`del(>dN9t| ]˄u6{v:*` Xj,De$ F4W;6<#Ow#><a5N+z(N_CC,hP{ٿ%=iERWBĽm,C [3IAU}{h?A[1s&TtdB' D<QM9GOj؊~> uEF 7$K.Ä eKV/X(!sB&_.iIp4}B[FCkD.Tz l{,Mx~Wd\C Ro\)2sQϓvQKVެ `( Q|tBhtk{ ɛ@o5P6N%Z /*oλe[ A vTt4~tj &Ptb)c J`&Z'j\72q}v{GJԌ|a-'mvi$Y5P"VTMsSDGP"  ~z|WSFu nԭ@ם,bgV䏇yj]SJf*-3>$9fWɡ[,z8VFOTh ܖ ]8٦ ӰP?͇ڟ!z'csD+;@t xj@[;Z9RWGt7PANPJ Wk]Yy, n<0bcDLPP1`+R@RFZXTAIGra}"acٽ2ӣש%u4#eJT9.CtwpJVN L$}F%-o0'4)J#2ȖVAZ0콷 ;yP5] ډ '3u3(wǑ˿K#Ij[%\io AfXS@oH1)?M6A +C K=(uSq"F3$3ArtA'D>G(q`V- -gMzg)~3y,Ϯl[Lwv\]0F:_H[ |[ _gYܖ~pWLeM!mg6Bs Vm{$ aW*\೤e٫ffca`0,gKͤSz7aHL6>;os%\qvwA ٬8Wbߩ˺Y9\,S+TI_EU'N(7 ƔFwBoXs$ٌq04&YOqm$뫉7~!8frgUEB~V +1@#uD"^`8HU;:B\sк S@}WN/sr5'h.T2' 0Nr»ꩧݱ֠dkZr״Մyz]x9)JUh$rQQza"JZ|nӓ/=B(BԦ>t!|Jitj"SBI#PN6`:|uɈ\|t2g]37Oa_cz`t8<AQ:"U9{@?E?t{hSNR?3Eۜ+ErA`VSa 5E7Ka|/~+Q?ŔbDIġVq_BspxTOܪWZӝGߪktA?hQ M'}v;΢.׆ bW7R:'`8xt+%[rCfh6 :*ďYa3 ?B.8YY)./0YbV9e0JEaT19,.\! T_w!Wo𲰔tTjUd0 CctJhq4_xplByn\K*l)-53-swKQZFhEv uģHpRCvPq&r1Y "=BhYBh3bhn񚁂f`KYh"sIٳMirID^ ewFq1PiguoApFD fW<[{KVyRĵgl6g9-#t`t;԰@ĸaUVtT^>:/3784v@G&xCu;Jk#9rv-.'|A/ʜlUbrSohCKX%/XЂ{n Lg]G۶2`#{ [vY\1bT>0҇y/MJI[_*T4 /]0m#)Їf5p$ՠ:cOܘuBDA(xc ҵ^DI};7 a)f~IÖ [8/'Z&ܑm=nb-/<(Ug5/Λ06c~7)F@z|CVEEVZJE{Qc}[Xs+[_-. *._Wg+muT̝eyDGG=4B Qv<`{xpD$%'/i1*l0mƵ k-·ۋqTN k N"Ʊ*mǘj|mN $ivN{ȗ&'J88xzM .\mPmD)\Xf0 dAm$0`l|<~P8f,3>AuRzam[5k^ `ȠWhQ6c,OYn:rB,VT J \LJnb+%js Y8(!  p>MGZsX@gh.}SRDw`5@F:~(s0|~= @]W@2#o]Nct 0Cx9*h?v}ulp1|kqx-D\L^(HlAsEluN D 'N0 5JE; g܀Ηg &֏ 7P|x+85ƨ8q]'fة224\p\P. c;3kZXOv>h#"жݍJvGmTSQW@"A6Q*I*.DD-jr<!E]<-AMm}81Vah J:TBnꪏ!\ 3$ 9 %E΃=/#ؿܥd|ۗօ.<߈G0J-mH|2|5SwV Fb `[se_ʏ?~ !Cq!c0pG~+%!NAT2Kst_Kת }mb~q=g?"*d o@])~XCZv~ e8`2!>-rLx:E@5v$&yAZ}Vj1uorV ;z pg4zq72IkOx&ߢ0@Qf+;|F+%f3uLJm&9o–l%&iޕL"v&Si\| X@u:")u!Wc ݏ.#j.,;䡠(~9JXPHw{k;vb5NƓ 5+g1W+zfFA2,!v2Dom^8g<2Jn d8xԖ1Sa)CT@pǙ>ږv|@9 Գx7f wTwV!Tx.hzӭ[ S7s}d7\`"" êē dqp,BD}N)ۚhj*miY @T*e7Yu:^^{@4֑?Db O\j˝v,]z)Bz:)nfh@3&d uloƘq(W+HP6b$Uze'&gX=P\Rʼb8kھ]޿iҟ2_ .hZՌVLН.7ڠ{?cʉZtbt=T|顺OvVeĐݤPP4zųn6"H,?Ě  N֖emuZ]pb LȅE7}]P zes@wcó??Ncy9d .mqab ᮁ',P$ʃUݑE$!1XiƥԵa92)2.E },շ5Z" dH8)C ؉1.t0x@џՒ. K{ btR=68+M/7)mH(]L88aCr8&XH$5 h%ҹxt}'ڸSOc &b򙐬Z׎t D|oE |:S&`] XzJ H ]ZAlΎ 0zt󘍭@<C3@|ЁDNF1h/}@(AëZ KßzL M/7XKql g*]N}ůÛ im)[M-.Z6])+E?Ft ťΗ BAe(|=_lO^ V-'?e=Z9 Ʀ𣗞?rV,zvJ^>dZ:dAҴP&i8iCw@ȇtqlџ̟z3mw&ec@$CB#lAZT9l A&>=O$p bڙY`QGuft`>|æfz4^S׊zc|PߤU[ӝem݆~2HpqQ ^zj-T~ bT=W]uN}u 6t׊bxj5`/jlǭƝ(YئMMх̀K8y}֛{lnAcf]9~WJDAץ D*ཱི@ݎ MS.GP>#۞ $"3 hpf>7hu(܍r!$EG-[~8=#0WveNIA):? fdf&@a9B0%^:!qG-uK#e|\+@w^(qz/),%g*kWc.Y4c+ Hj|6&Ά/-z_D| 4,3,xOoY$B .p5"Q~VՒ;tvU: e•{O|E|3nw6qMyrFi{ `x!g&[PyKײ:WRCQ Qa]Յ>m&i 6ѡ{gatZlAbf^M xaQAاp'e>H@B+ >8}@u{6FcZ4`!R6!\YcU}i2 6Ai~ո̥b),5>0u tY :+Oi߫ fօdHFFASJE hA_L:8LY #:/Tֲ0$`/z SxfŢalb/3[o;LZ:٩*9^/"EeY5wZE¢DS7G \j뺯@xa+b<@B.PgyUSo5>J)kl*ftɢ;_e˜qTDAP,1\a0}0S?fc۳ᇉO$+j]$= ?K2H4 UR(W 8wىb]Ф6ԎۋLjr\[e/bP?-xb+TFbYYe@oh*mU7ɡ<-}BCl%I$[\+ҥrw_[z.KϿA2~*`D 0"L!VqK癥qB"u/;x4DKL}Ʋ%9./,w)@ŋE*@Am'k3#T DQ(>Ɩِ="2Eoc;eDFZEլr8Q/sv WRBp@='бԥ|/!+v$nq-`880Y>j`E]r]n$>ALa?%wb0K9Di?3zb:yF 9JDR& OM4*(OσA Ю/ˠGߖOp|*-B l=)-y(|CnXb6d,0NwՋlc)}Um\h99f"^ҐfXaYV;Q%Q;Zf*+6Xn&lD~]7rp5Fd /ɋެ9rpeHRq &8}hBҦI v2VZGi8`x~ e;Uv}**K($|PebY;,HDrƶ#<IlGh<;Qv~$ 6Ź #m((Bg 31z:x;tuc՗cH$bCtင2tNK?5i )F pqZWrt\Ƙi^vYJHA\r!W^G1'#qK(McmuP:<)vš^~E[(!̱(=Bf nLYEV@K}X*^sOU ~ZWmʭz|"C0Cv~<>!-e5t:T:'*s^*12QϮfwxւ? 1lࠥ"|LiHas$AŴ kņTdVRV,V5Ő9k2:F|Rvt~t~Ga:0 [rD 7M1i!? d<%$} g^fc3o(]YE k)\BnuwĚ)c$ljn v;S.ЋWN* M E967llf#p3HۉJqQk\h\Qk(]٣Ρroܭ?}y MhSt6qSLY$PNܒ|":`N(A ujȤRMz.X[-gݶ$%ա8=LKTtAbgΧ?<}CM!Oc?p zdgd"UWyQ g/S'Q% 7KϿk뎯pWxxJ\S, 0Enzݟ/"T ygbTJ/@{}Uh迲5&"fx 3{` DjLjDd:EQ*'jH hp$|z%KRz0X"ռqX\41)CF0xRIsdlaj,a$2 'nҦ*벁&T=5t[˗K7l1%#"~Wl檵jTba*P\p{ ) bIMXK $KNU{+pyKj|p ;CieB}eX[C,&S%ϸS #Ùr f2#Kd@P/]QC?bʌ * XBvGȸ2nKGe/U/&mA Ђ؊xolIɃ! 0X S#WH*avKf2U]G6=*O M,`KWH~pn{ 5q۪:_?{rB4YFڪcf62wpPmQDUڭN<\\vDP)%1Ṣ!ܔB"GB./oim;.2շ_D h}vJiyC(7)__UUmi^韕jlN(Q!ZN ^^+uߧqg>z'O BHx: p.*Gl{0aSih63F᪽^^,Ζ\:{WKJTp\a 1jԀ219 2 C^\`,8l8ə=sٮ6O,kUټ>yۓЏGuW6q4}}c[k&=jKE..U5ԧuf8 ``X5x^]ަCim"wK :GT !I; llrSZT'ǵ{r' 7&xM1~K!VAK,k7(Uu-zW{QC[С+w`].,9b^֏ʵZˣ>|6OCc\ݰM"ŵ7e`YG_ӹ$URɹk괸ХqqGQ }eIҁbK4[4YIl((H٤i_"T2z7D=:4=UK%EPMAmvtK%&6QC4x'"}79Gk␳3J?1I͏q7QpAud.C|:*ˣQ$y.#Ss7ᙍh8|?(JV٘b js4wxM=W>L>Fyw|1bħ劣u=L!bdy<=@DU%D tDѣO{m͇iw .0?Nv՝E4у=Q\%%SV[< U/֘^e{ˋN?v׊{Yd S\=EnkoWRRZ_/|H֥&6U`l+(m?H⪲,!?fk1{k"5Hv7]l'q,\9Ivi2wTzpBh 8mk (5 59ƈrCҍ8ոCs h+ - %\ U.|@;ՊVpP'W@Z-Q!9.|kH so*l1N E -S(q3i7\H'Qj\4O6@ںqwW8^k46d3irN}Dá:֒Z E_3muܾ1P1˭-ۚN,Oh2z%MҐ+fqm^3K8d=b)xCQ=ěJx+\ [6v9ó\9,sY, ohRwA.$o=%tTTFKVC/=zVOZf0ej-WquƇhEf{.҃Bq;ugANx*h#nw"@誅a!= 0i|?}]Ѥ{LZ Ꝑ! q!6Aعsnu~W}kjV͍kh5no)j0C)]O׍wCm)Jg7:P"~m9*C: Юo*%( ~UkV]9;c?篻_={qo6oy\߼Tll_?~ۼv> il^{=&k}6{>͵Nw;e֝agfj^}>Ws\}>Ws\}>Ws\}>Ws#>Z%