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) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com) // Copyright (c) 2019-2020 Krystian Stasiowski (sdkrystian at gmail dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // Official repository: https://github.com/boostorg/static_string // #ifndef BOOST_STATIC_STRING_CONFIG_HPP #define BOOST_STATIC_STRING_CONFIG_HPP // Are we dependent on Boost? // #define BOOST_STATIC_STRING_STANDALONE #include // detect 32/64 bit #if UINTPTR_MAX == UINT64_MAX #define BOOST_STATIC_STRING_ARCH 64 #elif UINTPTR_MAX == UINT32_MAX #define BOOST_STATIC_STRING_ARCH 32 #else #error Unknown or unsupported architecture, please open an issue #endif // Can we have deduction guides? #if __cpp_deduction_guides >= 201703L #define BOOST_STATIC_STRING_USE_DEDUCT #endif // Include if we can #ifdef __has_include #if __has_include() #include #endif #endif // Can we use __has_builtin? #ifdef __has_builtin #define BOOST_STATIC_STRING_HAS_BUILTIN(arg) __has_builtin(arg) #else #define BOOST_STATIC_STRING_HAS_BUILTIN(arg) 0 #endif // Can we use is_constant_evaluated? #if __cpp_lib_is_constant_evaluated >= 201811L #define BOOST_STATIC_STRING_IS_CONST_EVAL std::is_constant_evaluated() #elif BOOST_STATIC_STRING_HAS_BUILTIN(__builtin_is_constant_evaluated) #define BOOST_STATIC_STRING_IS_CONST_EVAL __builtin_is_constant_evaluated() #endif // Check for an attribute #if defined(__has_cpp_attribute) #define BOOST_STATIC_STRING_CHECK_FOR_ATTR(x) __has_cpp_attribute(x) #elif defined(__has_attribute) #define BOOST_STATIC_STRING_CHECK_FOR_ATTR(x) __has_attribute(x) #else #define BOOST_STATIC_STRING_CHECK_FOR_ATTR(x) 0 #endif // Decide which attributes we can use #define BOOST_STATIC_STRING_UNLIKELY #define BOOST_STATIC_STRING_NODISCARD #define BOOST_STATIC_STRING_NORETURN #define BOOST_STATIC_STRING_NO_NORETURN // unlikely #if BOOST_STATIC_STRING_CHECK_FOR_ATTR(unlikely) #undef BOOST_STATIC_STRING_UNLIKELY #define BOOST_STATIC_STRING_UNLIKELY [[unlikely]] #endif // nodiscard #if BOOST_STATIC_STRING_CHECK_FOR_ATTR(nodiscard) #undef BOOST_STATIC_STRING_NODISCARD #define BOOST_STATIC_STRING_NODISCARD [[nodiscard]] #elif defined(_MSC_VER) && _MSC_VER >= 1700 #undef BOOST_STATIC_STRING_NODISCARD #define BOOST_STATIC_STRING_NODISCARD _Check_return_ #elif defined(__GNUC__) || defined(__clang__) #undef BOOST_STATIC_STRING_NODISCARD #define BOOST_STATIC_STRING_NODISCARD __attribute__((warn_unused_result)) #endif // noreturn #if BOOST_STATIC_STRING_CHECK_FOR_ATTR(noreturn) #undef BOOST_STATIC_STRING_NORETURN #undef BOOST_STATIC_STRING_NO_NORETURN #define BOOST_STATIC_STRING_NORETURN [[noreturn]] #elif defined(_MSC_VER) #undef BOOST_STATIC_STRING_NORETURN #undef BOOST_STATIC_STRING_NO_NORETURN #define BOOST_STATIC_STRING_NORETURN __declspec(noreturn) #elif defined(__GNUC__) || defined(__clang__) #undef BOOST_STATIC_STRING_NORETURN #undef BOOST_STATIC_STRING_NO_NORETURN #define BOOST_STATIC_STRING_NORETURN __attribute__((__noreturn__)) #endif // _MSVC_LANG isn't avaliable until after VS2015 #if defined(_MSC_VER) && _MSC_VER < 1910L // The constexpr support in this version is effectively that of // c++11, so we treat it as such #define BOOST_STATIC_STRING_STANDARD_VERSION 201103L #elif defined(_MSVC_LANG) // MSVC doesn't define __cplusplus by default #define BOOST_STATIC_STRING_STANDARD_VERSION _MSVC_LANG #else #define BOOST_STATIC_STRING_STANDARD_VERSION __cplusplus #endif // Decide what level of constexpr we can use #define BOOST_STATIC_STRING_CPP20_CONSTEXPR #define BOOST_STATIC_STRING_CPP17_CONSTEXPR #define BOOST_STATIC_STRING_CPP14_CONSTEXPR #define BOOST_STATIC_STRING_CPP11_CONSTEXPR #if BOOST_STATIC_STRING_STANDARD_VERSION >= 202002L #define BOOST_STATIC_STRING_CPP20 #undef BOOST_STATIC_STRING_CPP20_CONSTEXPR #define BOOST_STATIC_STRING_CPP20_CONSTEXPR constexpr #endif #if BOOST_STATIC_STRING_STANDARD_VERSION >= 201703L #define BOOST_STATIC_STRING_CPP17 #undef BOOST_STATIC_STRING_CPP17_CONSTEXPR #define BOOST_STATIC_STRING_CPP17_CONSTEXPR constexpr #endif #if BOOST_STATIC_STRING_STANDARD_VERSION >= 201402L #define BOOST_STATIC_STRING_CPP14 #undef BOOST_STATIC_STRING_CPP14_CONSTEXPR #define BOOST_STATIC_STRING_CPP14_CONSTEXPR constexpr #endif #if BOOST_STATIC_STRING_STANDARD_VERSION >= 201103L #define BOOST_STATIC_STRING_CPP11 #undef BOOST_STATIC_STRING_CPP11_CONSTEXPR #define BOOST_STATIC_STRING_CPP11_CONSTEXPR constexpr #endif // Boost and non-Boost versions of utilities #ifndef BOOST_STATIC_STRING_STANDALONE #ifndef BOOST_STATIC_STRING_THROW #define BOOST_STATIC_STRING_THROW(ex) BOOST_THROW_EXCEPTION(ex) #endif #ifndef BOOST_STATIC_STRING_ASSERT #define BOOST_STATIC_STRING_ASSERT(cond) BOOST_ASSERT(cond) #endif #else #ifndef BOOST_STATIC_STRING_THROW #define BOOST_STATIC_STRING_THROW(ex) throw ex #endif #ifndef BOOST_STATIC_STRING_ASSERT #define BOOST_STATIC_STRING_ASSERT(cond) assert(cond) #endif #endif #ifndef BOOST_STATIC_STRING_STANDALONE #include #include #include #include #include #include #if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) || \ defined(BOOST_STATIC_STRING_CXX17_STRING_VIEW) #include #define BOOST_STATIC_STRING_HAS_STD_STRING_VIEW #endif #else #include #include #if defined(__has_include) # if !__has_include() # define BOOST_STATIC_STRING_NO_CXX17_HDR_STRING_VIEW # endif /* * Replicate the logic from Boost.Config */ // GNU libstdc++3: #elif defined(__GLIBCPP__) || defined(__GLIBCXX__) # if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) < 70100) || (__cplusplus <= 201402L) # define BOOST_STATIC_STRING_NO_CXX17_HDR_STRING_VIEW # endif // libc++: #elif defined(_LIBCPP_VERSION) # if (_LIBCPP_VERSION < 4000) || (__cplusplus <= 201402L) # define BOOST_STATIC_STRING_NO_CXX17_HDR_STRING_VIEW # endif // MSVC uses logic from catch all for BOOST_NO_CXX17_HDR_STRING_VIEW // catch all: #elif !defined(_YVALS) && !defined(_CPPLIB_VER) # if (!defined(__has_include) || (__cplusplus < 201700)) # define BOOST_STATIC_STRING_NO_CXX17_HDR_STRING_VIEW # elif !__has_include() # define BOOST_STATIC_STRING_NO_CXX17_HDR_STRING_VIEW # endif #endif #if !defined(BOOST_STATIC_STRING_NO_CXX17_HDR_STRING_VIEW) || \ defined(BOOST_STATIC_STRING_CXX17_STRING_VIEW) #include #define BOOST_STATIC_STRING_HAS_STD_STRING_VIEW #endif #endif // Compiler bug prevents constexpr from working with clang 4.x and 5.x // if it is detected, we disable constexpr. #if (BOOST_STATIC_STRING_STANDARD_VERSION >= 201402L && \ BOOST_STATIC_STRING_STANDARD_VERSION < 201703L) && \ defined(__clang__) && \ ((__clang_major__ == 4) || (__clang_major__ == 5)) // This directive works on clang #warning "C++14 constexpr is not supported in clang 4.x and 5.x due to a compiler bug." #ifdef BOOST_STATIC_STRING_CPP14 #undef BOOST_STATIC_STRING_CPP14 #endif #undef BOOST_STATIC_STRING_CPP14_CONSTEXPR #define BOOST_STATIC_STRING_CPP14_CONSTEXPR #endif // This is for compiler/library configurations // that cannot use the library comparison function // objects at all in constant expresssions. In these // cases, we use whatever will make more constexpr work. #if defined(__clang__) && \ (defined(__GLIBCXX__) || defined(_MSC_VER)) #define BOOST_STATIC_STRING_NO_PTR_COMP_FUNCTIONS #endif // In gcc-5, we cannot use throw expressions in a // constexpr function. However, we have a workaround // for this using constructors. Also, non-static member // functions that return the class they are a member of // causes an ICE during constant evaluation. #if defined(__GNUC__) && (__GNUC__== 5) && \ defined(BOOST_STATIC_STRING_CPP14) #define BOOST_STATIC_STRING_GCC5_BAD_CONSTEXPR #endif #ifndef BOOST_STATIC_STRING_STANDALONE #if ! defined(BOOST_NO_CWCHAR) && ! defined(BOOST_NO_SWPRINTF) #define BOOST_STATIC_STRING_HAS_WCHAR #endif #else #ifndef __has_include // If we don't have __has_include in standalone, // we will assume that exists. #define BOOST_STATIC_STRING_HAS_WCHAR #elif __has_include() #define BOOST_STATIC_STRING_HAS_WCHAR #endif #endif #ifdef BOOST_STATIC_STRING_HAS_WCHAR #include #endif // Define the basic string_view type used by the library // Conversions to and from other available string_view types // are still defined. #if !defined(BOOST_STATIC_STRING_STANDALONE) || \ defined(BOOST_STATIC_STRING_HAS_STD_STRING_VIEW) #define BOOST_STATIC_STRING_HAS_ANY_STRING_VIEW namespace boost { namespace static_strings { /// The type of `basic_string_view` used by the library template using basic_string_view = #ifndef BOOST_STATIC_STRING_STANDALONE boost::basic_string_view; #else std::basic_string_view; #endif } // static_strings } // boost #endif #if defined(__cpp_lib_to_string) && __cpp_lib_to_string >= 202306L // std::to_[w]string() redefined in terms of std::format() #define BOOST_STATIC_STRING_USE_STD_FORMAT #endif #endif