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) 2012 Artyom Beilis (Tonkikh) // // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_NOWIDE_STACKSTRING_HPP_INCLUDED #define BOOST_NOWIDE_STACKSTRING_HPP_INCLUDED #include #include #include #include namespace boost { namespace nowide { /// /// \brief A class that allows to create a temporary wide or narrow UTF strings from /// wide or narrow UTF source. /// /// It uses a stack buffer if the string is short enough /// otherwise allocates a buffer on the heap. /// /// Invalid UTF characters are replaced by the substitution character, see #BOOST_NOWIDE_REPLACEMENT_CHARACTER /// /// If a NULL pointer is passed to the constructor or convert method, NULL will be returned by c_str. /// Similarly a default constructed stackstring will return NULL on calling c_str. /// template class basic_stackstring { public: /// Size of the stack buffer static const size_t buffer_size = BufferSize; /// Type of the output character (converted to) using output_char = CharOut; /// Type of the input character (converted from) using input_char = CharIn; /// Creates a NULL stackstring basic_stackstring() { buffer_[0] = 0; } /// Convert the NULL terminated string input and store in internal buffer /// If input is NULL, nothing will be stored explicit basic_stackstring(const input_char* input) { convert(input); } /// Convert the sequence [begin, end) and store in internal buffer /// If begin is NULL, nothing will be stored basic_stackstring(const input_char* begin, const input_char* end) { convert(begin, end); } /// Copy construct from other basic_stackstring(const basic_stackstring& other) { *this = other; } /// Copy assign from other basic_stackstring& operator=(const basic_stackstring& other) { if(this != &other) { clear(); const size_t len = other.length(); if(other.uses_stack_memory()) data_ = buffer_; else if(other.data_) data_ = new output_char[len + 1]; else { data_ = nullptr; return *this; } std::memcpy(data_, other.data_, sizeof(output_char) * (len + 1)); } return *this; } ~basic_stackstring() { clear(); } /// Convert the NULL terminated string input and store in internal buffer /// If input is NULL, the current buffer will be reset to NULL output_char* convert(const input_char* input) { if(input) return convert(input, input + utf::strlen(input)); clear(); return get(); } /// Convert the sequence [begin, end) and store in internal buffer /// If begin is NULL, the current buffer will be reset to NULL output_char* convert(const input_char* begin, const input_char* end) { clear(); if(begin) { const size_t input_len = end - begin; // Minimum size required: 1 output char per input char + trailing NULL const size_t min_output_size = input_len + 1; // If there is a chance the converted string fits on stack, try it if(min_output_size <= buffer_size && utf::convert_buffer(buffer_, buffer_size, begin, end)) data_ = buffer_; else { // Fallback: Allocate a buffer that is surely large enough on heap // Max size: Every input char is transcoded to the output char with maximum with + trailing NULL const size_t max_output_size = input_len * utf::utf_traits::max_width + 1; data_ = new output_char[max_output_size]; const bool success = utf::convert_buffer(data_, max_output_size, begin, end) == data_; assert(success); (void)success; } } return get(); } /// Return the converted, NULL-terminated string or NULL if no string was converted output_char* get() { return data_; } /// Return the converted, NULL-terminated string or NULL if no string was converted const output_char* get() const { return data_; } /// Reset the internal buffer to NULL void clear() { if(!uses_stack_memory()) delete[] data_; data_ = nullptr; } /// Swap lhs with rhs friend void swap(basic_stackstring& lhs, basic_stackstring& rhs) { if(lhs.uses_stack_memory()) { if(rhs.uses_stack_memory()) { for(size_t i = 0; i < buffer_size; i++) std::swap(lhs.buffer_[i], rhs.buffer_[i]); } else { lhs.data_ = rhs.data_; rhs.data_ = rhs.buffer_; for(size_t i = 0; i < buffer_size; i++) rhs.buffer_[i] = lhs.buffer_[i]; } } else if(rhs.uses_stack_memory()) { rhs.data_ = lhs.data_; lhs.data_ = lhs.buffer_; for(size_t i = 0; i < buffer_size; i++) lhs.buffer_[i] = rhs.buffer_[i]; } else std::swap(lhs.data_, rhs.data_); } protected: /// True if the stack memory is used bool uses_stack_memory() const { return data_ == buffer_; } /// Return the current length of the string excluding the NULL terminator /// If NULL is stored returns NULL size_t length() const { if(!data_) return 0; size_t len = 0; while(data_[len]) len++; return len; } private: output_char buffer_[buffer_size]; output_char* data_ = nullptr; }; // basic_stackstring /// /// Convenience typedef /// using wstackstring = basic_stackstring; /// /// Convenience typedef /// using stackstring = basic_stackstring; /// /// Convenience typedef /// using wshort_stackstring = basic_stackstring; /// /// Convenience typedef /// using short_stackstring = basic_stackstring; } // namespace nowide } // namespace boost #endif