1:45 PM 11/12/2025 ���� 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 ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
// Copyright (c) 2009-2020 Vladimir Batov. // Use, modification and distribution are subject to the Boost Software License, // Version 1.0. See http://www.boost.org/LICENSE_1_0.txt. #ifndef BOOST_CONVERT_STRTOL_CONVERTER_HPP #define BOOST_CONVERT_STRTOL_CONVERTER_HPP #include #include #include #include #include namespace boost { namespace cnv { struct strtol; }} /// @brief std::strtol-based extended converter /// @details The converter offers a fairly decent overall performance and moderate formatting facilities. struct boost::cnv::strtol : boost::cnv::cnvbase { using this_type = boost::cnv::strtol; using base_type = boost::cnv::cnvbase; using base_type::operator(); private: friend struct boost::cnv::cnvbase; template void str_to(cnv::range v, optional< int_type>& r) const { str_to_i (v, r); } template void str_to(cnv::range v, optional< sint_type>& r) const { str_to_i (v, r); } template void str_to(cnv::range v, optional< lint_type>& r) const { str_to_i (v, r); } template void str_to(cnv::range v, optional< llint_type>& r) const { str_to_i (v, r); } template void str_to(cnv::range v, optional< uint_type>& r) const { str_to_i (v, r); } template void str_to(cnv::range v, optional< usint_type>& r) const { str_to_i (v, r); } template void str_to(cnv::range v, optional< ulint_type>& r) const { str_to_i (v, r); } template void str_to(cnv::range v, optional& r) const { str_to_i (v, r); } template void str_to(cnv::range v, optional< flt_type>& r) const { str_to_d (v, r); } template void str_to(cnv::range v, optional< dbl_type>& r) const { str_to_d (v, r); } template void str_to(cnv::range v, optional< ldbl_type>& r) const { str_to_d (v, r); } template cnv::range to_str ( int_type v, char_type* buf) const { return i_to_str(v, buf); } template cnv::range to_str ( uint_type v, char_type* buf) const { return i_to_str(v, buf); } template cnv::range to_str ( lint_type v, char_type* buf) const { return i_to_str(v, buf); } template cnv::range to_str ( ulint_type v, char_type* buf) const { return i_to_str(v, buf); } template cnv::range to_str ( llint_type v, char_type* buf) const { return i_to_str(v, buf); } template cnv::range to_str (ullint_type v, char_type* buf) const { return i_to_str(v, buf); } template cnv::range to_str ( dbl_type v, char_type* buf) const; template cnv::range i_to_str (in_type, char_type*) const; template void str_to_i (cnv::range, optional&) const; template void str_to_d (cnv::range, optional&) const; static double adjust_fraction (double, int); static int get_char (int v) { return (v < 10) ? (v += '0') : (v += 'A' - 10); } }; template boost::cnv::range boost::cnv::strtol::i_to_str(Type in_value, char_type* buf) const { // C1. Base=10 optimization improves performance 10% using unsigned_type = typename std::make_unsigned::type; char_type* beg = buf + bufsize_ / 2; char_type* end = beg; bool const is_neg = std::is_signed::value && in_value < 0; unsigned_type value = static_cast(is_neg ? -in_value : in_value); int base = int(base_); if (base == 10) for (; value; *(--beg) = int(value % 10) + '0', value /= 10); //C1 else for (; value; *(--beg) = get_char(value % base), value /= base); if (beg == end) *(--beg) = '0'; if (is_neg) *(--beg) = '-'; return cnv::range(beg, end); } inline double boost::cnv::strtol::adjust_fraction(double fraction, int precision) { // C1. Bring forward the fraction coming right after precision digits. // That is, say, fraction=0.234567, precision=2. Then brought forward=23.4567 // C3. INT_MAX(4bytes)=2,147,483,647. So, 10^8 seems appropriate. If not, drop it down to 4. // C4. ::round() returns the integral value that is nearest to x, // with halfway cases rounded away from zero. Therefore, // round( 0.4) = 0 // round( 0.5) = 1 // round( 0.6) = 1 // round(-0.4) = 0 // round(-0.5) = -1 // round(-0.6) = -1 int const tens[] = { 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000 }; for (int k = precision / 8; k; --k) fraction *= 100000000; //C3. fraction *= tens[precision % 8]; //C1 // return ::rint(fraction); //C4 return boost::math::round(fraction); //C4 } template inline boost::cnv::range boost::cnv::strtol::to_str(double value, char_type* buf) const { char_type* beg = buf + bufsize_ / 2; char_type* end = beg; char_type* ipos = end - 1; bool is_negative = (value < 0) ? (value = -value, true) : false; double ipart = std::floor(value); double fpart = adjust_fraction(value - ipart, precision_); int precision = precision_; int const base = 10; for (; 1 <= ipart; ipart /= base) *(--beg) = get_char(int(ipart - std::floor(ipart / base) * base)); if (beg == end) *(--beg) = '0'; if (precision) *(end++) = '.'; for (char_type* fpos = end += precision; precision; --precision, fpart /= base) *(--fpos) = get_char(int(fpart - std::floor(fpart / base) * base)); if (1 <= fpart) { for (; beg <= ipos; --ipos) if (*ipos == '9') *ipos = '0'; else { ++*ipos; break; } if (ipos < beg) *(beg = ipos) = '1'; } if (is_negative) *(--beg) = '-'; return cnv::range(beg, end); } template void boost::cnv::strtol::str_to_i(cnv::range range, boost::optional& result_out) const { using uint_type = unsigned int; using unsigned_type = typename std::make_unsigned::type; using range_type = cnv::range; using iterator = typename range_type::iterator; iterator s = range.begin(); uint_type ch = *s; bool is_negative = ch == '-' ? (ch = *++s, true) : ch == '+' ? (ch = *++s, false) : false; bool is_unsigned = std::is_same::value; uint_type base = uint_type(base_); /**/ if (is_negative && is_unsigned) return; else if ((base == 0 || base == 16) && ch == '0' && (*++s == 'x' || *s == 'X')) ++s, base = 16; else if (base == 0) base = ch == '0' ? (++s, 8) : 10; unsigned_type max = (std::numeric_limits::max)(); unsigned_type umax = max + (is_negative ? 1 : 0); unsigned_type cutoff = umax / base; uint_type cutlim = umax % base; unsigned_type result = 0; for (; s != range.sentry(); ++s) { ch = *s; /**/ if (std::isdigit(ch)) ch -= '0'; else if (std::isalpha(ch)) ch -= (std::isupper(ch) ? 'A' : 'a') - 10; else return; if (base <= ch || cutoff < result || (result == cutoff && cutlim < ch)) return; result *= base; result += ch; } result_out = is_negative ? -out_type(result) : out_type(result); } template void boost::cnv::strtol::str_to_d(cnv::range range, optional& result_out) const { // C1. Because of strtold() currently only works with 'char' // C2. strtold() does not work with ranges. // Consequently, we have to copy the supplied range into a string for strtold(). // C3. Check if the end-of-string was reached -- *cnv_end == 0. using range_type = cnv::range; using ch_type = typename range_type::value_type; size_t const sz = 128; ch_type str[sz] = {0}; std::strncpy(str, &*range.begin(), (std::min)(sz - 1, range.size())); char* cnv_end = 0; ldbl_type result = strtold(str, &cnv_end); bool good = result != -HUGE_VALL && result != HUGE_VALL && *cnv_end == 0; //C3 out_type max = (std::numeric_limits::max)(); if (good && -max <= result && result <= max) result_out = out_type(result); } #endif // BOOST_CONVERT_STRTOL_CONVERTER_HPP