Edit file File name : latest Content :#!/bin/bash # This script was generated using Makeself 2.1.3 INSTALLER_VERSION=v00166 REVISION=bbd02f41c2c7b8cc2b2b50b7a7785cb76bb824d2 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="2145488851" MD5="90c0cf81a77f2e900f86b650e855b70b" TMPROOT=${TMPDIR:=/home/cPanelInstall} label="cPanel & WHM Installer" script="./bootstrap" scriptargs="" targetdir="installd" filesizes="59871" 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: 260 KB echo Compression: gzip echo Date of packaging: Wed Aug 14 23:11:11 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=260 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 260 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 � �9�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$%���<)�<$��qE%� 8IOpŐx�XY kP�;�g�ޤ�&eVuGe5��}V�Z�n} M�W�p�}��ګ���AFɆ-qʐ�ٍ����O� ��!��~���`���kn'��_�vN��s��sD1W8�6i�aH��j�k9Uy����g[%z��L�\�x�qx�o������fn��x����^vtnz�D���q���y6�Ɣ��_��o�o������|�.I��8w��,c��ɇ�2|�HGʂ�����TrY:�a��ʢ��@��� gX�,h��l~�k�ݕ�m�%�a�S���?;�s��yk�.�^�x6�����v6��۹F�$R��V���#�Y��f9h�X ��|�&d]1.g�g�ű{�hD%�Y᱾����1�q(���J�8�cb�չW�b�LB��d����Kw ��C��"p_�L�-��J��#o�O��;n�[�D3��a_���,k����UKd�����HV�n�p�Z�\~5춼*��9^�.�aGhƐ-Μ�xj�S#7�HR=n�M��x}�ڷQqZ h��fT=�d�D��ۼjA[a4��W[�_ia�E�j�)�<�vvh���֡)��3�KjRhk�:�)���Q����UB��k⫯��y��Y�^^n�<i.EU�6� s�Zԉ�N:��;���>����#������Z�1�%�<]��_6�i���J�KՆ�J��a�,��q���6"�k�<d�7��tX]i�<�i�3�j��*Я��v'�$E&�zX,�����AzX)������ ���wl=�;R�!a ꠆��m2=��ͨGI��j���U�r Xض�b~�4S�~��S�R0ܕ|�"5��d=ԙ�C/]���� ��d�x����=���Tj(���E��7�}�"dਏ8E��l�u�$�b�p3��w��� ��������?@����wU��G��L��~�ƻK�zE[;�>�j��<{���{�v^����b+��g���`�KǕ57���/w�;��s�!P�E)�+<d���?%Wd�(az�������Xi_��&�u��P�������V?y7�ַ&S�{�.P�������^���zAuW�iB�t��D{��V ѣw��ׁq� G��Ȫ��|�ڳQ��--�9(�X��|?�ذ̓t(5�/O���f2��^~��eU��B��|q1s�Q-��W�U[��u¯?�o��oP�p��\:_���� �XTq��w�OF���<Zu: ̦��蹓Ǎ֛��fO��d�$����iBQ3�h<��ґRh�Џ�#��]?#[qS�i�R�d�P͘�)6����hE���u1�5�@*o�p��d��l��n~s܄�駸q2M��O��jDz �q�jq��a{m"p}C'�P9��\�E�Zȹp���\I�����t��Z�'���� {�۔,���ڦ>i�!l!A|��(�� ���E!+��ט�t��a5\g���Q���(6{���IH l�Z�U�J�g9������u�*% ��H���9�,fv��V<�����fTn��y�S���B.kܞ���{[��7A���ѿ)�� Z�W��J��l� �]"��N^$��P+� Ԛ��@�#��2bv7� �yc��T7#;`�n��#�MW����忭}��Wh�E�w��/��~���� /,Y���T�6^3� ҍ9��V���pw��EY���NG�;B�;�����v^T8���:����W����d�A��d���Oah��z���C��D�gyA�4(�?���/ҥ����_H`*�Ri4��R7N{�).+�؇*�N"�����N��$�l�w� �)9���I�N��.}�4U�!�H����.dqADX�����i6�f��˺�;G[�/+J��p��ӑ�,��hD��� J����Y� k'�=��a�hd!�c`ڙ�JʠB(��[��Fk.T��T.�c��o�{�f������[/w_�~U�n5�%�I �ӗ��G?�yi��VF n(QP��t��������Yfcd�Pjz ��]/��]Z U�� ��;�RD�$>�#(>�3!3/WT=T~A^�Q6�?~c��9���TT�|FS�oWԌ�zm��zó�����Yx- ��V�ߌm�~e�Dջ�$Ȇ���8~V�x Q�bE��@ E�F.4hrD�(�O�h��i9u�r��F<e9$ǐ��f�a�~N:�j( ?!�廝�K�*���qMm��P+kWiR�˾/���J���g���k��]�#�t��J�� ���t�s�O�XW��?L��a!�L���ZIS�އ$�����]S� ~%��grPQe�Y�T��✊��WH���)�W��bвǷ�?�oը豨�kIa@Pc�a����Z��Vˠ|�'BW7�I\ k��X����m~w���1��KW>�?W����?Zy�E�k���*��*%ڡ`g8�h��l�/xㆣ��*C��" �xgRG�Y:�Ё���d�NԳ�'OE_d�"�l%�ؚN2� v�4i5n���s�\���E��{�w�9�y�z��_^��q��˽�t��t/���/�eҋ ����H��7���w^9p����7h£ O�]��!Ú���>�c�1�4�N[��ɉg�'/�����|�ډ��I��9�z�����+�PY|�j!K�9�* ��1b6dP5����=WW���vy���@x0�����[Z(�������9���ه���G���r�C��ΫCD{�T���[�_S ���@��gX�fe��tɴ����P6,��r�/���1��t�wv1+��v$8d'�f���(��ޫ��].ƕ��'�_�,G� ��F^D@�aC܉��H1�1�U�'��hr�\�)$J��C�QA G�8� ��8��D��ؚ��7쵳e����La�[����lI��� ���VB�����ᳫ���^�+��潜�H%��ö�KNU��F���@�!��j�t8��x0�`7,�����K+�O����?������=�A~���� �[z�x�O���g��tUu�F�G��ֽ!�*x/&��VkCޗ�9�X{�P�����x0��f�g%���^ �����*�H[|bo�ӄ^��Y�th<�X[�<ՑȆ"R���x4B\�$�3�9������ңGF�|�4�D_N5(�,�H{��F"bhZ����נ�?�(���_�76���N������� �]���\:Jk�TɄ���(�����{��]��~2� ���o��?0[�0� �B�ݑ��)�����~�\psek � 3�2��DIZ�%�����#=�d�꾗|9gSQ�`��R��v��;e�b�����Q��Rcu)Z2%� �5�'�ǐ����a�]"��&�qk�U��.��`�U�u?��s �d�tu1��){��I�{֟4�V�h��>\�����]sw.�e�O�q����Z�a���m����῾��,@�.?xT���/����O��������Zt"H��<O� �� �d��F����*���JgN�oi���މ��wg��*�1����E��eE����u�`w�w��u� �_0�2�؈0͒��;餽d8A��qn7��lu��n�`+�~�26EEr�Z?�\�Ȼ�/dH+�{�����m��[�rkƞ���c��4mu��c>��t�ÃZ����� ��U�yI�q"�a��M%P���U�;��ʗ���C���Ǐ�JB�So�ǂ��c�+�no�^�;�pP�#�A�+V�|(�K\m>j���Ǯ� N2�z�&��}MJm�'��#ˊC����%,��~㢗����[E�3_��U����l��ٕ/,�ɢ�~~�ˋʾ��^�����兓bq�U�/&��k�� 4�� +��:�A���H��BU���2�M|9)#�{����e�T��:�v1 Y~�P��R��x!�1�&�ߓgc���F{��W��0c�|�, �!uE ZDC�$XE?f�4�?Qa��4����js��<$x��#� ��=�O� �;�R��b8n?�O:h�:��$D 4���v��P�G�e#�J&�ˡ�<��߬��Ck8���V~�T�dn�O~۞�,�C~e�W��FG�0.������O�˺�o��K��^���m���v�;��|����,� �F�aC9�:�$8�'e�%�#�P���!`�X� Ĝ&Ì���8�[FCǫ&�b�(�j���eA|����G�+J��i'QOw�&��)9��Oe'����C�{i�^�����jv��'��:��{gS���>�F��m=p���E� d��i�]��R�W6���V۸˦�q�5�9�(�� ����N�Z$��ӈ8Px3ƛTvz*&�R���l���� ��n~�|���o�d�j�ZG�01��p�8�bץ0[�#��2h�ڣ�����k!)���b@�6�7ޠ��C��1�y�i#R�H�NI�!�Fg �r� �@)�G�f�������,=\B��+K�V�Ѥ{�7m���_�l��u���.�[��t�G�_��cL��� ���ǃ/�����}:hG�|�p���%��L�_�@��Hi�L���yz�����G[�G�h+������Ż��j-7�њ*NJl��睃�ݽ��-5�/Y�Y|A>&��ߎǣ5��ݦw�g�A+}5�zц 4�Kz�O���0y�yU�AoNPߏܢ�%�9��O�!Ns��h�t�h��QĎ*V������m��k�����M��c<�lF���� uܠ'�uUE�H�h��z[j�*�f�{����{Q,{��y<N��9�u��*�m=hɪ�v��"M:����!�F�&