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
/** * SPDX-FileCopyrightText: (C) 2006 Dominik Seichter * SPDX-FileCopyrightText: (C) 2020 Francesco Pretto * SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef AUX_STREAM_DEVICE_H #define AUX_STREAM_DEVICE_H #include #include #include #include #include "basetypes.h" #include "InputDevice.h" #include "OutputDevice.h" namespace PoDoFo { /** This class provides an output device which operates * either on a file or on a buffer in memory. * Additionally it can count the bytes written to the device. * * This class is suitable for inheritance to provide output * devices of your own. Just override the required virtual methods. */ class PODOFO_API StreamDevice : public InputStreamDevice, public OutputStreamDevice { protected: StreamDevice(DeviceAccess access); protected: static size_t SeekPosition(size_t curpos, size_t devlen, ssize_t offset, SeekDirection direction); }; class PODOFO_API StandardStreamDevice : public StreamDevice { public: /** Construct a new StreamDevice that writes all data to a std::ostream. * * \param stream write to this std::ostream */ StandardStreamDevice(std::ostream& stream); StandardStreamDevice(std::istream& stream); /** Construct a new StreamDevice that writes all data to a std::iostream * and reads from it as well. * \param stream read/write from/to this std::iostream */ StandardStreamDevice(std::iostream& stream); ~StandardStreamDevice(); public: size_t GetLength() const override; size_t GetPosition() const override; bool CanSeek() const override; bool Eof() const override; protected: StandardStreamDevice(DeviceAccess access, std::ios& stream, bool streamOwned); void writeBuffer(const char* buffer, size_t size) override; void flush() override; size_t readBuffer(char* buffer, size_t size, bool& eof) override; bool readChar(char& ch) override; bool peek(char& ch) const override; void seek(ssize_t offset, SeekDirection direction) override; inline std::ios& GetStream() { return *m_Stream; } private: StandardStreamDevice(DeviceAccess access, std::ios* stream, std::istream* istream, std::ostream* ostream, bool streamOwned); private: std::ios* m_Stream; std::istream* m_istream; std::ostream* m_ostream; bool m_StreamOwned; }; // These are the .NET System.IO file opening modes // https://docs.microsoft.com/en-us/dotnet/api/system.io.filemode?view=net-6.0 enum class FileMode { CreateNew = 1, ///< Create a new file (throw if existing) for writing/reading Create, ///< Create a new file or truncate existing one for writing/reading Open, ///< Open an existing file for reading and/or writing OpenOrCreate, ///< Open an existing file or create a new one for writing/reading Truncate, ///< Truncate an existing file for writing/reading Append, ///< Open an existing file and seek to the end for writing }; class PODOFO_API FileStreamDevice final : public StandardStreamDevice { public: /** Open for reading the supplied filepath */ FileStreamDevice(const std::string_view & filepath); /** Open for reading/writing the supplied filepath with the given filemode */ FileStreamDevice(const std::string_view & filepath, FileMode mode); /** Open for the supplied filepath with the given filemode and access */ FileStreamDevice(const std::string_view& filepath, FileMode mode, DeviceAccess access); public: const std::string& GetFilepath() const { return m_Filepath; } protected: void close() override; private: std::fstream* getFileStream(const std::string_view& filename, FileMode mode, DeviceAccess access); private: std::string m_Filepath; }; template class ContainerStreamDevice final : public StreamDevice { public: ContainerStreamDevice(TContainer& container, DeviceAccess access, bool ate) : StreamDevice(access), m_container(&container), m_Position(ate ? container.size() : 0) { } /** * \remarks by default it set the current position at the begin of the container */ ContainerStreamDevice(const TContainer& container) : ContainerStreamDevice(const_cast(container), DeviceAccess::Read, false) { } /** * \remarks by default it set the current position at the end of the container */ ContainerStreamDevice(TContainer& container) : ContainerStreamDevice(container, DeviceAccess::ReadWrite, true) { } public: size_t GetLength() const override { return m_container->size(); } size_t GetPosition() const override { return m_Position; } bool CanSeek() const override { return true; } bool Eof() const override { return m_Position == m_container->size(); } protected: void writeBuffer(const char* buffer, size_t size) override { if (m_Position + size > m_container->size()) m_container->resize(m_Position + size); std::memcpy(m_container->data() + m_Position, buffer, size); m_Position += size; } size_t readBuffer(char* buffer, size_t size, bool& eof) override { size_t readCount = std::min(size, m_container->size() - m_Position); std::memcpy(buffer, m_container->data() + m_Position, readCount); m_Position += readCount; eof = m_Position == m_container->size(); return readCount; } bool readChar(char& ch) override { if (m_Position == m_container->size()) { ch = '\0'; return false; } ch = m_container->data()[m_Position]; m_Position++; return true; } bool peek(char& ch) const override { if (m_Position == m_container->size()) { ch = '\0'; return false; } ch = m_container->data()[m_Position]; return true; } void seek(ssize_t offset, SeekDirection direction) override { m_Position = SeekPosition(m_Position, m_container->size(), offset, direction); } private: TContainer* m_container; size_t m_Position; }; class PODOFO_API SpanStreamDevice final : public StreamDevice { public: /** Construct a new StreamDevice that reads all data from a memory buffer. * The buffer is temporarily binded */ SpanStreamDevice(const char* buffer, size_t size); SpanStreamDevice(const bufferview& buffer); SpanStreamDevice(const std::string_view& view); SpanStreamDevice(const std::string& str); SpanStreamDevice(std::string& str, DeviceAccess access = DeviceAccess::ReadWrite); SpanStreamDevice(const char* str); SpanStreamDevice(char* buffer, size_t size, DeviceAccess access = DeviceAccess::ReadWrite); SpanStreamDevice(const bufferspan& span, DeviceAccess access = DeviceAccess::ReadWrite); public: size_t GetLength() const override; size_t GetPosition() const override; bool Eof() const override; bool CanSeek() const override; protected: void writeBuffer(const char* buffer, size_t size) override; size_t readBuffer(char* buffer, size_t size, bool& eof) override; bool readChar(char& ch) override; bool peek(char& ch) const override; void seek(ssize_t offset, SeekDirection direction) override; private: SpanStreamDevice(std::nullptr_t) = delete; private: char* m_buffer; size_t m_Length; size_t m_Position; }; /** * An StreamDevice device that does nothing */ class PODOFO_API NullStreamDevice final : public StreamDevice { public: NullStreamDevice(); public: size_t GetLength() const override; size_t GetPosition() const override; bool Eof() const override; protected: void writeBuffer(const char* buffer, size_t size) override; size_t readBuffer(char* buffer, size_t size, bool& eof) override; bool readChar(char& ch) override; bool peek(char& ch) const override; void seek(ssize_t offset, SeekDirection direction) override; private: size_t m_Length; size_t m_Position; }; using VectorStreamDevice = ContainerStreamDevice>; using StringStreamDevice = ContainerStreamDevice; using BufferStreamDevice = ContainerStreamDevice; } #endif // AUX_STREAM_DEVICE_H