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
// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd // This file provides alignment utilities for use in arenas. // // `ArenaAlign` contains a single `align` data member and provides // the below functions which operate on the given alignment. // // Ceil(size_t n) - rounds `n` up to the nearest `align` boundary. // Floor(size_t n) - rounds `n` down to the nearest `align` boundary. // Padded(size_t n) - returns the unaligned size to align 'n' bytes. (1) // Ceil(T* P) - rounds `p` up to the nearest `align` boundary. (2) // IsAligned(size_t n) - returns true if `n` is aligned to `align` // IsAligned(T* p) - returns true if `p` is aligned to `align` // CheckAligned(T* p) - returns `p`. Checks alignment of `p` in debug. // // 1) `Padded(n)` returns the minimum size needed to align an object of size 'n' // into a memory area that is default aligned. For example, allocating 'n' // bytes aligned at 32 bytes requires a size of 'n + 32 - 8' to align at 32 // bytes for any 8 byte boundary. // // 2) There is an optimized `CeilDefaultAligned(T*)` method which is equivalent // to `Ceil(ArenaAlignDefault::CheckAlign(p))` but more efficiently // implemented as a 'check only' for ArenaAlignDefault. // // These classes allow for generic arena logic using 'alignment policies'. // // For example: // // template // void* NaiveAlloc(size_t n, Align align) { // ABSL_ASSERT(align.IsAligned(n)); // const size_t required = align.Padded(n); // if (required <= static_cast(ptr_ - limit_)) { // uint8_t* ptr = align.CeilDefaultAligned(ptr_); // ptr_ = ptr + n; // return ptr; // } // return nullptr; // } // // void CallSites() { // void *p1 = NaiveAlloc(n, ArenaAlignDefault()); // void *p2 = NaiveAlloc(n, ArenaAlignAs(32)); // } // #ifndef GOOGLE_PROTOBUF_ARENA_ALIGN_H__ #define GOOGLE_PROTOBUF_ARENA_ALIGN_H__ #include #include #include "absl/base/macros.h" #include "absl/log/absl_check.h" #include "absl/numeric/bits.h" // Must be included last. #include "google/protobuf/port_def.inc" namespace google { namespace protobuf { namespace internal { struct ArenaAlignDefault { PROTOBUF_EXPORT static constexpr size_t align = 8; // NOLINT static constexpr bool IsAligned(size_t n) { return (n & (align - 1)) == 0U; } template static PROTOBUF_ALWAYS_INLINE bool IsAligned(T* ptr) { return (reinterpret_cast(ptr) & (align - 1)) == 0U; } static PROTOBUF_ALWAYS_INLINE constexpr size_t Ceil(size_t n) { return (n + align - 1) & ~(align - 1); } static PROTOBUF_ALWAYS_INLINE constexpr size_t Floor(size_t n) { return (n & ~(align - 1)); } static PROTOBUF_ALWAYS_INLINE size_t Padded(size_t n) { ABSL_ASSERT(IsAligned(n)); return n; } template static PROTOBUF_ALWAYS_INLINE T* Ceil(T* ptr) { uintptr_t intptr = reinterpret_cast(ptr); return reinterpret_cast((intptr + align - 1) & ~(align - 1)); } template static PROTOBUF_ALWAYS_INLINE T* CeilDefaultAligned(T* ptr) { ABSL_ASSERT(IsAligned(ptr)); return ptr; } // Address sanitizer enabled alignment check template static PROTOBUF_ALWAYS_INLINE T* CheckAligned(T* ptr) { ABSL_ASSERT(IsAligned(ptr)); return ptr; } }; struct ArenaAlign { static constexpr bool IsDefault() { return false; }; size_t align; constexpr bool IsAligned(size_t n) const { return (n & (align - 1)) == 0U; } template bool IsAligned(T* ptr) const { return (reinterpret_cast(ptr) & (align - 1)) == 0U; } constexpr size_t Ceil(size_t n) const { return (n + align - 1) & ~(align - 1); } constexpr size_t Floor(size_t n) const { return (n & ~(align - 1)); } constexpr size_t Padded(size_t n) const { // TODO: there are direct callers of AllocateAligned() that violate // `size` being a multiple of `align`: that should be an error / assert. // ABSL_ASSERT(IsAligned(n)); ABSL_ASSERT(ArenaAlignDefault::IsAligned(align)); return n + align - ArenaAlignDefault::align; } template T* Ceil(T* ptr) const { uintptr_t intptr = reinterpret_cast(ptr); return reinterpret_cast((intptr + align - 1) & ~(align - 1)); } template T* CeilDefaultAligned(T* ptr) const { ABSL_ASSERT(ArenaAlignDefault::IsAligned(ptr)); return Ceil(ptr); } // Address sanitizer enabled alignment check template T* CheckAligned(T* ptr) const { ABSL_ASSERT(IsAligned(ptr)); return ptr; } }; inline ArenaAlign ArenaAlignAs(size_t align) { // align must be a non zero power of 2 >= 8 ABSL_DCHECK_NE(align, 0U); ABSL_DCHECK(absl::has_single_bit(align)) << "Invalid alignment " << align; return ArenaAlign{align}; } template struct AlignFactory { static_assert(align > ArenaAlignDefault::align, "Not over-aligned"); static_assert((align & (align - 1)) == 0U, "Not power of 2"); static constexpr ArenaAlign Create() { return ArenaAlign{align}; } }; template struct AlignFactory { static_assert(align <= ArenaAlignDefault::align, "Over-aligned"); static_assert((align & (align - 1)) == 0U, "Not power of 2"); static constexpr ArenaAlignDefault Create() { return ArenaAlignDefault{}; } }; // Returns an `ArenaAlignDefault` instance for `align` less than or equal to the // default alignment, and `AlignAs(align)` for over-aligned values of `align`. // The purpose is to take advantage of invoking functions accepting a template // overloaded 'Align align` argument reducing the alignment operations on // `ArenaAlignDefault` implementations to no-ops. template inline constexpr auto ArenaAlignAs() { return AlignFactory::Create(); } // Returns ArenaAlignAs template inline constexpr auto ArenaAlignOf() { return ArenaAlignAs(); } } // namespace internal } // namespace protobuf } // namespace google #include "google/protobuf/port_undef.inc" #endif // GOOGLE_PROTOBUF_ARENA_ALIGN_H__