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
import os import sqlite3 from pathlib import Path from contextlib import suppress, closing from collections.abc import MutableMapping BUILD_TABLE = """ CREATE TABLE IF NOT EXISTS Dict ( key BLOB UNIQUE NOT NULL, value BLOB NOT NULL ) """ GET_SIZE = "SELECT COUNT (key) FROM Dict" LOOKUP_KEY = "SELECT value FROM Dict WHERE key = CAST(? AS BLOB)" STORE_KV = "REPLACE INTO Dict (key, value) VALUES (CAST(? AS BLOB), CAST(? AS BLOB))" DELETE_KEY = "DELETE FROM Dict WHERE key = CAST(? AS BLOB)" ITER_KEYS = "SELECT key FROM Dict" class error(OSError): pass _ERR_CLOSED = "DBM object has already been closed" _ERR_REINIT = "DBM object does not support reinitialization" def _normalize_uri(path): path = Path(path) uri = path.absolute().as_uri() while "//" in uri: uri = uri.replace("//", "/") return uri class _Database(MutableMapping): def __init__(self, path, /, *, flag, mode): if hasattr(self, "_cx"): raise error(_ERR_REINIT) path = os.fsdecode(path) match flag: case "r": flag = "ro" case "w": flag = "rw" case "c": flag = "rwc" Path(path).touch(mode=mode, exist_ok=True) case "n": flag = "rwc" Path(path).unlink(missing_ok=True) Path(path).touch(mode=mode) case _: raise ValueError("Flag must be one of 'r', 'w', 'c', or 'n', " f"not {flag!r}") # We use the URI format when opening the database. uri = _normalize_uri(path) uri = f"{uri}?mode={flag}" if flag == "ro": # Add immutable=1 to allow read-only SQLite access even if wal/shm missing uri += "&immutable=1" try: self._cx = sqlite3.connect(uri, autocommit=True, uri=True) except sqlite3.Error as exc: raise error(str(exc)) if flag != "ro": # This is an optimization only; it's ok if it fails. with suppress(sqlite3.OperationalError): self._cx.execute("PRAGMA journal_mode = wal") if flag == "rwc": self._execute(BUILD_TABLE) def _execute(self, *args, **kwargs): if not self._cx: raise error(_ERR_CLOSED) try: return closing(self._cx.execute(*args, **kwargs)) except sqlite3.Error as exc: raise error(str(exc)) def __len__(self): with self._execute(GET_SIZE) as cu: row = cu.fetchone() return row[0] def __getitem__(self, key): with self._execute(LOOKUP_KEY, (key,)) as cu: row = cu.fetchone() if not row: raise KeyError(key) return row[0] def __setitem__(self, key, value): self._execute(STORE_KV, (key, value)) def __delitem__(self, key): with self._execute(DELETE_KEY, (key,)) as cu: if not cu.rowcount: raise KeyError(key) def __iter__(self): try: with self._execute(ITER_KEYS) as cu: for row in cu: yield row[0] except sqlite3.Error as exc: raise error(str(exc)) def close(self): if self._cx: self._cx.close() self._cx = None def keys(self): return list(super().keys()) def __enter__(self): return self def __exit__(self, *args): self.close() def open(filename, /, flag="r", mode=0o666): """Open a dbm.sqlite3 database and return the dbm object. The 'filename' parameter is the name of the database file. The optional 'flag' parameter can be one of ...: 'r' (default): open an existing database for read only access 'w': open an existing database for read/write access 'c': create a database if it does not exist; open for read/write access 'n': always create a new, empty database; open for read/write access The optional 'mode' parameter is the Unix file access mode of the database; only used when creating a new database. Default: 0o666. """ return _Database(filename, flag=flag, mode=mode)