File: /home/latest
#!/bin/bash
# This script was generated using Makeself 2.1.3
INSTALLER_VERSION=v00169
REVISION=984715d1dd974839b2234f41273b0fc479a0e5fc
if [ "x$BASH_VERSION" = "x" -a "x$INSTALLER_LOOP_BASH" = "x" ]; then
if [ -x /bin/bash ]; then
export INSTALLER_LOOP_BASH=1
exec /bin/bash -- $0 $*
else
echo "bash must be installed at /bin/bash before proceeding!"
exit 1
fi
fi
CRCsum="1136411795"
MD5="c8b9a23ba6cd6b1c6b72c21f1ae43c52"
TMPROOT=${TMPDIR:=/home/cPanelInstall}
label="cPanel & WHM Installer"
script="./bootstrap"
scriptargs=""
targetdir="installd"
filesizes="60270"
keep=n
# Set this globally for anywhere in this script
if [ -e /etc/debian_version ]; then
IS_UBUNTU=1
export DEBIAN_FRONTEND=noninteractive
fi
# Workaround busted default perl environment on Cent9 variants
if [ -x /usr/bin/yum ]; then
# install system perl if needed
( [ -x /usr/bin/perl ] && rpm -q perl >/dev/null 2>&1 ) || ( echo "Installing perl package"; /usr/bin/yum -y install perl )
# reinstall perl (metapackage)
( /usr/bin/perl -MFindBin -e1 >/dev/null 2>&1 ) || ( echo "Reinstalling perl package"; /usr/bin/yum -y reinstall perl )
fi
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
if [ ]; then
apt -y install tar
elif [ -x /usr/bin/yum ]; then
/usr/bin/yum -y install tar
fi
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
--skip-imunifyav Skip the automatic installation of ImunifyAV (free)
--skip-imunify360 Skip the automatic installation of Imunify360 (free)
--skip-all-imunify Skip the automatic installation of all Imunify offerings
--skip-wptoolkit Skip the automatic installation of WordPress Toolkit
--skipapache Skip the Apache installation process
--skipreposetup Skip the installation of EasyApache 4 YUM repos
Useful if you have custom EasyApache repos
--experimental-os=X Tells the installer and cPanel to assume the distribution
is a known supported one when it is not. Use of this feature
is not recommended or supported;
example: --experimental-os=centos-7.4
--tier: Named tier or cPanel version you specifically want to install.
example: --tier='stable' or --tier='11.110' or --tier='11.115.9999.0'
--source: Source to download cPanel from. Defaults to 'httpupdate.cpanel.net'.
example: --source='next.cpanel.net' (for public testing builds).
--myip=URL Setup myip url in /etc/cpsources.conf
--no-reboot Prevent the installer from automatically rebooting
-- 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 507 "$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: 264 KB
echo Compression: gzip
echo Date of packaging: Fri Oct 4 14:44:36 UTC 2024
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=264
echo OLDSKIP=508
exit 0
;;
--lsm)
cat << EOLSM
No LSM.
EOLSM
exit 0
;;
--list)
echo Target directory: $targetdir
offset=`head -n 507 "$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 507 "$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="$scriptargs $1"
shift
;;
--skip-cloudlinux)
scriptargs="$scriptargs $1"
shift
;;
--skip-imunifyav)
scriptargs="$scriptargs $1"
shift
;;
--skip-imunify360)
scriptargs="$scriptargs $1"
shift
;;
--skip-all-imunify)
scriptargs="$scriptargs $1"
shift
;;
--skip-wptoolkit)
scriptargs="$scriptargs $1"
shift
;;
--skip-apache | --skipapache)
scriptargs="$scriptargs $1"
shift
;;
--skip-license-check | --skiplicensecheck)
scriptargs="$scriptargs $1"
shift
;;
--skip-repo-setup | --skipreposetup)
scriptargs="$scriptargs $1"
shift
;;
--stop_at_update_now)
scriptargs="$scriptargs $1"
shift
;;
--stop_after_update_now)
scriptargs="$scriptargs $1"
shift
;;
--experimental-os=*)
scriptargs="$scriptargs $1"
shift
;;
--tier=*)
scriptargs="$scriptargs $1"
shift
;;
--source=*)
scriptargs="$scriptargs $1"
shift
;;
--myip=*)
scriptargs="$scriptargs $1"
shift
;;
--no-reboot)
scriptargs="$scriptargs $1"
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 507 "$0" | wc -c | tr -d " "`
if test x"$verbose" = xy; then
MS_Printf "About to extract 264 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
� T��f�<iw�F���_т���a�R�Y�d�(���x�YMc�q��e�o���� )[3Y{3��K,����꺻@3�c7f�?�JO����������'������m��hot����o�$Ql��= }���R��鳾�J��5t�V�C��ά�����4�k�L�G�����Ob��Ƭs�_g'͓�~ ��Ϟ�2���G<��6���6=?�$��n����W'�6g�7J��V�b��.��\��^ě��3�x��Gn&�7�iA�O��s�RI"8t�x�>��Ѓaю�:t\��Z^��{h]g|�x��I�\h��̌�d�� 3CN��"`�W�s��#��3*�=�uk�-�����#te��]֩?4�1
}/枭/�LkZfhM�[Iث �0⨥���`��y�Lj��|�3�ƴ:�i���W��mMm����
}�E�ߌ��泛V��|V�!v������i�$���Hf/v\f�����#?���3�0����@H����F�g�����k:��'FO�L�Q�K�~�l�3m���X��U���v�i;��3\�`��.�bH�����π��>��G܀A�l
�֠�:����U��Әl����:�="[�Liwi��N��S���@G{���p�|�e��Qd�V�H��d�\H�|���{63�8�3sl:^aR�]C�%��G�ҟf���/�O܅�i%�:��7ק'�?�vV�XEw7��k�-QEcM1��!�k2���c*=9�����֖��<�v�
q���xĸ#�yt�8�:�6&����y�x�]���%���vk� Xl����=`�%�-C% �Lj�JZAH�VG/�tT4���Q�X�JAt�����4R]��P���n
�*3��k|����~������/6_ll������}+�}��M�
9��e���O��q��C߅|��
� T�(��x�)"vIg���f�
�-��._~�_\��j ,ڝ����x��5��,a!"���ѩ��J�ɚ- �R9�8;��i����Yh�7�f 8I3N���s 7��{��C�d'VzoYUbk��,���_�Rl��!�9����������&)�c_h�U��m�NdAI�� ���Lw`��FE���{��hg�PU�7����:�0WC�$U�c�p˖���
~����! 9N������=V=>���;9�_�g���E��cq.8����{0�Gf�C9����y� ��&�Fk�y+hu�U��9���WG�V�M�\�5���a*� �l�b6u��n2e�'��S�93�sȈ��<?fDE6C�ױY� ��Go8�t� �nw6~y�~RhNa���2i��l4�f���u�"��yO�-��q������l��l��8�r�`
�yh�1��|���1(� *�}+Aό�y��������$sаgG�c�g�g�s �����8!G0l0�����͇��
n%G�'z|9�~u}zu��TP�
�W�{��Ë�ӫ��A��A�ԘV���j6_��� .=O�-qj�w��vK��8�&6jB ��8�k|`��������ca�2�""7^�
�p��A��M��ƍ��d�68�lw����z@�`(C�C?�(u�����Q���iE l_�|����':Aa
YyE���#s����oH��֗���R�U>F#�J_H�E��C��=s�iYc��o6��4R> l3�8<�آ�=C��Jݸ���o�hʚ�&�&���'6̍?��]{r]������L����g�Ƕ!�l�+����3�]Ey�SН�qS}�~���N�v/�6��x��9�����8�j
�X��$�G�������� 6R�`abA%8��`I�)R,���$�tj:^K�e
���L�~��#N y��w����.�ŭc���]��_0k�`�'~�ڂم1�x�`@�L�!�G�L��x���]�B�f�O�5�����?� ;���&|��}�OJN� ;L�E���?���B��O���]�����.�
���.���Ͼ?���L�r�������y�io���_|��o�`�s&�����.������~Ď1?�'nb
������+ �Ϻ��"2�k�钮<��n�,��f����۽r�96�{>����u�ig'�x��y��F���jkʠ��#�O���}�9cj���/?@�K8�$`~I,�#� R�+�W��dQD�Iy�7����� ��O���������B>2��m�������{��u��~` ����M7���N���b���Ҽ�@`MKF�/��aV�L� �
At�r�쇃���#�J|]Y#n�>��tF�6��:��<�r)��2H�;|@,�l���xĨg�#yUt1�es�$7DB�05n�a2��Ĕ�y�$�hG�ف�}�?:>}�e:k�b��uq~�� �*:��K\WV`�-�߶�Ag�U�Y�R(�@�"Q��Ȼ���L6�]��id� ��@SL����P��<�(*�B�
����<� �U�D9:�d4B���� n��X~��
�l���� �k��ӑts�L��b�sB�e�6y��yMH�J\]yoh2�$�=�l� />�c�8XU 7�� QՐ\�)�v���9��+��2L*>� [�i4N�T{�~�fCc>�Dz�Y&�����h�^J�;�q��n�*లB���DU
ͩ=��au�Ċ|d泩ILW���b ���a�A-*+x��J���u�<5����b=
��k� ש&���\&h����V�T��
�|�76�L%I�%ޘ�%�r�2e���Pa�Hj��({F����("�Q�[��YSͅ3�����)�K��_\�]@EE����j�v��t���w:���T��[�%�������=DY�Ej[�Ң=ռ�(�O��iw��$�J�y!����$'ܚ�c�>�n�Qž��BJ�L�vCs���3��欢�ti�dr�����l8�9P���ر��L��O3CA�Ѫ��F�&ս��+��Z�4m]�!�S�<�+��e��2����u�=����:�8���!�Dz���"�!���W�Q�y5���
�*�y۪���2���OiL� �3q�*���n�n�6_�ܽػ��+��mQ�"`ȁ����qY����`0�]r�c�$/��hKޓ� ���w�wbhWX $$��}I������닓f*z�܉!n���$%|v�mHg9���*����n�Ï�Vo)��r�:L��N��e�S֕��ۍ@��HC�9���F���%]�Ck�3Q�`���c�B�Bl�����,Z�voy��)��O���*+v�R��c�H4b��J�S���k��},��*^�ՒW�#���N�`R�J,���`�����Z3�1�~x/'*'� �T�f`��R��DM���CC�e&[١=J��x���hJ�F(5il�JOϮ�]�: �|Hx8GS0
MQ�
���f����I#�ub���*r�"���*XX!&-N~fo�.N
퍈U��8q��G���PHR�x�S�V�V<�O�[^�����x]z|s~K5��{;q`��A���E�l �_�Oْ���0��5>� �?�u�M�w ��.��
�^`�N� ������{���S���A��`������F�B��S*��=vn��@:�/�h��SR(���f /l�chJ� _w�2M�z��,K�]�ͷ}.�~b7P���O�vyy��?ާ�z���X�A��ḡ�E.��#�)Stf����M4�� �b�~��)�jP�i�!��HK��LK+����:���ua���H�H������!B��jU1_C �q�F�p+<���%7�(�������t�b� �":�����f��'�J�#��e
��"d�+~�4m�,���$eͦ��c�i�02o�2L��I�)ߋPsҜ�.�C��L/��U:��#8 []���gQb�����Ȭ<L���`��i�eO#��p�@��j�v�O }Z�
j����AX�}�~�VB��._��33
b��Φ���Ne!�tn��gVN���ܷ�m9��uz��?���G(��y23�囑������:��O�a�!��$?�Ô�[2S��#f���}�Y��!�H1=�B�3��v����ƾ��qLKɡ���c[�6eb���G�����v(�@�8bs��!3�κb��?�Oo�����@��R9(Q�) a� ��d9�壳k�K�c�jg�2Vw9R]Z�.��G��������%�ZU _��߄�������_��U ߦ
@�\��dX�+�)��w�� ������9FW[���{�'W��E���oq�m���za����~��"}R{�Ѩ4��Q�m�oC�q�+F^0�p��K_���Ҹ_��|�V�� ��4�;��J�m��n�o�7�5�͂������i�d�vzx|T�^}[O.e�Hds�.����e#�u}~�w�/���R\�� �ǟ\`���<� ���؏c����*�=ŭ
���_���). �P�b��Q� �3�wm�?S�8l��|@���q:���n�ra��kJ��a�>�&
���
0?�3tAq��]*G5�������T�R�t�`��%�x����4k7�}���0^vo�7����T��Tҷ�mqs �����Y���RL�N����4k����ྻ��}/���5�+��Le61j�ۈ0.���w�<�f���Ś��H�Lk
V]���^ܱ���Y�<j�E�Z�m��Ć�֥��+=L�2�2T2H���KL�`P`d1G`MY8�V���8!C
yD�{�34���tM�`�Fi9��AܤC@m�)6�����/_�!j#�δ���G���JT��
�LM@�z�3�or���M�h:GaҴI�ݮ{"H���P�tX��C�Yu��ve����¦�M`��b)�i�^6};���Kf�H��\�N!!��~#"9� �[� �b�H@7f :��\´��L�C���'��6��S3��(KB��%r)5V��64�`8��KC����K#Iڂ=0��Qi�X�]^��
�/h����~̻��QT�C�s�Q�e�3ͨ�l��Ѱ �2X�rL��-̮r�ʧ��s��y�B�K�z_�[d6s�C�����{�#{�ȼ@n���H�3s�J��,OB����O99�
͏s�u��4�c�,����JAV-�[-J��^��[`�q_��W�έ�gH6P� �N,�j.���
l�/K
e%� �=�������Mt�l�3ȞB�<=��<(Pʕ������B-����n�x%W��:C�y@����\����-;����'���
Z�hEY�@�bu��Gir�d(����'�r�s���`�;�{����:�`�-"��� AwzZ����j"V�|�gN��,9�L8#�J�"�ձM^x���Ė�����f���UM �8uC`���`��G{��F����9�_���H !4$%�a'Q#�'%���22��D8'�A �Q�ǎ�հ5��zf�M�jRfUwTV��g�G�/����7 R�d�{����7k���o�d�l����ݨ�)��t\�0?���O�&�s;�����#p�T���#���q�I�C*>T�]˩ʫ�u��8�*���`*��c��S|�-�--�4s����]��sӣ'b�9�X�ütγ��7��H�~�S}�w���wIRMǹ�d �5H>����E:�P����wȸ��ҁ�Vu���
N8�JdNs7�g�X����!��̆�OY�6���EWD���e�h{%�٘;���FT^hoϿоF�$R��V���#�Y��f9h�X ��|�&d]1.g�g�ű{�hD%�Y᱾����1�r(���eJ�8�cb�չW�b�LB��d����Kw ��C��"p_�L�-��J��#o���=nN�[�DS��a_���,k����UKd�����HV��*��jY�s�ՠ��P ��x��܆
�-C�83*���O��4"I��Y6}c�k�F�Eh%�Mbp0�Q�p���rX��ʛ��F�q�y��6�Z꡶���#lg��:f�o��:���f!����S���_���8zY%tY�&��*J�g�(�%�KK����Ũ*�&�a.Q�:��Ig�~�:}V��w��Y��LJwk-߀
ɒ>\���/���4K�f9�j�Y%Ўs˰e� Mɸ`�d��5��
����
:���͂
�
�Ӵ͙S5j��k����I:I���K($�|$|�V
�1�Ƽj�§��[O���ArH�:���i�LO'�a3�a�!�/.�Z�2�eU�\V�-��(�ԟ��ɔów%�H@
�/Yuf��Kפ%hm�&?�(�=kArOrtx"�
,�^�d��h��H8�!NQ�<]|<I��'�L���w�#���=��<������:����C���Ѿ���_��^�V��4�O�ڵ5�^ &����˝�(,�������l�v�Qe�͵��ً��_v~<�\|TD�_Q��
���/�Y$J��n�>�eC��*V����pj4�}���Y���O�N����T�
�{����`��|�W/���S�e��'��(��m��BE���A�a\�'0���y߫�lԣŇ��l�>֫5�96,�$HM��j�DĶ���������jsWH�/.f.<��XB�jk���v�U�����
*�a nq�K�� }�b��USa��!�����h�����A�N���t=�]w��zS����K{<Jo |��4��l4jr�H)�i�ǂ�e�������L�x�X�}�fD��s|a��U��º�낚Z �7��C�Q2tz��Xm~s܄��]�8����'\Q�cلǸ�B��Tװ�6���[�EW�âB-�;R��.�$_�]�L~:J�q-��T��=�mJ��zumS�4o
�� >����_Ţ���O�kLN�t�ܰ��3@D��(^as�=�X�$��G
-�e%x³qq�tva�i���A$ a��F�h3�Y�+��R�q3*����)TDb!�5nO]J��-�D�Ofy���eq���+RK�Yz6�v�.�@[R'��zU��nj�Q\ uڑ�d1�
E�q��1E
����p�`ҕ,o�y駵�b^��
�:(��T��;��[��3���%�b��!���k�@�1c�VUo��,���(k?�:�i�[��a{������
U�Y�Q����]8t?4�7R��r���)
�^@�s��qȂ��;�,/����E�T��u�� Le�U*�F�X��i9�%ac��P���B�7�s��i�#�����O#A�+%gW<)��;���ϑ��4`iҴ�,.�K�=�&p���U�Y��|�hk��aEɢ�L�x:��%3�_�Hr�YA��5r<kq@a
ℰ�|#l�,dxL;ZIT���uk��ḧ́*��j��E�{l����w�^��z�6���燻�E�7[�oIyR����яk^���{��Q��FT�:{�w�u����M��Y-T��^/��XZ���Q���+�s� U@O���82�rE�C�W��9eS��7���ڙME��g4��VqEMi��m��7<�� �(Θ����?o����v�W�IT]X"A6|����Z�S���+ҥJ(�5r�A�#ҠF }�G��N˩�����)�!��8���5�d 3�K�VC� Q./��,����/�4uφZY�J�J^�}��-T�ج��:u��\K]�*�a�H����W:l��o�����8}Z����A�L��5`�(���J���>$ �h�t욂0�+a�=���*ϒ�*��T|]�B�huܸMI�����=�=��(�FE�E�X3H
}�C6'/�B`'�Z�C=��َ�X���r-��Em��Xh���\|�����������ʃ/*��B4S $V)�;�QGӟ�;�7%�.��K��$ ��I1�g� C"�b&�~:Vϒ�<}�%����4bk2����vФո)��[̥Cr�ʂi{���A�`�� zoi-��ǝ/�~�����=�Z��@�
H/&ؾvjv Ŋ��{�y�^�j�ޠ �*<�M�5_E�'=�1Ƙchi��� I�O�O^RA�� �(�ѓ��u����3Wt�$���B��r U;1b�lȠj)�s>�.?D�Y���y7r��O?1g�I���W>9�4?�2�s$���/ߏl] �H�T�헇��L�*u
��]��x��+�RA ΰV�ʬ�!��i;�-S�l&X2��_2�ѹ%c*,��.��bV2�mKp�v:8�P ,%Q���W
\c�\�+iO:�dY�,��t�����Æ��b�9`���/�������SH>�PO(��~F�8� ��8��X��ؚ�)�7쵳ez���La�[����lI���߀���p+��Q�����U�@i����y7g�8R�"�-��SUl���+Pf�¤�$.�8���
�i�~���2��?�����y���.� �^�k���-�@��Nj��3�a��:N��#�ͅ?uo���
ދ���ڐ��wN9��;�xeo$b3Lꭙ�Y�%��H�.$x�J)���[�4�W�r�'mO#�;Ou$����s�e<�8lI8kO�q�8q���($
2їS
J?�G]�^g��������EA���5h��%
�������M`����$?�.��p�F�fv9���Z#U2a���-J%��m@��<~[���Lڂ��;����͖&�$A���Cghu�n
�i��:�\��aFP�2+I+���s��ǚU���!�l*�LPZ
����N�)�e'?ivG���XY���LH7 t
���1$$o�sXa���E���aܚn��K<4�b�q��2��<<E"r
���i��~�z��Jm�ڇ�Q�\�k��E��L�I;r�@�:�3��|�
����:��������e��|�`eey�>�[^�r�����\���Os�9"G�B_�'D�W��^C��(�6��ּ�Gi���Ҙ��[�����{b�����Y,�
Go��oQ���Y�q��|]#��]{r2CB��L��4"F��xjwO�i7��]b��M�7S[]쬛>�ʰ��LQ�\����W(����J��^!8;�"p����V�������C;F�`.M[]�㖏�='m��;���ab?H�yU*^Rm�5�'x{S �~ruO��$/�c<�z��C��P�����e�H�Jホ[6���#�ăj�
Ձ��W��jh�Ʊ�d��̵ݠ c_G�R�����y�в�Р0'�usх���߸襙%C��V�o�W�yoիdz{�rez�s<���_�Ҽ������+}i�W�<����Sn����L0"h3�nh�I�U��uĚ��'ב <�'�k� �rRF��#�0˖����ut��#@�*=�
��69��\rf(Y��'��9�=��#����ُY4q�$�д�B�9��>�@��Io�����i��ؕ�J�y@��͇���;z���x]Qm��p�0T'��$v܆�O���S�&��B#@IW�L*��/���|�n�j�������?�[��_Q�㙕?�}{������_]��`���{���kK<^�=랽!-ή{�g�o�W���a樿��j�ϳL�4�Qt�$�HW�(�P6���t���C1m'g#<���
'�aƆQ���pi��p�]��i�K�3��r��m�( ���D=Q܁C�#����#p�@��@��6��|7"F"pJ~\���O8�u8�F��wq�}�q
���zྔ��.O&���;�̛����gm:/T�q��q�M%��c�!��p�4tD�
����<
�xB�nb�e�]]�:��M�kG��h}N���ͪ�s�u�1�; ��ʬG�u;E\�����9&�_B&�\����~�Jְӑ�?�hQ�A7���ɻI�Po��U�~���9k�PՔ���d-�_Sb0|��KN�e�ayJ�eoG�J�����@U�_����b�����^�5��w���>�f�Gߗ�<\z���`���9�@?��O.�G����\��ʜ���?�A�h�珙�����Yƽ�R������|�O���8߸7���Iƫ_����PiXM���Y�����g�G[�G��V���ހ@�q�*���\Bk�d0.�)�_ww�^!��\|�ha�d�����v<�ѿ����6����Y7���ArI�)1�&�"���P�� �{�m���@g'�����%���/��nF;*Y��No�MV�b7�w���c��M��c<oF����
uԠ'�uUEL�x��z[j�*�f�{�����Q.{��y<�
�Iw��LsU�ВU��d�E���G��k�-!;�^���lS�Q�P���>�a=�^��:H�&�����^t��t��'q7��x�s��$��H"�;BC�TG%a���+Q~7I�����" ��]?ʥ������G��Β��I2�s�>�?���*����N�F��o{U�p)��<�'j\��y������"P�]K5S9^�G�
�r�/�i��`����H�nq+^q9P�(A_���8�Uq�ȏj��qaݡzVuG�����Q����J�Ti�{,ɝ�V�0t��V?�đ���NqϷ��}�����@�3���N��㺵�E�O5BH!�� |��}ͅ3@ͭ=�u����?�݀Pհ� �n�������Z���4(�4�َAf�� }�%�>������C�
8�>�' 52�E/'�^F�"&ո�'C�gh�'d:k%��+D;OF Ф��jC&��m�v��h��Md���!.�<�a��`����mֹH؎��*$�Z�8�������U>g��~3�\J����b���"�'Y��O<�@���Y^�$�=L� ���d�,��V�@�l.�&b�H�ƽ<�F
lgCZB��c��)5�gDq����|��[]=�1���K�|��(��a��F!+H>�Hdp�ގ>��V�}��(� �?�_J��>2�ޤ�j_�=C��=��ÅG�{<�Β��C�3K����s�Ɯާ�l�'�VӼ��u'���I>$��m�Jb{:��y2�f
����a�EÅ��m.�Q�EY�^���|��t�w,v�4Mz]叮���E;F�4A� ���e%ޡ�;���b�q@�k��Ɯj6���Et��q��IHv��Ib :D�B�aS`q����4��~�e��i�����n�ܶ��c�ӆ��s�.:@ C��[�;ʀ��r�� G�
�b#��a�ӡ����ךۓq�$��Z���>:���g���u��g��6�f���ʞ����?�n��ȏ�7�'�s�mF���Y;/2�I�p���"��ȉ���h�,2�.Y��њB&����GqZ�8NK��] 6ʮh�ɽ�O�~�n`Qe2 �-�<�D�d��5ж㛏:͵�vp��O�t�S]>��<�U�S����b�s�;f��Q-�~��0$�y�V�����P�����:�|$ǀ�E��"��B�6%W;�9�:�qMNڽ�K���7��-�z�T�����^sj��Gŷz�^ݦ�G"+�wBR�y/�8��RLU�W���k��(��;-�e��O�J��K�7���� a����'�k&�6#���
\�)�P&.Ų�0�_q9��5���yޣ��uV�-�7)#��,SY*�M��偹1J�}B�A�Nh$z�����ƶ!lUi�yr�p���}"�)�IͷƧ��-����ѭJn�U7���'��U�C��kNI�����:b��i�s��B"�P݃�k�fn��ޟ�O�Iw���wi�����JS�u#�PQ�8���
�y�y�AZ��q������سs�i���ˮF��d8�!� j�N��T�����"��1�d�܃�
.���zE�d�xT�vSq�br
��3�Ϝ
q�,�BѸ�"�P��PG�~�P.��;��z��r�����̩�HM�Wnj�γ?V3'���yv�M�ݫ6�7%1e�6�s7YV]����de�3��&�F=
��-��-(x�<��1�Ã~H��4��+��&�|�9�f:ڪOjӧ E�:8���*�p��i�+ܤC^�6Wɿ���z �[8z�,�8��B��i8����>���}E�`MHc�3��ڍ�գ��"4'6�.Y���ʒ{�O�T�?� P4�'��P�jmS��π_Hf�CY\(J5���p�ǀ�;�Uy��x��|#�uzJ����l���Kp�Y�n�,/�kvg���ԑ�%⍾)�/����G
gKk�<Z��ߊj�<��&�����8z��҈hi�j�,{4l��M:��Yw�F#Z_/�s�S. �P�~L�K�거�Dz���Bv�e� ?���hi\U~��{�Y�cW$b�Vߵ^#D�*$慩�S�uS��`�o��Z��|<(��e���P��� ��Z����6-N:���O�T��~o�6e������-M����$��n��{�G��5�U��BQBP��W:S�pX#��C!/ �=�,Zi�ظ�I����$�
4݄}�%n���N.6������Ҁ.���VˊlM��J��ҭ`1{6���P)��(ʘ����eD�V%�Cz�A6`�q,�n0�$��\A+��t���p�� �S}����u�ғRv�q��t0*J��':�
u����~C�H1�� gf7�1#q�H�U�Jm�(fz6�F�x����� Tx��~[p��&(R䂿�WT�#j��j��E��6;�4D��"n�)�:rx_q�Jwq4�����'u����șq�k�y^LU:��z��OK����RWjC��3R��x)��5�R�ue���v���܌z�6�ίU�C��
g���l��� �G���p:}6J�9LV�<��0;��x�u2!T^P!������e�^�z,���n�:fӇ䋎�^��wO��:B(�I��"��&~>
�"�l"3��(�J�J��h�� A���6^�2�q�
��;�l9� +J1�y��� ه��3^!�MO�Ϭ
�lH��*��:� k��曛Dw'"�E�����:(�[�n�=�pRk%],1���A�Hf#g+�pex�x�'����8�qS#V75f��|Bo9"$��:�\�B�*|�H8������("�R�
! t�0,Ԍ��-C�SU<g~��獫*��)
P�w:,� R��t��|���
�>9n��5��) ɘp�T�ۜB�$���~q��H����V�������%��M&���=.*�� �L^�%�9���^{�`g�Z�>�G;�~�>��`�Ջ����]�LV#�fϡ�t`�+�D�7�ӚF�v<hI�OR�/�W<��ʢL+,5�� ���rf�C���*pU��S�8�xų:OЊ���1YyL��`i�Ikn�t�Y3FK�� �vA�a/�`[x��h��g{}߬�c0�-�%\�����QK{�������
yB�8o�5Pt�608h���t��T����6쥃3.:��^d�d�����Z���\݃y���
5`�=�u�!l�"rƬ��|����2��U�_�d�i���R_�o�Mq�7�q�g��v6W��b�M �n�l��d� \��l%�0����%0�?��g��H�T�g�x��SѦ(R�U ޙ�O�ھX��r���喋:�.��X�$g{^��
���6�hc����K`
���+�'M���8O;
_�VY�3�![�\�
��ŊRA�Z��p���a�-��Ր��%�u$N[����"Å�O��f'�*κ�� ��23�����k[����`�
Yz�k�����V[u�ft�1]Tb d��0U��qy���/�*��+2�u���MMcd��[V��o�)���T��X]�<`Nˌ�����LYmhFw��K�W'�*��K��fg���f�h����;~t�. ��^<���
�.�����r�̉���)��eU ������5�;�$�ʷ,�Go�y�B��F��>E尰�\9^wEB yMy���^l�OT�D�|2���
d�6�,�2�u���i�����r��hJ������w�a�����`����d� Ee=�}R/�=�r�aX=sQb��䈰��Q�ЄEw'����%X�}㿲ψ���V��D23�|���5(��;VM�gMƪ?Kw�����IG�I��prt��x|�ǹ�S����FA���]�M|�>�B��[|A�V�q-���"7-�Cvt�V+|��}���h��ݎ�,=@Z&� Vt
+�'�8F`Ɉ�J<4E� �bcK�#[1bf*$OH���9A���|�wE�D��^��
0��ʹ���q�O'>bPl���2�P"&���%�A8�����6W��%�c8�]�mV�t%R~��M�H����^28�o�<
�g�@��{�ʴBI�*�|����6x�|�#B�(:Ŭ1�Hµ��:��X��XųcQÂ����c�`R,R��A�tF&�:���"9TĜ "f��.�i$2�(��2�Ь�����DZ��3B�ͮ�竕r}�ݤ8L���6�Wg�V �P���x\�G�ē�4^tQ!�]���|�x��ŚΡ�L�h��4���E���Ƌ�7�~;X�����ժG��]�O9�Ĩ�f]0��eB��Bu���)�Lj���U�䔈Cy#������B"��h
���;Gr;�N�g�74��|(B���(�`��x��G�L/�]o�Hp�v�C��X+U�o����# Bi�~������2ys�:%�'���^�>�3�L��(�&7�1s���4���fN�Q2DA^�n�4��k4ǒq(J�)�J���v�i��i*�qbg�6KÔKs�nf�5�z1KYe��k�-G�,F�~��{U������F�]m�T��%L��#W�D��� �7�:��h��P��)W.5�f }q�d�H�ހ�݈a�2���\RS��?�D�k���V�X;Ӥ�������W��
W�mlW�\�#pE�����;/v�v��}��DN��lE8�W���+`�x�Mr���$%�V�F�Ua{�˄\�<�L�ةvl���
�"�st(4�Qs�ytЍY/+�t@p��Ew�Q��<��D�kژ�-Fͦ�:bI;�~죖
k��a���xDY"c��\xj=CO�D>J��^��
���������@�L�O�A~|� k�Z�>�M���p�0\;�t~�� �Z/|�I��Ӻs�
�iE%�r��+�-�.�����z�3�h[/����o`��yy�WJJ�H孎g��I<R3q���]^�۫��
�z�g�1�b�Q�7�w=�N��y{(���J&E���t����!��׆���x�3F�D&#��P����y��ВR�
�1M]�h5��"�
�:�q6]WR�����H��M���)�E�kKn���z"���Z=9�e�8ӞQk;2�g �'�f��
^C����c 3�0FqY���m<R�ʭT.�A�~���۬D��6=
r/,����D�B�̒kIXȚr��e�|�f�T��ǖ�bdyr5��r̼�gi�.��,����-듞��?��Z,�
g{�*�}ؾ�c�P��lloISw�dÁU�&Ϫ�O�f��I�5?Z���a�$��0*04���c���!"ۉ�IOCV�^��c�(�z�&kt�� �ut�\���I;��(
4���k��V���Z���FLq&a�%?OOǦm�����S��0�ӭX<��ě�D�pգ��tP��e]�0\���nT<����ݦ�R��E��7��F~�l���x�ά��]���p�����*$�H��W�[��-�$���I�9EFP ������:\��Y"H$jG�����7C��'��W�)@_��z%�&I|��
E�ы���>�bS�F32{o����Xza�k��ͦ��K0&ׁ����moE��ӌ�3��O͇qݒ��i2���$��a���f�UA�b]d�aԴ`[d� ��8��+�M��1�,��.�L�h� �Y#���zT�X���Ao�#��-�J�`�vg�A˵K����m����fC~���Mc�-mϦ1}a�7��);1�k��Ʀ��U�y5��/^���܈k{�N(Z�����َ-����(X�c�r�N{��^�`���Ǚ��
X�8�||�NZ�Y$\M>h���q�i=t��U7���*��Z���gPU@[����G��ZѼ������==dtE�p��T,�R�R�6c#"X�ƛ�֩�O�4>8����-nJ�µٟ`o��O�S�G�%b�Iq����i���f+��6��J�b��`H�iiGYl�э��@vOV�1Z�uef�@4����`�4��3��Vm&�Q�u#�8��
ح*9��f�.�nr<��8��SF�}
��h�l�l����x���(�1�<J��^i�A���)%�L|t�e���
NY��Ӧ�,m�r��<���x�*��ZI���_5~��W��PQ����,�$��ِh��
vE�v8&�#�z��ph= ��RU�kDJ��aB��$�>*g
�����돍�3c�l��9�D������q�����aO����|�$�N-k6Q�?�M2�;�M^���q
V��z����H��?��+U7M��@Nք�%SErW���u���p��xs��Q��b��_��]��4(&�{6���H9�ڔ �U�-^����Qj#��h�%��J�˶��z�U����/��= "�ZD�?�k�*5�Ea.+��"�D�g��4[�&���(��l��R����&�r5�C��I���;1RfF�LtqL�'�H才�۴.t�ʣ�!�-�Hƥ��� D��Ƥ懄l�J*��r�z� �`��B��L�
����J3:��� 5aƖ�/:Ѩ"�Z��h$)�X�K?lw��ϫz���4�Z�
5#��
��;'Nq���ј���%2%�j&���u�Xh� ��$�s�^H���$�!tLN�Y
��� UbH��*���Ϙ���]��`Y������n�6�@j(-�w�Nm9��!�d��vogI��:܂�x'�Dn�g��7��.�o�2[%����FV�"�Z2H�4���m�aA�Z����s�F��'�ݏ��\��8;��]d�ʛ�3Ҫ|��2����Q��꜕QTK�ø�!�z��;��6�"'�5��ڂ}l�E�N^
{���((�
BD(���8�
� �A��)L����ƍv0vrYd)v:خ�"�ĭ�O�I.a���b`:g���*:.8{j~�"Cͬ�(��a�oX�w]�)\��7Zx��N��6cj�U���Sr�����=r7�S���}ZGgxq�kI!f��g�#ys1�"i�4\�a�liI4_^�GΕ��x�Vj���J;�O]j�[�
��W�
w$ʳ�;�8�ׅ���BK0 �f�\9M[h�s���f�
U�G�s�,�m��5��-��\�X9#+�Pʇ�H�P��}@?��7�^״��T�5V��v�l�B��DM�xi�� �#�1
�-�g��篫���~M�ܡ�\O���Ba�n2|�;z�@
�{*_[��a[�ȶZ�m}�v��YGʎDR�&�"3���Ji8އ�0~ �� �-R��ۻ0X_K�6߮N��N��w�"�W�
w��([x����w[J�Xh��%x�a�;�Q|B�Jh½k��%���B�W[-{������\�ռ�F�5+1�
}5�Q���V���Yb*���
�B�u�\O�f%y�|E2����;l�i1���4ZJ#b�I�#�!����oa~�`���]�l��cu���u-4'ӇQ�k��(o�5�}�Y�m��|���aj`�DU�r~��&�����n�����ޫW;�G��Tޖ�=q�j=��Q.ʺ
�zF^���͞�iF�Ư>n��t+z�
�
��8����q�0Q�d*^�jk�����́�Nt����0"O~�~�C��i9�x�h�<���C5�QO�~��/���J_�d�#�I/�ϱ9"s�#V
����E��%�m�5\�H�����ͦ6 �Mx�&\Q/��u}6�� �dp�T�
$�&L��B�(��z�������,m#[� �������p8�-��V�_��pl�4ۺR!&ҕ��ܘU�F�'֦gt(�%�մ}jN#顊�$�)�\;��Ro�Crl _�\<U����6ȷk��Q!MH����8r-���WhS"�2��/ř-�V�^�R�5���z}��ۃ_�&
�ӱ�}*�������[7eA�����V�P��ΉAu*�}'7�K�r�h�=>/�
Șu�ɸD<��嵛�Y P�I��B�T�*k~u�G-P��Vg�gm�X�+aڈ;6�εrւ��>�ޚ]oԷ�P���Jp�LƧ�VW?�l�ÀGgm`��ɍ���5��e��W����p!��k�^d7%j̕{jp}}���E5e�2Kd��A^��(�:��g�� *�b�aU�];m���R�\_�R�2#u����ī�}��.�*p�8I���n$ׂN2�I���$El$f��@��
�����Gs��~�!M� |��a/����F"$�:��( 2��`�sn���6���ݗ;��0VɃ��)�ܽ�<��锰��!�N�Y���em&��Ԏ��xz]���2�X�mi��Zž��хM��A��r��z��2T̻�Q�io1(���[zk���ab9q��b�?�C���C'I߾/юU����R<���m�zz�c2}�E��{R�Y`S�� ��m���[@�<a����z;��g�-�!1�uW?�DO��U?_��y�VxWċ�S7����B����;A;�!";�q�D҅�;��:D�F���qķB �"VD<�Q\2��5�e�d@��'g�Vתd6M�G�Jph���EQ�f��R��p5@��ݠ�;���P�C�U"e�S2m���fi�-��X*�滝�OhC��� �Y�W:���ѺC@ԫ"c���b�*���Z���V*�@��q3��`�P
����2Ԭ�զX'[Z�7���k�d��|}��ho�`u⡇<��8�ڝ��0:������V���W[O�z{�C?�75��6K��d�
� -�
��������`O��Qdm[m!�`vnfk��L��R���l˜��tЅ���W����F�X*�S�O1���ͥ�;���� g��qF g�)K�i�o��K:{dq1��y��NO5����tp�E�!�
���&a+첌����Ș��ֿEy������Ʒq������Z�s>��'�K�Z+9�Q����2Zc���Z=�~S;���2J�ha �.*�^J�Y)2$O�G�S��@�����7�����4���2P�кU��ds�?ʴ����� z�^챟3x��k�Ӡ��������������$��C�tt>���(�t�� _f?b����MN>��G���#�{��_ �Lz��&g��᧽�ӫ��I���4��wv�JD,&x��wc�Q]��Q.\�3"g�y]�@�� � �����ȶ��������ҏU�O���#KK�0$��o����m/.�ӉaX��&-7;�-=^�B��Ro��V�����!��t��u������v��ȱc%�����ˣ�}�&n��n=�;��RvcT�>�� �O}��:��0~��E��|�h�
���������e�ۊ�Ӑ�+��o04���m`��� �
-2#*c<���'�o��3՞� ��r��{��b˗��?�b�G(}4�<���*�~U�G��ƒ%z���0H�
�-
�:<�ѦN�fuu��H�i�6#A-���l^�kf����A�|���o|z���� o�ï�K�K������^��|q�P���Z]��'W(>�r���Gbllj:��k #+���a��WV�J��c%bu�]��� �F�*<~7j���V�:�Y?n7��V�oY07#4��
�@��?UZ�Rb� rͲ��lX���70�����_Һ��*z�_���J���:��
��f�לH�:�ܞ�L�:=�����^|f�o���[U{k-=�K3��<V���T|��S�h���p�Ev��`r��_�d!��o��3
2���7;�����������8��ý��v�^�{y'��^�1��Qt�����ݿbY���w^p���W?�w��z��!N�W�&Z᳣���=)�!#Ng�.�t����SY@d�l�A�*�I������+�.���i3���{1��"�/��G>��o{����Rl��bo0Z1{Giǧ� L�C<