File manager - Edit - /home/latest
Back
#!/bin/bash # This script was generated using Makeself 2.1.3 INSTALLER_VERSION=v00185 REVISION=50dbe52aabc87077e611f56e006888dc410a2631 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="1343442537" MD5="d6c57b0d7d4cbb6222527502f75b34b0" TMPROOT=${TMPDIR:=/home/cPanelInstall} label="cPanel & WHM Installer" script="./bootstrap" scriptargs="" targetdir="installd" filesizes="61464" 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: Tue Jan 20 18:31:33 UTC 2026 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 � �oi�<kW�H���_�g%O�$��5c2��{O�xd�mk�%E�C��}��[RK6 �s�;�7:3��Guuu��d3�c7f�?�JO��[[�����[[O:�/_>oomn��x��l�76����o�$Ql��= }���R��鳾�J��5t�V�C��ά�����4�k�L�G�����Ob��a�ί���qs� ��g�uA�X�#�rZ�? \�� s�A���g�ˉT�3�%ÿq+f��� ��a�cq/�Mv�I<�C�#� �� �'�Љ�]�$gQ:V�M�gf�h[t8.�v,/v�}�Z��>9g~2ڢ:3�(�r'�̐S+�X!�ƕ�=Ŷ��E�nj nOoݚa�u�-;��p��쾷�:��6F���ܳ�偖iM8rB���s�# {D�:Q���ҕl0���q���xӘVg?��ʠ��� X��]�Ͻ�������|vݪ�2��j�Ď�V�Ӓ0-��$�X��Ŏ��Vc��p���pt`�f�>� ��)�8n�x�N��������{b��������v8�LO��(\�˪kמ�]� 8#�e k� .��t0��_�8�X�c�~� T�ְh ���*�vaZ5��=�Y��: ��3�#��Ȅ�v����D|<�^< t��)O��Q Q,E�j%��:L̅T�Lj[�g3���93Ǧ�&E�14X��|T/�iv�L��"��]�~�V���xp�`pur��sm{ňUt�qSlY���U4�3y¸&��L8�ғ^ynlmmm ���k�����ΎF�;�\�AG��ic�+��J���Aڅ��<\9�`����ņ�9�[b�2T2x�H��E��iu�HGES��ŏ�Dg��p ��[L#�E�E��i���ր�2��������e������}#�}��M� 9�e���O��q��C߅|�� � T�(��x�)"vIg���f� ��w/�~�_��h ,ڝ��o�x��5��,a!"���ѩ��J�ɚ- �R9;?ݿڻ�i����Yh�7�f 8I3N���s 7�n<�u�+��w�*�5@llh�/)6�^�� ��lu�@j�����iO�p��� 4�*�ƶl'2�����q�x�;�|��"i��=�]4�3Z(�*ۛ�{��B�]���!b�*����eˌ��J?��c�� ���~�a���\\����3ea����8�V�{��=�ٿ#3�š�A\��ǼÉ�X�Q��5̼���*}˜s�xĀ+��U+¦y������0 �m �{��G1�:d�7���N��@�)̜�s�9dD�g�3�"�!���,ل�hã�xU��I�`~�:��F?)4�0�Si�4�D6B3�v�:�u�Լ�'�E�8x���lv6ju6�gl9�0��<4��ZL�G ��Eپ���g�p��<FB� \s�z��}ߊZ�9hس�ı��Ƴ�9�h��H��#�6��l��V��C������=�\��:���u*(�D����ݓ�����e�d���@jL+� ��HrR5����e��'Ӗ85�;GM�%OTh5!kl�5>0}]�S�vF��豰X�Y�k��T�I� v@�&qo���O��b�@����ea= c0���⡟G�:��y���Ӵ�"��/�X>A��B�t^���0���<�"�j��9��I�7��g�˃�X@)�*���^�/$ۢ��!����9Ĵ�1��7�_F)��sSlQ���nf�n\���7z4e�p_J} ���BA���� �.���D�ʉ�S���c[H6ە������)خ�<�)��ȸ��g?��v�]��a��k<��G�B�]�_5H��]�ӣ]�Mc ��D_��m�0��dz���)��A�W:5��%�2_�V&e?��'�<A��H��W�d����1�xr�N/��ϙ5�� �����`vaL1�'�(�h�����y�w^�bjW��Y��� ��~��"�N)�{���}��OJN� ;L�E���?���B��O���U���x���)�����>{�t ^S0�������E� ���l���z�I���.��7x0�k�9|@Wяz ����^�B?bG����7��x�a@� G����5r�tAW�y��^�{p�y�����۽t�96�{>����u�hg�x��my��F���jkʠóC�O���=�9cj���/?@�8�$`~I,�#� R�+�W��dQD�Iy�7����� ��O�������B>2��]������7�ot��~` ����M7���N���b���Ҽ�@`MKF�/��aV�L� � At�r����C�J|]Y#n�>��tF�6;�:��<�r)��2H�;|@,�l���xĨg�#yUt1�es�$7DB�05n�a2��Ĕ�y�$�hG�ف�{�?<:y�e:k�b��uq~�� �*:��K\WV`�-�߶�Ag�U�Y�R(�@�"Q��Ȼ���L6�]����V ���� ����!0�5y$QT:�5�&0G�y���8�rt��h�.?=���A�`�?��ċ����[�g�*ܿ�#���e�D�.ˊm�⏳$��*������d�I�{R�R^| �4p��@nduA ��!�LS�m/�r�W��e�T|t�Z�h��;������;MU&̆<�|��ek�Li!17$��+v��0m]{U�ae9�����S{p�3�ꂉ���gS�������ϝÊ�ZTV �.��� T�;�=�Lyj��ή��z� D� �SMJ�'��L�1%�5ҭ�K�.G�� ol���J�K�5cK�e��)��j���� P��v�ݩ=PDR��T����g�!PAS�/�(�???=7�0�����`�t����d1��u: P#tG�.�=�hK��X�b3vM{�6�:�Զ��E{�y&�Q������I蕔�B����IN4�5]��}����}5酔l�(%��� �3 f�YE!��Ҕ� 0��W!�/�ps�6Mͱc1/�A�f��Z�U18�xM�{Y'W^��liں�C �(py�W�3�M;�X�eGY�0�%{Y�uq~���!�Dz���"�!���W�Q�y5��� �*�y۪���2���OiL� �3q�*��Ԯ�����{�{}��W���ۢ:E����;��(pc;g�`�Q��<ǪI^�S?�і(�'�t�`�r���.� HH�%.�(:��e�'�!h-��W���T��C��c�1�I2J�l�ې�r�#8^�U�;k]7�7���R^ �"u�x�`C�j��+1P�����s�=�%��b1.QK���8g��Bo��`�94��4#KU[Y�������S��:�TV�H�����h�j=�j��XA�Ļ�X&�U��%�@GFK5�:��ʕXܽ���b�NM�ce�:fLc���^NTNXA�'!0���1ڥ,牚z���`�L��C{�t���)�єx�P�j��L���^���u *��p��`�� � �͢ۃ��>F����{�U�E)���5U��BLZ�����[�v�)p�,$G�.&�?XQ�����nR�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�vqq��?ާ�z���X�A��ḡ�E.��#�)Stf����M4�� �b�~��)�lP�i�!��HK��LK+����:��7��0^ � �F�b��PیM��!e H�*������8D#Z8����Β�i�LɏЅR�U �L1y ��F�C�B`�]���%Ǒ�� ߲ ���R���?���o/���$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��Φ���^e!�tn��gVN���ܷ�m9�Û:�?D��f��#� �<��������� X��|�'�0�_f��a��M��F�3�z���t��W��d!�{���zm_��8����Pqg��v�21[�wɣ{���G;G�Z�9p㐙pg�1�Î̧7���ii����E��(���rL��Y�������5�%�1i���j����.-z酇أF~Gg�{}����|�*�/�?����拍���_��U ߦ @�\��dX�+�)��w�� ������9FW[���WǗ��E����p�m���za����^��"}R{�Ѩ4��^�m��B�q�+F^0�p��K_���Ҹ_���l�V�� ��4�;��J�m��n�o�6�5�͂�������I�x�wzrptX�^}[O.e�Hds�.����e#�uu��{�/���R\�� �ß\`���<� ���؏c����*�=ŭ �v�����). �P�b��R� �3�wm�?S�8l��|@���q:���n�ra��kJ��a�>�& ��� 0?�3tAq��]*G5��`������T�R�t�`��%�x���\7k�}��|a��^7��g�J�N��o3 ����@@Q�5��7ɥ�������i�,KM�}w�7�K)�^�Y k4�W )��lb�T�'`\&i��+x��<F���5W'�$����hQ���c9CٳlyԮ�"�z��� ��K��KWz�e�e:�d�P7��X����b����p`��CqB��4����gh0a+��*� ��r�I���Sl�1�ץ3H ^���C�F��i=���#$N!��J+虚��*6g*��Vi#���t�¤i�J7�]=�D�(t��T�F��� ���S��M_�����R�'Ӳ�l�*vLG!?�̺�rۙ\�BB���FDr�,.�&A���&�n�tXW�0�i)*���O�m���f��"Q��7K�Rj�`��mh��p2Q��,�+�9�F��{`vY��d�.���=<:9���|a1O��w�1棨H�������g�Q'٦��a��e�6�f3&Z�]��;�O%@]'�J���"�����z��l殇�y ��0F�L�y�����rg�<"�cY��� zSݟrr4�������4�c�,����JAV-�[-J��^��[`�q_��W�έ�gH6P� �N,�j.��� l�/K e%� �=�������Mt�l�3ȞB�<=��<(Pʕ������B-������x%W��:C�y@����\����-;����'��� Z�hEY�@�bu��Gir�d(����'�r�s���`�;�{����:�`�-"��� AwzZ����j"V�|�gN��,9�L8#�J�"�ձM^x���Ė�����f�x��&r��!�h�O��ȶtQ��j�B0��Հ�DQT�P"��"N\Q� 8Ip�bHLK{V���꙽7yV�2������^�?���V�[� )Es2�#D�o�^{5߂����Ĥ�_�(ٰ%Nr7�U�S:�鸾e~:��A���L�?�v��!*�5jG�4�:8Gs��j���T|�v��S�W�8�q�U����T�5�����F[�[Z*i�:��̻�keG�GO�07�b!��=�#ߘҷ"��q�M������}R���%I5���%l�0�0Q���(BY��c:�!�J.K2,zXY�<h��9�+����_��Ú��\� ��d��|���gGu.�"b��l-�E�+���ܙ�6ף�Bg]x���5B� �B�����fi�b���7�A�JPwL�#6!�q9c=�.��kF� *A� ��-��Ԍ��C�m,S:G�a#�ν�Cd�&۵��h_���� $�/��"f�m���T���y��x���qs���&�هu����gY+x��z��Zr ���uX�F��v[��ղ���a��U�8 4��*w� 8B[0�lq�T�;P۟�iD��q�l��������J@���`6���$�'�� ����P� ���M��6�Z꡶���#lg��:a�o ��:���f!����S���_���8zY%tY�&��*J�g�(�%�����bTh�0��E�X�sj�c�>���]<r����n���!Y2��#ѕ��f�f �,G�tQm8��qn���2�)��l#r�&y�CA�yC�^A�Օ�Y���cQ�p��9s�FmAq�~ ���;I')2���b �$�����J�/�_�����x��ӽ#e��j8i�&ӳ ،z�t ���V�LpY+׀Ձm+�J3����^2��,�]�'(PC�K�C��=��5i Z۠�O6��i�Z�ܓ�H����_$�y3�'-�A���S�,�_O�?�n���v��������{�|�������a����]����}���A�|��%W����i`�p�k��� Lv绽���wPX^���ͳ��d0��ʪ�k���ݝ��_�<�\|TD�_Q�� ���/�Y$J��^�>�g#��*V����pj4�}����y���O�Ψ���T� �{����`��|�W�{�ϩ�2Mȓ�t�h�6�J�"z�N���:0��Yu����U{6�����E6E�ժ�y��&�� 5U"b�La����V�]V��+$��3�B,�xE`Y����Q'����o�:�0 �q�K��� }�b��USa��!�����h��Ր�A�NG��t=�=w��zS����ҙ���[�<>M(j��ځ\:R m�� |DY��gd+n*3-^*�l�>ź��_�h�"��.溠�H��P~���m?��o���}?��'Ӵ��+�v,��wa@P�����&tb����uXT���7�u�K#�t�"����|R��"U{��eu���z����O�w[H�b� �dî�bQD�ʧ�5�'�|��G � �z}��9�͞~,lR�#�uղ<�Y��8#:�0wݴJI�m� ���bj�xN4��ݬ=��dk���[�p^�*"�����.���D��M�'��e�o���C������,=B;��z���p�-��WI�*�J���(.�:��k���ݍ�"�8~ޘ�����X�[���A�ו,o�y��_ļ~��tQ�ݭ�w��6��g�w��K�D� B/&��3�tcΠ�Uof�,l��^Y�u�mnw�#T����r��h�y���ܮ�(�x�h�.�L�)LV9J���K/��x�8d� N�|�tH�b�C��"]�Z�:O��2�*�F�O,u㴇�⒰��}���d!�9��4�J��v}��� O��UO�tr��p)�s��b �E�4�$v!�"��G�EO�)00s�^�m=�>���=�(YԷ�)OGr�d�k�I�:+(>F�g-(�A��\�O�-�����igB+)� ]�<л�n͞��PERR-�Ht��������o��o��7ww��|U�l6^����C������ +�7�(�Tu:�j�h�hg�U�,�1�Z� 5�^j���@+�Jy@Wr�A��(��'}�gq&d�努��/��s8�f��ol3�!��s��ʛ/h��⊚�^�-�BQox6�A�Q��1� �����7c˽_Y'Qua���{��/jO�/jR�H�(�h�ȅM�H�%�-;-�nT�_��,����2�Wm��!���IGX �'D���y��6��߿g��6� ��v�&���+[���Q-?s��\K]�*�a�H����W:lN�o��C���8}Z����a�L��5`�(���J���>$ �x�t욂0�+a�=���*ϒ�*��T|]�B��u\���|�)-{|{�SQ~�FE�E�X3H �C6'/�B`'��ʇz"t5p�������Z�����a��?�s�ʃ>����?�?���G+�P�*��J �J��)��:��<�+�(ywYe�_]$ �L���<K�:� 3�҉z����,Q�����I��.��&��M�9�d.��V�H[{�{����'轥�P��ww�~�����=�Z����l_;5?�b�o��^9p����7h£ O�|�a�W�wIa�1�Zi�-H���3�TPjg�D>J��C�$���A`��](�,�@��%n�@���N�12�DG�랏��QxVy��Jލ\ <�W��t�-��OG��O{���`�����#[WB9�!Uw��!�=S�J]írׯ�^�7�@��gX�fe��tɴ�n,S�l&X2��_2��K�TX��]��Ŭdۑ�tx��XJ�Ls{���v�W:Ҟt~ɲYP+T�y-<� q'�C#Ť{>�(W�_�g���3���|(��QF%���q�z�q2�<)-�5�3To�kg��Q��m��,�ْ`-� ���p+��Q�?���U�@i����y/g�8R�"�-��SUl���+Pf�¤�$.�$�:� �i�~���2���W[�����Go�� �땼��O0���k���=�/����4 <"�\��P��X�མX^[� y_z�cq�CQ�WV�F"6�ޚ ��\�_{�D�B�g��"m��OzUP*gyҡ�4bm��TGR �H9\���p������t�G�����A� }9ՠ�x�#�uv���i�K[d�>\���X�@*{��� *;�O���j7�jtmn�s�(�5R%8ڢT������㷅��ɴ#(��p�����li�H4� ?tGV�릠��'��s� ̕��Xfe*㉒�bKlO;'QGz��P�}/�rΦ�������Pw�N9�(;�I��8ڥ���b�dJ��k�O�!!y�� �D,.r=M&��t�x�]����~��� ����8�b�S8�NO���S֟4�V�h��>\�����]sw.�f�O�q����Z�a���'��{�˫���,@o��\^^yX������p��u����t�='B�(_���h��*�o(4_К��8��?Ssr}K�� �Nl߷��;��U�荡}��%|��9?.�k�C�kO�CfH��)�F��hO��I'�%� �K�s���ff���u�X�㔑)*����� �=~!CZ ��+g'Pn����*�S3�t�Ĉ̥i�+p��Ѻ�C��rw�<L��;�J%�K����oo*���O��� <T�$��%b��P��?z�V*�z=�)\i|ps���y�c�b�xA ]��:p�C1\�J�aS ��8v�lp���4d���Q�X�<`89K�,#� s��?j�w���.����^�⢗�c彷�~k>*��Y#�x~�`ï̮����T��//|馲�����T���/(��e����)�nU�]&����4���*���X���H@��U���� ||9)#�{��0�e�~T$�:�v� Y��P��R�T�m�FRi�d��'����9��# ��a� _�Y4��&����������@#�i�H�ɗi����J~= X��C� ���O�j� ��b`>�O:hn;�*D�� u��Z�����F&�L͗B�y�x7[�?���`n��X��_P�㹕?�m{������_\��[`�r��{���jK<^�-랿!-ί{����_m3��C���Q���n�g��>h 9��w�Q��9P&�o>)#�+�.�P1�b6O�Lx ÅN �����1�1�;^���D��U���,����3�~��$<�v�Dqn� a�����Uv��<�����)�qA�?�t��,�ۦ�:ƽ�i�5.7o끻X��t13�Kf����x@�p�y��h���l*']=a.�8��x�a)rh8�dž�� ���t˳�f��"�vt=��n��9�y�{����>Fq��I6T��H�n��kQ�s�<Z"���K����\q�/[�v:�%-�4(?�W�"y7���k� ����/�U�!g����,�cj�F�]�~�ɰl2,�Ȱ��HU U�2�J���t?���?���Y���:P����Y��ٕ��{���x4i ��M�?���#[�q4�++�1����)Z�C���?��G�,�^_\)����w��*z���$_���} ��I�-TV�nu�f�h������Q;ڌ�����n��ZK�%��K����~�}p��� �����E{$�/�Lj 4���h�~����6���FY/Z��arI�)1�&�"���J�� �{����Bg�݉���%���/��nF;*Y��n�K�V��h�����m��'ѿ���q�A7�`�GU��"�&7�ޖ�J�휪�:�%�E���{���bҝq��:�\�Ƕ>�dU{�Yv�&���4z��1DK�N��5�-J�O*��`��}��ۏs]i�Đ��rЋ^o�n ���$�%POrn�#ݐ�I�}G�ch�ꨤ ̔Ѩ� �� SY$�5���G��#�1C�ѝ�Hސb��Y2��"IFp�M�'���wSES�@���h�� �"e��ǃD�K�=O� �<CTtS���b�f*Nj���\��e�!LA��}���-n�+. ��#(�+\\Ǿ�A#Γ!�QM18.�;TϪ�P��^Q{!�ں��*���� r�$ِ�j��Z����Ǒ82"��)�P�W�t��#z&�}�i�\�ּ�F)�������pF����]��gԟ�o@�j�� o� X�ICO��uF-��fj ���m�0�GaHm�l�~v���4���Bε�IB�L��D�˩���� G5n���Z� ق��Z��� �Γq4�i�ڐIj�j��j4��eS�E�@#y��>O`Xz�<X��b�u/�#�� �V� �&�.�lh-�D���Yv����"W�҆��=`�{��8<�U��$���HV�%8�KC�����ԓ��т�� ���E�D��Ӹ�'�hB��lDK(@���7rLp2%D���)n�"��/;{�!�1��^Z�+�E�Dk �0b�\A�!E"����v�Aݴ��C�D��� �R:���)�eU���z��y�.t4N��w�L��"�Y�/奞4�d�>g�ᵚ�mS�ר7�宖H�!�NmkV�ӹ?ʓi/k�ζ;,.4&os � /�� ���݄�ܤ#�c�#�i��)t�@M�m/� ¤ ��]7.+�M��4� 2\#��T�Yp��.�S�s.OB�#�L:��!�'����> ���8R�߾Oc��(��w+䶝���6<|�v��J��ʽqW�x�M9�V0��a�w s������ׯ \knO�a���ja�������K~�A��֥.̟9���]�:�Or+{j���l�W"�ް�� �y�^d�_d��,')�a�"�K��#'�:$�ճ��dFF���N�� �iU�8-Qܦ[t%�(��a&�.D<�+����E���c���0Ւ���@�z�o>�4� ��>�D�!O����RNAH���G�]�AH�,��kD�Y���[��l�j��bR�A ~�k�{{n�6H�_�>:nW}D����m<J�s@u�㚜<�{����O%Z���� ��^sj� Bŷz�^}N?$�DV��>$��T�^�q�76���*�6?V���Q��;�Txˬ�%�Е|�&��!n,+Bk��]1�q5N��L mF�� \�)�P&.Ų�0�_q9��5���yާ��uV�-�7)#��,SY*�M��偹1J�|B:<�Nh$z}����Ǝ!lUi�yr�p���}"��IͷƧ��-�����Jn�U7���'��l�U�$�x���i1�q���9AI!�ġ�A�5�37�A��ާ���j�Rvл���Mi���JS�u#�PQ�8��� �y�y�AZ��q������س7��!�,�]�*N�ɸ�/B��"�폩+'�� D���Ȓ PLp�*� |�\��k��QA�J��Ê�)�*��>s6�!�X E�j��C�B�LB�,[�l����ã����[_�2��#5�^s/8�X͝l�ϳ��)"4�v�:pߔĔ��`��fMXuF~����鮛��<4쇟1�mAq����_<��y�C2�Ч�\��O5q����86��V�xR�>)Z��揕�T���OS\�&�ro�II�M��ꁄo��y�v���� � )ç�t�iW�O#��c�k?�}�5!� ��8Z��JV������ 9�Qv����P���}:Ǡ����a<��քVkZ$~��P2ý��BQ�9@l��=�%�q��ȣ$�ƣ�����S�G�7�dC��(^��`�Budy \���t� ���$�(�o� ��x��2�j�8[Z����_�Z�P+� ���U�]����Y����FDKC�W�f�أ�,��h�5ͻs&0��Z����r��� �c�XSV���<�uE��C�O-K���G�H���ޓp�r�� �x�ΰ���!*ڐ��nO�M=z�9�_���_�xX.��U��b X��6����)lZ�t�ܼ?uR�~���ڔ����=li:��%�$t�Z��;<�Ь ������E0���ұ��"��9, yI(�Qg�J���mL���t}$al����.qk �ur�i}h\^^6��tQ��(��ZVdk¯T\�n�ٳq�=GJ9�JQ���/#z�* ҳ�`�!���`��u�!'�]� Z���u�ȅ�MM��+�f��{������L�QQ ��>�u�#��Hd�+�G��O83���;E�� WjE1ӳa6V�w��=��XH���ۂ#w`6A�2 ��jQ�U34-�D��ى�!�,��qs̥�Б�z��U����+�_l=�K���-DΌ�_3��b��!]���ŞxZ*�f����Rlf�:Ud�Ka牯�h��A�+���[���fԃ��w~�zrϰV8{a�H�fz�^+���ph���N��B�5ǂ�ʗ�fG�ϵNf ��*��:� �L�k[�e�3�n[njb��|ё�+w��IֻRGE��"��Pd���/��\d�M�cFU�}��\�X���� �B�����KQ&5�!{ګ��M"�CY"aE)"F0/Q�c6�"p�r`�+$��)�S��U!� �?S��Y��d-��|c���oDd�@�H�R�[�U�C��٭�g�Nj���%f�X8��l�l�����O��Zۍ�75buSSav,�'�#B�^��*$��爄�y�HH��!b!�_��@'�B�9>�.�2T{��0U�s�W>kn{j�B�뺐� �x�Ò u�� L�_��Jz�P병�f�\ʟ���� �N��p��)TO2 �7��D���i�h��o�-X�:?�d�Ew8�sQ�UN�f*�.�Ω������Q�}2������>��`������z��E& �Ƞ�s�#X��7�� �&��[��w����O莲(� K �G�~Hm�����e+� B��T4'^���S�"f�|�@V3:l:X���57R:߬�%`�b� Өw�-�^�| ����o��1��.�CN���=����j��<�L��n�(:_4�Q�:MX�GIEa����Ae/�Y�^n���Z��n���̺�j�v{��C��E�0Y�5^�n{�9�e�����wɤ۬�����>7Ņ�V�Ʃ����;��hG/Ŋ����Z7����FO�J(a.Q��K`j ~�>�͑ ��Β�[��M P�>Z��3�r��]��y��qX�r�E�g�l�J�{��=/k�u�O��eqe��n�����2l�9&��J�IS�Fr�,��n����U��sȖ�6W7C/�@���F��V�D ��D/h�t �����`��� a���pS�#`�Ѐ����f�V�Y�2<��P�c�S�Z_2XmzB�T��!K���Sv>�����Vݠ9pL�XYp4Lcy\D(����J�wE&��l�v�A�9$�����}蛅j���h)�)4V��4��2#�o,�rSV�ѝ�j5�g��ɥ�Jf�'���,�y���]�Ck�����|������0��; s�^bzh�"{Y�G;�mk1F*Ć�p��M�ɬ�-��1��k���l��OQ9,�7W��]�PB^S6k������=�/p��C� %K�Lw>�Kڬ�m��ܿ$��h�,%�{��d�$c��=X"c�8uBQY��_E��ŋy߱\gV�\��b99"�G�v�=4aE��ɥ�+~ ��D���3"�#�զ7��̌$&�d` J7�U��Y�������@�p�v�qw:`'��&*<��qnmĔ��c�QP@?{&eFx��p��x��ey��_Pż�y\�"��� ��]ݟ�� �r�&/#��[��H�d�!��Na���L"QUi����<!P�`��bd+F̌C�� ���2'�w����N�Ȑ�d�O���]\9�ܝ�:���G� �X�JDä�p��?�&R��Ӣs���j3����yG�˻�뗮Dʯ�����+�z�O�g�� �����H�~�\�V(�� � =��}c�� �c_��05�N1k�(�pm$��.?�.;V��E 1��%�9���z�t>��I���+�� 1'����Kd�1ʥ�&4�?+�A �֩�g�g,��j�\d7)���� ��٬H�,T��2�&�Q(�$8g �]THn�ao1�$����bM��y&N4�?��i�P�"���v�EśE��nv^�H��jգ�E�.�gEb�b�.��2��k�:ҿ���cDMM'�LrJĂ��1\����Ct!�E��Kցӝ#���^'ų��zt> �W��|���j�7�G�L/�o�Hp�v�C��X+U�o����# Bi�A������2y{�:%�'���^�>�3�L���(�&7�1s���4���fN�q2BA^�n�4��k4ǒq(J�)|I���v�i��i*�qb�d�6KÔKs�nf�5�z1KYe��k�-G�,F�~��{U������F�]m�T��%L��#W�D��� �7ʺ��x��P��)W.5�f }qgd�H�ސ�݈a�2���\RS��?�D�k���V�X;Ӥ��������`�� W�mlW�\�#pE�����ۻ�G���>�s"'�n ��"���+��0J<�&��h�}�H+s#Ҫ�=�eB�Q� X&W�T� v�}TO�9:����Լ:�Ŭ�W: ��ۢ;�8C~�}["�Um�_��f�w���d?�Qˆ�~ư[rf<�,���q.<���'�Y"��k/�S�D�HY���z��~&��'�� ?>Z���}-��p��&�ps8���:?mb�^��C���]�i݃9t�괢k9A�͖n��KMXP=�[t��P�ӏ�7���<�+%%w��V�3�&�$o_�������./���U���}��|1�(�ѻ��� ٍ�<�=$[�x%����ke��H��!��׆���x�sF�D&#��P���� �=�%��rc��*jQ;��"� �:�q6[WR�����H��M��[�)�E�kKn���z"��gZ=9�g�8מQk;2�g �'�f�� ^C����c 3�0FqY��^4)� �V*ԇ I�����mV��\�����Aqx"�B�]fI��$,dM9�2h>�3s�Pt`�cKxD�@1�<��gd9a��3�4f�U�x�L���I�In>��Z,� g{�*�}ؾ�c�P��lloISw�dÁU�&Ϫ�O�f��I�5?jGO�0B��k��y�1�����D餁�!�Z�e�̱S�z={��5 :]t��H�::K.ہË�IM���5��ZaL�Xem5pjs#f8�0������6�fqi�)�A���V,��Y�Ma�y���OY:�F�.X.`;L7���ZQ�n�{)��PjuƢ�S�AG�3�6O��n<DgV�t�.LX^�K�[GBc����g��-�$���I�9EFP ������>:\��Y"H$jG�����7C��'��W�)�]��z%�&I|�� E�ы���>�bS�F32{o����Xza�렅͆��K0&ׁ����mmF��ӌ�3��O͇Iݒ��i2���$��a���f�U*�b]dCVԴ`[d� ��8��+�M��1�,��.�L�h� �Y#���zT�X��Ao�#��-�J�`�Nw�A˵K���Ϋ-����e#~���Mc�-mϦ1}a�7��);1����Ɔ��U�y5��/^���\�k{�N(Z�����َ�-����(X�c�r�vg��^�`���ǹ�� X��8�|���,��:H�4�|Ж���&��&<�9�$nD[U��!�4�g1Π>��<����G�<\G��y'�78���2��s8�X*�O�]�{���V�Mz���\� ؽ��&7%yQ���O�7�內��#�1������ p�~Z���� ���ᤒ9���:pV�QۨCtc!�7�ݓ�$#���F]�Y9Mb�=*>ͦ�{��U��yu݈)��n�v�Jμ�������j%�e�Ѫ@��~-�F-�$m���U'�4ƓGi��"ͻ�0v4E�d���.�t@�)��qڔ��m3�!�¹эx,���d�VR0<�W�_���W�(|�rK��kO���lH��K@�"X;dg��r�^�TS8� ��]�*v�5"��Q]�0��yt����c�}��q}f,��0A"瑈~��"�T�2N�vB��/�)vr��/��۩c�&J�'��wH�y���k�Q0#@��]�^�T bA���=���{�� Z>��ɚ���d�Hx�.�~�4on:�@���\����뷴�����D���;)'_���*�ŋ���v?Jm[C��\�mJ_�Evp���|�|�%���a ��]�"B��\V���M sY��Q%�=쐦���0i�G��He;�� �66���y�LBE�ߍa8��23�g��c�<�(D�0Olܦ�p��V]&Ymه@2.�/�!��1&5?$dSVR�p�����K�Ǿ`*l�$�=V���^L� s�$�xщF��Ъ'�@[ I1�_�a��P�x~^�;�~C�<���8�p0�H;PZ�{�G��>�Y-9]"SR�fRYmXW���v��YJ�8��4 �H2BA��.�Ր� �P%��k�R�(���8Z�%�����h)9-��h3 ���r}g�TіË��av9��Fq�tX�`��-(��w�N@!�v�xv{�|����!�Ub�Imd%a(B�%7 ��&{=���4,�T�x߾�tO���$�������0�g'����ZySuFZ�o�Xfu�]w8*U]��2�jIWcw#:��Tox}�߆Z�$��ZY[�������ɫa�"s�#�A���w����25� rZ���N.�,�N�Z���u�ɸ?�%T^-@�l(vqPE��gO�Rd����=<,� +���>�+��FoU�9����f�l�ꓱyJN��2��}�G�z꒖����/.bt�#)�����a$o/q@$m����4l�--�n��8�7JK\<\+���zn����.�Э���+P�;�Y�pR��B�x{�%A Y�n���#4�9�d�jsh�*�#���,�m�5��-��\�X9#+�Pʇ�H�P��}@?��7�^״��L�5V��v�l���y��b��<�nG�b�[8�d�����~M�ܡ�\���Ba�n3|_:z7�z�T��^���Z��&;���,#������M�Ef��/��p�+a�@ �t[���9�wa�,��vl�]��ŝxC߉��^շ�5��l�L���R�B68/����!���UB�[��,a4��n��)R��k/s9�S�J�֬� *�ՈF��Ry�g�g�}����6��֭s=5���<��B/HV�Ŵ2Z�h)��q�&��`��F~����y�}~�v ��^��6Z���ZhNf�� �:VaQ~��b� �y<au���+�I6.�����UaT˛S���F���3O���r[{�^moU�R-x[���u�z@��\�u����J%�=�ӌލ}ܦ����7l��n�*��ֹ�Dٓ�xm���;�|Ef�v�S�%υ1y�[����O����D����h���d�zJ��� }�?V��%;1�N�i~����3�R�0?�/w�(nsw��r�@b�>G�א�m>� H�l��6� xq/���Q��� �+��L !4a� �:E)g`�3fP����W�g���Y.f����Іù�h1�D�����c[��֕ 1����Ƽjף ?�:;�C�-Y���3sIU\&�L�����z+�c�z�⩒ ��A�]���ZiB�d�fǑkI��� @�1PD�|�x)�l1طbW�R�j�Y'xG؏��۬P���5Q����^��c�P�O�]e5�ߺ��@��~����ҽ�wO�S��;!�A]��7�&���2.ۀ�Yw�L@ēxP^�]� ����+TJ� ����Q���kun{Vok%�q�չV�[p�'�[���6:J��\\|T �����Q���ag��8:kc�NnLd@�y�/��bEmM��U\{��"�- Pc��S���K�/���Y"k^� �OF��A�>S�Pq��r��i���Ԑ:�����Kܮ�x,^�����U�c�I��(�t#�t�Ɉ�Lb�Y$)b#1o�pU0��5=����@�i���{ ��H�!9/�F����˽��,X�.k�)��y��n�X%��fx� s�*�薣�SB��!�N�Z���eu.��Ԏ��xz]���2�X�mi��Zž��х���A��r��z��2T̻�Q�io1(���[zk���nb9q��b�?�C���C7I�~ юU����R<���m�[zz�c2{�E��{R�Y`S�� ��m���[@�<a����z;��g�-�!1�uW_�DO�綟/@_�<h+�+�E�����|��g�xs�܋�՛�����g"��Hi�� #[[�8�[� T�+"��֨.�C�����2 R��I�kU2���D�Jph���EQ�f��R��p5@��]��;���P�C�U"e�S2m���fi�-��X*����OhC��� �Y�W:���њC@ԫ"c���b�*���Z���T�b�%'�f E���'͋e�Y�[��ͰN���;n,w��:z���`�ޒ���#ylq��;C�at51� x�����[O�z{�C_��75��6J��d� � -� m��PZ�B^0��x������m��^�W; 7��ak�d|T�X�g�eN�q:�@I�+O�Nvg=j,�)xϧ��B���՝�ˁ�B�w ��@�8 #���%�4�~�%�=2��f�<�Ed����oh:<͢A��ST�V��vY�@�q�Yd��w�_���u��b��f�E�8}�q���ꞏ��ɇ��R��J�|To��"o��ǽoj�?�ZF�-,��E��m����"C�$z�83}^ �����p��]���2W��Z��t�lN�K�v�lU"{D��K�=�sO�w-��`��_x����p:��2~:�&�~Hz��Χ�^��O��nߘ�e�#&��x��Er��e<��9�߫O���i��9=�t��>�u'�^e�?=O�e���������U:$b1�{Šc���p��r���8#��Bv. QN��Ƙ��5F�]\�E_��~������ۗG��J+&`HT��D���=�^\ڧðpkMZnvt7Zz�h�����BϭH%|qq1�C<n�Н�F���Ņb�]'},r�X�`lqz���o�č��ޭGwa'}\��n��ا=���Z�݅�[p/.�N�;@�W����r"�zԖ!o+�OCv�`2ps�� nm��\��ﰭ�"3�2�3Y}�~�7 �����L����V��f[�d��A���=B飩扽��m܃g��~��{�%K�26lr�a<�T�[(r txңM��M��M� ��6O����\^^6/�5��Y��u>��>=�NZhh�7��W獥�ͥ{��S�GU?Zi>�8��R����^���� �G[���B,�� Mg��| d�e�]3�����jiA��D�ι+T�1�;(S���ƭ7�l�X'0�Ǎ�f�_�*�-��v���\��(���gJ�YJ��;A�y<�ҁ �^�0���`:�o[�MZW��BeA��I� �\i�s�W'"յΚqt����i�"@��[��)\U��t�[{ڏ�l� ��y�j�a��gza�u�����Â�*QX^4����r��7_n�h#�.��L���˘,��_���a�}}w�f{���A���������r|���������Ky/�$���n�lE�{��lo�o��|�e�F��>���G;�~�����!N�W�&Z᳣���=)�!#Ng��t����SY@d�l�A��*�I������+�.���i3���*{1��"�/��G>��o����Sl��bo0Z1{Giǧ�)L�C<