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 Ion Gaztanaga 2015-2015. 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/container for documentation. // ////////////////////////////////////////////////////////////////////////////// #ifndef BOOST_CONTAINER_PMR_MEMORY_RESOURCE_HPP #define BOOST_CONTAINER_PMR_MEMORY_RESOURCE_HPP #if defined (_MSC_VER) # pragma once #endif #include #include #include #include #include #include namespace boost { namespace container { namespace pmr { //! The memory_resource class is an abstract interface to an //! unbounded set of classes encapsulating memory resources. class memory_resource { public: // For exposition only BOOST_STATIC_CONSTEXPR std::size_t max_align = boost::move_detail::alignment_of::value; //! Effects: Destroys //! this memory_resource. virtual ~memory_resource(){} //! Effects: Equivalent to //! `return do_allocate(bytes, alignment);` void* allocate(std::size_t bytes, std::size_t alignment = max_align) { //Obtain a pointer to enough storage and initialize the lifetime //of an array object of the given size in the address return ::operator new(bytes, this->do_allocate(bytes, alignment), boost_container_new_t()); } //! Effects: Equivalent to //! `return do_deallocate(bytes, alignment);` void deallocate(void* p, std::size_t bytes, std::size_t alignment = max_align) { return this->do_deallocate(p, bytes, alignment); } //! Effects: Equivalent to //! `return do_is_equal(other);` bool is_equal(const memory_resource& other) const BOOST_NOEXCEPT { return this->do_is_equal(other); } #if !defined(BOOST_EMBTC) //! Returns: //! `&a == &b || a.is_equal(b)`. friend bool operator==(const memory_resource& a, const memory_resource& b) BOOST_NOEXCEPT { return &a == &b || a.is_equal(b); } //! Returns: //! !(a == b). friend bool operator!=(const memory_resource& a, const memory_resource& b) BOOST_NOEXCEPT { return !(a == b); } #else //! Returns: //! `&a == &b || a.is_equal(b)`. friend bool operator==(const memory_resource& a, const memory_resource& b) BOOST_NOEXCEPT; //! Returns: //! !(a == b). friend bool operator!=(const memory_resource& a, const memory_resource& b) BOOST_NOEXCEPT; #endif protected: //! Requires: Alignment shall be a power of two. //! //! Returns: A derived class shall implement this function to return a pointer //! to allocated storage with a size of at least bytes. The returned storage is //! aligned to the specified alignment, if such alignment is supported; otherwise //! it is aligned to max_align. //! //! Throws: A derived class implementation shall throw an appropriate exception if //! it is unable to allocate memory with the requested size and alignment. virtual void* do_allocate(std::size_t bytes, std::size_t alignment) = 0; //! Requires: p shall have been returned from a prior call to //! `allocate(bytes, alignment)` on a memory resource equal to *this, and the storage //! at p shall not yet have been deallocated. //! //! Effects: A derived class shall implement this function to dispose of allocated storage. //! //! Throws: Nothing. virtual void do_deallocate(void* p, std::size_t bytes, std::size_t alignment) = 0; //! Returns: A derived class shall implement this function to return true if memory //! allocated from this can be deallocated from other and vice-versa; otherwise it shall //! return false. [Note: The most-derived type of other might not match the type of this. //! For a derived class, D, a typical implementation of this function will compute //! `dynamic_cast(&other)` and go no further (i.e., return false) //! if it returns nullptr. - end note]. virtual bool do_is_equal(const memory_resource& other) const BOOST_NOEXCEPT = 0; }; #if defined(BOOST_EMBTC) //! Returns: //! `&a == &b || a.is_equal(b)`. inline bool operator==(const memory_resource& a, const memory_resource& b) BOOST_NOEXCEPT { return &a == &b || a.is_equal(b); } //! Returns: //! !(a == b). inline bool operator!=(const memory_resource& a, const memory_resource& b) BOOST_NOEXCEPT { return !(a == b); } #endif } //namespace pmr { } //namespace container { } //namespace boost { #include #endif //BOOST_CONTAINER_PMR_MEMORY_RESOURCE_HPP