#!/bin/sh
# This script was generated using Makeself 2.1.5

CRCsum="4044933639"
MD5="f0f902ca4df6a4519f5cce9fcaa24102"
TMPROOT=${TMPDIR:=/tmp}

label="Vince ZSH config files"
script="./.zsh/setup-zsh.sh"
scriptargs=""
targetdir="mkzsh.fN3Fp0tA"
filesizes="15879"
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

unset CDPATH

MS_Printf()
{
    $print_cmd $print_cmd_arg "$1"
}

MS_Progress()
{
    while read a; do
	MS_Printf .
    done
}

MS_diskspace()
{
	(
	if test -d /usr/xpg4/bin; then
		PATH=/usr/xpg4/bin:$PATH
	fi
	df -kP "$1" | tail -1 | awk '{print $4}'
	)
}

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.5
 1) Getting help or info about $0 :
  $0 --help   Print this message
  $0 --info   Print embedded info : title, default target directory, embedded script ...
  $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
  --                    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_ARG=""
    MD5_PATH=`exec <&- 2>&-; which md5sum || type md5sum`
    test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which md5 || type md5`
	test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which digest || type digest`
    PATH="$OLD_PATH"

    MS_Printf "Verifying archive integrity..."
    offset=`head -n 402 "$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
			if test `basename $MD5_PATH` = digest; then
				MD5_ARG="-a md5"
			fi
			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 | eval "$MD5_PATH $MD5_ARG" | 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 | CMD_ENV=xpg4 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
	;;
    --info)
	echo Identification: "$label"
	echo Target directory: "$targetdir"
	echo Uncompressed size: 73 KB
	echo Compression: gzip
	echo Date of packaging: Tue Oct  6 09:51:28 CEST 2009
	echo Built with Makeself version 2.1.5 on 
	echo Build command was: "/usr/bin/makeself \\
    \"--gzip\" \\
    \"/tmp/mkzsh.fN3Fp0tA\" \\
    \".zsh/zsh-install.sh\" \\
    \"Vince ZSH config files\" \\
    \"./.zsh/setup-zsh.sh\""
	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=\"mkzsh.fN3Fp0tA\"
	echo KEEP=n
	echo COMPRESS=gzip
	echo filesizes=\"$filesizes\"
	echo CRCsum=\"$CRCsum\"
	echo MD5sum=\"$MD5\"
	echo OLDUSIZE=73
	echo OLDSKIP=403
	exit 0
	;;
    --lsm)
cat << EOLSM
No LSM.
EOLSM
	exit 0
	;;
    --list)
	echo Target directory: $targetdir
	offset=`head -n 402 "$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 402 "$0" | wc -c | tr -d " "`
	arg1="$2"
	shift 2
	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:-.}
	shift 2
	;;
    --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
	;;
    --)
	shift
	break ;;
    -*)
	echo Unrecognized flag : "$1" >&2
	MS_Help
	exit 1
	;;
    *)
	break ;;
    esac
done

case "$copy" in
copy)
    tmpdir=$TMPROOT/makeself.$RANDOM.`date +"%y%m%d%H%M%S"`.$$
    mkdir "$tmpdir" || {
	echo "Could not create temporary directory $tmpdir" >&2
	exit 1
    }
    SCRIPT_COPY="$tmpdir/makeself"
    echo "Copying to a temporary location..." >&2
    cp "$0" "$SCRIPT_COPY"
    chmod +x "$SCRIPT_COPY"
    cd "$TMPROOT"
    exec "$SCRIPT_COPY" --phase2 -- $initargs
    ;;
phase2)
    finish="$finish ; rm -rf `dirname $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"
	dashp="-p"
    else
	tmpdir="$TMPROOT/selfgz$$$RANDOM"
	dashp=""
    fi
    mkdir $dashp $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 402 "$0" | wc -c | tr -d " "`

if test x"$verbose" = xy; then
	MS_Printf "About to extract 73 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

leftspace=`MS_diskspace $tmpdir`
if test $leftspace -lt 73; then
    echo
    echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (73 KB)" >&2
    if test "$keep" = n; then
        echo "Consider setting TMPDIR to a directory with more free space."
   fi
    eval $finish; exit 1
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
  J<mwF28ċK[bS>q6qܿ;+	}Iz_Xyۥ?U|T=]{σZCxn v|'## x0akD}	tc8׿Tw5 df~s7jߩ@~om`3#sAuy-]k:TJ?HF0l\$  1
͠\s0J̹%p=I8:q8/y;l[AF\:t-=0Θ7οyܸSNخAe4zy|4KY>g(H탓QYCcIA鑤(0|Jם$/R.]1@U٥P.#/Xn UZewNICm.uMHCL5/:<sCi{_]ի^ñP̯j7vPTqTl?
-ʱk,XkܵRc͋W޸7RwC4g.\		A}J/hq):j)mBJYv
'6%lon$ܳgu.cg9by%At<\K'JJ͚6-<mcX*ES!skThʎ"mcg!--i[VwY	00<3=PJKjyz!d^2I]X¿AMgL}ˈj\taGs>.Vsj꠷.<TQ!O`\ 7r(Z)D+?{MzvcfHՅzDo39tPɀpMݘ7}GŅR3/7"6]DY<-a0לc@o0(l\MhQRu9Ybظt[*+NV/AÀoq\fF*[faw
mb%v`RHh)m$0bPFc1b05mH8Sö)JNxMy}8̲hM+QKGz^e6k*\jŗ(뼽TTn.08	(%CP5lΠmpLuCDfD8x2ܦuttp/S^~mbtdZ"$$p,\yp1x['Bz[.[tB5PpWȪ2`U_(gpfd4Hϣ%	{[/ڃiDӗP*d[\wcǩX430PwLFp-F#fHvSBX7VHL^\c8eÏ숂ߨŐJq7s@:kr{2QkB$mE
wk6xȂwv^I˩XN&Uv4bj)/VQqH-BQMl;7ixW/tIDOtAgE	&)Q΋KC"GצMu;u@ha-~J4ȡ-ȋh9ʇz $%*aT,D,kϛ42?7e'8/@{jL&\MOr<gCv>&slߜUZI(l$5%_(t1
DK
RBؓ&*s{IwmSƩOD)
\(GT9 	j*:a@HY)2&M.iaY?;t	NOtH*H"JBI8FO1Oۦ;>.U|F4tL:`
f0v϶ 5i+]55|sf<7=.ύU^|	T{KFuVH'LŅ@Whg,џbg_kjfnK64%¢MnF1&Kj&!mSjr߀/G_gh{d^Q0)龧OGǅE3t#O]`hr%M7boh'B}{WC[U52fM4UL[p=Ud׸E*!)HrOo DzI+Wvg"Ǝnp\Ek Vә)B@_ڌ'BT\Ib?m0,ПC:Oۚ.I|9\	E~{u	Ð^`F`PL2v3	V`(:!uj.쩎Xjt^T&sQ'o
z(A:'D%6ʺɻ]B(؍>hrZ~n봢k[NkZ[iEYZ(2=E!pP'$OOї*/kFָ}'³b}&y#'FGY^ȑAǿ:WLܢV;n?v/Ŀ{'n_A|i4jM?n# .~R#q_ڽB
?Ew4fhn!$ǫ)-2b9={zdmbp*霥*!v~m7k$aҰKO)J)-H!E[=M__B7,1S|V"Ѹu2:?睅gVل]r?#:{ݬjd/J~~h#:<(*˥qh>buD$*g<}¸A!I؀<`<Px^D4b:S uuD3/OjvהԻ0O4۝Ƶv5Xam{׫$>Xv@\p,HJM+|
ye/nm[f ㋅J'zJșn.X'<o8c%=¢mBmmK?龂1g((S]rC-ƧHYBjfQjOX{kbezVjVB#)pƉ)&K0Ќ76%*iapYqt=;;k85=T/"D=ir89]st%5˥Y
tTh4e`!MwhĠA@#30{[
p|(%n/܆OwSU9Jw8>w5
oJ@CPt2l[YLC:@I]P>{h=C['	GS\%qi,7JJyO[JôDk)o/g$QM^FMʪӑxI7?sϿ߸ըkoYXJ<RZyӣNd4lk#Z덎qڵ4pxn[~,gIQ7c)AvoLq16k ȎTWjA"s>aA)Lܑn5$SqktDǎ4-
n%GtTLg-6p	frO|(ܰr$>dО	8'o`+a"i`[ +˿(0(MXTCp0K]g7EHĞ-Oaa5$N(⪱6P/ə;(ڤPu e@Á0f|hR궇=xy²4Kimߨ-Xwa	-Kp/cggѸ-8\8)??.ԫ7>~|oBܐ^M=.#ӳZLjf6ԜF4`>RuK/];ZjY)B^#2._񫉂60hd%m00nAN%1{z;t?o8?Gvwn̍P	63<<;JF&Xr2ZGfEn+$si?f}^x߬J(I-pM9-iA3N@wpt8#CCZ.?zR'wFFҽ+qgdF?g;PrNc<@~v'<%G}{r~ԬW*`YIVrk!@7UeqQNKxZ!\k%[
~e£h
~u_+_|mGX>ai8?9t+y4bRk.e?@$,4_/?	5i'(YvYkX1xRڇ-iGqf7^8T3ȳI;c bn9P5lhFnߴI#$f֛>OQgrR ^-TQB.ԩO"q]? twS}rmu9`=Ja5J!(Ϥ>[>K	k7zW~5|j_tzNŸ|,i0g&I߆ȭlSuSrsC`2)<~x(,{-~7\iL_=/N	݄l.rR/Eit2HOPI29DW͓JƢ'٥=~mpeq1i\t'.$]&Mt =ĩ=q޸#~3m8FJGRb,%ꪔKut^x:/;*vmyOCrАlZmu[|EVk~ymV^g9L9i,<a3$!!^uGGR&POk]j#Y?7+
!GݸXX1΀a9V_pcfG/왉=9#YuϬ}|C2i7?Lt6XC\+eX/IңU,=P.&%P/3=?/Wy%zӺ<DT7%.Y,bZ'eoӤ!Y~_f߉ esŘ"Bg2V#6l5!Vc)6$a
BĖyth$ie8gyT>]R̕㕪HҲ[ݔ;MUtd-s	52I7ɶxi4.'oF>_5CȎSb"_YeHOHM	n|S]F-`CؒWrrk1Q}'=uYcv˟<%±e\\4|>jo,#qP
#=U?QKI
*GX}>V?&Yg
/6ɕl( ȹNUv0FTȺǕ#tag$:==Z|l2!޹SП7Ҧ9s\hXQ?WΘGe5-mMj/xi>mعH;af-yUiM~&6rG}%*(k񜁓b9AߩT&TWUYR錙*}T7_hG
XLx)_6|_A.lj(pVs6!D^&,)B|qֽe?5]l3F02u9fmYdQI
%%B]\q.'f}[S{XzUJb~Yp,)2ZK{SAQq 7$%	/P8<:?bvRx(Rr2RJ:JVRzPR%h0ARp\
HV'OʟO|<&+ps^>[^.*bu,
%w>_u7.Je0-dʞ-(%q=8-Tsll|YFh
i:mf[ۤ:*|l)Ƈp?ovy~wپƝɿEC{x;q\9TAH#ѡ.%a7Wh"]Jʦhw$ok_Ow_$N/b/?E''2C>CD)m7-\060RTTn耆| Ŵrمo;zEuP*Vvſߝo4W;W_Ϯ8u'>7#VhtāI8cgGVW??A+L5( [q}L''Iz?wDs]CѢ!AȰK>>p#U$=}qx+Z={_D^r=ßH!`vkc;˅܇|$Q}#~=˿a$ݥ(,nMMYү)EpĕiDF&hq?2\lu7swSq] (㋋˫>~Ok;K{1N	DNw`w,ӾCDVa:FbBѠvC+YlmgE5!'#qW[iX(Mhm3C`e(Y_˜eP4+d9CaɌkA~@?P#2NJOZFMGccAf;s=(@0l1N29n3;gutCM=;l!Ow	m7;k30tg>-HF¯^Gx	_ZK9<cϛ!ո^Y.	h#tGbj`	d0f#;21({_0gz4ls&d?SDu[Fwxq@cbFeDZƨy.huT͑Upd-Z[cYg4UTS[eͶaMD!\0l*fbf稶aƒ\~4x
vpy%ڧ1%s;u]i`wݧ@ř[=%Y	҃3ʚ)n:pjNH44(bn[$̰)Z]u8UT;7k4/(O6^x0]P56;䎦Ro;-FZ'\Wq89:2<\$JQ Ĺx1Ҋ,zRBQ~Vfy;*,O_WWUpMY&cI)fLur<)oOQ|mм)Q,9ؚu8Ա5U-b1BX>76^)?""$ߔWʝΛ:_;==E@'_ذ<aJ_#9&bQMļx7l$ډsEC``A$_TK3 |xs]|Nc/k7pBƱKro"+z]Y)|yn/U>}74k;΢k>S|Ǆ{n*]x0L>! ^Kӥ$;TGg7J>l?gi3пIƣn7bWC5Ȼ?
}s~n>k4w WL"	Ye.w4Xvp_Gq`	0XNMuMV=G4uY9Lf٠i{7;G_δ(=o&>eZXs1-/K@@h-
q`FM~gsmo+9a(ݯ@l|g_!v$\o}{Sy_B+Ҥz{uyN"lp췇ɼeP:BӄW)҅@_(Xp~#z^x4R*lQ)>O4KC]N|vam^=Q.}V̋D}?:^pea/SPTT	2m)h	]9y
\m<>TWY%GW9piHV5~=ܺ QY^$J+38؞%炉-B GeHpc  @<?F IgqVk UXHނO!( ʁIMڐ񱙧B
Q[#{jxz
ƖE"yVz18~(;ŊwM2E{IB5v.-)sp N7>N`,j48#u#nVwVu)ٷ 1j
gd%'͐4YW붕2pҵ_uv䅤zǻU"_}H͑\XF3pߨ{η+Qy}o+{1~yx8xkt4b"5?{*vՁ:J>J* gK4eUjhvEۛ
os2,i${g!Wa<5Иʚ\pF8##7#}8tOo?H|]+'A	KEs
K=-4ZW~x}'Lkvhjq@ԼJ+=IubÑB# N.i*eα(ùLtK#%o@9AddPYh@ۤcr~#ҮR@x8`%QБuvOm]g.Q3J^M3{9^(uT%Z1:4fx@@TG)s<ti#Q~DÖ́@/mN5&ZH!s*9Hu>6zhc{-V޲M!j4XkU7b>eT/C4Vvm0ٴFxcO4$&Wj*U݀%ƅ7ηe?nԕ'Y G6!3
AB~#
oxVLJХ9AфqSKWL0|{\!xwHSg%f.AhQpx%'2lF~>*)^]u"mi,W Ѽnec4hR&\4cΐE?Dλ78RY$QM'k~8ؚ$jGM!I ԡA!J&AW%g[HhnbIR,ëp`n{<2Ҏ%"v.+%!\U/lvihSOYg윓R4h7LmlO=sR+]5i	 SԚ>/w{pʆ9?L Ս@!2؏;Z-dv˼0vo*RX*XYQj&G'	_s4,tRɂΡ<(o^Cs_Cyo)E
kq&?n?zk?Z0Q$2nvL{_e	A<,?Cˢħ!P,:1f	va|Ct\)sOoC.|0{9\rFݰB'8]C/_Νi2,>4?C1rтzw`Q5gڟ3f_k?|&{k^NM 8c@.3I 5aCR%\$!ae0bqrOx.3	i=(J $_,값#~&3Br5cE!l`̄CBvB"b͎d)#a`ٌ@_rȢpV'0i[Wչh1kYF#F>֞CչLv;0eP쏆{/'5jH~T˧FˢQK[4ӖɻO܎#̒!F>p)ʁ	{x!ew}~8`\ME"Ixy(0B4:=u&mjM$DcSٍ`JÑ@-V|B3Hm7	Vo̎޵ëv@b)ګ=3D{g^#7<8&pD'!Q$:	NJIt2Mx}pG>aɑAZ;#=x|,6IIulw=&%4ϛSIQ԰ǅ;4b٤&'J
JO :65sC訟(N!?mKNNSyn~N4(y8QҲp&='B_MqSwAx)&_}-"i'TO<g)i'R9&+^MWfHIg70;{3ndv5J{BU&.cԽS}Vq+/ԳI${gJOU[X=S?v'7moW%u&`kӮ8xX+}_?wڂЫ6yk%5!LW5^v^nu.'t'$!r>Y2LPŵx3\QSF*ZǪ.%#WJBլrEǥn?|ۦz(qyw}_.bdܴ1}˗ivk!{=Q{{ѻ7?	ÇME2
_%Y^6v6RM=ymZ|yȓ]YMmBŸb>Ea3x*~$z3SļP vfo~o/U_ONi$H^F+Ɵ~c½݉Ѩ$Y`۱&h?ԕΉwj5Ћj6\66qżq켼izu`:gH«::n?)}!'?խZN)_q?_ODTM,魌eU:|Xsm76b;rQ~nlfӹzVjrwV	?K뿳>61r6Ok;hnNcF<+/V.%NOʥ,)\h]yP<OUi)U/(Hwf׌gyK-UߓaKJRS̏h&т.;JВ"sqY|wo.[sf[tn%IxBgTCPpJhN<%jO $.U|NE}<4ؼ9\kLk){:xYc,¦'lah3ti4\jDȢC]H*3,94ZRHu:RuYte*i Q*ȦтF+
麎t]G}]<43y!CB&`{>iU_T%d\{Fi-U&$HJZi9@l94ZJU5mW-g$Osb$=$Z,Yg q6HZM6muL佤؋<EUgz㚚sElݸ!z]xlGD(עz@eoIjTwn=16Ȃ$Ks0m>'vYg۝}hs_|YϦt+*1K^iK5=z.kJ
dK(["Yq.YIiN3WRZoC?CJ=PaPtu1*'!IZ'@%QZl=V'֛C?ЏMALKtIĨEHbF:H: Ύ$l|@CynMQRu:6u~"Yea M]' u+E,t)<{je-Hm@99YyIsꓪ:)a-h=?ےh)'EWH`Zۗh}=%KOϺ9=k>o:1ngާZOiYfĐ(yOhwAeXD}E4M۽{A=!J{P< ,>hԇM4ӗq:zѵ'OOzd%uyS;=޽("{YIJ8#8ȪՌՎ!p\Wϔ>˼2(ܜΏ(ŴWTE=K^SF>,+!U"K_+r0wU.rz(¡%((Y:.=Si] g;{usOf+g4bA2uȽ3Wr`}k,Sm+,``6`b&bt@Dֹ:Ww&bNsNObffy<A	f"Hf` g  ' 3 ?OCf"HƀNf"F봀N0`KV!f"FH"lJE y`}R9'Th̂rI39HΤmY KV:f"F3A.G$g\Ե)c G 61%`+~X-rc@9@r[ s	t.-+ wd;/Yـ9- c$[d; G/ @ /Alנ/XA_999k&݆й2uҹk0NZqZ}6Tȷ[-|@E 8'@#?c1 g9: %Z3NcvIJs˂ /;#5-MGHWQ$Q
cf"F"ߟw [ F!(>T*\	* @ {Z-O~l-?w2_b+w.}fZ-HstnNtLml-[stй:c3:c3:3tGSM|NGs+fP"!u:ԁ u;h[9-$.>!k#$!nܑgΐY&bN贁-sLh  rK`
>~I\:+A:9УGA郤Ab 1|Z[{M_&X @8pb FQ b FyRU4 W6 F!Qb !C8 !C8 W(ΐ$=q+Zu)kK5:5p}£a&xk!JDF #e<QXmIxaӾbgAP0mC.rHx	WC+ |7$L6nyc9ϑ]t:- [$ݔCj+[-bB؂ L)-ȭ=ނAh׾gdй@Dow`>ivzFʡ@Qc18cp*Š9'_r [ F#T2-#lD>"=P-aʥ%i#W{$gs [ lͨVH$$#%?p #
dN4N-vVtM!8}־Gkb8- #PQ$+3ҧI־WGk }O%0Irn:m$mFK;dYC;dmWt5%B 9!FN9!ANH,BBZy(AJR3COТ}
hX"yD*Q(J9D9T*
9BiR4*&	{=ELZ@X{AjQ;}@g:PH$sAS\2)$$ I!$rr2^@ <I)HKsEA |#ȷ>|[wNQjC>P< 'cTY"kCt\	Q;Cmd$7(57H-Gj9
l#k9:8l
>t/ mхM`o<E!'L&@-yMpxhC"Pf?<4! pbdmg-^,Une}Y3Æ02gx:uEvOZ|'յVTݧHiK}Rj(CQꛨϪJ2=0kOq9_뜱hWsߍQn8~JL˕%#ɍWFEUh*L´:ml[^s&7^6}⩵zӒ2!F	O3z)NbL+4*jixrɟW]sڼ~&7%_/,J_C/BWhnqGV|Fn_Vaʊ˽wU-]$185gNoWY1x|qϒƼoD;I[V~'BY.ÃӰAKFo^+糽ǭ!"O6j%D-A..|vr1WeWJ5j xZM_5Ge;6u/J6M1AWEmYs5!5GP(x"
~94	qU9_ȗBO-Ily^dGQMxTc㕟D'mgDn;-mW[l{x]i-Ba>_Q-*.F*gh
uS~=^۸۸۸۸۸۸۸۸۸۸۸۸۸۸۸۸'noC.A @ 