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
////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Vicente J. Botet Escriba 2008-2009,2012. 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) // // See http://www.boost.org/libs/thread for documentation. // ////////////////////////////////////////////////////////////////////////////// #ifndef BOOST_THREAD_LOCKABLE_ADAPTER_HPP #define BOOST_THREAD_LOCKABLE_ADAPTER_HPP #include #include namespace boost { //[basic_lockable_adapter template class basic_lockable_adapter { public: typedef BasicLockable mutex_type; protected: mutex_type& lockable() const { return lockable_; } mutable mutex_type lockable_; /*< mutable so that it can be modified by const functions >*/ public: BOOST_THREAD_NO_COPYABLE( basic_lockable_adapter) /*< no copyable >*/ basic_lockable_adapter() {} void lock() const { lockable().lock(); } void unlock() const { lockable().unlock(); } }; //] //[lockable_adapter template class lockable_adapter : public basic_lockable_adapter { public: typedef Lockable mutex_type; bool try_lock() const { return this->lockable().try_lock(); } }; //] //[timed_lockable_adapter template class timed_lockable_adapter: public lockable_adapter { public: typedef TimedLock mutex_type; template bool try_lock_until(chrono::time_point const & abs_time) const { return this->lockable().try_lock_until(abs_time); } template bool try_lock_for(chrono::duration const & rel_time) const { return this->lockable().try_lock_for(rel_time); } }; //] //[shared_lockable_adapter template class shared_lockable_adapter: public timed_lockable_adapter { public: typedef SharableLock mutex_type; void lock_shared() const { this->lockable().lock_shared(); } bool try_lock_shared() const { return this->lockable().try_lock_shared(); } void unlock_shared() const { this->lockable().unlock_shared(); } template bool try_lock_shared_until(chrono::time_point const & abs_time) const { return this->lockable().try_lock_shared_until(abs_time); } template bool try_lock_shared_for(chrono::duration const & rel_time) const { return this->lockable().try_lock_shared_for(rel_time); } }; //] //[upgrade_lockable_adapter template class upgrade_lockable_adapter: public shared_lockable_adapter { public: typedef UpgradableLock mutex_type; void lock_upgrade() const { this->lockable().lock_upgrade(); } bool try_lock_upgrade() const { return this->lockable().try_lock_upgrade(); } void unlock_upgrade() const { this->lockable().unlock_upgrade(); } template bool try_lock_upgrade_until(chrono::time_point const & abs_time) const { return this->lockable().try_lock_upgrade_until(abs_time); } template bool try_lock_upgrade_for(chrono::duration const & rel_time) const { return this->lockable().try_lock_upgrade_for(rel_time); } bool try_unlock_shared_and_lock() const { return this->lockable().try_unlock_shared_and_lock(); } template bool try_unlock_shared_and_lock_until(chrono::time_point const & abs_time) const { return this->lockable().try_unlock_shared_and_lock_until(abs_time); } template bool try_unlock_shared_and_lock_for(chrono::duration const & rel_time) const { return this->lockable().try_unlock_shared_and_lock_for(rel_time); } void unlock_and_lock_shared() const { this->lockable().unlock_and_lock_shared(); } bool try_unlock_shared_and_lock_upgrade() const { return this->lockable().try_unlock_shared_and_lock_upgrade(); } template bool try_unlock_shared_and_lock_upgrade_until(chrono::time_point const & abs_time) const { return this->lockable().try_unlock_shared_and_lock_upgrade_until(abs_time); } template bool try_unlock_shared_and_lock_upgrade_for(chrono::duration const & rel_time) const { return this->lockable().try_unlock_shared_and_lock_upgrade_for(rel_time); } void unlock_and_lock_upgrade() const { this->lockable().unlock_and_lock_upgrade(); } void unlock_upgrade_and_lock() const { this->lockable().unlock_upgrade_and_lock(); } bool try_unlock_upgrade_and_lock() const { return this->lockable().try_unlock_upgrade_and_lock(); } template bool try_unlock_upgrade_and_lock_until(chrono::time_point const & abs_time) const { return this->lockable().try_unlock_upgrade_and_lock_until(abs_time); } template bool try_unlock_upgrade_and_lock_for(chrono::duration const & rel_time) const { return this->lockable().try_unlock_upgrade_and_lock_for(rel_time); } void unlock_upgrade_and_lock_shared() const { this->lockable().unlock_upgrade_and_lock_shared(); } }; //] } #endif